You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The UI becomes unresponsive when loading a bucket with many objects (100K+). I believe this is because the app is loading all the objects in the bucket in batches of 1000. You may consider paginating the calls to S3, fetching only DataTables pageLength number of objects at a time. Subsequent batches can be fetch by triggering the page event. I believe fnDrawCallback and fnInfoCallback are also called when the next button is clicked.
The UI becomes unresponsive when loading a bucket with many objects (100K+). I believe this is because the app is loading all the objects in the bucket in batches of 1000. You may consider paginating the calls to S3, fetching only DataTables
pageLength
number of objects at a time. Subsequent batches can be fetch by triggering thepage
event. I believefnDrawCallback
andfnInfoCallback
are also called when the next button is clicked.https://datatables.net/reference/event/page
http://legacy.datatables.net/usage/callbacks#fnDrawCallback
http://legacy.datatables.net/usage/callbacks#fnInfoCallback
The text was updated successfully, but these errors were encountered: