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
[Event Hubs] Checkpoint Store Abstraction (Azure#27386)
* [Event Hubs] Checkpoint Store Abstraction
The focus of these changes is to add a `CheckpointStore` Abstraction and
convert the Blob Storage provider to implement it. The implementation
remains `internal` to minimize churn, but will be extended with a public
version in forthcoming set of changes.
Copy file name to clipboardExpand all lines: sdk/eventhub/Azure.Messaging.EventHubs.Processor/api/Azure.Messaging.EventHubs.Processor.netstandard2.0.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,6 @@ public EventProcessorClient(Azure.Storage.Blobs.BlobContainerClient checkpointSt
Copy file name to clipboardExpand all lines: sdk/eventhub/Azure.Messaging.EventHubs.Processor/src/Diagnostics/BlobCheckpointStoreInternal.Diagnostics.cs
/// Indicates that an attempt to retrieve a list of checkpoints has completed.
76
-
/// </summary>
77
-
///
78
-
/// <param name="fullyQualifiedNamespace">The fully qualified Event Hubs namespace the checkpoints are associated with. This is likely to be similar to <c>{yournamespace}.servicebus.windows.net</c>.</param>
79
-
/// <param name="eventHubName">The name of the specific Event Hub the checkpoints are associated with, relative to the Event Hubs namespace that contains it.</param>
80
-
/// <param name="consumerGroup">The name of the consumer group the checkpoints are associated with.</param>
81
-
/// <param name="checkpointCount">The amount of checkpoints received from the storage service.</param>
/// Indicates that an unhandled exception was encountered while retrieving a list of checkpoints.
91
-
/// </summary>
92
-
///
93
-
/// <param name="fullyQualifiedNamespace">The fully qualified Event Hubs namespace the checkpoints are associated with. This is likely to be similar to <c>{yournamespace}.servicebus.windows.net</c>.</param>
94
-
/// <param name="eventHubName">The name of the specific Event Hub the checkpoints are associated with, relative to the Event Hubs namespace that contains it.</param>
95
-
/// <param name="consumerGroup">The name of the consumer group the ownership are associated with.</param>
96
-
/// <param name="exception">The exception that occurred.</param>
/// Indicates that an attempt to retrieve a list of checkpoints has started.
121
-
/// </summary>
122
-
///
123
-
/// <param name="fullyQualifiedNamespace">The fully qualified Event Hubs namespace the checkpoints are associated with. This is likely to be similar to <c>{yournamespace}.servicebus.windows.net</c>.</param>
124
-
/// <param name="eventHubName">The name of the specific Event Hub the checkpoints are associated with, relative to the Event Hubs namespace that contains it.</param>
125
-
/// <param name="consumerGroup">The name of the consumer group the checkpoints are associated with.</param>
/// Indicates that a <see cref="BlobsCheckpointStore" /> was created.
47
+
/// Indicates that a <see cref="BlobCheckpointStoreInternal" /> was created.
47
48
/// </summary>
48
49
///
49
50
/// <param name="typeName">The type name for the checkpoint store.</param>
@@ -241,67 +242,6 @@ public virtual void OwnershipClaimed(string partitionId,
241
242
}
242
243
}
243
244
244
-
/// <summary>
245
-
/// Indicates that an attempt to retrieve a list of checkpoints has started.
246
-
/// </summary>
247
-
///
248
-
/// <param name="fullyQualifiedNamespace">The fully qualified Event Hubs namespace the checkpoints are associated with. This is likely to be similar to <c>{yournamespace}.servicebus.windows.net</c>.</param>
249
-
/// <param name="eventHubName">The name of the specific Event Hub the checkpoints are associated with, relative to the Event Hubs namespace that contains it.</param>
250
-
/// <param name="consumerGroup">The name of the consumer group the checkpoints are associated with.</param>
251
-
///
252
-
[Event(29,Level=EventLevel.Verbose,Message="Starting to list checkpoints for FullyQualifiedNamespace: '{0}'; EventHubName: '{1}'; ConsumerGroup: '{2}'.")]
/// Indicates that an attempt to retrieve a list of checkpoints has completed.
265
-
/// </summary>
266
-
///
267
-
/// <param name="fullyQualifiedNamespace">The fully qualified Event Hubs namespace the checkpoints are associated with. This is likely to be similar to <c>{yournamespace}.servicebus.windows.net</c>.</param>
268
-
/// <param name="eventHubName">The name of the specific Event Hub the checkpoints are associated with, relative to the Event Hubs namespace that contains it.</param>
269
-
/// <param name="consumerGroup">The name of the consumer group the checkpoints are associated with.</param>
270
-
/// <param name="checkpointCount">The amount of checkpoints received from the storage service.</param>
271
-
///
272
-
[Event(30,Level=EventLevel.Verbose,Message="Completed listing checkpoints for FullyQualifiedNamespace: '{0}'; EventHubName: '{1}'; ConsumerGroup: '{2}'. There were '{3}' checkpoints found.")]
/// Indicates that an unhandled exception was encountered while retrieving a list of checkpoints.
286
-
/// </summary>
287
-
///
288
-
/// <param name="fullyQualifiedNamespace">The fully qualified Event Hubs namespace the checkpoints are associated with. This is likely to be similar to <c>{yournamespace}.servicebus.windows.net</c>.</param>
289
-
/// <param name="eventHubName">The name of the specific Event Hub the checkpoints are associated with, relative to the Event Hubs namespace that contains it.</param>
290
-
/// <param name="consumerGroup">The name of the consumer group the ownership are associated with.</param>
291
-
/// <param name="errorMessage">The message for the exception that occurred.</param>
292
-
///
293
-
[Event(31,Level=EventLevel.Error,Message="An exception occurred when listing checkpoints for FullyQualifiedNamespace: '{0}'; EventHubName: '{1}'; ConsumerGroup: '{2}'; ErrorMessage: '{3}'.")]
0 commit comments