Skip to content
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

feat: KstreamsRebalanceListener added as default rebalance listener #102

Merged

Conversation

marcosschroh
Copy link
Collaborator

No description provided.

@codecov
Copy link

codecov bot commented Feb 27, 2023

Codecov Report

Merging #102 (acf4a35) into master (0497af8) will decrease coverage by 0.54%.
The diff coverage is 80.95%.

❗ Current head acf4a35 differs from pull request most recent head 13cd98e. Consider uploading reports for the commit 13cd98e to get more accurate results

@@            Coverage Diff             @@
##           master     #102      +/-   ##
==========================================
- Coverage   95.82%   95.29%   -0.54%     
==========================================
  Files          22       22              
  Lines         647      659      +12     
==========================================
+ Hits          620      628       +8     
- Misses         27       31       +4     
Flag Coverage Δ
unittests 95.29% <80.95%> (-0.54%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
kstreams/rebalance_listener.py 76.47% <66.66%> (-23.53%) ⬇️
kstreams/__init__.py 100.00% <100.00%> (ø)
kstreams/streams.py 96.07% <100.00%> (+0.11%) ⬆️

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

Copy link
Member

@woile woile left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would also like to see a "batch commit" example

@marcosschroh marcosschroh changed the title feat: KstreamsRebalanceListener default rebalance listener added feat: KstreamsRebalanceListener added as default rebalance listener Feb 27, 2023
@marcosschroh
Copy link
Collaborator Author

marcosschroh commented Feb 27, 2023

I would also like to see a "batch commit" example

Do you mean something like this?

batch = []

async def process_msg_batch(a_batch: List[...]):
    ...

@stream_engine.stream(
    topics=["local--hello-world"],
    group_id="example-group",
    enable_auto_commit=False,  # it means that we need to call commit
)
async def consume(stream):
    async for cr in stream:
        batch.append(msg)
        if len(batch) == 100:
            await process_msg_batch(batch)
            await stream.commit()
            batch = []

@woile
Copy link
Member

woile commented Feb 27, 2023

Yes, something like that

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants