Michal-Nguyen-airspace-intelligence commented on issue #31040:
URL: https://github.com/apache/beam/issues/31040#issuecomment-2072118260

   For quick patch we use following solution:
   ```
   class ReadAllFromTextNotSplittable(ReadAllFromText):
       """This class doesn't take advantage of splitting files in bundles 
because
       when doing so beam was taking compressed file size as reference 
resulting in
       reading only a fracture of uncompressed file"""
   
       def __init__(self, *args, **kwargs):
           super().__init__(*args, **kwargs)
           self._read_all_files._splittable = False
   ```


-- 
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]

Reply via email to