Reputation: 1156
Can job configuration be done to allow Large results using Synchronous big query ?
Upvotes: 1
Views: 711
Reputation: 207830
Normally, queries have a maximum response size. If you plan to run a query that might return larger results, you can set allowLargeResults
to true in your job configuration. Jobs are objects that manage asynchronous tasks. So this is not possible in synchronous mode.
Queries that return large results will take longer to execute, even if the result set is small, and are subject to additional limitations:
** Maximum response size: 128 MB compressed* (unlimited when returning large query results)
Upvotes: 3