Skip to content

Commit

Permalink
[BALANCER] Implementation of BalancerBenchmarkApp (#1736)
Browse files Browse the repository at this point in the history
  • Loading branch information
garyparrot authored Jun 3, 2023
1 parent 33e72f7 commit 61c158c
Show file tree
Hide file tree
Showing 6 changed files with 728 additions and 4 deletions.
5 changes: 4 additions & 1 deletion app/src/main/java/org/astraea/app/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import java.util.List;
import java.util.Map;
import org.astraea.app.automation.Automation;
import org.astraea.app.benchmark.BalancerBenchmarkApp;
import org.astraea.app.performance.Performance;
import org.astraea.app.publisher.MetricPublisher;
import org.astraea.app.version.Version;
Expand All @@ -39,7 +40,9 @@ public class App {
"version",
Version.class,
"metric_publisher",
MetricPublisher.class);
MetricPublisher.class,
"balancer_benchmark",
BalancerBenchmarkApp.class);

static void execute(Map<String, Class<?>> mains, List<String> args) throws Throwable {

Expand Down
Loading

0 comments on commit 61c158c

Please sign in to comment.