You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets or sets renew interval for all leases for partitions currently held by <see cref="ChangeFeedEventHost"/> instance.
26
+
/// </summary>
27
+
publicTimeSpanLeaseRenewInterval{get;set;}
28
+
29
+
/// <summary>
30
+
/// Gets or sets the interval to kick off a task to compute if partitions are distributed evenly among known host instances.
31
+
/// </summary>
32
+
publicTimeSpanLeaseAcquireInterval{get;set;}
33
+
34
+
/// <summary>
35
+
/// Gets or sets the interval for which the lease is taken on a lease representing a partition. If the lease is not renewed within this
36
+
/// interval, it will cause it to expire and ownership of the partition will move to another <see cref="ChangeFeedEventHost"/> instance.
37
+
/// </summary>
38
+
publicTimeSpanLeaseExpirationInterval{get;set;}
39
+
40
+
/// <summary>
41
+
/// Gets or sets the delay in between polling a partition for new changes on the feed, after all current changes are drained.
42
+
/// </summary>
43
+
publicTimeSpanFeedPollDelay{get;set;}
44
+
45
+
/// <summary>
46
+
/// Gets or set the minimum partition count for the host.
47
+
/// This can be used to increase the number of partitions for the host and thus override equal distribution (which is the default) of leases between hosts.
48
+
/// </summary>
49
+
internalintMinPartitionCount{get;set;}
50
+
51
+
/// <summary>
52
+
/// Gets or sets the maximum number of partitions the host can serve.
53
+
/// This can be used property to limit the number of partitions for the host and thus override equal distribution (which is the default) of leases between hosts.
54
+
/// Default is 0 (unlimited).
55
+
/// </summary>
56
+
internalintMaxPartitionCount{get;set;}
57
+
58
+
/// <summary>
59
+
/// Gets or sets whether on start of the host all existing leases should be deleted and the host should start from scratch.
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
0 commit comments