in paimon-python-java-bridge/src/main/java/org/apache/paimon/python/ParallelBytesReader.java [64:70]
public ParallelBytesReader(TableRead tableRead, RowType rowType, int threadNum) {
this.tableRead = tableRead;
this.rowType = rowType;
this.threadNum = threadNum;
this.iterators = new ConcurrentLinkedQueue<>();
this.arrowFormatWriters = new ConcurrentLinkedQueue<>();
}