Skip to content

Commit

Permalink
Reduce default parallelism (#514)
Browse files Browse the repository at this point in the history
The limits are too high to really ever work properly.
  • Loading branch information
einarmo authored Feb 3, 2025
1 parent 9ece1df commit e41304c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ExtractorUtils/Configuration/BaseConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,45 +245,45 @@ public class ThrottlingConfig
/// Maximum number of parallel requests per time series operation
/// </summary>
/// <value>Maximum number of parallel operations</value>
public int TimeSeries { get; set; } = 20;
public int TimeSeries { get; set; } = 5;

/// <summary>
/// Maximum number of parallel requests per assets operation
/// </summary>
/// <value>Maximum number of parallel operations</value>
public int Assets { get; set; } = 20;
public int Assets { get; set; } = 5;

/// <summary>
/// Maximum number of parallel requests per data points operations
/// </summary>
/// <value>Maximum number of parallel operations</value>
public int DataPoints { get; set; } = 10;
public int DataPoints { get; set; } = 5;

/// <summary>
/// Maximum number of parallel requests per raw operation
/// </summary>
/// <value></value>
public int Raw { get; set; } = 10;
public int Raw { get; set; } = 5;

/// <summary>
/// Maximum number of parallel requests per get extracted ranges operation
/// </summary>
public int Ranges { get; set; } = 20;
public int Ranges { get; set; } = 5;

/// <summary>
/// Maximum number of parallel requests per events operation
/// </summary>
public int Events { get; set; } = 20;
public int Events { get; set; } = 5;

/// <summary>
/// Maximum number of parallel requests per sequence operation
/// </summary>
public int Sequences { get; set; } = 10;
public int Sequences { get; set; } = 5;

/// <summary>
/// Maximum number of parallel requests per data modeling instances operation
/// </summary>
public int Instances { get; set; } = 4;
public int Instances { get; set; } = 2;

/// <summary>
/// Maximum number of parallel requests per stream record ingest operation.
Expand Down

0 comments on commit e41304c

Please sign in to comment.