Skip to content

Commit

Permalink
Merge pull request #192 from nats-io/jarema/add-multiple-subjects-con…
Browse files Browse the repository at this point in the history
…sumers

Add Consumers with Multiple Filters ADR
  • Loading branch information
Jarema committed Jan 25, 2023
2 parents 282b9b4 + 4f975ef commit 3cf57e8
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ This repo is used to capture architectural and design decisions as a reference o
|[ADR-31](adr/ADR-31.md)|jetstream, client, server|JetStream Direct Get|
|[ADR-32](adr/ADR-32.md)|client|Service API|
|[ADR-33](adr/ADR-33.md)|jetstream, client, server|Metadata for Stream and Consumer|
|[ADR-34](adr/ADR-34.md)|jetstream, client, server|Title JetStream Consumers Multiple Filters|

## Jetstream

Expand All @@ -52,6 +53,7 @@ This repo is used to capture architectural and design decisions as a reference o
|[ADR-28](adr/ADR-28.md)|jetstream, server|JetStream RePublish|
|[ADR-31](adr/ADR-31.md)|jetstream, client, server|JetStream Direct Get|
|[ADR-33](adr/ADR-33.md)|jetstream, client, server|Metadata for Stream and Consumer|
|[ADR-34](adr/ADR-34.md)|jetstream, client, server|Title JetStream Consumers Multiple Filters|

## Kv

Expand Down Expand Up @@ -97,6 +99,7 @@ This repo is used to capture architectural and design decisions as a reference o
|[ADR-30](adr/ADR-30.md)|server|Subject Transform|
|[ADR-31](adr/ADR-31.md)|jetstream, client, server|JetStream Direct Get|
|[ADR-33](adr/ADR-33.md)|jetstream, client, server|Metadata for Stream and Consumer|
|[ADR-34](adr/ADR-34.md)|jetstream, client, server|Title JetStream Consumers Multiple Filters|

## When to write an ADR

Expand Down
Empty file added Readme.,d
Empty file.
55 changes: 55 additions & 0 deletions adr/ADR-34.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Title JetStream Consumers Multiple Filters

| Metadata | Value |
|----------|---------------------------|
| Date | 2023-01-18 |
| Author | @Jarema |
| Status | Approved |
| Tags | jetstream, client, server |

## Context and Problem Statement

Initially, JetStream Consumers could have only one Filter Subject.
As the number of feature requests to specify multiple subjects increased, this feature was added.
That could also reduce the number of Consumers in general.

## Context

Server PR: https://github.com/nats-io/nats-server/pull/3500

## Design

### Client side considerations

To implement the feature without any breaking changes, a new field should be added to Consumer config, both on the server and the clients.

1. The new field is:
`FilterSubjects []string json:"filter_subjects"`

2. Subjects can't overlap each other and have to fit the interest of the Stream.
In case of overlapping subjects, error (10136) will be returned.

3. Only one of `FilterSubject` or `FilterSubjects` can be passed. Passing both results in an error (10134)

4. Until future improvements, only old JS API for consumer creation can be used (the one without `FilterSubject`) in consumer create request. Using new API will yield an error (10135).

5. Each client, to support this feature, needs to add a new field that Marshals into a json array of strings.

6. To ensure compatibility with old servers that are not aware of `filter_subjects` field, client's should check the returned info (from update or create) if the filters are set up properly.

**Example**
```json
{
"durable_name": "consumer",
"filter_subjects": ["events", "data"]
}
```
6. Client does not have to check if both, single and multiple filters were passed, as server will validate it.
Client should add new errors to return them in client language idiomatic fashion.

### Server side

To make this change possible and reasonable peformant, server will have a buffer of first message for each subject filtered and will deliver them in order. After delivering message for a subject, buffer for that subject will be filled again, resulting in close to no overhead after the initial buffer fill.

This can be optimized but will not affect API.

0 comments on commit 3cf57e8

Please sign in to comment.