-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjob_params.json
42 lines (41 loc) · 1 KB
/
job_params.json
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
{
"arguments" : [
{
"name" : "my.recipe",
"type" : "array",
"value" : [
"parse-as-csv :body ',' true",
"drop :body",
"set-type :row_id integer",
"set-type :abv float",
"set-type :ibu float"
]
},
{
"name" : "bq.dataset",
"value" :"demo_data"
},
{
"name" : "input.path",
"value" : "gs://test-datalake-22222/beers.csv"
},
{
"name" : "bq.table",
"value" : "my_table_macros"
},
{
"name" : "my.schema",
"type" : "schema",
"value" : [
{"name": "row_id", "type": "int", "nullable" : true},
{"name": "abv", "type": "float", "nullable" : true},
{"name": "ibu", "type": "float", "nullable" : true},
{"name": "id", "type": "string", "nullable" : true},
{"name": "name", "type": "string", "nullable" : true},
{"name": "style", "type": "string", "nullable" : true},
{"name": "brewery_id", "type": "string", "nullable" : true},
{"name": "ounces", "type": "string", "nullable" : true}
]
}
]
}