Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/Temporalio/Worker/TemporalWorkerOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,6 @@ public TemporalWorkerOptions()
/// cref="MaxConcurrentActivities"/>, <see cref="MaxConcurrentWorkflowTasks"/> and <see
/// cref="MaxConcurrentLocalActivities"/>.
/// </summary>
/// <remarks>
/// WARNING: WorkerTuners are experimental.
/// </remarks>
public WorkerTuner? Tuner { get; set; }

/// <summary>
Expand Down
3 changes: 0 additions & 3 deletions src/Temporalio/Worker/Tuning/ResourceBasedSlotSupplier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ namespace Temporalio.Worker.Tuning
/// <summary>
/// A slot supplier that will dynamically adjust the number of slots based on resource usage.
/// </summary>
/// <remarks>
/// WARNING: Resource based tuning is currently experimental.
/// </remarks>
public sealed class ResourceBasedSlotSupplier : SlotSupplier
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ namespace Temporalio.Worker.Tuning
/// time, and thus the system should wait to see how much resources are used before issuing more
/// slots.
/// </param>
/// <remarks>
/// WARNING: Resource based tuning is currently experimental.
/// </remarks>
public sealed record ResourceBasedSlotSupplierOptions(
int? MinimumSlots = null,
int? MaximumSlots = null,
Expand Down
3 changes: 0 additions & 3 deletions src/Temporalio/Worker/Tuning/ResourceBasedTunerOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ namespace Temporalio.Worker.Tuning
/// <param name="TargetCpuUsage">A value between 0 and 1 that represents the target (system)
/// CPU usage. This can be set to 1.0 if desired, but it's recommended to leave some
/// headroom for other processes.</param>
/// <remarks>
/// WARNING: Resource based tuning is currently experimental.
/// </remarks>
public sealed record ResourceBasedTunerOptions(
double TargetMemoryUsage,
double TargetCpuUsage);
Expand Down
3 changes: 0 additions & 3 deletions src/Temporalio/Worker/Tuning/WorkerTuner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,6 @@ public WorkerTuner(
/// <param name="localActivityOptions">Options for the local activity slot supplier.</param>
/// <param name="nexusOptions">Options for the Nexus operation slot supplier.</param>
/// <returns>The tuner.</returns>
/// <remarks>
/// WARNING: Resource based tuning is currently experimental.
/// </remarks>
/// <remarks>WARNING: Nexus support is experimental.</remarks>
public static WorkerTuner CreateResourceBased(
double targetMemoryUsage,
Expand Down
Loading