LAE

Welcome to the LAE community!  Please feel free to start a discussion in the discussion tab or join in a conversation.

Discussions

Members

Resources

Events

 View Only
  • 1.  LAE Error Code: brain.nodes.sfdc.requestError

    Employee
    Posted 10-19-2015 08:05

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: lae_errors

    This post has been created for discussion of error code brain.nodes.sfdc.requestError.

    Please reply to this thread with any description of error conditions, diagnostic information, and recommended resolutions.


  • 2.  RE: LAE Error Code: brain.nodes.sfdc.requestError

    Employee
    Posted 07-14-2017 10:19

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: Narenso

    Originally posted by: lae_errors
    					

    This post has been created for discussion of error code brain.nodes.sfdc.requestError.

    Please reply to this thread with any description of error conditions, diagnostic information, and recommended resolutions.
    Any idea about this error? Is the Lavastorm Get for Salesforce node has limitation for columns? I tried to pull around 800 columns from Opportunity object.
    When I limit it around 500 its working fine.

    Error occurred during executing request: Unexpected error: 413 Request Entity Too Large


  • 3.  RE: LAE Error Code: brain.nodes.sfdc.requestError

    Employee
    Posted 07-14-2017 12:42

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: stonysmith

    Depending upon your configuration, one of the columns could contain data that is too large (such as PDFs or Images).. you might be hitting that problem.


  • 4.  RE: LAE Error Code: brain.nodes.sfdc.requestError

    Employee
    Posted 07-17-2017 02:24

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: awilliams1024

    Another reason may be that you are hitting the limit on the length of the SOQL statement:

    • The maximum query length on REST is bound by the URL limit imposed by our app servers, around 20,000 characters.
    • The maximum query length is likely to be smaller than 20,000 characters because SOQL queries get translated and augmented with more information needed by the server side to execute the query (e.g. user name, org, complex formulas showing relationships etc.)

    If you need to have all 800 columns maybe you could modify your data flow to pull subsets of the data in two separate queries and then join the data sets together using a unique identifier.