Skip to content

Commit 4a35187

Browse files
committed
Increase order by bench query to 3 days. Decrease ingestion parallelism to 1000x.
1 parent b7be4bc commit 4a35187

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/SeqCli/Cli/Commands/Bench/BenchCases.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@
5757
},
5858
{
5959
"id": "order-by-message-limit-10",
60-
"query": "select @Message from stream where @Timestamp >= now() - 2d order by @Message limit 10",
60+
"query": "select @Message from stream where @Timestamp >= now() - 3d order by @Message limit 10",
6161
"notes": "Adds character collation to limited sort."
6262
},
6363
{
6464
"id": "order-by-message-limit-10-ci",
65-
"query": "select @Message from stream where @Timestamp >= now() - 2d order by @Message ci limit 10",
65+
"query": "select @Message from stream where @Timestamp >= now() - 3d order by @Message ci limit 10",
6666
"notes": "Adds case insensitive character collation to limited sort."
6767
},
6868
{

src/SeqCli/Cli/Commands/Bench/BenchCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ async Task IngestionBenchmark(Logger reportingLogger, string runId, SeqConnectio
228228
}
229229
else
230230
{
231-
var simulationTasks = Enumerable.Range(1, 2000)
231+
var simulationTasks = Enumerable.Range(1, 1000)
232232
.Select(i => Simulation.RunAsync(connection, apiKey, 10000, echoToStdout: false, cancellationToken))
233233
.ToArray();
234234
}

0 commit comments

Comments
 (0)