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
#58885 introduced write limits, this might effect transform bulk indexing.
At the moment index is retried 10 times and finally goes into FAILED state. There is no differentiation whether indexing fails due to the memory limit or due to another failure. Right now, we assume a bulk indexing error is intermittent.
A possible solution could be to do it similar to the search side, we check the failure and e.g. decrease the page size in case of a CBE. We could do similar in this case.
Severity: As long as the user does not change the default page size (500) it seems unlikely, that we hit this error, however the user can change the page size to 10k (in future 65k). As the user can lower the page size, there is a workaround for this problem.
The text was updated successfully, but these errors were encountered:
#58885 introduced write limits, this might effect transform bulk indexing.
At the moment index is retried 10 times and finally goes into
FAILED
state. There is no differentiation whether indexing fails due to the memory limit or due to another failure. Right now, we assume a bulk indexing error is intermittent.A possible solution could be to do it similar to the search side, we check the failure and e.g. decrease the page size in case of a CBE. We could do similar in this case.
Severity: As long as the user does not change the default page size (500) it seems unlikely, that we hit this error, however the user can change the page size to 10k (in future 65k). As the user can lower the page size, there is a workaround for this problem.
The text was updated successfully, but these errors were encountered: