-
Notifications
You must be signed in to change notification settings - Fork 879
/
Copy pathAdminClient_DeleteConsumerGroupOffsets.cs
284 lines (242 loc) · 15 KB
/
AdminClient_DeleteConsumerGroupOffsets.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
// Copyright 2022 Confluent Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Refer to LICENSE for more information.
using Confluent.Kafka.Admin;
using System;
using System.Collections.Generic;
using Xunit;
using System.Linq;
using Confluent.Kafka.TestsCommon;
namespace Confluent.Kafka.IntegrationTests
{
public partial class Tests
{
/// <summary>
/// Test functionality of AdminClient.DeleteConsumerGroupOffsets.
/// </summary>
[Theory, MemberData(nameof(KafkaParameters))]
public void AdminClient_DeleteConsumerGroupOffsets(string bootstrapServers)
{
if (!TestConsumerGroupProtocol.IsClassic())
{
LogToFile("KIP 848 does not support " +
"eager assignment");
return;
}
LogToFile("start AdminClient_DeleteConsumerGroupOffsets");
var assignmentDone = false;
using (var topic1 = new TemporaryTopic(bootstrapServers, 1))
using (var topic2 = new TemporaryTopic(bootstrapServers, 1))
using (var topic3 = new TemporaryTopic(bootstrapServers, 2))
using (var adminClient = new AdminClientBuilder(new AdminClientConfig { BootstrapServers = bootstrapServers }).Build())
using (var consumer1 = new TestConsumerBuilder<Null, string>(new ConsumerConfig { BootstrapServers = bootstrapServers, GroupId = topic1.Name })
.SetPartitionsAssignedHandler((c, partitions) =>
{
assignmentDone = true;
Assert.Single(partitions);
Assert.Equal(0, partitions[0].Partition.Value);
Assert.Equal(topic1.Name, partitions[0].Topic);
}).Build())
{
var groupId1 = topic1.Name;
var offsetToCommit = 10;
consumer1.Assign(new List<TopicPartition>() { new TopicPartition(topic1.Name, 0) });
consumer1.Commit(new List<TopicPartitionOffset>() { new TopicPartitionOffset(topic1.Name, 0, offsetToCommit) }); // commit some offset for consumer
var committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(10));
Assert.Single(committedOffsets);
Assert.Equal(offsetToCommit, committedOffsets[0].Offset);
List<TopicPartition> topicPartitionToReset = new List<TopicPartition>() { new TopicPartition(topic1.Name, 0) };
var res = adminClient.DeleteConsumerGroupOffsetsAsync(groupId1, topicPartitionToReset).Result;
Assert.Equal(groupId1, res.Group);
Assert.Single(res.Partitions);
Assert.Equal(0, res.Partitions[0].Partition.Value);
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(1));
Assert.Single(committedOffsets);
Assert.Equal(Offset.Unset, committedOffsets[0].Offset);
// Ensure consumer is actively subscribed to the topic
assignmentDone = false;
consumer1.Subscribe(new List<String>() { topic1.Name });
while (!assignmentDone)
{
// To handle the rebalance
consumer1.Consume(TimeSpan.FromSeconds(1));
}
consumer1.Commit(new List<TopicPartitionOffset>() { new TopicPartitionOffset(topic1.Name, 0, offsetToCommit) }); // commit some offset for consumer
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(10));
Assert.Single(committedOffsets);
Assert.Equal(offsetToCommit, committedOffsets[0].Offset);
topicPartitionToReset = new List<TopicPartition>() { new TopicPartition(topic1.Name, 0) };
try
{
res = adminClient.DeleteConsumerGroupOffsetsAsync(groupId1, topicPartitionToReset).Result;
Assert.True(false); // expecting exception.
}
catch (AggregateException ex)
{
var dcgoe = (DeleteConsumerGroupOffsetsException)ex.InnerException;
Assert.Equal(ErrorCode.Local_Partial, dcgoe.Error.Code);
Assert.Equal(groupId1, dcgoe.Result.Group);
Assert.Single(dcgoe.Result.Partitions);
Assert.Equal(0, dcgoe.Result.Partitions[0].Partition.Value);
}
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(1));
Assert.Single(committedOffsets);
Assert.Equal(offsetToCommit, committedOffsets[0].Offset); // offset is unchanged as the consumer is actively subscribed to the topic
consumer1.Unsubscribe();
// Deleting offset from the topic which has no set offset
consumer1.Assign(new List<TopicPartition>() { new TopicPartition(topic2.Name, 0) });
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(1));
Assert.Single(committedOffsets);
Assert.Equal(Offset.Unset, committedOffsets[0].Offset);
topicPartitionToReset = new List<TopicPartition>() { new TopicPartition(topic2.Name, 0) };
res = adminClient.DeleteConsumerGroupOffsetsAsync(groupId1, topicPartitionToReset).Result;
Assert.Equal(groupId1, res.Group);
Assert.Single(res.Partitions);
Assert.Equal(0, res.Partitions[0].Partition.Value);
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(1));
Assert.Single(committedOffsets);
Assert.Equal(Offset.Unset, committedOffsets[0].Offset); // offsets are unchaged after the reset
// Resetting offset for only one partiton in a multi partition topic
consumer1.Assign(new List<TopicPartition>() { new TopicPartition(topic3.Name, 0), new TopicPartition(topic3.Name, 1) });
consumer1.Commit(new List<TopicPartitionOffset>() { new TopicPartitionOffset(topic3.Name, 0, offsetToCommit), new TopicPartitionOffset(topic3.Name, 1, offsetToCommit + 1) }); // commit some offsets for consumer
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(1));
Assert.Equal(2, committedOffsets.Count);
Assert.Equal(offsetToCommit, committedOffsets[0].Offset);
Assert.Equal(offsetToCommit + 1, committedOffsets[1].Offset);
// Reset offset for partition 0
topicPartitionToReset = new List<TopicPartition>() { new TopicPartition(topic3.Name, 0) };
res = adminClient.DeleteConsumerGroupOffsetsAsync(groupId1, topicPartitionToReset).Result;
Assert.Equal(groupId1, res.Group);
Assert.Single(res.Partitions);
Assert.Equal(0, res.Partitions[0].Partition.Value);
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(1));
Assert.Equal(2, committedOffsets.Count);
Assert.Equal(Offset.Unset, committedOffsets[0].Offset); // offset is reset for partition 0
Assert.Equal(offsetToCommit + 1, committedOffsets[1].Offset);
}
LogToFile("end AdminClient_DeleteRecords");
}
/// <summary>
/// Test functionality of AdminClient.DeleteConsumerGroupOffsets
/// with the cooperative assignor.
/// </summary>
[Theory, MemberData(nameof(KafkaParameters))]
public void AdminClient_DeleteConsumerGroupOffsets_Cooperative(string bootstrapServers)
{
LogToFile("start AdminClient_DeleteConsumerGroupOffsets_Cooperative");
var assignmentDone = false;
using (var topic1 = new TemporaryTopic(bootstrapServers, 1))
using (var topic2 = new TemporaryTopic(bootstrapServers, 1))
using (var topic3 = new TemporaryTopic(bootstrapServers, 2))
using (var adminClient = new AdminClientBuilder(new AdminClientConfig { BootstrapServers = bootstrapServers }).Build())
using (var consumer1 = new TestConsumerBuilder<Null, string>(new ConsumerConfig {
BootstrapServers = bootstrapServers, GroupId = topic1.Name,
PartitionAssignmentStrategy = PartitionAssignmentStrategy.CooperativeSticky })
.SetPartitionsAssignedHandler((c, partitions) =>
{
assignmentDone = true;
Assert.Single(partitions);
Assert.Equal(0, partitions[0].Partition.Value);
Assert.Equal(topic1.Name, partitions[0].Topic);
}).Build())
{
var groupId1 = topic1.Name;
var offsetToCommit = 10;
consumer1.Assign(new List<TopicPartition>() { new TopicPartition(topic1.Name, 0) });
consumer1.Commit(new List<TopicPartitionOffset>() { new TopicPartitionOffset(topic1.Name, 0, offsetToCommit) }); // commit some offset for consumer
var committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(10));
Assert.Single(committedOffsets);
Assert.Equal(offsetToCommit, committedOffsets[0].Offset);
List<TopicPartition> topicPartitionToReset = new List<TopicPartition>() { new TopicPartition(topic1.Name, 0) };
var res = adminClient.DeleteConsumerGroupOffsetsAsync(groupId1, topicPartitionToReset).Result;
Assert.Equal(groupId1, res.Group);
Assert.Single(res.Partitions);
Assert.Equal(0, res.Partitions[0].Partition.Value);
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(1));
Assert.Single(committedOffsets);
Assert.Equal(Offset.Unset, committedOffsets[0].Offset);
// Behavior that works with AK 4.0+ remove when upgrading
// The classic integration tests
if (!TestConsumerGroupProtocol.IsClassic())
{
// Deleting offset from the topic which has no set offset
consumer1.Assign(new List<TopicPartition>() { new TopicPartition(topic2.Name, 0) });
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(1));
Assert.Single(committedOffsets);
Assert.Equal(Offset.Unset, committedOffsets[0].Offset);
topicPartitionToReset = new List<TopicPartition>() { new TopicPartition(topic2.Name, 0) };
res = adminClient.DeleteConsumerGroupOffsetsAsync(groupId1, topicPartitionToReset).Result;
Assert.Equal(groupId1, res.Group);
Assert.Single(res.Partitions);
Assert.Equal(0, res.Partitions[0].Partition.Value);
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(1));
Assert.Single(committedOffsets);
Assert.Equal(Offset.Unset, committedOffsets[0].Offset); // offsets are unchaged after the reset
}
// Resetting offset for only one partiton in a multi partition topic
consumer1.Assign(new List<TopicPartition>() { new TopicPartition(topic3.Name, 0), new TopicPartition(topic3.Name, 1) });
consumer1.Commit(new List<TopicPartitionOffset>() { new TopicPartitionOffset(topic3.Name, 0, offsetToCommit), new TopicPartitionOffset(topic3.Name, 1, offsetToCommit + 1) }); // commit some offsets for consumer
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(1));
Assert.Equal(2, committedOffsets.Count);
Assert.Equal(offsetToCommit, committedOffsets[0].Offset);
Assert.Equal(offsetToCommit + 1, committedOffsets[1].Offset);
// Reset offset for partition 0
topicPartitionToReset = new List<TopicPartition>() { new TopicPartition(topic3.Name, 0) };
res = adminClient.DeleteConsumerGroupOffsetsAsync(groupId1, topicPartitionToReset).Result;
Assert.Equal(groupId1, res.Group);
Assert.Single(res.Partitions);
Assert.Equal(0, res.Partitions[0].Partition.Value);
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(1));
Assert.Equal(2, committedOffsets.Count);
Assert.Equal(Offset.Unset, committedOffsets[0].Offset); // offset is reset for partition 0
Assert.Equal(offsetToCommit + 1, committedOffsets[1].Offset);
// Unassign to avoid duplicate assignment in the incremental case
consumer1.Unassign();
// Ensure consumer is actively subscribed to the topic
assignmentDone = false;
consumer1.Subscribe(new List<String>() { topic1.Name });
while (!assignmentDone)
{
// To handle the rebalance
consumer1.Consume(TimeSpan.FromSeconds(1));
}
consumer1.Commit(new List<TopicPartitionOffset>() { new TopicPartitionOffset(topic1.Name, 0, offsetToCommit) }); // commit some offset for consumer
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(10));
Assert.Single(committedOffsets);
Assert.Equal(offsetToCommit, committedOffsets[0].Offset);
topicPartitionToReset = new List<TopicPartition>() { new TopicPartition(topic1.Name, 0) };
try
{
res = adminClient.DeleteConsumerGroupOffsetsAsync(groupId1, topicPartitionToReset).Result;
Assert.True(false); // expecting exception.
}
catch (AggregateException ex)
{
var dcgoe = (DeleteConsumerGroupOffsetsException)ex.InnerException;
Assert.Equal(ErrorCode.Local_Partial, dcgoe.Error.Code);
Assert.Equal(groupId1, dcgoe.Result.Group);
Assert.Single(dcgoe.Result.Partitions);
Assert.Equal(0, dcgoe.Result.Partitions[0].Partition.Value);
}
committedOffsets = consumer1.Committed(TimeSpan.FromSeconds(1));
Assert.Single(committedOffsets);
Assert.Equal(offsetToCommit, committedOffsets[0].Offset); // offset is unchanged as the consumer is actively subscribed to the topic
consumer1.Unsubscribe();
consumer1.Close();
}
LogToFile("end AdminClient_DeleteConsumerGroupOffsets_Cooperative");
}
}
}