You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Dmitry Kiriy (JIRA)" <ji...@apache.org> on 2018/12/15 07:55:00 UTC

[jira] [Created] (IGNITE-10703) Queue drainTo should be batched operation

Dmitry Kiriy created IGNITE-10703:
-------------------------------------

             Summary: Queue drainTo should be batched operation
                 Key: IGNITE-10703
                 URL: https://issues.apache.org/jira/browse/IGNITE-10703
             Project: Ignite
          Issue Type: Improvement
          Components: data structures
    Affects Versions: 2.7
            Reporter: Dmitry Kiriy


Currently drainTo(Collection<T> to, int amount) implemented as cyclic call of poll() method, which is ineffective.

Need to be implemented as truly batch operation - trying to read required amount of data at once.

current design prevent high-performance data transfer cross queue.

P.S. addAll implemented as batch, so together with right drainTo implementation, it will be complete high-performance batched read&write solution



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