[
https://issues.apache.org/jira/browse/IGNITE-2502?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Vladimir Ozerov updated IGNITE-2502:
------------------------------------
Issue Type: Task (was: Sub-task)
Parent: (was: IGNITE-2232)
> GridNearAtomicUpdateRequest allocates to much Object[]
> ------------------------------------------------------
>
> Key: IGNITE-2502
> URL: https://issues.apache.org/jira/browse/IGNITE-2502
> Project: Ignite
> Issue Type: Task
> Components: cache
> Affects Versions: 1.5.0.final
> Reporter: Vladimir Ozerov
> Assignee: Vladimir Ozerov
> Labels: performance
> Fix For: 1.6
>
>
> *Problem*
> GridNearAtomicUpdateRequest might create up to 4 ArrayList's. Initially they
> are empty. When the very first element is added, ArrayList is extended to
> hold 10 objects (new Object[]). Put in ATOMIC cache almost all operations are
> performed on a single key.
> As a result 90% of array is not used.
> *Proposed solution*
> We know in advance how many keys participate in operation. Let's use min(10,
> keyCount) as initial array list size. This will make allocation more accurate.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)