# DurableJobsOptions.ShardClaimMaxBudget

[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 int ShardClaimMaxBudget
```

Gets or sets the total number of orphaned shards the silo is allowed to have claimed by the end of the shard-claim ramp-up period. The cumulative budget is linearly interpolated between [DurableJobsOptions](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.hosting.durablejobsoptions/) at startup and this value at [DurableJobsOptions](/orleans/docs/api/csharp/microsoft.orleans.durablejobs/orleans.hosting.durablejobsoptions/). Default: 20.

### Examples

```csharp
options.ShardClaimMaxBudget = 50;
```
