-
Notifications
You must be signed in to change notification settings - Fork 2
Refactor kafka log directory setup #84
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
base: r-branch-produce-fw-3
Are you sure you want to change the base?
Conversation
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing Touches🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
b4fe97c
to
cd90e90
Compare
ff576c4
to
bf72df4
Compare
f103d15
to
66a1c32
Compare
cd90e90
to
a8ef41f
Compare
0869f6a
to
3ee5c83
Compare
Produce
stages079b212
to
4931bba
Compare
|
4931bba
to
5738f1b
Compare
55642db
to
c89f8cc
Compare
5738f1b
to
48e7511
Compare
2 each for Fetch, Produce Of which 1 has single partition, and the other has multiple partitions.
…rn to improve code clarity and reduce duplication
…record batches and timestamps
48e7511
to
5285a69
Compare
TOPIC1_NAME = topic_names[0] | ||
TOPIC2_NAME = topic_names[1] | ||
TOPIC3_NAME = topic_names[2] | ||
random_topic_uuids := random.RandomInts(10, 100, 3) | ||
TOPIC4_NAME = topic_names[3] | ||
random_topic_uuids := random.RandomInts(10, 100, 4) |
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.
Let's avoid "pre-creating" these randomly here and stick to our usual pattern of creating random values on the fly in each stage. You can expose something like getRandomTopicConfig()
/ getRandomTopicConfigs()
if you'd like and use that.
From a user's perspective, let's have the stage functions read more cleanly and make it clear that values are generated randomly on the fly.
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.
Note added
This is part 2 of 3 in a stack made with GitButler:
Produce
extension stages #88Produce
assertions #80