przste-go opened a new issue, #392:
URL: https://github.com/apache/arrow-go/issues/392

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   When reading parquet file after upgrading from 18.2.0 to 18.3.0 I get 
following error.
   `failed to read parquet record: definition levels exceeded upper bound: 500`
   Code sample:
   ```
        arrProps := pqarrow.ArrowReadProperties{
                Parallel:  false,
                BatchSize: int64(500),
        }
        fr, err := pqarrow.NewFileReader(rdr, arrProps, memory.DefaultAllocator)
           for rr.Next() {
           ...
           }
        if rr.Err() != nil && rr.Err() != io.EOF {
                return 0, fmt.Errorf("failed to read parquet record: %w", 
rr.Err())
        }
   ```
   Reader starts working again only after removing BatchSize parameter.
   
   ### Component(s)
   
   Parquet


-- 
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: issues-unsubscr...@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to