-
Notifications
You must be signed in to change notification settings - Fork 23
[KIP-848]: Add testing changes and describe consumer group changes for KIP-848 #329
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
Merged
Merged
Changes from 23 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
7e534b0
Run perf tests for consumer protocol
PratRanj07 821058b
changed docker location for Promisified tests
PratRanj07 9bb1418
Run promisified tests with the new protocol
PratRanj07 598fc26
Added kafka_jaas.conf
PratRanj07 3b609c0
Remove forbidden properties from KAFAKJS configs too
PratRanj07 663a602
Skip for partitionAssigners as well
PratRanj07 125a548
Increase test timeout
PratRanj07 33eb38f
increase sleep timeout and expect any strings in protocol in describe…
PratRanj07 8c51e8e
increase test timeout
PratRanj07 e624c99
set session timeout in server properties
PratRanj07 5767f5a
set session timeout 10 secs
PratRanj07 6b868fa
Skip oauthbreaker tests
PratRanj07 5b05c28
Skip all oauthbreaker_cb tests
PratRanj07 e18c470
docker logging
PratRanj07 2a6b7d8
increase timeout to 60
PratRanj07 41a30c5
pin versions
PratRanj07 dee9afd
Remove logging and decrease sleep time
PratRanj07 8db15b5
Change coverage file name
PratRanj07 4bd627d
[KIP-848]: Structure change for DescribeConsumerGroups (#327)
PratRanj07 7a0e1cc
requested changes
PratRanj07 3d89848
Test fix
PratRanj07 c7d2ba0
Test fix
PratRanj07 8ceb546
Changelog and test fix
PratRanj07 704d1df
Changelog change
PratRanj07 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| services: | ||
| kafka: | ||
| image: apache/kafka:4.0.0 | ||
| restart: unless-stopped | ||
| container_name: kafka | ||
| ports: | ||
| - 9092:29092 | ||
| - 9093:29093 | ||
| volumes: | ||
| - ./kafka_jaas.conf:/etc/kafka/kafka_jaas.conf | ||
| - ./kraft/server.properties:/mnt/shared/config/server.properties | ||
| environment: | ||
| KAFKA_OPTS: "-Djava.security.auth.login.config=/etc/kafka/kafka_jaas.conf" | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| KafkaServer { | ||
| org.apache.kafka.common.security.plain.PlainLoginModule required | ||
| username="admin" | ||
| password="admin" | ||
| user_admin="admin" | ||
| user_testuser="testpass"; | ||
| }; | ||
|
|
||
| Client { | ||
| org.apache.kafka.common.security.plain.PlainLoginModule required | ||
| username="admin" | ||
| password="admin"; | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| broker.id=0 | ||
| port=9092 | ||
| reserved.broker.max.id=65536 | ||
| listeners=PLAINTEXT://:9092,CONTROLLER://:38705,SASL_PLAINTEXT://:9093,DOCKER://:29092,DOCKER_SASL_PLAINTEXT://:29093 | ||
| advertised.listeners=PLAINTEXT://kafka:9092,SASL_PLAINTEXT://kafka:9093,DOCKER://localhost:9092,DOCKER_SASL_PLAINTEXT://localhost:9093 | ||
| num.partitions=4 | ||
| auto.create.topics.enable=true | ||
| delete.topic.enable=true | ||
| default.replication.factor=1 | ||
| offsets.topic.replication.factor=1 | ||
| transaction.state.log.replication.factor=1 | ||
| transaction.state.log.min.isr=1 | ||
| security.inter.broker.protocol=SASL_PLAINTEXT | ||
| sasl.mechanism.controller.protocol=PLAIN | ||
| sasl.mechanism.inter.broker.protocol=PLAIN | ||
| super.users=User:admin | ||
| allow.everyone.if.no.acl.found=true | ||
|
|
||
| broker.rack=RACK1 | ||
| replica.selector.class=org.apache.kafka.common.replica.RackAwareReplicaSelector | ||
| group.coordinator.rebalance.protocols=classic,consumer | ||
| connections.max.reauth.ms=10000 | ||
| log.retention.bytes=1000000000 | ||
| process.roles=broker,controller | ||
| controller.listener.names=CONTROLLER | ||
| listener.security.protocol.map=PLAINTEXT:PLAINTEXT,SSL:SSL,SASL_PLAINTEXT:SASL_PLAINTEXT,SASL_SSL:SASL_SSL,CONTROLLER:SASL_PLAINTEXT,DOCKER:PLAINTEXT,DOCKER_SASL_PLAINTEXT:SASL_PLAINTEXT | ||
| authorizer.class.name=org.apache.kafka.metadata.authorizer.StandardAuthorizer | ||
| sasl.enabled.mechanisms=PLAIN | ||
| controller.quorum.voters=0@kafka:38705 | ||
| group.consumer.min.session.timeout.ms =6000 | ||
| group.consumer.session.timeout.ms = 10000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
change to
"it defaults to being undefined"