Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Although all cache data is sent between peer's in batches (GridDhtPartitionSupplyMessage used) it still processes entries one by one. Such approach have the low impact with a pure in-memory Apache Ignite use case but it leads to additional fsync's and logging WAL records with the native persistence enabled. 

    By default, setRebalanceThreadPoolSize is set to 1 and setRebalanceBatchSize to 512K which means that thousands of key-value pairs will be processed single-thread and individually. In addition, this also impacts on: 
    • Extra unnecessary chages to keep of Ignite node datastructuredata structures up to date. Adding each entry record into CacheDataStore will traverse and modify each index tree N-times. We will allocate space N-times within FreeList and have to additionally store WAL page delta records ~ O(N*log(N)) ;
    • Batch with N-entries will produce N WAL reocrds which might end up with N fsyncs (fsync-wal configuration);
    • Increased the chance of JVM pauses. The more attendant objects we produces by applying changes, the more GC happens and the greater chance of JVM pauses we have;

  • Rebalancing procedure doesn't utilize the network and storage device throughput to full extent even with sufficiently large values of setRebalanceThreadPoolSize parameter.

...