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
Simple bulk loading for binary doc values (elastic#137860)
Add bulk loading for binary doc values. This version of bulk loading likely isn't faster than loading single values, since it just loads single values in a loop. But it adds some wiring and a test. This will be followed up with a PR that loads chunks of adjacent byte arrays values.
Relates to elastic#135711
Copy file name to clipboardExpand all lines: server/src/main/java/org/elasticsearch/index/mapper/blockloader/docvalues/BytesRefsFromBinaryBlockLoader.java
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@
13
13
importorg.apache.lucene.index.LeafReaderContext;
14
14
importorg.apache.lucene.util.BytesRef;
15
15
importorg.elasticsearch.core.Nullable;
16
+
importorg.elasticsearch.index.mapper.BlockLoader;
16
17
17
18
importjava.io.IOException;
18
19
@@ -52,6 +53,17 @@ static class BytesRefsFromBinary extends BytesRefsFromCustomBinaryBlockLoader.Ab
0 commit comments