Skip to content

Commit ee6b876

Browse files
fix: adjust benchmark parameters
1 parent 25443dd commit ee6b876

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

benchmark/BenchmarkRunner/Benchmarks/MysqlWriteBenchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class MysqlWriteBenchmark : BaseWriteBenchmark
2424
/// MySQL batch size can be very large yet very performant in SQLC implementation due to
2525
/// CSV load usage, so we wish to examine exceptionally large batches as well.
2626
/// </summary>
27-
[Params(200, 1000, 5000)]
27+
[Params(500, 1000, 2000)]
2828
public int BatchSize { get; set; }
2929

3030
[BenchmarkCategory("Write")]

benchmark/BenchmarkRunner/Benchmarks/PostgresqlReadBenchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class PostgresqlReadBenchmark : BaseReadBenchmark
1717
private static readonly string _connectionString = Config.GetPostgresConnectionString();
1818
private readonly QuerySql _sqlcImpl = new(_connectionString);
1919

20-
[Params(25, 50, 100)]
20+
[Params(10, 20, 50)]
2121
public int ConcurrentQueries { get; set; }
2222

2323
[BenchmarkCategory("Read")]

benchmark/BenchmarkRunner/Benchmarks/SqliteReadBenchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class SqliteReadBenchmark : BaseReadBenchmark
2222
/// <summary>
2323
/// SQLite supports read concurrency, but less so then other relational databases.
2424
/// </summary>
25-
[Params(5, 25, 50)]
25+
[Params(5, 10, 25)]
2626
public int ConcurrentQueries { get; set; }
2727

2828
[BenchmarkCategory("Read")]

0 commit comments

Comments
 (0)