djaneluz commented on issue #27138:
URL: https://github.com/apache/beam/issues/27138#issuecomment-1824899543
I'm facing the same error, my batch pipeline does as follows.
```
pipeline
.apply("GetBigQueryInfo", BigQueryIO.readTableRows()
.fromQuery(getDeltaQuery(projectId, firestoreStateDataset))
.usingStandardSql())
.apply("TableRowToWrite", ParDo.of(new TableRowToWriteFn(projectId,
databaseId)))
.apply(GroupByKey.create())
.apply(Values.create())
.apply(Flatten.iterables())
.apply("WriteToFirestore", FirestoreIO.v1().write()
.batchWrite()
.withRpcQosOptions(rpcQosOptions)
.build());
```
and the `WriteToFirestore` step fails wit the exception.
I'm using BEAM 2.52.0
--
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]