LoginSignup
0
1

More than 5 years have passed since last update.

BigQueryのstandardSQLでexportしようとしたらMaterialize output size (xxxxx) exceeded size limit (134217728)

Posted at

前提

結論

large_results: trueオプションをつければいい


query_job = @api.query_job sql,
       table: result_table,
       standard_sql: true,
       write: 'truncate',
       create: 'never',
       large_results: true, <- これ
       params: params

はまりどこ

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1