You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: weather_mv/README.md
+8-4
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,6 @@ Weather Mover loads weather data from cloud storage into [Google BigQuery](https
11
11
***Parallel Upload**: Each file will be processed in parallel. With Dataflow autoscaling, even large datasets can be
12
12
processed in a reasonable amount of time.
13
13
14
-
> Note: Data is written into BigQuery using streaming inserts. It may take [up to 90 minutes](https://cloud.google.com/bigquery/streaming-data-into-bigquery#dataavailability)
15
-
> for buffers to persist into storage. However, weather data will be available for querying immediately.
16
-
17
14
## Usage
18
15
19
16
```
@@ -48,6 +45,7 @@ _Usage Examples_:
48
45
```bash
49
46
weather-mv --uris "gs://your-bucket/*.nc" \
50
47
--output_table $PROJECT.$DATASET_ID.$TABLE_ID \
48
+
--temp_location "gs://$BUCKET/tmp"\ # Needed for batch writes to BigQuery
51
49
--direct_num_workers 2
52
50
```
53
51
@@ -57,6 +55,7 @@ Upload only a subset of variables:
57
55
weather-mv --uris "gs://your-bucket/*.nc" \
58
56
--output_table $PROJECT.$DATASET_ID.$TABLE_ID \
59
57
--variables u10 v10 t
58
+
--temp_location "gs://$BUCKET/tmp" \
60
59
--direct_num_workers 2
61
60
```
62
61
@@ -66,6 +65,7 @@ Upload all variables, but for a specific geographic region (for example, the con
0 commit comments