-
Notifications
You must be signed in to change notification settings - Fork 26.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/apache-3.3' into 3.3.0-beta.5-release
- Loading branch information
Showing
26 changed files
with
354 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
dubbo-common/src/main/java/org/apache/dubbo/common/store/DataStoreUpdateListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* 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.dubbo.common.store; | ||
|
||
public interface DataStoreUpdateListener { | ||
void onUpdate(String componentName, String key, Object value); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,19 +17,27 @@ | |
package org.apache.dubbo.common.threadpool.support; | ||
|
||
import org.apache.dubbo.common.URL; | ||
import org.apache.dubbo.common.threadlocal.NamedInternalThreadFactory; | ||
import org.apache.dubbo.common.threadpool.event.ThreadPoolExhaustedEvent; | ||
import org.apache.dubbo.common.threadpool.event.ThreadPoolExhaustedListener; | ||
import org.apache.dubbo.common.utils.SystemPropertyConfigUtils; | ||
|
||
import java.io.FileOutputStream; | ||
import java.util.LinkedList; | ||
import java.util.List; | ||
import java.util.UUID; | ||
import java.util.concurrent.ExecutorService; | ||
import java.util.concurrent.Executors; | ||
import java.util.concurrent.Future; | ||
import java.util.concurrent.RejectedExecutionException; | ||
import java.util.concurrent.SynchronousQueue; | ||
import java.util.concurrent.ThreadPoolExecutor; | ||
import java.util.concurrent.TimeUnit; | ||
import java.util.concurrent.atomic.AtomicInteger; | ||
import java.util.concurrent.atomic.AtomicReference; | ||
|
||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.apache.dubbo.common.constants.CommonConstants.OS_WIN_PREFIX; | ||
|
@@ -39,6 +47,11 @@ | |
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
class AbortPolicyWithReportTest { | ||
@BeforeEach | ||
public void setUp() { | ||
AbortPolicyWithReport.lastPrintTime = 0; | ||
} | ||
|
||
@Test | ||
void jStackDumpTest() { | ||
URL url = URL.valueOf( | ||
|
@@ -62,6 +75,61 @@ protected void jstack(FileOutputStream jStackStream) { | |
Assertions.assertNotNull(fileOutputStream.get()); | ||
} | ||
|
||
@Test | ||
void jStack_ConcurrencyDump_Silence_10Min() { | ||
URL url = URL.valueOf( | ||
"dubbo://admin:[email protected]:20880/context/path?dump.directory=/tmp&version=1.0.0&application=morgan&noValue="); | ||
AtomicInteger jStackCount = new AtomicInteger(0); | ||
AtomicInteger failureCount = new AtomicInteger(0); | ||
AtomicInteger finishedCount = new AtomicInteger(0); | ||
AtomicInteger timeoutCount = new AtomicInteger(0); | ||
AbortPolicyWithReport abortPolicyWithReport = new AbortPolicyWithReport("Test", url) { | ||
@Override | ||
protected void jstack(FileOutputStream jStackStream) { | ||
jStackCount.incrementAndGet(); | ||
// try to simulate the jstack cost long time, so that AbortPolicyWithReport may jstack repeatedly. | ||
long startTime = System.currentTimeMillis(); | ||
await().atLeast(200, TimeUnit.MILLISECONDS).until(() -> System.currentTimeMillis() - startTime >= 300); | ||
} | ||
}; | ||
ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor( | ||
4, | ||
4, | ||
0, | ||
TimeUnit.MILLISECONDS, | ||
new SynchronousQueue<>(), | ||
new NamedInternalThreadFactory("jStack_ConcurrencyDump_Silence_10Min", false), | ||
abortPolicyWithReport); | ||
int runTimes = 100; | ||
List<Future<?>> futureList = new LinkedList<>(); | ||
for (int i = 0; i < runTimes; i++) { | ||
try { | ||
futureList.add(threadPoolExecutor.submit(() -> { | ||
finishedCount.incrementAndGet(); | ||
long start = System.currentTimeMillis(); | ||
// try to await 1s to make sure jstack dump thread scheduled | ||
await().atLeast(300, TimeUnit.MILLISECONDS).until(() -> System.currentTimeMillis() - start >= 300); | ||
})); | ||
} catch (Exception ignored) { | ||
failureCount.incrementAndGet(); | ||
} | ||
} | ||
futureList.forEach(f -> { | ||
try { | ||
f.get(500, TimeUnit.MILLISECONDS); | ||
} catch (Exception ignored) { | ||
timeoutCount.incrementAndGet(); | ||
} | ||
}); | ||
|
||
System.out.printf( | ||
"jStackCount: %d, finishedCount: %d, failureCount: %d, timeoutCount: %d %n", | ||
jStackCount.get(), finishedCount.get(), failureCount.get(), timeoutCount.get()); | ||
Assertions.assertEquals( | ||
runTimes, finishedCount.get() + failureCount.get(), "all the test thread should be run completely"); | ||
Assertions.assertEquals(1, jStackCount.get(), "'jstack' should be called only once in 10 minutes"); | ||
} | ||
|
||
@Test | ||
void jStackDumpTest_dumpDirectoryNotExists_cannotBeCreatedTakeUserHome() { | ||
final String dumpDirectory = dumpDirectoryCannotBeCreated(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.