We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This basic code fails on MS Windows
.apply(TextIO.write().to("anything") .withWindowedWrites() .withNumShards(1)
with
java.nio.file.InvalidPathException: Illegal char <:> at index 16: anything2021-12-31T23:00:00.000Z....
because the default FilenamePolicy uses a simple Instant format for Beam Windows that includes ":" which are illegal in MS Windows paths
Imported from Jira BEAM-13720. Original Jira may contain additional context. Reported by: Gol.
The text was updated successfully, but these errors were encountered:
.take-issue
Sorry, something went wrong.
This is a tricky scenario -- I don't think we can simply change the format as it could be a breaking change for existing non-Windows users?
DwaipayanSom
No branches or pull requests
This basic code fails on MS Windows
.apply(TextIO.write().to("anything")
.withWindowedWrites()
.withNumShards(1)
with
java.nio.file.InvalidPathException: Illegal char <:> at index 16: anything2021-12-31T23:00:00.000Z....
because the default FilenamePolicy uses a simple Instant format for Beam Windows that includes ":" which are illegal in MS Windows paths
Imported from Jira BEAM-13720. Original Jira may contain additional context.
Reported by: Gol.
The text was updated successfully, but these errors were encountered: