我试图构建一个TableRow
对象,最终将其写入BigQuery表,但是如果我在行中包含一个NullPointerException
值,则会得到一个null
。这是完整的堆栈跟踪:
Exception in thread "main" org.apache.beam.sdk.Pipeline$PipelineExecutionException: java.lang.NullPointerException
at org.apache.beam.runners.direct.DirectRunner$DirectPipelineResult.waitUntilFinish(DirectRunner.java:349)
at org.apache.beam.runners.direct.DirectRunner$DirectPipelineResult.waitUntilFinish(DirectRunner.java:319)
at org.apache.beam.runners.direct.DirectRunner.run(DirectRunner.java:210)
at org.apache.beam.runners.direct.DirectRunner.run(DirectRunner.java:66)
at org.apache.beam.sdk.Pipeline.run(Pipeline.java:311)
at org.apache.beam.sdk.Pipeline.run(Pipeline.java:297)
at dataflowsandbox.StarterPipeline.runTest(StarterPipeline.java:224)
at dataflowsandbox.StarterPipeline.main(StarterPipeline.java:83)
Caused by: java.lang.NullPointerException
at com.google.api.client.util.ArrayMap$Entry.hashCode(ArrayMap.java:419)
at java.util.AbstractMap.hashCode(AbstractMap.java:530)
at java.util.Arrays.hashCode(Arrays.java:4146)
at java.util.Objects.hash(Objects.java:128)
at org.apache.beam.sdk.util.WindowedValue$ValueInGlobalWindow.hashCode(WindowedValue.java:245)
at java.util.HashMap.hash(HashMap.java:339)
at java.util.HashMap.get(HashMap.java:557)
at org.apache.beam.repackaged.beam_runners_direct_java.com.google.common.collect.AbstractMapBasedMultimap.put(AbstractMapBasedMultimap.java:191)
at org.apache.beam.repackaged.beam_runners_direct_java.com.google.common.collect.AbstractSetMultimap.put(AbstractSetMultimap.java:130)
at org.apache.beam.repackaged.beam_runners_direct_java.com.google.common.collect.HashMultimap.put(HashMultimap.java:48)
at org.apache.beam.runners.direct.ImmutabilityCheckingBundleFactory$ImmutabilityEnforcingBundle.add(ImmutabilityCheckingBundleFactory.java:111)
at org.apache.beam.runners.direct.ParDoEvaluator$BundleOutputManager.output(ParDoEvaluator.java:242)
at org.apache.beam.repackaged.beam_runners_direct_java.runners.core.SimpleDoFnRunner.outputWindowedValue(SimpleDoFnRunner.java:219)
at org.apache.beam.repackaged.beam_runners_direct_java.runners.core.SimpleDoFnRunner.access$700(SimpleDoFnRunner.java:69)
at org.apache.beam.repackaged.beam_runners_direct_java.runners.core.SimpleDoFnRunner$DoFnProcessContext.output(SimpleDoFnRunner.java:517)
at org.apache.beam.repackaged.beam_runners_direct_java.runners.core.SimpleDoFnRunner$DoFnProcessContext.output(SimpleDoFnRunner.java:505)
at dataflowsandbox.StarterPipeline$6.procesElement(StarterPipeline.java:202)
Process finished with exit code 1
这是触发NullPointerException
的代码:
Pipeline p = Pipeline.create( options );
p.apply( "kicker", Create.of( "Kick!" ) )
.apply( "Read values", ParDo.of( new DoFn<String, TableRow>() {
@ProcessElement
public void procesElement( ProcessContext c ) {
TableRow row = new TableRow();
row.set( "ev_id", "2323423423" );
row.set( "customer_id", "111111" );
row.set( "org_id", null ); // Without this line, no NPE
c.output( row );
} }) )
.apply( BigQueryIO.writeTableRows()
.to( DATA_TABLE_OUT )
.withCreateDisposition( CREATE_NEVER )
.withWriteDisposition( WRITE_APPEND ) );
PipelineResult result = p.run();
我的实际代码稍微复杂一些,但是我应该能够捕获null
值,而不必在行中进行设置,但是也许我对TableRows
不太了解。
答案 0 :(得分:2)
例如,您可以提供表架构,而忽略设置字段的值。
表架构,其中org_id
是NULLABLE
:
List<TableFieldSchema> fields = new ArrayList<>();
fields.add(new TableFieldSchema().setName("ev_id").setType("STRING"));
fields.add(new TableFieldSchema().setName("customer_id").setType("STRING"));
fields.add(new TableFieldSchema().setName("org_id").setType("STRING").setMode("NULLABLE"));
TableSchema schema = new TableSchema().setFields(fields);
只需为该字段设置任何值(注释该行):
row.set( "ev_id", "2323423423" );
row.set( "customer_id", "111111" );
// row.set( "org_id", None ); // Without this line, no NPE
c.output( row );
在写步骤中传递表模式:
.apply( BigQueryIO.writeTableRows()
.to( DATA_TABLE_OUT )
.withSchema(schema)
.withCreateDisposition( CREATE_NEVER )
.withWriteDisposition( WRITE_APPEND ) );
一个NULL
值将被写入BigQuery:
答案 1 :(得分:2)
如果使用DirectRunner,请使用参数--enforceImmutability = false。它为我工作。 Dataflow Runner已解决了此问题,但是使用DirectRunner时,如果将null传递给tableRow.set(),则会遇到NPE。如果通过设置--enforceImmutability = false管道选项来关闭DirectRunner的ImmutabilityEnforcement检查,该错误将不再可见。
答案 2 :(得分:0)
放置一个临时值,而不是null或空字符串。据我所知,表行不接受空值。