components-contrib/pubsub
Tomasz Pietrek 86cf34ef8f
Add missing filter subject in Jetstream pubsub (#2312)
Signed-off-by: Tomasz Pietrek <tomasz@nats.io>

Signed-off-by: Tomasz Pietrek <tomasz@nats.io>
Co-authored-by: Bernd Verst <4535280+berndverst@users.noreply.github.com>
Co-authored-by: Dapr Bot <56698301+dapr-bot@users.noreply.github.com>
2022-11-30 10:46:15 -08:00
..
aws/snssqs linter 2022-11-10 10:32:24 -08:00
azure Misc refactorings 2022-11-17 16:29:29 +00:00
gcp/pubsub Segregating Bulk Publisher and Bulk Subscriber and removing them as mandatory 2022-09-14 10:55:48 +05:30
hazelcast Add note that pubsub.hazelcast is deprecated (#2240) 2022-10-31 13:32:54 -07:00
in-memory Segregating Bulk Publisher and Bulk Subscriber and removing them as mandatory 2022-09-14 10:55:48 +05:30
jetstream Add missing filter subject in Jetstream pubsub (#2312) 2022-11-30 10:46:15 -08:00
kafka Update EntryID to EntryId 2022-09-29 15:49:45 +05:30
kubemq Fix linter issues, update test config, rebase upstream 2022-11-02 15:15:45 -07:00
mqtt Add mqtt retained information to pubsub message metadata (#2299) 2022-11-29 10:06:20 -08:00
natsstreaming Segregating Bulk Publisher and Bulk Subscriber and removing them as mandatory 2022-09-14 10:55:48 +05:30
pulsar Segregating Bulk Publisher and Bulk Subscriber and removing them as mandatory 2022-09-14 10:55:48 +05:30
rabbitmq Upgrade linter and fix linter issues 2022-11-11 13:19:57 -08:00
redis Segregating Bulk Publisher and Bulk Subscriber and removing them as mandatory 2022-09-14 10:55:48 +05:30
rocketmq Add rocketmq configuration items. Add orderly message. (#2198) 2022-11-10 11:54:40 -08:00
README.md middleware: changes wasm basic to use waPC (#1833) 2022-09-13 17:12:59 -07:00
concurrency.go update license to Apache v2.0 (#1406) 2022-01-04 19:53:31 -08:00
concurrency_test.go update license to Apache v2.0 (#1406) 2022-01-04 19:53:31 -08:00
envelope.go Merge branch 'master' into feature/pubsub-batching 2022-09-27 08:15:37 +05:30
envelope_test.go Add time to CloudEvent automatically if not present (#2123) 2022-09-26 14:44:57 -07:00
feature.go Added pubsub.FeatureSubscribeWildcards capability (#1887) 2022-07-18 18:04:59 -07:00
metadata.go fix typo in comment 2022-10-27 20:37:35 -07:00
pubsub.go Kafka bulk publish (#2059) 2022-09-15 13:17:17 -07:00
requests.go Update EntryID to EntryId 2022-09-29 15:49:45 +05:30
responses.go Update EntryID to EntryId 2022-09-29 15:49:45 +05:30
responses_test.go Update EntryID to EntryId 2022-09-29 15:49:45 +05:30

README.md

Pub Sub

Pub Sub components provide a common way to interact with different message bus implementations to achieve reliable, high-scale scenarios based on event-driven async communications, while allowing users to opt-in to advanced capabilities using defined metadata.

Implementing a new Pub Sub

A compliant pub sub needs to implement the PubSub inteface included in the pubsub.go file.

Message TTL (or Time To Live)

Message Time to live is implemented by default in Dapr. A publishing application can set the expiration of individual messages by publishing it with the ttlInSeconds metadata. Components that support message TTL should parse this metadata attribute. For components that do not implement this feature in Dapr, the runtime will automatically populate the expiration attribute in the CloudEvent object if ttlInSeconds is present - in this case, Dapr will expire the message when a Dapr subscriber is about to consume an expired message. The expiration attribute is handled by Dapr runtime as a convenience to subscribers, dropping expired messages without invoking subscribers' endpoint. Subscriber applications that don't use Dapr, need to handle this attribute and implement the expiration logic.

If the pub sub component implementation can handle message TTL natively without relying on Dapr, consume the ttlInSeconds metadata in the component implementation for the Publish function. Also, implement the Features() function so the Dapr runtime knows that it should not add the expiration attribute to events.

Example:

import contribMetadata "github.com/dapr/components-contrib/metadata"

//...

func (c *MyComponent) Publish(req *pubsub.PublishRequest) error {
	//...
	ttl, hasTTL, _ := contribMetadata.TryGetTTL(req.Metadata)
	if hasTTL {
		//... handle ttl for component.
	}
	//...
	return nil
}

func (c *MyComponent) Features() []pubsub.Feature {
	// Tip: cache this list into a private property.
	// Simply return nil if component does not implement any addition features.
	return []pubsub.Feature{pubsub.FeatureMessageTTL}
}

For pub sub components that support TTL per topic or queue but not per message, there are some design choices:

  • Configure the TTL for the topic or queue as usual. Optionally, implement topic or queue provisioning in the Init() method, using the component configuration's metadata to determine the topic or queue TTL.
  • Let Dapr runtime handle ttlInSeconds for messages that want to expire earlier than the topic's or queue's TTL. So, applications can still benefit from TTL per message via Dapr for this scenario.

Note: as per the CloudEvent spec, timestamps (like expiration) are formatted using RFC3339.