Skip to content

Commit

Permalink
Reduce page size of change feed queries in DqtReportingService (#935)
Browse files Browse the repository at this point in the history
  • Loading branch information
gunndabad authored Nov 30, 2023
1 parent d198dd3 commit 6a093d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public partial class DqtReportingService : BackgroundService
public const string ProcessChangesOperationName = "DqtReporting: process changes";

private const int MaxParameters = 1024;
private const int PageSize = 500;
private const int PageSize = 300;
private const int MaxUpsertBatchSize = 100;
private const int MaxEntityTypesToProcessConcurrently = 10;

Expand Down

0 comments on commit 6a093d3

Please sign in to comment.