BigQuery writeTableRows Always writing to buffer
问题 We are trying to write to Big Query using Apache Beam and avro. The following seems to work ok:- p.apply("Input", AvroIO.read(DataStructure.class).from("AvroSampleFile.avro")) .apply("Transform", ParDo.of(new CustomTransformFunction())) .apply("Load", BigQueryIO.writeTableRows().to(table).withSchema(schema)); We then tried to use it in the following manner to get data from the Google Pub/Sub p.begin() .apply("Input", PubsubIO.readAvros(DataStructure.class).fromTopic("topicName")) .apply(