-
Notifications
You must be signed in to change notification settings - Fork 15.4k
KAFKA-14589 ConsumerGroupCommand rewritten in java #14471
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 99 commits
e25f5ab
6da9b64
1bba7b5
b2022aa
0554aaa
304f584
a1e3d6c
d57e7c1
b650bb3
1f4ea90
7608683
00b5b01
6d52f02
b9c10b9
13e517f
cf9fcbd
daba249
ef64af8
3b740c9
4fc836c
a1b6398
64a3477
c31cba6
f890648
a80a8dd
f17135b
722aa86
c829fd0
67ddbf1
303e592
dc07aa3
adcb688
e671974
457af5c
0efe53b
ad6564f
9191f6c
a837e84
fb5c789
38e43d0
c74f4d4
8c324ce
377270a
8063da1
0e3f4f4
fc288fe
73e2fba
74cc1d7
a7080ae
26a437d
5e49029
700a358
1f4b547
85cd1d3
96ff15f
9ae4e2a
a6b1a0b
6307859
6c870d4
d29d611
04f80f5
170b800
2030962
3569971
e4e0a1e
b74bd03
a34c6c6
8426c04
fd29b3f
54f1017
4c60e22
a1254d8
341c81b
419c0ea
4660f76
3b1d38b
b4539d8
8a173f2
311e9fa
e406967
3933267
837a9b2
3ade3dc
e9018cd
dfadfb7
643dd26
bfbdfa5
95ec460
8365091
8560d5d
528c56f
0dd7e43
7dbc9e4
e1175a6
c7600b8
4f7befa
3430af9
23a01af
ba9bf6a
519f016
6645d62
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -330,6 +330,7 @@ | |
| <allow pkg="kafka.zk" /> | ||
| <allow pkg="org.apache.kafka.tools"/> | ||
| <allow pkg="org.apache.kafka.server.config" /> | ||
| <allow pkg="org.apache.kafka.metadata.authorizer"/> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this necessary? I remove it and build still works well.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This not required. Sorry for that, should been check this before review. |
||
| <allow pkg="scala"/> | ||
| </subpackage> | ||
| </subpackage> | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -664,7 +664,7 @@ object TestUtils extends Logging { | |
| * until the leader is elected and metadata is propagated to all brokers. If it does, the method verifies that it has | ||
| * the expected number of partition and replication factor however it does not guarantee that the topic is empty. | ||
| */ | ||
| def createOffsetsTopic(zkClient: KafkaZkClient, servers: Seq[KafkaBroker]): Unit = { | ||
| def createOffsetsTopic[B <: KafkaBroker](zkClient: KafkaZkClient, servers: Seq[B]): Unit = { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why we need this change?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was compilation error earlier. |
||
| val server = servers.head | ||
| val numPartitions = server.config.offsetsTopicPartitions | ||
| val replicationFactor = server.config.offsetsTopicReplicationFactor.toInt | ||
|
|
||
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please test it manually?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Basic manual testing done.