118.8. 模板表
参考资料 :https://cloud.google.com/bigquery/streaming-data-into-bigquery#template-tables
templated 表可以使用 GoogleBigQueryConstants.TABLE_SUFFIX
标头来指定。
例如,以下路由将创建表并每天插入记录分片:
from("direct:start") .header(GoogleBigQueryConstants.TABLE_SUFFIX, "_${date:now:yyyyMMdd}") .to("google-bigquery:sampleDataset:sampleTable")
请注意,建议在这个用例中使用分区。