Skip to content

Commit 1ea7388

Browse files
authored
Merge pull request #323 from nats-io/ttl_refinements_2
Further TTL refinements
2 parents 09b9355 + bbff7f0 commit 1ea7388

File tree

1 file changed

+50
-13
lines changed

1 file changed

+50
-13
lines changed

adr/ADR-43.md

+50-13
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,63 @@ being discarded.
3434

3535
When a message with the `Nats-TTL` header is published to a stream with the feature disabled the message will be rejected with an error.
3636

37-
## Limit Tombstones
37+
## Limit Markers
3838

39-
Several scenarios for server-created tombstones can be imagined, the most often requested one though is when MaxAge removes last value (ie. the current value) for a Key.
39+
Several scenarios for server-created markers can be imagined, the most often requested one though is when MaxAge removes last value (ie. the current value) for a Key.
4040

4141
In this case when the server removes a message and the message is the last in the subject it would place a message with a TTL matching the Stream configuration value. The following headers would be placed:
4242

4343
```
44-
Nats-Applied-Limit: MaxAge
44+
Nats-Marker-Reason: MaxAge
4545
Nats-TTL: 1
4646
```
4747

48-
The `Nats-Limit-Applied` field is there to support future expansion of this feature.
48+
This behaviour is off by default unless opted in on the `SubjectDeleteMarkerTTL` Stream Configuration.
4949

50-
This behaviour is off by default unless opted in on the Stream Configuration.
50+
### Delete API Call Marker
51+
52+
When someone calls the delete message API of a stream the server will place a the following headers:
53+
54+
```
55+
Nats-Marker-Reason: Remove
56+
Nats-TTL: 1
57+
```
58+
59+
To ensure that emergency deletes of messages can be performed without the markers an opt-in option is being added to
60+
the `JSApiMsgDeleteRequest`:
61+
62+
```
63+
// JSApiMsgDeleteRequest delete message request.
64+
type JSApiMsgDeleteRequest struct {
65+
Seq uint64 `json:"seq"`
66+
NoErase bool `json:"no_erase,omitempty"`
67+
NoMarker bool `json:"no_marker,omitempty"`
68+
}
69+
```
70+
71+
This behaviour is off by default unless opted in on the `SubjectDeleteMarkerTTL` Stream Configuration.
72+
73+
### Purge API Call Marker
74+
75+
When someone calls the purge subject API of a stream the server will place a the following headers:
76+
77+
```
78+
Nats-Marker-Reason: Purge
79+
Nats-TTL: 1
80+
```
81+
82+
To ensure that emergency purges of messages can be performed without the markers an opt-in option is being added to
83+
the `JSApiStreamPurgeRequest`:
84+
85+
```
86+
type JSApiStreamPurgeRequest struct {
87+
Sequence uint64 `json:"seq,omitempty"`
88+
Subject string `json:"filter,omitempty"`
89+
Keep uint64 `json:"keep,omitempty"`
90+
NoMarker bool `json:"no_marker,omitempty"`
91+
}
92+
```
93+
This behaviour is off by default unless opted in on the `SubjectDeleteMarkerTTL` Stream Configuration.
5194

5295
### Sources and Mirrors
5396

@@ -68,9 +111,7 @@ type StreamConfig struct {
68111
// AllowMsgTTL allows header initiated per-message TTLs
69112
AllowMsgTTL bool `json:"allow_msg_ttl"`
70113

71-
// Enables placing markers in the stream for certain message delete operations
72-
SubjectDeleteMarkers bool `json:"subject_delete_markers,omitempty"`
73-
// When placing a marker, how long should it be valid, defaults to 15m when <= 0 or unset
114+
// Enables and sets a duration for adding server markers for delete, purge and max age limits
74115
SubjectDeleteMarkerTTL time.Duration `json:"subject_delete_marker_ttl,omitempty"`
75116
}
76117
```
@@ -79,10 +120,6 @@ Restrictions:
79120

80121
* The `AllowMsgTTL` field must not be updatable.
81122
* The `AllowMsgTTL` and `SubjectDeleteMarkerTTL` has a minimum value of 1 second.
82-
* The `SubjectDeleteMarkers` setting may not be set on a Mirror Stream.
83-
* The `SubjectDeleteMarkers` setting requires `AllowMsgTTL` and must error when not set.
84-
* The `SubjectDeleteMarkerTTL` may only be set when `SubjectDeleteMarkers` is set.
85-
* When `SubjectDeleteMarkerTTL` is unset the server will use `900000000000` (15 minutes) as the default and will update the supplied configuration.
86-
* When `SubjectDeleteMarkerTTL` is not given with `SubjectDeleteMarkers` set in Pedantic mode no default will be set and the request will fail.
123+
* The `SubjectDeleteMarkerTTL` setting may not be set on a Mirror Stream.
87124
* When `AllowMsgTTL` or `SubjectDeleteMarkers` are set the Stream should require API level `1`.
88125

0 commit comments

Comments
 (0)