steveniemitz commented on issue #25794: URL: https://github.com/apache/beam/issues/25794#issuecomment-1472111525
I think the issue is that beam is trying to decompress the `.gz` suffixed file, even though its not actually gzipped. When you do `FileIO.readMatches` you can try using [withCompression(Compression.UNCOMPRESSED)](https://beam.apache.org/releases/javadoc/2.45.0/org/apache/beam/sdk/io/FileIO.ReadMatches.html#withCompression-org.apache.beam.sdk.io.Compression-) to disable the automatic decompression. -- 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]
