From 9d51e466b1cf0abd4eaae80bbc40cf59c05651f4 Mon Sep 17 00:00:00 2001 From: Karan Kumar Date: Fri, 14 Oct 2022 09:06:55 +0530 Subject: [PATCH] Minor doc update for BroadcastTablesTooLarge (#13218) Minor doc update for `BroadcastTablesTooLarge`. Now the user will know what to do in case this fault is encountered. --- docs/multi-stage-query/reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/multi-stage-query/reference.md b/docs/multi-stage-query/reference.md index 62d51b42d62..eb70f143d4c 100644 --- a/docs/multi-stage-query/reference.md +++ b/docs/multi-stage-query/reference.md @@ -229,7 +229,7 @@ The following table describes error codes you may encounter in the `multiStageQu |Code|Meaning|Additional fields| |----|-----------|----| -| BroadcastTablesTooLarge | The size of the broadcast tables, used in right hand side of the joins, exceeded the memory reserved for them in a worker task. | `maxBroadcastTablesSize`: Memory reserved for the broadcast tables, measured in bytes. | +| BroadcastTablesTooLarge | The size of the broadcast tables, used in right hand side of the joins, exceeded the memory reserved for them in a worker task.

Try increasing the peon memory or reducing the size of the broadcast tables. | `maxBroadcastTablesSize`: Memory reserved for the broadcast tables, measured in bytes. | | Canceled | The query was canceled. Common reasons for cancellation:

| | | CannotParseExternalData | A worker task could not parse data from an external datasource. | | | ColumnNameRestricted| The query uses a restricted column name. | |