Как получить конкретные данные из динамической рамки AWS Glue - PullRequest
0 голосов
/ 19 сентября 2019

Я хочу получить конкретные данные внутри DynamicFrame.

Поэтому я использую консоль AWS Glue и у меня есть этот DynamicFrame, в этом DynamicFrame у меня есть данные, которые мне нужно использовать для указания пути для организации данныхвнутри S3.

Я хочу получить конкретные данные из журнала внутри этого DynamicFrame


import sys
from awsglue.transforms import *
from awsglue.utils import getResolvedOptions
from pyspark.context import SparkContext
from awsglue.context import GlueContext
from awsglue.job import Job

## @params: [JOB_NAME]
args = getResolvedOptions(sys.argv, ['JOB_NAME'])

sc = SparkContext()
glueContext = GlueContext(sc)
spark = glueContext.spark_session
job = Job(glueContext)
job.init(args['JOB_NAME'], args)

## @type: DataSource
## @args: [database = "tb_houpa_logs_glue", table_name = "logs_09_15_15", transformation_ctx = "datasource0"]
## @return: datasource0
## @inputs: []
datasource0 = glueContext.create_dynamic_frame.from_catalog(database = "my_table", table_name = "my_log", transformation_ctx = "datasource0")

## @type: ApplyMapping
## @args: [mapping = [("event_type", "string", "event_type", "string"), ("event_timestamp", "timestamp", "event_timestamp", "timestamp"), ("arrival_timestamp", "long", "arrival_timestamp", "long"), ("event_version", "string", "event_version", "string"), ("application", "struct", "application", "struct"), ("client", "struct", "client", "struct"), ("device", "struct", "device", "struct"), ("session", "struct", "session", "struct"), ("attributes", "struct", "attributes", "struct"), ("metrics", "struct", "metrics", "struct"), ("endpoint", "struct", "endpoint", "struct"), ("awsaccountid", "string", "awsaccountid", "string"), ("client_context", "struct", "client_context", "struct"), ("monetization", "struct", "monetization", "struct")], transformation_ctx = "applymapping1"]
## @return: applymapping1
## @inputs: [frame = datasource0]
applymapping1 = ApplyMapping.apply(frame = datasource0, mappings = [("event_type", "string", "event_type", "string"), ("event_timestamp", "timestamp", "event_timestamp", "timestamp"), ("arrival_timestamp", "long", "arrival_timestamp", "long"), ("event_version", "string", "event_version", "string"), ("application", "struct", "application", "struct"), ("client", "struct", "client", "struct"), ("device", "struct", "device", "struct"), ("session", "struct", "session", "struct"), ("attributes", "struct", "attributes", "struct"), ("metrics", "struct", "metrics", "struct"), ("endpoint", "struct", "endpoint", "struct"), ("awsaccountid", "string", "awsaccountid", "string"), ("client_context", "struct", "client_context", "struct"), ("monetization", "struct", "monetization", "struct")], transformation_ctx = "applymapping1")

if applymapping1['event_type'] == 'search_active':
    event_type = 'search_active'
elif applymapping1['event_type'] == '_session.stop':
    event_type = '_session.stop'
else:
    event_type = 'testado'

## @type: DataSink
## @args: [connection_type = "s3", connection_options = {"path": "s3://houpa-event-types/teste/" + event_type}, format = "json", transformation_ctx = "datasink2"]
## @return: datasink2
## @inputs: [frame = applymapping1]
datasink2 = glueContext.write_dynamic_frame.from_options(frame = applymapping1, connection_type = "s3", connection_options = {"path": "s3://houpa-event-types/teste/" + event_type}, format = "json", transformation_ctx = "datasink2")

job.commit()


Когда я выполняю задание, возвращается эта ошибка:

'TypeError:' DynamicFrame'объект не может быть подписан'

1 Ответ

0 голосов
/ 21 сентября 2019

Все, что вам нужно, это разделить столбец event_type во время операции write ().

...