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

Per Message TTL Support for 2.11 #1295

Merged
merged 3 commits into from
Mar 26, 2025
Merged

Per Message TTL Support for 2.11 #1295

merged 3 commits into from
Mar 26, 2025

Conversation

scottf
Copy link
Contributor

@scottf scottf commented Mar 26, 2025

No description provided.

@scottf scottf requested a review from MauriceVanVeen March 26, 2025 19:14
this.expectedLastSeq = b.expectedLastSeq;
this.expectedLastSubSeq = b.expectedLastSubSeq;
this.msgId = b.msgId;
this.msgTtlSeconds = b.msgTtlSeconds;
Copy link
Contributor Author

Choose a reason for hiding this comment

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

since private I can change. simplified constructor to take builder like most other places

@@ -33,7 +33,7 @@ public enum AckPolicy {
*/
Explicit("explicit");

private String policy;
private final String policy;
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 happened to be here and the IDE yelled at me, so I fixed it.

.firstSequence(readLong(v, FIRST_SEQ, 1))
.allowMessageTtl(readBoolean(v, ALLOW_MSG_TTL))
.subjectDeleteMarkerTtl(readNanos(v, SUBJECT_DELETE_MARKER_TTL))
.build();
Copy link
Contributor Author

Choose a reason for hiding this comment

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

no sure why I didn't use the chain method before. This wasn't a necessary change.

public Builder subjectDeleteMarkerTtl(Duration subjectDeleteMarkerTtl) {
this.subjectDeleteMarkerTtl = subjectDeleteMarkerTtl;
return this;
}
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Coded, then commented out, then back in.

@@ -198,6 +198,7 @@ private Headers mergePublishOptions(Headers headers, PublishOptions opts) {
merged = mergeString(merged, EXPECTED_LAST_MSG_ID_HDR, opts.getExpectedLastMsgId());
merged = mergeString(merged, EXPECTED_STREAM_HDR, opts.getExpectedStream());
merged = mergeString(merged, MSG_ID_HDR, opts.getMessageId());
merged = mergeNum(merged, MSG_TTL_HDR, opts.getMsgTtlSeconds());
Copy link
Contributor Author

Choose a reason for hiding this comment

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

mergeNum will add the header if the value is > -1

assertEquals("MaxAge", mi.getHeaders().getFirst(NATS_MARKER_REASON_HDR));
assertEquals("50s", mi.getHeaders().getFirst(MSG_TTL_HDR));
});
}
Copy link
Contributor Author

Choose a reason for hiding this comment

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

tests copied directly from the go client

public void run(Options.Builder builder, InServerTest inServerTest) throws Exception {
run(builder, null, inServerTest);
}

Copy link
Contributor Author

Choose a reason for hiding this comment

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

just some extra testing scaffolding

* @param msgTtlSeconds the ttl in seconds
* @return The Builder
*/
public Builder msgTtlSeconds(int msgTtlSeconds) {
Copy link
Member

Choose a reason for hiding this comment

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

Nats-TTL also supports the string "never", to indicate the message will never be removed, even if it would otherwise expire due to the stream's MaxAge.

Copy link
Member

@MauriceVanVeen MauriceVanVeen 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 4e1b04e into main Mar 26, 2025
4 checks passed
@scottf scottf deleted the ttl-211 branch March 26, 2025 21:27
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