Skip to content

Commit

Permalink
cap total number of iterations for Sharding end to end BDN (#6865)
Browse files Browse the repository at this point in the history
can't wait all day for these to finish
  • Loading branch information
Aaronontheweb authored Aug 1, 2023
1 parent a136737 commit fa561d5
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,20 @@
using Akka.Routing;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Diagnostics.dotTrace;
using BenchmarkDotNet.Engines;
using static Akka.Cluster.Benchmarks.Sharding.ShardingHelper;

namespace Akka.Cluster.Benchmarks.Sharding
{
[DotTraceDiagnoser]
//[DotTraceDiagnoser]
[Config(typeof(MonitoringConfig))]
[SimpleJob(RunStrategy.Monitoring, launchCount: 10, warmupCount: 10)]
public class ShardMessageRoutingBenchmarks
{
[Params(StateStoreMode.Persistence, StateStoreMode.DData)]
public StateStoreMode StateMode;

public const int MsgCount = 10000;
public const int MsgCount = 10_000;

public const int BatchSize = 20;

Expand Down

0 comments on commit fa561d5

Please sign in to comment.