提交 0f764898 编写于 作者: J Jason918 提交者: von gosling

[ROCKETMQ-290] Fix memory leak in WaitNotifyObject#waitingThreadTable (#178)

上级 0ec1c106
......@@ -300,6 +300,8 @@ public class HAConnection {
}
}
HAConnection.this.haService.getWaitNotifyObject().removeFromWaitingThreadTable();
if (this.selectMappedBufferResult != null) {
this.selectMappedBufferResult.release();
}
......
......@@ -96,4 +96,11 @@ public class WaitNotifyObject {
}
}
}
public void removeFromWaitingThreadTable() {
long currentThreadId = Thread.currentThread().getId();
synchronized (this) {
this.waitingThreadTable.remove(currentThreadId);
}
}
}
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.rocketmq.store.ha;
import org.junit.Assert;
import org.junit.Test;
import static org.junit.Assert.*;
public class WaitNotifyObjectTest {
@Test
public void removeFromWaitingThreadTable() throws Exception {
final WaitNotifyObject waitNotifyObject = new WaitNotifyObject();
for (int i = 0; i < 5; i++) {
Thread t = new Thread(new Runnable() {
@Override
public void run() {
waitNotifyObject.allWaitForRunning(100);
waitNotifyObject.removeFromWaitingThreadTable();
}
});
t.start();
t.join();
}
Assert.assertEquals(0, waitNotifyObject.waitingThreadTable.size());
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册