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

Main for server v2.11 #1239

Merged
merged 66 commits into from
Mar 20, 2025
Merged

Main for server v2.11 #1239

merged 66 commits into from
Mar 20, 2025

Conversation

scottf
Copy link
Contributor

@scottf scottf commented Oct 10, 2024

Consumer priority and overflow

* Consumer Priority Group Overflow

* Tests for Overflow plus Simplification Fetch

* Tests for Overflow Simplification Iterate and Consume

* use consumer-groups branch in build
@scottf scottf changed the title Main 2 11 Main for server v2.11 Oct 11, 2024
@@ -680,6 +717,7 @@ public Builder(ConsumerConfiguration cc) {
this.maxBatch = cc.maxBatch;
this.maxBytes = cc.maxBytes;
this.numReplicas = cc.numReplicas;
this.pauseUntil = cc.pauseUntil;
Copy link
Contributor Author

@scottf scottf Oct 15, 2024

Choose a reason for hiding this comment

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

This missing was a bug unrelated to 2.11

@@ -34,7 +33,7 @@ class NatsFetchConsumer extends NatsMessageConsumerBase implements FetchConsumer
{
super(cachedConsumerInfo);

isNoWait = fetchConsumeOptions.isNoWait();
boolean isNoWait = fetchConsumeOptions.isNoWait();
Copy link
Contributor Author

@scottf scottf Oct 15, 2024

Choose a reason for hiding this comment

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

not needed in the object, local is fine

@@ -13,7 +13,7 @@ plugins {
id 'signing'
}

def jarVersion = "2.20.7"
def jarVersion = "2.21.0"
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Functionality requires a minor version

protected final boolean raiseStatusWarnings;

@SuppressWarnings("rawtypes") // Don't need the type of the builder to get its vars
protected BaseConsumeOptions(Builder b) {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

I figured out the correct way to do this

@SuppressWarnings("rawtypes") // Don't need the type of the builder to get its vars
protected BaseConsumeOptions(Builder b) {
protected BaseConsumeOptions(Builder<?, ?> b) {
// Message / bytes is part of base and is calculated
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This isn't 2.11 specific, but I had just made changes in this area, then realized I had better changes uncommitted, so put them here.

private FetchConsumeOptions(Builder b) {
super(b);
this.noWait = b.noWait;
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Not 2.11, again part of missed commit improvements after 2.10.26 changes

Copy link
Member

@aricart aricart left a comment

Choose a reason for hiding this comment

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

LGTM

Copy link
Member

@aricart aricart left a comment

Choose a reason for hiding this comment

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

LGTM

@scottf scottf merged commit fcb126a into main Mar 20, 2025
4 checks passed
@scottf scottf deleted the main-2-11 branch March 20, 2025 15:46
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