Slide 15
Slide 15 text
Query Examples
15
1:#Scramble creation for table
2: CREATE TABLE `dans-personal-gcloud.large_data.scramble_ts_date_2019_07_20`
3: PARTITION BY DATE(_COPY_PARTITIONTIME)
4: AS
5: SELECT partner, src, ts, id, id_type, lat, lon, alt, ha, va, speed, bearing,
signal_type, context, conn_type, ip, carrier, ssid, device_make, device_model, device_ua,
device_ver, device_lang, device_country, device_charging, user_id, user_id_type, meta_k,
meta_v, city, state, zipcode, county, msa, country, place_provider, place_id, place_name,
place_cat, place_dist, place_attr_type, _col_partition as _COPY_PARTITIONTIME
6: FROM (
7: SELECT partner, src, ts, id, id_type, lat, lon, alt, ha, va, speed, bearing,
signal_type, context, conn_type, ip, carrier, ssid, device_make, device_model, device_ua,
device_ver, device_lang, device_country, device_charging, user_id, user_id_type, meta_k,
meta_v, city, state, zipcode, county, msa, country, place_provider, place_id, place_name,
place_cat, place_dist, place_attr_type, _PARTITIONTIME as _col_partition, MOD(CAST(CONCAT('0x',
substr(TO_HEX(md5(id)), 1, 15)) as INT64), 1000000) / 1000000.0 as _col_hashed
8: FROM `dans-personal-gcloud.large_data.ts_date_2019_07_20`
9: WHERE _PARTITIONTIME >= TIMESTAMP('1970-01-01')
10: )
11: WHERE CASE WHEN _col_partition = TIMESTAMP('2019-08-20') THEN _col_hashed <
0.013998209069131694 END
12:
voycey@cloudshell:~/keebobq$ python3 keebo-test.py
[INFO] 2019-08-20 18:39:55,364 - Total bytes processed: 0
320684
1.48236083984375
Note to self:
To prepare for the demonstration re-load the data into BQ