You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@asterixdb.apache.org by "ASF subversion and git services (Jira)" <ji...@apache.org> on 2020/04/11 16:31:00 UTC

[jira] [Commented] (ASTERIXDB-2708) Optimize Primary Point Searches Via Batching and Stateful Cursors

    [ https://issues.apache.org/jira/browse/ASTERIXDB-2708?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17081369#comment-17081369 ] 

ASF subversion and git services commented on ASTERIXDB-2708:
------------------------------------------------------------

Commit 6e6b3427d82a5b8b10aadb8aff095259cbfb9535 in asterixdb's branch refs/heads/master from luochen
[ https://gitbox.apache.org/repos/asf?p=asterixdb.git;h=6e6b342 ]

[ASTERIXDB-2708] Introduce batch and stateful point cursors

- user model changes: no
- storage format changes: no
- interface changes: no

Details:
- Add a stateful btree point search cursor that uses previous search history
and exponential search algorithm to optimize point search performance
- Add a batching LSM btree point search cursor to perform point searches for
a batch of keys. Search states are cleared after each batch.

Change-Id: I0b0ade723895bcd71463df7a9703fe78a238e6c7
Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/5484
Contrib: Jenkins <je...@fulliautomatix.ics.uci.edu>
Integration-Tests: Jenkins <je...@fulliautomatix.ics.uci.edu>
Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
Reviewed-by: Luo Chen <cl...@uci.edu>
Reviewed-by: Murtadha Hubail <mh...@apache.org>


> Optimize Primary Point Searches Via Batching and Stateful Cursors
> -----------------------------------------------------------------
>
>                 Key: ASTERIXDB-2708
>                 URL: https://issues.apache.org/jira/browse/ASTERIXDB-2708
>             Project: Apache AsterixDB
>          Issue Type: Improvement
>          Components: RT - Runtime, STO - Storage
>            Reporter: Chen Luo
>            Assignee: Chen Luo
>            Priority: Major
>
> Currently, the primary index point searches can be expensive, especially when a query is not selecitivity, for a few reasons:
> * Enter and exit LSM components for each search key
> * Always traverse from root to leaf when searching a key
> To optimize primary point searches, we introduce a number of optimizations here:
> * Introduce a batched point search cursor that enters an LSM index for a batch of keys to amortize the cost
> * Introduce a stateful BTree search algorithm that reuses the previous search history to speedup subsequently searches. Specifically, we keep track of the last leaf page ID and the last key index. For the next search key, if it still exists in the last leaf page, we do not have to traverse from root to leaf again. Moreover, instead of using binary search, we use exponential search to reduce the search cost in case there are a lot of keys.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)