Warning while loading larger amount of data.

0
Hi, I am loading more than 9000 records into my application by using excel importer within persistent entity. After that, I am loading this data into non persistent entity for my calculation at that time I am facing below warning message into my console:  And also on my output screen I am facing below error message: How should I use my large amount of data into my application?
asked
1 answers
1

The warning is just that, a warning about the amount of data that you are storing in the state (read browser), handling the data in chunks would be a solution for this. The error is something else, not related directly to the state warning, did you see any additional errors in the log, maybe something is happening in the processing or the process is synchronous and taking too long.

answered