You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I want to know what is the meaning of the criSize variable,
I use csv-writer write data(5 column, about 2KB per row), when I write with pw.Write(or WriteString), common.Sizeof(val) func return 20(because slice has 5 interface, Sizeof(interface) is 4). When write 256MB data, I expected 2 row group. However, there's only one because pw.ObjsSize is smaller than criSize, just flush once when WriteStop.
PageSize: 1M
RowGroup: Default(128M)
The text was updated successfully, but these errors were encountered:
* better estimation of the size of decode output buffers
* detect whether some encodings support decoding values in place
* fix page size
* chunk large writes of rows
* support configuring the sorting buffer pool
* rename: PageBufferPool => BufferPool
* let io.Seeker handle negative offsets
* rename: pageBuffer => memoryBuffer
Hello, I want to know what is the meaning of the criSize variable,
I use csv-writer write data(5 column, about 2KB per row), when I write with pw.Write(or WriteString), common.Sizeof(val) func return 20(because slice has 5 interface, Sizeof(interface) is 4). When write 256MB data, I expected 2 row group. However, there's only one because pw.ObjsSize is smaller than criSize, just flush once when WriteStop.
PageSize: 1M
RowGroup: Default(128M)
The text was updated successfully, but these errors were encountered: