-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccelerometer_landing_to_trusted.py
80 lines (74 loc) · 2.59 KB
/
accelerometer_landing_to_trusted.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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
args = getResolvedOptions(sys.argv, ["JOB_NAME"])
sc = SparkContext()
glueContext = GlueContext(sc)
spark = glueContext.spark_session
job = Job(glueContext)
job.init(args["JOB_NAME"], args)
# Script generated for node Customer Trusted
CustomerTrusted_node1698829248874 = glueContext.create_dynamic_frame.from_options(
format_options={"multiline": False},
connection_type="s3",
format="json",
connection_options={
"paths": ["s3://whiterose-lake-house/customer/trusted/"],
"recurse": True,
},
transformation_ctx="CustomerTrusted_node1698829248874",
)
# Script generated for node Accelerometer Landing
AccelerometerLanding_node1698829183283 = glueContext.create_dynamic_frame.from_options(
format_options={"multiline": False},
connection_type="s3",
format="json",
connection_options={
"paths": ["s3://whiterose-lake-house/accelerometer/landing/"],
"recurse": True,
},
transformation_ctx="AccelerometerLanding_node1698829183283",
)
# Script generated for node Customer Privacy Filter
CustomerPrivacyFilter_node1698829501219 = Join.apply(
frame1=AccelerometerLanding_node1698829183283,
frame2=CustomerTrusted_node1698829248874,
keys1=["user"],
keys2=["email"],
transformation_ctx="CustomerPrivacyFilter_node1698829501219",
)
# Script generated for node Drop Fields
DropFields_node1699024055129 = DropFields.apply(
frame=CustomerPrivacyFilter_node1698829501219,
paths=[
"customername",
"email",
"phone",
"birthday",
"serialnumber",
"registrationdate",
"lastupdatedate",
"sharewithresearchasofdate",
"sharewithpublicasofdate",
"sharewithfriendsasofdate",
],
transformation_ctx="DropFields_node1699024055129",
)
# Script generated for node Accelrometer Trusted Zone
AccelrometerTrustedZone_node1698829985944 = glueContext.getSink(
path="s3://whiterose-lake-house/accelerometer/trusted/",
connection_type="s3",
updateBehavior="LOG",
partitionKeys=[],
enableUpdateCatalog=True,
transformation_ctx="AccelrometerTrustedZone_node1698829985944",
)
AccelrometerTrustedZone_node1698829985944.setCatalogInfo(
catalogDatabase="whiterose", catalogTableName="accelerometer_trusted"
)
AccelrometerTrustedZone_node1698829985944.setFormat("json")
AccelrometerTrustedZone_node1698829985944.writeFrame(DropFields_node1699024055129)
job.commit()