Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing or Incomplete Data - Page Load Error #97

Open
atoboleski218 opened this issue Jul 27, 2023 · 1 comment
Open

Missing or Incomplete Data - Page Load Error #97

atoboleski218 opened this issue Jul 27, 2023 · 1 comment

Comments

@atoboleski218
Copy link

Product is utilized in the experience site to list out client cases. This last week we started to experience issues with cases missing from the list and or not loading the entire list. There is a new error in the browser that you will see about 1/4 of the way down. The reported errors are not aligned with a launch or SF update day. Thoughts?

I also noticed that when it would not correctly load it would show this in my browsers console:

aura:systemError from server (258)

{
"event": {
"descriptor": "markup://aura:systemError",
"attributes": {
"values": {
"message": "[AuraClientInputException from server] Unexpected request input. Expected input format: "This request exceeded the action limit of 250.".",
"showOverride": false
}
},
"eventDef": {
"descriptor": "markup://aura:systemError",
"t": "APPLICATION",
"xs": "G",
"a": {
"message": [
"message",
"aura://String",
"G",
false
],
_"error": [
"error",
"aura://String",
"G",
false
**_
],
"auraError": [
"auraError",
"aura://Object",
"I",
false,
null
],
"timestamp": [
"timestamp",
"aura://Integer",
"I",
false
],
"showOverride": [
"showOverride",
"aura://Boolean",
"I",
false,
false
]
}
}
},
"exceptionMessage": "[AuraClientInputException from server] Unexpected request input. Expected input format: "This request exceeded the action limit of 250.".",
"exceptionEvent": true
}

@zparrott
Copy link

zparrott commented Aug 1, 2023

I believe this error is occurring due to the newly reduced limits on actions from the aura and lightning components made in Summer '23 (release note). It previously allowed 2500 actions to be queued server side per request. That number has now been reduced to 250.

I believe the errors I am receiving are from calls to the server to generate the sdgDatagridCell component for each cell on my table. I noticed in my browser that a request had 258 actions defined in the json which returned the error "aura:systemError from server (258)" in the console. Looking at the actions being sent to the server they appear to be from this method in sdgDatagridCellHelper.js. The actions all looked very similar to this in the JSON:
{ "id": "477;a", "descriptor": "aura://ComponentController/ACTION$getComponent", "callingDescriptor": "markup://sortablegrid:sdgDatagridCell", "params": { "name": "markup://lightning:formattedText", "attributes": { "value": "Medium", "linkify": false, "aura:id": "findableAuraId" } }, "version": null }

In the documentation from Salesforce their suggested approach is to add the component it is generating as a dependency so the component can simply be built on the client side. Although there is also reference to not supporting this at nested component levels if the dependency isn't at the top component.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants