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
Copy file name to clipboardExpand all lines: x-pack/plugin/inference/src/main/java/org/elasticsearch/xpack/inference/action/filter/ShardBulkInferenceActionFilter.java
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -637,7 +637,9 @@ private boolean incrementIndexingPressure(IndexRequestWithIndexingPressure index
637
637
addInferenceResponseFailure(
638
638
itemIndex,
639
639
newInferenceException(
640
-
"Insufficient memory available to update source on document [" + indexRequest.getIndexRequest().id() + "]",
640
+
"Unable to insert inference results into document ["
641
+
+ indexRequest.getIndexRequest().id()
642
+
+ "] due to memory pressure. Please retry the bulk request with fewer documents or smaller document sizes.",
Copy file name to clipboardExpand all lines: x-pack/plugin/inference/src/test/java/org/elasticsearch/xpack/inference/action/filter/ShardBulkInferenceActionFilterTests.java
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -709,7 +709,10 @@ public void testIndexingPressureTripsOnInferenceRequestGeneration() throws Excep
0 commit comments