[
https://issues.apache.org/jira/browse/ARTEMIS-3445?focusedWorklogId=646046&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-646046
]
ASF GitHub Bot logged work on ARTEMIS-3445:
-------------------------------------------
Author: ASF GitHub Bot
Created on: 02/Sep/21 20:53
Start Date: 02/Sep/21 20:53
Worklog Time Spent: 10m
Work Description: clebertsuconic commented on a change in pull request
#3714:
URL: https://github.com/apache/activemq-artemis/pull/3714#discussion_r701415249
##########
File path:
artemis-protocols/artemis-mqtt-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/mqtt/MQTTProtocolManagerFactory.java
##########
@@ -64,4 +74,46 @@ public ProtocolManager createProtocolManager(ActiveMQServer
server,
public String getModuleName() {
return MODULE_NAME;
}
+
+
+ @Override
+ public void loadProtocolServices(ActiveMQServer server,
List<ActiveMQComponent> services) {
+ services.add(new MQTTPeriodicTasks(server.getScheduledPool()));
+ }
+
+ public class MQTTPeriodicTasks implements ActiveMQComponent {
+ ScheduledExecutorService pool;
+ Runnable runnable;
+
+ public MQTTPeriodicTasks(ScheduledExecutorService pool) {
Review comment:
```suggestion
public class MQTTPeriodicTasks extends ActiveMQScheduledComponent {
public MQTTPeriodicTasks(ScheduledExecutorService
scheduledExecutorService) {
super(scheduledExecutorService, null, 5, TimeUnit.SECONDS, false);
}
@Override
public void run() {
for (Map.Entry<String, MQTTSessionState> entry :
sessionStates.entrySet()) {
MQTTSessionState state = entry.getValue();
if (logger.isDebugEnabled()) {
logger.debug("Inspecting session state: " + state);
}
if (!state.getAttached() && defaultMqttSessionExiryInterval !=
-1 && state.getDisconnectedTime() + (defaultMqttSessionExiryInterval * 1000) <
System.currentTimeMillis()) {
if (logger.isDebugEnabled()) {
logger.debug("Removing expired session state: " + state);
}
sessionStates.remove(entry.getKey());
}
}
}
}
```
--
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]
Issue Time Tracking
-------------------
Worklog Id: (was: 646046)
Time Spent: 50m (was: 40m)
> Automatically clean-up abandoned MQTT subscriptions
> ---------------------------------------------------
>
> Key: ARTEMIS-3445
> URL: https://issues.apache.org/jira/browse/ARTEMIS-3445
> Project: ActiveMQ Artemis
> Issue Type: Improvement
> Reporter: Justin Bertram
> Assignee: Justin Bertram
> Priority: Major
> Time Spent: 50m
> Remaining Estimate: 0h
>
> Some MQTT use-cases involve clients which don't clean up their subscriptions.
> In such situations the {{auto-delete-queues-delay}} and
> {{auto-delete-queues-message-count}} address-settings can be used to clean up
> the abandoned subscription queues. However, the MQTT session meta-data is
> still present in memory and needs to be cleaned up as well.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)