该文档证明可以将超过 7 天(且不超过 1 年)的数据插入分区表。
但每当我尝试使用 Go BigQuery Client 流式传输一个月前的数据时,它都会返回一个错误:“您只能流式传输到相对于当前日期过去 7 天和未来 3 天内的日期范围。”
如何使用 Go 客户端流式传输超过 7 天的数据?
编辑 1:这是表模式:
bigquery.TableMetadata{
Schema: bigquery.Schema{
{Name: "page_id", Required: true, Type: bigquery.IntegerFieldType},
{Name: "user_id", Required: false, Type: bigquery.IntegerFieldType},
{Name: "hit_time", Required: true, Type: bigquery.TimestampFieldType},
},
TimePartitioning: &bigquery.TimePartitioning{Field: "hit_time", RequirePartitionFilter: true},
}
Smart猫小萌
相关分类