forked from mattyweb/prefect-poc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
60 lines (51 loc) · 1.06 KB
/
config.toml
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
# mode can be "full" (uses datasets for "data.years") or "update" (uses "data.since" as start across all datasets)
mode = "update"
# determines whether Dask should be used to parallelize the flow run
dask = true
# (!) WARNING: setting this to "true" will wipe out whatever is in the target table (e.g. 'requests')
reset_db = false
[api]
server = "http://localhost:5000"
[socrata]
host = "data.lacity.org"
token = "6b5lwk1jHSQTgx7PAVFKOOdt2"
[socrata.datasets]
"2020" = "rq3b-xjk8"
"2019" = "pvft-t768"
"2018" = "h65r-yf5i"
"2017" = "d4vt-q4t5"
"2016" = "ndkd-k878"
"2015" = "ms7h-a45h"
[data]
key = "srnumber"
target = "requests"
years = [
"2020"
]
since = "2020-09-20T01:39:13"
[data.fields]
srnumber = ""
requesttype = ""
status = ""
actiontaken = ""
createddate = ""
updateddate = ""
servicedate = ""
closeddate = ""
requestsource = ""
anonymous = ""
mobileos = ""
owner = ""
nc = "integer"
ncname = ""
policeprecinct = ""
apc = ""
assignto = ""
cd = "integer"
cdmember = ""
address = ""
zipcode = ""
latitude = ""
longitude = ""
# [flows]
# checkpointing = false