ibessonov commented on code in PR #4679:
URL: https://github.com/apache/ignite-3/pull/4679#discussion_r1830480321


##########
modules/metastorage/src/main/java/org/apache/ignite/internal/metastorage/server/persistence/RocksDbKeyValueStorage.java:
##########
@@ -279,8 +301,17 @@ public RocksDbKeyValueStorage(
         );
 
         this.dbPath = dbPath;
+        this.logSyncer = logSyncer;
 
-        snapshotExecutor = Executors.newFixedThreadPool(2, 
NamedThreadFactory.create(nodeName, "metastorage-snapshot-executor", log));
+        executor = Executors.newFixedThreadPool(
+                2,
+                NamedThreadFactory.create(nodeName, 
"metastorage-rocksdb-kv-storage-executor", log)
+        );
+
+        // TODO: IGNITE-23615 Use a common pool, eg 
ThreadPoolsManager#commonScheduler

Review Comment:
   ```suggestion
           // TODO: IGNITE-23615 Use a common pool, e.g. 
ThreadPoolsManager#commonScheduler
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to