We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
参考源码StreamingOrderByReducerResultSet.java 假如有10库,每库100表,取50个结果 如果采用遍历就是每次遍历1000个resultset,50个结果就是50000次 使用堆排序的话初始化时n_logn = 10000 剩下的50次就是50_logn = 500 总共10500次,还是有不小的性能提升
The text was updated successfully, but these errors were encountered:
fix #215 #161 Improve streaming sort performance.
73fc752
duplicate with #215
Sorry, something went wrong.
No branches or pull requests
参考源码StreamingOrderByReducerResultSet.java
假如有10库,每库100表,取50个结果
如果采用遍历就是每次遍历1000个resultset,50个结果就是50000次
使用堆排序的话初始化时n_logn = 10000
剩下的50次就是50_logn = 500
总共10500次,还是有不小的性能提升
The text was updated successfully, but these errors were encountered: