aloo
aloo

Reputation: 5389

Per row size limits in BigQuery data?

Is there a limit to the amount of data that can be put in a single row in BigQuery? Is there a limit on the size of a single column entry (cell)? (in bytes)

Is there a limitation when importing from Cloud Storage?

Upvotes: 4

Views: 4396

Answers (1)

Jordan Tigani
Jordan Tigani

Reputation: 26637

The largest size of a single row allowed is 1MB for CSV and 2 MB for JSON. There are no limits on field sizes, but obviously they must be under the row size as well.

These limits are described here.

Upvotes: 8

Related Questions