Calling all Racers for the Alteryx Grand Prix! It's time to rev your engines and race to the stage at Inspire! Sign up here.

Alteryx Server Knowledge Base

Definitive answers from Server experts.

Error: "There was an unknown error" - Document 0 is too large for the cluster

miteshnarottam
Alteryx
Alteryx
Created

Issue

 

The following error is seen after job execution: "There was an unknown error executing the application, The engine reported status Error".

image.png

This error is generic - this article highlights an issue related to the MongoDB Document size. The following error can be found in Service logs and application event viewer:

Mongo error: "Document 0 is too large for the cluster. Document is 28596409 bytes, max is 16777216.: generic server error" code: <mongodb:18>
Specifically in this case you will notice the workflow actually completes successfully (for example, you confirm the output of the file is generated successfully or the table you are writing to is updated successfully), so this error is actually a false error.
 

Environment Details

 
  • Alteryx Server
    • All versions


Cause


MongoDB has a maximum document size of 16 megabytes (Please review MongoDB Limits and Threshold explained here). When the Workflow Results of a workflow run create a document larger than 16 megabytes, Alteryx is unable to write the messages back into the database and you will see this error.
Common reasons for this: Workflows containing multiple complex macros and field conversions can increase the document size if "show macro messages" and "conversion errors" are enabled.



Resolution


Solution A


Reduce or disable conversion errors (Conversion errors help documentation here )
  1. Open the problem workflow designer
  2. Under Workflow -Configuration, select Runtime
  3. Either Disable or Reduce conversion errors
 

Solution B


If the workflow contains multiple complex macros try disabling "Show All Macro Messages". 
  1. Open the problem workflow in Designer
  2. Under Workflow -Configuration, select Runtime
  3. Either Uncheck "Show All Macro Messages"

Solution C


If workflow contains union tools, try choosing "Ignore - Continue Processing Records".
  1. Open the problem workflow in Designer
  2. Click on the union tool(s)
  3. Under When Fields Differ, select "Ignore - Continue Processing Records"
ignore-union.png


    Additional Resources