-
Notifications
You must be signed in to change notification settings - Fork 0
/
Country_beam.py
80 lines (58 loc) · 2.7 KB
/
Country_beam.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 logging
import apache_beam as beam
from apache_beam.io import ReadFromText
from apache_beam.io import WriteToText
import datetime
import pandas as pd
class FilterDateFn(beam.DoFn):
def process(self, element):
country_record = element
#establish earliest acceptable date to compare to
#obtained from earliest date from Date entity table
cutoffDate = datetime.date(1755,9,1)
#get the date attribute
dt = country_record.get('dt')
#create date object from dt to compare to cutoff
formatted_dt = pd.to_datetime(dt)
#add record if after cutoffDate
if formatted_dt > cutoffDate:
return [country_record]
#return empty list if before cutoff date
return []
def run():
PROJECT_ID = 'electric-spark-266716' # change to your project id
# Project ID is required when using the BQ source
options = {
'project': PROJECT_ID
}
opts = beam.pipeline.PipelineOptions(flags=[], **options)
# Create beam pipeline using local runner
p = beam.Pipeline('DirectRunner', options=opts)
#create query to select all elements for cleansing
sql = 'SELECT dt, AverageTemperature, AverageTemperatureUncertainty, Country \
FROM kaggle_modeled.Country as x limit 20'
bq_source = beam.io.BigQuerySource(query=sql, use_standard_sql=True)
#read desired table from BigQuery
query_results = p | 'Read from BigQuery' >> beam.io.Read(bq_source)
#write inputs to input.txt
query_results | 'Write input' >> WriteToText('input_country.txt')
# apply ParDo to filter out dates
formatted_country_pcoll = query_results | 'Filter Dates' >> beam.ParDo(FilterDateFn())
# display filtered countries
formatted_country_pcoll | 'Write filtered dates' >> WriteToText('output_country.txt')
#create new table in BigQuery
dataset_id = 'kaggle_modeled'
table_id = 'Country_Beam'
schema_id = 'dt:DATE,AverageTemperature:FLOAT,AverageTemperatureUncertainty:FLOAT,Country:STRING'
# write PCollection to new BQ table
formatted_country_pcoll | 'Write BQ table' >> beam.io.WriteToBigQuery(dataset=dataset_id,
table=table_id,
schema=schema_id,
project=PROJECT_ID,
create_disposition=beam.io.BigQueryDisposition.CREATE_IF_NEEDED,
write_disposition=beam.io.BigQueryDisposition.WRITE_TRUNCATE)
result = p.run()
result.wait_until_finish()
if __name__ == '__main__':
logging.getLogger().setLevel(logging.ERROR)
run()