As traduções são geradas por tradução automática. Em caso de conflito entre o conteúdo da tradução e da versão original em inglês, a versão em inglês prevalecerá.
Classe DropNullFields
Descarta todos os campos nulos em um DynamicFrame
cujos tipos são NullType
. São campos com valores ausentes ou nulos em todos os registros no conjunto de dados DynamicFrame
.
Exemplo
Este exemplo usa DropNullFields
para criar um novo DynamicFrame
no qual os campos do tipo NullType
foram descartados. Para demonstrar DropNullFields
, adicionamos uma nova coluna do tipo null chamada empty_column
ao conjunto de dados persons
já carregado.
nota
Para acessar o conjunto de dados usado neste exemplo, consulte Exemplo de código: juntar e relacionar dados e siga as instruções em Etapa 1: crawling de dados no bucket do Amazon S3.
# Example: Use DropNullFields to create a new DynamicFrame without NullType fields from pyspark.context import SparkContext from awsglue.context import GlueContext from pyspark.sql.functions import lit from pyspark.sql.types import NullType from awsglue.dynamicframe import DynamicFrame from awsglue.transforms import DropNullFields # Create GlueContext sc = SparkContext.getOrCreate() glueContext = GlueContext(sc) # Create DynamicFrame persons = glueContext.create_dynamic_frame.from_catalog( database="legislators", table_name="persons_json" ) print("Schema for the persons DynamicFrame:") persons.printSchema() # Add new column "empty_column" with NullType persons_with_nulls = persons.toDF().withColumn("empty_column", lit(None).cast(NullType())) persons_with_nulls_dyf = DynamicFrame.fromDF(persons_with_nulls, glueContext, "persons_with_nulls") print("Schema for the persons_with_nulls_dyf DynamicFrame:") persons_with_nulls_dyf.printSchema() # Remove the NullType field persons_no_nulls = DropNullFields.apply(persons_with_nulls_dyf) print("Schema for the persons_no_nulls DynamicFrame:") persons_no_nulls.printSchema()
Schema for the persons DynamicFrame: root |-- family_name: string |-- name: string |-- links: array | |-- element: struct | | |-- note: string | | |-- url: string |-- gender: string |-- image: string |-- identifiers: array | |-- element: struct | | |-- scheme: string | | |-- identifier: string |-- other_names: array | |-- element: struct | | |-- lang: string | | |-- note: string | | |-- name: string |-- sort_name: string |-- images: array | |-- element: struct | | |-- url: string |-- given_name: string |-- birth_date: string |-- id: string |-- contact_details: array | |-- element: struct | | |-- type: string | | |-- value: string |-- death_date: string Schema for the persons_with_nulls_dyf DynamicFrame: root |-- family_name: string |-- name: string |-- links: array | |-- element: struct | | |-- note: string | | |-- url: string |-- gender: string |-- image: string |-- identifiers: array | |-- element: struct | | |-- scheme: string | | |-- identifier: string |-- other_names: array | |-- element: struct | | |-- lang: string | | |-- note: string | | |-- name: string |-- sort_name: string |-- images: array | |-- element: struct | | |-- url: string |-- given_name: string |-- birth_date: string |-- id: string |-- contact_details: array | |-- element: struct | | |-- type: string | | |-- value: string |-- death_date: string |-- empty_column: null null_fields ['empty_column'] Schema for the persons_no_nulls DynamicFrame: root |-- family_name: string |-- name: string |-- links: array | |-- element: struct | | |-- note: string | | |-- url: string |-- gender: string |-- image: string |-- identifiers: array | |-- element: struct | | |-- scheme: string | | |-- identifier: string |-- other_names: array | |-- element: struct | | |-- lang: string | | |-- note: string | | |-- name: string |-- sort_name: string |-- images: array | |-- element: struct | | |-- url: string |-- given_name: string |-- birth_date: string |-- id: string |-- contact_details: array | |-- element: struct | | |-- type: string | | |-- value: string |-- death_date: string
Métodos
__call__(frame, transformation_ctx = "", info = "", stageThreshold = 0, totalThreshold = 0)
Descarta todos os campos nulos em um DynamicFrame
cujos tipos são NullType
. São campos com valores ausentes ou nulos em todos os registros no conjunto de dados DynamicFrame
.
frame
:DynamicFrame
onde os campos nulos serão descartados (obrigatório).transformation_ctx
– Uma string única que é usada para identificar informações de estado (opcional).info
– Uma string associada a erros na transformação (opcional).stageThreshold
: o número máximo de erros que podem ocorrer na transformação antes que ela falhe (opcional). O padrão é zero.totalThreshold
: o número máximo de erros que podem ocorrer em geral antes que falhe (opcional). O padrão é zero.
Retorna um novo DynamicFrame
sem campos nulos.
apply(cls, *args, **kwargs)
cls
– cls
name(cls)
cls
– cls
describeArgs(cls)
cls
– cls
describeReturn(cls)
cls
– cls
describeTransform(cls)
cls
– cls
describeErrors(cls)
cls
– cls
describe(cls)
cls
– cls