techdocsmith commented on code in PR #13846:
URL: https://github.com/apache/druid/pull/13846#discussion_r1123720294


##########
docs/multi-stage-query/reference.md:
##########
@@ -691,7 +691,7 @@ The following table describes error codes you may encounter 
in the `multiStageQu
 | <a name="error_TooManyColumns">`TooManyColumns`</a> | Exceeded the maximum 
number of columns for a stage (2,000 columns). | `numColumns`: The number of 
columns requested.<br /><br />`maxColumns`: The limit on columns which was 
exceeded. |
 | <a name="error_TooManyWarnings">`TooManyWarnings`</a> | Exceeded the maximum 
allowed number of warnings of a particular type. | `rootErrorCode`: The error 
code corresponding to the exception that exceeded the required limit. <br /><br 
/>`maxWarnings`: Maximum number of warnings that are allowed for the 
corresponding `rootErrorCode`. |
 | <a name="error_TooManyWorkers">`TooManyWorkers`</a> | Exceeded the maximum 
number of simultaneously-running workers. See the [Limits](#limits) table for 
more details. | `workers`: The number of simultaneously running workers that 
exceeded a hard or soft limit. This may be larger than the number of workers in 
any one stage if multiple stages are running simultaneously. <br /><br 
/>`maxWorkers`: The hard or soft limit on workers that was exceeded. If this is 
lower than the hard limit (1,000 workers), then you can increase the limit by 
adding more memory to each task. |
-| <a name="error_NotEnoughMemory">`NotEnoughMemory`</a> | Insufficient memory 
to launch a stage. | `serverMemory`: The amount of memory available to a single 
process.<br /><br />`serverWorkers`: The number of workers running in a single 
process.<br /><br />`serverThreads`: The number of threads in a single process. 
|
+| <a name="error_NotEnoughMemory">`NotEnoughMemory`</a> | Insufficient memory 
to launch a stage. | `suggestedServerMemory`: Suggested amount of memory, in 
bytes, that should be given to the process. <br /><br />`serverMemory`: The 
amount of memory, in bytes, available to a single process.<br /><br 
/>`usableMemory`: The amount of memory, in bytes, usable by a single 
process.<br /><br />`serverWorkers`: The number of workers running in a single 
process.<br /><br />`serverThreads`: The number of threads in a single process. 
|

Review Comment:
   ```suggestion
   | <a name="error_NotEnoughMemory">`NotEnoughMemory`</a> | Insufficient 
memory to launch a stage. | `suggestedServerMemory`: Suggested number of bytes 
in memory to allocate to a given process. <br /><br />`serverMemory`: The 
suggested number of bytes in memory available to a single process.<br /><br 
/>`usableMemory`: The number of usable bytes in memory for a single process.<br 
/><br />`serverWorkers`: The number of workers running in a single process.<br 
/><br />`serverThreads`: The number of threads in a single process. |
   ```
   style suggestion



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to