# DurableJobsOptions.ShardClaimRampUpDuration

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.hosting.durablejobsoptions/) | [Properties](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.hosting.durablejobsoptions/properties/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.DurableJobs/Hosting/DurableJobsOptions.cs)

```csharp
public TimeSpan ShardClaimRampUpDuration
```

Gets or sets the duration of the shard-claim ramp-up period after silo activation. While the silo has been running for less than this duration, the number of orphaned shards it may claim is limited by a linearly increasing budget. Once this period elapses the silo claims all available orphaned shards without limit. Set to `System.TimeSpan.Zero` to disable shard-claim ramp-up entirely. Default: 5 minutes.

### Examples

```csharp
options.ShardClaimRampUpDuration = TimeSpan.FromMinutes(10);
```
