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
If a query produces many results (where 'many' probably should be a configurable value in the qonfig.json), allow the query to keep running but don't display all of the results. Goal is to prevent excessive browser memory usage. Instead, provide a show all affordance if the user really does want to re-run the query and render all of the results in browser
The text was updated successfully, but these errors were encountered:
Will work fine with Table or Text rendering.
With JSON:
Using a JS library that allows timeouts with partial download we could parse the returned JSON string first and if errors then try to fix (terminate) the file.
Similar to: https://gist.github.com/kekscom/10925007
With XML: https://github.com/diffblue/output-repair Example written in C++
If a query produces many results (where 'many' probably should be a configurable value in the
qonfig.json
), allow the query to keep running but don't display all of the results. Goal is to prevent excessive browser memory usage. Instead, provide ashow all
affordance if the user really does want to re-run the query and render all of the results in browserThe text was updated successfully, but these errors were encountered: