michaelandrepearce commented on a change in pull request #2913: ARTEMIS-2571 
Remove synchronization of ActiveMQServerImpl#getSessions()
URL: https://github.com/apache/activemq-artemis/pull/2913#discussion_r356173665
 
 

 ##########
 File path: 
artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/ActiveMQServerImpl.java
 ##########
 @@ -294,7 +294,7 @@
 
    private FileStoreMonitor fileStoreMonitor;
 
-   private final Map<String, ServerSession> sessions = new 
ConcurrentHashMap<>();
+   private final ConcurrentMap<String, ServerSession> sessions = new 
ConcurrentHashMap<>();
 
 Review comment:
   So our concerns are this is in core. Its an un-proven optimization, that 
without any proven hot path benefit brings alot of risk, as small changes like 
this have previously introduced unexpected issues at first not obvious. As such 
the perf benefit needs to be proven by provided perf testing to be worth even 
that risk.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to