-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Throttle validator registration external signing requests (#6301)
- Loading branch information
1 parent
8dcbafd
commit 204e92e
Showing
18 changed files
with
345 additions
and
67 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
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
69 changes: 69 additions & 0 deletions
69
...src/main/java/tech/pegasys/teku/infrastructure/async/ThrottlingTaskQueueWithPriority.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,69 @@ | ||
/* | ||
* Copyright ConsenSys Software Inc., 2022 | ||
* | ||
* Licensed 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 tech.pegasys.teku.infrastructure.async; | ||
|
||
import java.util.Queue; | ||
import java.util.concurrent.ConcurrentLinkedQueue; | ||
import java.util.function.Supplier; | ||
import org.hyperledger.besu.plugin.services.MetricsSystem; | ||
import org.hyperledger.besu.plugin.services.metrics.LabelledGauge; | ||
import tech.pegasys.teku.infrastructure.metrics.TekuMetricCategory; | ||
|
||
public class ThrottlingTaskQueueWithPriority extends ThrottlingTaskQueue { | ||
|
||
private final Queue<Runnable> queuedPrioritizedTasks = new ConcurrentLinkedQueue<>(); | ||
|
||
public static ThrottlingTaskQueueWithPriority create( | ||
final int maximumConcurrentTasks, | ||
final MetricsSystem metricsSystem, | ||
final TekuMetricCategory metricCategory, | ||
final String metricName) { | ||
final ThrottlingTaskQueueWithPriority taskQueue = | ||
new ThrottlingTaskQueueWithPriority(maximumConcurrentTasks); | ||
final LabelledGauge taskQueueGauge = | ||
metricsSystem.createLabelledGauge( | ||
metricCategory, metricName, "Number of tasks queued", "priority"); | ||
taskQueueGauge.labels(taskQueue.queuedTasks::size, "normal"); | ||
taskQueueGauge.labels(taskQueue.queuedPrioritizedTasks::size, "high"); | ||
return taskQueue; | ||
} | ||
|
||
private ThrottlingTaskQueueWithPriority(final int maximumConcurrentTasks) { | ||
super(maximumConcurrentTasks); | ||
} | ||
|
||
public <T> SafeFuture<T> queueTask( | ||
final Supplier<SafeFuture<T>> request, final boolean prioritize) { | ||
if (!prioritize) { | ||
return queueTask(request); | ||
} | ||
final SafeFuture<T> target = new SafeFuture<>(); | ||
final Runnable taskToQueue = getTaskToQueue(request, target); | ||
queuedPrioritizedTasks.add(taskToQueue); | ||
processQueuedTasks(); | ||
return target; | ||
} | ||
|
||
@Override | ||
protected Runnable getTaskToRun() { | ||
return !queuedPrioritizedTasks.isEmpty() | ||
? queuedPrioritizedTasks.remove() | ||
: queuedTasks.remove(); | ||
} | ||
|
||
@Override | ||
protected int getQueuedTasksCount() { | ||
return queuedTasks.size() + queuedPrioritizedTasks.size(); | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
...e/async/src/test/java/tech/pegasys/teku/infrastructure/async/ThrottlingTaskQueueTest.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,64 @@ | ||
/* | ||
* Copyright ConsenSys Software Inc., 2022 | ||
* | ||
* Licensed 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 tech.pegasys.teku.infrastructure.async; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
import java.util.stream.IntStream; | ||
import org.junit.jupiter.api.Test; | ||
import tech.pegasys.teku.infrastructure.metrics.StubMetricsSystem; | ||
import tech.pegasys.teku.infrastructure.metrics.TekuMetricCategory; | ||
|
||
public class ThrottlingTaskQueueTest { | ||
|
||
private static final int MAXIMUM_CONCURRENT_TASKS = 3; | ||
|
||
private final StubMetricsSystem stubMetricsSystem = new StubMetricsSystem(); | ||
|
||
private final StubAsyncRunner stubAsyncRunner = new StubAsyncRunner(); | ||
|
||
private final ThrottlingTaskQueue taskQueue = | ||
ThrottlingTaskQueue.create( | ||
MAXIMUM_CONCURRENT_TASKS, stubMetricsSystem, TekuMetricCategory.BEACON, "test_metric"); | ||
|
||
@Test | ||
public void throttlesRequests() { | ||
final List<SafeFuture<Void>> requests = | ||
IntStream.range(0, 100) | ||
.mapToObj( | ||
element -> { | ||
final SafeFuture<Void> request = | ||
stubAsyncRunner.runAsync( | ||
() -> { | ||
assertThat(taskQueue.getInflightTaskCount()) | ||
.isLessThanOrEqualTo(MAXIMUM_CONCURRENT_TASKS); | ||
}); | ||
return taskQueue.queueTask(() -> request); | ||
}) | ||
.collect(Collectors.toList()); | ||
|
||
assertThat(getQueuedTasksGaugeValue()).isEqualTo(97); | ||
assertThat(taskQueue.getInflightTaskCount()).isEqualTo(3); | ||
|
||
stubAsyncRunner.executeQueuedActions(); | ||
|
||
requests.forEach(request -> assertThat(request).isCompleted()); | ||
} | ||
|
||
private double getQueuedTasksGaugeValue() { | ||
return stubMetricsSystem.getGauge(TekuMetricCategory.BEACON, "test_metric").getValue(); | ||
} | ||
} |
111 changes: 111 additions & 0 deletions
111
...test/java/tech/pegasys/teku/infrastructure/async/ThrottlingTaskQueueWithPriorityTest.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,111 @@ | ||
/* | ||
* Copyright ConsenSys Software Inc., 2022 | ||
* | ||
* Licensed 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 tech.pegasys.teku.infrastructure.async; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import java.util.List; | ||
import java.util.concurrent.atomic.AtomicBoolean; | ||
import java.util.stream.Collectors; | ||
import java.util.stream.IntStream; | ||
import org.junit.jupiter.api.Test; | ||
import tech.pegasys.teku.infrastructure.metrics.StubMetricsSystem; | ||
import tech.pegasys.teku.infrastructure.metrics.TekuMetricCategory; | ||
|
||
public class ThrottlingTaskQueueWithPriorityTest { | ||
|
||
private static final int MAXIMUM_CONCURRENT_TASKS = 3; | ||
|
||
private final StubMetricsSystem stubMetricsSystem = new StubMetricsSystem(); | ||
|
||
private final StubAsyncRunner stubAsyncRunner = new StubAsyncRunner(); | ||
|
||
private final ThrottlingTaskQueueWithPriority taskQueue = | ||
ThrottlingTaskQueueWithPriority.create( | ||
MAXIMUM_CONCURRENT_TASKS, stubMetricsSystem, TekuMetricCategory.BEACON, "test_metric"); | ||
|
||
@Test | ||
public void throttlesRequests() { | ||
final List<SafeFuture<Void>> requests = | ||
IntStream.range(0, 100) | ||
.mapToObj( | ||
element -> { | ||
final SafeFuture<Void> request = | ||
stubAsyncRunner.runAsync( | ||
() -> { | ||
assertThat(taskQueue.getInflightTaskCount()) | ||
.isLessThanOrEqualTo(MAXIMUM_CONCURRENT_TASKS); | ||
}); | ||
// prioritize 1/3 of requests | ||
if (element % 3 == 0) { | ||
return taskQueue.queueTask(() -> request, true); | ||
} | ||
return taskQueue.queueTask(() -> request); | ||
}) | ||
.collect(Collectors.toList()); | ||
|
||
assertThat(getQueuedTasksGaugeValue(true)).isEqualTo(33); | ||
assertThat(getQueuedTasksGaugeValue(false)).isEqualTo(64); | ||
assertThat(taskQueue.getInflightTaskCount()).isEqualTo(3); | ||
|
||
stubAsyncRunner.executeQueuedActions(); | ||
|
||
requests.forEach(request -> assertThat(request).isCompleted()); | ||
} | ||
|
||
@Test | ||
@SuppressWarnings("FutureReturnValueIgnored") | ||
public void prioritizesRequests() { | ||
final SafeFuture<Void> initialRequest = new SafeFuture<>(); | ||
final SafeFuture<Void> prioritizedRequest = new SafeFuture<>(); | ||
final SafeFuture<Void> normalRequest = new SafeFuture<>(); | ||
|
||
final AtomicBoolean priorityFirst = new AtomicBoolean(false); | ||
|
||
// fill queue | ||
IntStream.range(0, MAXIMUM_CONCURRENT_TASKS) | ||
.forEach(__ -> taskQueue.queueTask(() -> initialRequest)); | ||
final SafeFuture<Void> assertion = | ||
taskQueue.queueTask( | ||
() -> { | ||
// make sure the prioritized request is ran first | ||
// even though It has been queued after this one | ||
assertThat(priorityFirst).isTrue(); | ||
return normalRequest; | ||
}); | ||
taskQueue.queueTask( | ||
() -> { | ||
priorityFirst.set(true); | ||
return prioritizedRequest; | ||
}, | ||
true); | ||
|
||
assertThat(getQueuedTasksGaugeValue(true)).isEqualTo(1); | ||
assertThat(getQueuedTasksGaugeValue(false)).isEqualTo(1); | ||
assertThat(taskQueue.getInflightTaskCount()).isEqualTo(3); | ||
|
||
initialRequest.complete(null); | ||
normalRequest.complete(null); | ||
prioritizedRequest.complete(null); | ||
|
||
assertThat(assertion).isCompleted(); | ||
} | ||
|
||
private double getQueuedTasksGaugeValue(final boolean priority) { | ||
return stubMetricsSystem | ||
.getLabelledGauge(TekuMetricCategory.BEACON, "test_metric") | ||
.getValue(priority ? "high" : "normal") | ||
.orElseThrow(); | ||
} | ||
} |
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.