Hello Kudu Jenkins, I'd like you to reexamine a change. Please visit
http://gerrit.cloudera.org:8080/6481 to look at the new patch set (#4). Change subject: interval_tree: allow bulk queries ...................................................................... interval_tree: allow bulk queries This adds an API to interval_tree to allow it to be queried in "bulk". The caller passes a set of query points and a callback, and the tree calls the callback once per <interval, point> pair. This has much better CPU cache efficiency than a lot of separate queries. Additionally, doing 'Q' queries in bulk is logarithmic in Q rather than linear. More importantly, this will allow rowset-wise processing of batches of writes, which opens up big perf wins in later patches in this series. Change-Id: Ifb4da25ca43413fbcae631a7b0f3f16062e4e408 --- M src/kudu/util/interval_tree-inl.h M src/kudu/util/interval_tree-test.cc M src/kudu/util/interval_tree.h 3 files changed, 341 insertions(+), 28 deletions(-) git pull ssh://gerrit.cloudera.org:29418/kudu refs/changes/81/6481/4 -- To view, visit http://gerrit.cloudera.org:8080/6481 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-MessageType: newpatchset Gerrit-Change-Id: Ifb4da25ca43413fbcae631a7b0f3f16062e4e408 Gerrit-PatchSet: 4 Gerrit-Project: kudu Gerrit-Branch: master Gerrit-Owner: Todd Lipcon <t...@apache.org> Gerrit-Reviewer: David Ribeiro Alves <dral...@apache.org> Gerrit-Reviewer: Kudu Jenkins Gerrit-Reviewer: Tidy Bot