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
Is your feature request related to a problem? Please describe.
Currently, the tables is limited to returning 65535 entries per table due to PostgreSQL.
This results in larger tables being unviewable in the browser.
Describe the solution you'd like
Implement batch querying with a limit that respects PostgreSQL's query limitations.
Instead of attempting to query the entire table at once, it should rather index how many rows are in the database to make up the pagination number, and then query the entries related to that page.
This will result in less spontanious resource usage for the server, and prevent breaching the query limit.
Describe alternatives you've considered
Haven't tried any solutions other than doing limited API calls through external applications. This is in reference to using Tables on the WebUI of Nextcloud. Only workaround is creating multiple views, one for every 65535 table entries.
Additional context
No response
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently, the tables is limited to returning 65535 entries per table due to PostgreSQL.
This results in larger tables being unviewable in the browser.
Describe the solution you'd like
Implement batch querying with a limit that respects PostgreSQL's query limitations.
Instead of attempting to query the entire table at once, it should rather index how many rows are in the database to make up the pagination number, and then query the entries related to that page.
This will result in less spontanious resource usage for the server, and prevent breaching the query limit.
Describe alternatives you've considered
Haven't tried any solutions other than doing limited API calls through external applications. This is in reference to using Tables on the WebUI of Nextcloud. Only workaround is creating multiple views, one for every 65535 table entries.
Additional context
No response
The text was updated successfully, but these errors were encountered: