vldpyatkov commented on code in PR #5015:
URL: https://github.com/apache/ignite-3/pull/5015#discussion_r1910345921


##########
modules/transactions/src/main/java/org/apache/ignite/internal/tx/impl/HeapLockManager.java:
##########
@@ -80,7 +78,12 @@
  * <p>Additionally limits the lock map size.
  */
 public class HeapLockManager extends AbstractEventProducer<LockEvent, 
LockEventParameters> implements LockManager {
-    private static final IgniteLogger LOG = 
Loggers.forClass(HeapLockManager.class);
+    /** Throttled logger. */
+    private static final IgniteLogger THROTTLED_LOG = 
Loggers.toThrottledLogger(
+            Loggers.forClass(HeapLockManager.class),
+            // TODO: IGNITE-24181 Get rid of Common thread pool.
+            ForkJoinPool.commonPool()

Review Comment:
   I do not want to drag an executor here because it would be deleted in the 
mentioned ticket.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to