Download multiple files

The following works as expected.

./bq --nosync load -F '^' --max_bad_record = 30000 myvserv.xa one.txt ip: string, cb: string, country: string, telco_name: string, ...

1) But how can I send two csv files one.txt and two.txt to the same command?

2) I can not file cat and then pipe | for the bg command?

3) What does the nose mean?

+3
source share
2 answers
  • Unfortunately, you cannot (yet) download two files with the same command; you will have to run bq twice. (If you are downloading data from Google Cloud Storage, you can specify multiple gs: // URLs, separated by commas.)

  • No, bq does not support reading download data from stdin, although this is a great idea for a future version.

  • "bq load", bq , . --nosync, , . ( , "bq wait".)

+5

1), , . - , , , , , .

0

All Articles