Configuring the Parquet Block Size
The default value for the store.parquet.block-size
parameter is
268435456 (256 MB), the same size as filesystem chunk sizes. In
previous versions of Drill, the default value was 536870912 (512 MB).
ALTER SYSTEM SET `store.parquet.block-size` = <value>;
[ALTER SESSION] SET `store.parquet.block-size` = <value>
<DRILL_HOME>/conf/drill-override.conf
file, as
shown:drill.exec: {
...
options.store.parquet.block-size = 268435456
}
For information about setting the filesystem chunk size, see Setting Chunk Size.