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