Skip to content

Commit

Permalink
Set max allocations to 32 in defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkyle committed Oct 24, 2024
1 parent 8a3540f commit 7dc637b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ private List<Model> defaultConfigs(boolean useLinuxOptimizedModel) {
null,
1,
useLinuxOptimizedModel ? ELSER_V2_MODEL_LINUX_X86 : ELSER_V2_MODEL,
new AdaptiveAllocationsSettings(Boolean.TRUE, 0, 8)
new AdaptiveAllocationsSettings(Boolean.TRUE, 0, 32)
),
ElserMlNodeTaskSettings.DEFAULT,
null // default chunking settings
Expand All @@ -872,7 +872,7 @@ private List<Model> defaultConfigs(boolean useLinuxOptimizedModel) {
null,
1,
useLinuxOptimizedModel ? MULTILINGUAL_E5_SMALL_MODEL_ID_LINUX_X86 : MULTILINGUAL_E5_SMALL_MODEL_ID,
new AdaptiveAllocationsSettings(Boolean.TRUE, 0, 8)
new AdaptiveAllocationsSettings(Boolean.TRUE, 0, 32)
),
null // default chunking settings
);
Expand Down

0 comments on commit 7dc637b

Please sign in to comment.