You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zookeeper.apache.org by "Yisong Yue (JIRA)" <ji...@apache.org> on 2018/06/14 19:16:00 UTC

[jira] [Updated] (ZOOKEEPER-3063) Track outstanding changes with ArrayDeque

     [ https://issues.apache.org/jira/browse/ZOOKEEPER-3063?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Yisong Yue updated ZOOKEEPER-3063:
----------------------------------
    Summary: Track outstanding changes with ArrayDeque  (was: track outstanding changes with ArrayDeque)

> Track outstanding changes with ArrayDeque
> -----------------------------------------
>
>                 Key: ZOOKEEPER-3063
>                 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-3063
>             Project: ZooKeeper
>          Issue Type: Improvement
>          Components: server
>            Reporter: Yisong Yue
>            Assignee: Yisong Yue
>            Priority: Trivial
>             Fix For: 3.6.0
>
>
> Outstanding changes are tracked with an ArrayList, which has O(N) remove from head (and possibly add) performance. This means that as we get further behind, we will slow down the processing of outstanding changes, which would make us get further behind.
>  We should switch to using ArrayDeque which achieves O(1) add and remove on both ends, which should result in much happiness.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)