-
Notifications
You must be signed in to change notification settings - Fork 235
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
test(e2e): version upgrade test #1822
Conversation
'partitions': self.partitions, | ||
'replication-factor': self.replication_factor, | ||
'configs': { | ||
'min.insync.replicas': 2 |
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.
why 2?
tests/kafkatest/version.py
Outdated
@@ -127,6 +127,8 @@ def get_version(node=None): | |||
# This should match the LATEST_PRODUCTION version defined in MetadataVersion.java | |||
LATEST_STABLE_METADATA_VERSION = "3.7" | |||
|
|||
LATEST_STABLE_FEATURE_VERSION = '3' |
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 the name to LATEST_STABLE_AUTOMQ_VERSION
['s3.wal.cache.size', str(log_size)], | ||
['s3.wal.capacity', str(log_size)], | ||
['s3.wal.upload.threshold', str(log_size // 4)], | ||
['s3.block.cache.size', str(block_size)], |
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.
Why should we change the configs
No description provided.