You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: adr/ADR-43.md
+50-13
Original file line number
Diff line number
Diff line change
@@ -34,20 +34,63 @@ being discarded.
34
34
35
35
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.
36
36
37
-
## Limit Tombstones
37
+
## Limit Markers
38
38
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.
40
40
41
41
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:
42
42
43
43
```
44
-
Nats-Applied-Limit: MaxAge
44
+
Nats-Marker-Reason: MaxAge
45
45
Nats-TTL: 1
46
46
```
47
47
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.
49
49
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.
0 commit comments