damccorm opened a new issue, #21232:
URL: https://github.com/apache/beam/issues/21232

   The JVM RowCoder strips trailing 0s from the null-value bitmap, while both 
python and go expect all bits to be present in the encoded bitmap.  This causes 
index-out-of-range errors when trying to decode a row encoded on the JVM in 
other languages in some circumstances.
   
   For example, given a Row with 10 nullable fields, if the first 8 are null 
and the last two are set, the row will fail to decode in python, because the 
nullable bitmap will only have 1 byte, but the python coder expects 2.
   
   As discussed in the thread, the best solution here is probably to change the 
python (and go) coders to accept truncated nullable bitmaps.
   
    
   
   More discussion here:
   
   
[https://lists.apache.org/thread.html/r2f148e29902bda8bb0ff7106fffb8a5494295450827ad7fd17289383%40%3Cdev.beam.apache.org%3E](https://lists.apache.org/thread.html/r2f148e29902bda8bb0ff7106fffb8a5494295450827ad7fd17289383%40%3Cdev.beam.apache.org%3E)
   
   Imported from Jira 
[BEAM-13081](https://issues.apache.org/jira/browse/BEAM-13081). Original Jira 
may contain additional context.
   Reported by: SteveNiemitz.


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