Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
6.0.1
-
None
Description
import os
import pyarrow.dataset as ds
os.environ["OMP_NUM_THREADS"] = "1" # offending line
dfile = 'any.csv'
data = ds.dataset(dfile, format='csv')
rb_iter = iter(data.to_batches())
next(rb_iter) # hangs