dartiga commented on issue #22543:
URL: https://github.com/apache/beam/issues/22543#issuecomment-1205529017
In order to fix your issue you might need to provide a valid GS bucket
(where you should have permissions for writing) when setting `tempLocation`
option.
So either you replace
```
options.setTempLocation(options.getTempRoot() + "/bq_it_temp");
```
with something like:
```
options.setTempLocation("gs://<bucket>/bq_it_temp");
```
Or you run your test specifying `--tempRoot=gs://<bucket>` in the command
line.
--
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]