Skip to content

Commit df4c2b9

Browse files
committed
fix max batch_size value
1 parent 06a96e9 commit df4c2b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/inference/src/main/java/org/elasticsearch/xpack/inference/action/filter/ShardBulkInferenceActionFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public class ShardBulkInferenceActionFilter implements MappedActionFilter {
9494
"indices.inference.batch_size",
9595
DEFAULT_BATCH_SIZE,
9696
ByteSizeValue.ONE,
97-
ByteSizeValue.ofBytes(100),
97+
ByteSizeValue.ofMb(100),
9898
Setting.Property.NodeScope,
9999
Setting.Property.OperatorDynamic
100100
);

0 commit comments

Comments
 (0)