ahmedabu98 commented on issue #32746:
URL: https://github.com/apache/beam/issues/32746#issuecomment-2406812531
Currently running a pipeline to try to repro your error:
```java
Map<String, Object> config =
ImmutableMap.<String, Object>builder()
.put("table", table)
.put("catalog_name", "test")
.put("catalog_properties",
ImmutableMap.<String, String>builder()
.put("warehouse", warehouse)
.put("gcp_project",
"apache-beam-testing")
.put("gcp_location", "us-central1")
.put("catalog-impl",
"org.apache.iceberg.gcp.bigquery.BigQueryMetastoreCatalog")
.build())
.put("triggering_frequency_seconds", 5)
.build();
Schema taxiSchema =
Schema.builder()
.addStringField("ride_id")
.addInt32Field("point_idx")
.addDoubleField("latitude")
.addDoubleField("longitude")
.addStringField("timestamp")
.addDoubleField("meter_reading")
.addDoubleField("meter_increment")
.addStringField("ride_status")
.addInt32Field("passenger_count")
.build();
Pipeline q = Pipeline.create(options);
q
.apply(PubsubIO.readStrings().fromTopic("projects/pubsub-public-data/topics/taxirides-realtime"))
.apply(JsonToRow.withSchema(taxiSchema))
.apply(Managed.write(Managed.ICEBERG).withConfig(config));
q.run();
```
Will let it run for some time. The throughput is sitting at ~2k rows per
second.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]