Skip to content

Commit f10268d

Browse files
authored
Fix passing large numeric block size (elastic#139168)
* Enable large numeric blocks for TSDB * test fix * fix sync issue * comments * fix test * Fix passing large numeric block size
1 parent fd24c9d commit f10268d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/src/main/java/org/elasticsearch/index/codec/tsdb/es819/ES819TSDBDocValuesFormat.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,8 @@ public ES819TSDBDocValuesFormat(int numericBlockShift) {
154154
ORDINAL_RANGE_ENCODING_MIN_DOC_PER_ORDINAL,
155155
OPTIMIZED_MERGE_ENABLE_DEFAULT,
156156
BinaryDVCompressionMode.COMPRESSED_ZSTD_LEVEL_1,
157-
true
157+
true,
158+
numericBlockShift
158159
);
159160
}
160161

0 commit comments

Comments
 (0)