IGNITE-6204 Backport optimizations of checkpointing algorithm into 2.2 (hotfix)
(cherry picked from commit abb675f) Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/f2fec666 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/f2fec666 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/f2fec666 Branch: refs/heads/ignite-2.2 Commit: f2fec666ac8f19107b65f7317663832d78a078e9 Parents: 8ad9968 Author: Pavel Tupitsyn <[email protected]> Authored: Tue Aug 29 18:35:49 2017 +0300 Committer: Anton Vinogradov <[email protected]> Committed: Fri Sep 15 11:26:54 2017 +0300 ---------------------------------------------------------------------- .../PersistentStore/PersistentStoreConfiguration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/f2fec666/modules/platforms/dotnet/Apache.Ignite.Core/PersistentStore/PersistentStoreConfiguration.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/PersistentStore/PersistentStoreConfiguration.cs b/modules/platforms/dotnet/Apache.Ignite.Core/PersistentStore/PersistentStoreConfiguration.cs index cac6cc8..8ba45e5 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core/PersistentStore/PersistentStoreConfiguration.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core/PersistentStore/PersistentStoreConfiguration.cs @@ -32,7 +32,7 @@ namespace Apache.Ignite.Core.PersistentStore /// <summary> /// Default value for <see cref="CheckpointingThreads"/>. /// </summary> - public const int DefaultCheckpointingThreads = 1; + public const int DefaultCheckpointingThreads = 4; /// <summary> /// Default value for <see cref="CheckpointingFrequency"/>.
