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