有没有办法使用创建日期分区表Apache Beam BigQueryIO
,换句话说,有没有办法为尚未创建的表使用分区装饰器?
我知道我可以先创建一个表,然后我可以在我的代码中使用分区装饰器,但由于我动态确定TableDestination
行的 from 字段,我无法提前创建这些表。
我的代码是这样的:
rows.apply("Write rows",
BigQueryIO.writeTableRows()
.to(new SerializableFunction<ValueInSingleWindow<TableRow>, TableDestination>() {
@Override
public TableDestination apply(ValueInSingleWindow<TableRow> value) {
TableRow t = value.getValue();
String tableName = ... // get from the fields of table row
String partition = ... // get the date part that will be used for decorator
TableDestination td = new TableDestination(
"project-id:dataset-id." + tableName + "$" + partition, "");
return td;
}
}).withSchema(someSchema)
.withWriteDisposition(BigQueryIO.Write.WriteDisposition.WRITE_APPEND)
.withCreateDisposition(BigQueryIO.Write.CreateDisposition.CREATE_IF_NEEDED));
有了这个,它尝试创建一个表,project-id:dataset-id.tableName$partition
并抱怨$
不能在表名中使用。