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 assumption is that all the database rows have similar size.
Firstly, set the fetch size to 10. Fetch the 10 rows, measure the mean serialized size of those rows, and use that size to estimate the best fetch size (N).
Secondly, set the fetch size to N. Sample the serialized size for every 100 to 1000 rows to adjust the fetch size.
Make sure the JDBC drivers respect the fetch size, rather than taking it as a hint.
The text was updated successfully, but these errors were encountered:
Summary
The text was updated successfully, but these errors were encountered: