pubsub_client 1.1.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.txt +28 -0
- data/README.md +44 -2
- data/lib/pubsub_client.rb +30 -3
- data/lib/pubsub_client/null_subscriber.rb +34 -0
- data/lib/pubsub_client/null_subscriber_factory.rb +12 -0
- data/lib/pubsub_client/publisher.rb +3 -2
- data/lib/pubsub_client/publisher_factory.rb +2 -0
- data/lib/pubsub_client/subscriber.rb +48 -0
- data/lib/pubsub_client/subscriber_factory.rb +30 -0
- data/lib/pubsub_client/version.rb +1 -1
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03ba6e12917979bfedb1b0d4aeade60f2ce675c561e99d57ace0b0850abb0f24
|
4
|
+
data.tar.gz: e0628ab5d8c8183c95a1a438be7e32964870d891d7ded108bf5ce4eb10f63c5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4dafd9b8a6da6055d4d10bba716eb54d72fb6202b84ed693c090a9a53aa16c43ec6306fc641943f207da575bab6922fade8780536392f2f6c5231c7f88dc1558
|
7
|
+
data.tar.gz: 2f975bcc3d71fb66d9031be80929b0e709d0605e7596039274e4591b7ab36f83c5f70b67a49d4aebb2adac1a3d75588595bf787a2c4f7e1fdec45078f708d176
|
data/CHANGELOG.txt
CHANGED
@@ -1,3 +1,31 @@
|
|
1
|
+
Version 1.5.0 2020-11-05
|
2
|
+
------------------------
|
3
|
+
6cab366 Do not require GAC when stubbed
|
4
|
+
dab08dd Update `Subscriber#on_error` documentation
|
5
|
+
|
6
|
+
Version 1.4.1 2020-10-26
|
7
|
+
------------------------
|
8
|
+
d28d99f Pass published attributes all the way through the client
|
9
|
+
|
10
|
+
Version 1.4.0 2020-10-26
|
11
|
+
------------------------
|
12
|
+
60b8403 Publish attributes
|
13
|
+
|
14
|
+
Version 1.3.0 2020-10-23
|
15
|
+
------------------------
|
16
|
+
e9e87f7 This adds the ability to subscribe to a Pub/Sub topic. Of note, we expose two additional configuration params:
|
17
|
+
- `concurrency`: the number of threads the subscriber will run to process messages (defaults to 8 threads)
|
18
|
+
- `auto_ack`: flag to auto ack messages (default is `true` and _will_ ack messages)
|
19
|
+
|
20
|
+
These changes come with a handful of useful checks:
|
21
|
+
- ensures credentials are configured prior to subscribing
|
22
|
+
- raises an error if the target subscription does not exist
|
23
|
+
- raises an error if attempting to subscribe to a topic that has already been subscribed to
|
24
|
+
|
25
|
+
Version 1.2.0 2020-09-25
|
26
|
+
------------------------
|
27
|
+
aede3ab Raise custom error if GOOGLE_APPLICATION_CREDENTIALS not set
|
28
|
+
|
1
29
|
Version 1.1.0 2020-09-25
|
2
30
|
------------------------
|
3
31
|
d3f8ed1 Throw error if topic does not exist
|
data/README.md
CHANGED
@@ -32,9 +32,11 @@ end
|
|
32
32
|
|
33
33
|
## Usage
|
34
34
|
|
35
|
+
### Publishing
|
36
|
+
|
35
37
|
To publish a message to Pub/Sub, call `PubsubClient.publish(message, 'the-topic')`. This method takes any serializable object as an argument and yields a result object to a block. The `result` object has a method `#succeeded?` that returns `true` if the message was successfully published, otherwise `false`. In the latter case, there is a method `#error` that returns the error.
|
36
38
|
|
37
|
-
|
39
|
+
#### Example
|
38
40
|
```ruby
|
39
41
|
PubsubClient.publish(message, 'some-topic') do |result|
|
40
42
|
if result.succeeded?
|
@@ -45,14 +47,54 @@ PubsubClient.publish(message, 'some-topic') do |result|
|
|
45
47
|
end
|
46
48
|
```
|
47
49
|
|
50
|
+
### Subscribing
|
51
|
+
|
52
|
+
To subscribe to a topic, a client must first get a handle to the subscriber object. After doing so, a call to `subscriber.listener` will yield two arguments: the data (most clients will only need this) and the full Pub/Sub message (for anything more robust). Documentation for the full message can be found [here](https://googleapis.dev/ruby/google-cloud-pubsub/latest/Google/Cloud/PubSub/ReceivedMessage.html).
|
53
|
+
|
54
|
+
Optionally, a client can choose to handle exceptions raised by the subscriber. If a client chooses to do so, the listener **must** be configured before `on_error` since the latter needs a handler to the underlying listener. Additionally, exceptions will only be raised when the work inside the block is happening on the same thread. For instance, if the block enqueues a background worker and that worker raises an error, it will not be handled by the `on_error` block.
|
55
|
+
|
56
|
+
#### Example
|
57
|
+
```ruby
|
58
|
+
subscriber = PubsubClient.subscriber('some-topic')
|
59
|
+
|
60
|
+
subscriber.listener(concurrency: 4, auto_ack: false) do |data, received_message|
|
61
|
+
# Most clients will only need the first yielded arg.
|
62
|
+
# It is the same as calling received_message.data
|
63
|
+
end
|
64
|
+
|
65
|
+
# Optional
|
66
|
+
subscriber.on_error do |ex|
|
67
|
+
# Do something with the exception.
|
68
|
+
end
|
69
|
+
|
70
|
+
subscriber.subscribe # This will sleep
|
71
|
+
```
|
72
|
+
|
73
|
+
By default, the underlying subscriber will use a concurrency of `8` threads and will acknowledge all messages. If these defaults are acceptable to the client, no arguments need to be passed in the call to `listener`.
|
74
|
+
```ruby
|
75
|
+
subscriber.listener do |data, received_message|
|
76
|
+
# Do something
|
77
|
+
end
|
78
|
+
```
|
79
|
+
|
48
80
|
## Development
|
49
81
|
|
50
82
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
51
83
|
|
52
|
-
To install this gem onto your local machine, run `bundle exec rake install`.
|
84
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
53
85
|
|
54
86
|
## Contributing
|
55
87
|
|
88
|
+
To contribute, open a pull request against `main`. Note that once your changes have been made, you should _not_ manually modify the `version.rb` or `CHANGELOG` as these will get updated automatically as part of the release process.
|
89
|
+
|
90
|
+
To release a new version, after you have merged your changes into `main`:
|
91
|
+
1. Run the `gem-release` script. This can be found [here](https://github.com/apartmentlist/scripts/blob/main/bin/gem-release).
|
92
|
+
```
|
93
|
+
path/to/gem-release [major/minor/patch] "Short message with changes"
|
94
|
+
```
|
95
|
+
Note that the `Short message with changes` is what gets reflected in the releases of the repo.
|
96
|
+
1. Run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). This step will update the `version.rb` and `CHANGELOG` files.
|
97
|
+
|
56
98
|
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/pubsub_client. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/pubsub_client/blob/master/CODE_OF_CONDUCT.md).
|
57
99
|
|
58
100
|
|
data/lib/pubsub_client.rb
CHANGED
@@ -1,21 +1,48 @@
|
|
1
1
|
require 'pubsub_client/version'
|
2
2
|
require 'pubsub_client/null_publisher_factory'
|
3
|
+
require 'pubsub_client/null_subscriber_factory'
|
3
4
|
require 'pubsub_client/publisher_factory'
|
5
|
+
require 'pubsub_client/subscriber_factory'
|
4
6
|
|
5
7
|
module PubsubClient
|
6
8
|
Error = Class.new(StandardError)
|
7
9
|
ConfigurationError = Class.new(Error)
|
10
|
+
CredentialsError = Class.new(Error)
|
8
11
|
InvalidTopicError = Class.new(Error)
|
12
|
+
InvalidSubscriptionError = Class.new(Error)
|
9
13
|
|
10
14
|
class << self
|
11
15
|
def stub!
|
12
|
-
raise ConfigurationError, 'PubsubClient is already configured' if @publisher_factory
|
16
|
+
raise ConfigurationError, 'PubsubClient is already configured' if @publisher_factory || @subscriber_factory
|
13
17
|
@publisher_factory = NullPublisherFactory.new
|
18
|
+
@subscriber_factory = NullSubscriberFactory.new
|
19
|
+
@stubbed = true
|
14
20
|
end
|
15
21
|
|
16
|
-
|
22
|
+
# @param message [String] The message to publish.
|
23
|
+
# @param topic [String] The name of the topic to publish to.
|
24
|
+
def publish(message, topic, attributes = {}, &block)
|
25
|
+
ensure_credentials!
|
26
|
+
|
17
27
|
@publisher_factory ||= PublisherFactory.new
|
18
|
-
@publisher_factory.build(topic).publish(message, &block)
|
28
|
+
@publisher_factory.build(topic).publish(message, attributes, &block)
|
29
|
+
end
|
30
|
+
|
31
|
+
# @param subscription [String] - The name of the topic to subscribe to.
|
32
|
+
def subscriber(subscription)
|
33
|
+
ensure_credentials!
|
34
|
+
|
35
|
+
@subscriber_factory ||= SubscriberFactory.new
|
36
|
+
@subscriber_factory.build(subscription)
|
37
|
+
end
|
38
|
+
|
39
|
+
private
|
40
|
+
|
41
|
+
def ensure_credentials!
|
42
|
+
return if defined?(@stubbed) && @stubbed
|
43
|
+
unless ENV['GOOGLE_APPLICATION_CREDENTIALS']
|
44
|
+
raise CredentialsError, 'GOOGLE_APPLICATION_CREDENTIALS must be set'
|
45
|
+
end
|
19
46
|
end
|
20
47
|
end
|
21
48
|
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PubsubClient
|
4
|
+
# A null object to act as a subscriber when clients are in dev or test
|
5
|
+
class NullSubscriber
|
6
|
+
# This adds a subset of the available methods on the
|
7
|
+
# Google::Cloud::PubSub::ReceivedMessage, which is what
|
8
|
+
# gets yielded by the subscription when configuring the listener.
|
9
|
+
# For a list of methods, see the following link:
|
10
|
+
# https://googleapis.dev/ruby/google-cloud-pubsub/latest/Google/Cloud/PubSub/ReceivedMessage.html
|
11
|
+
NullResult = Struct.new(:acknowledge!) do
|
12
|
+
def data
|
13
|
+
'{"key":"value"}'
|
14
|
+
end
|
15
|
+
|
16
|
+
def published_at
|
17
|
+
Time.now
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def listener(*, &block)
|
22
|
+
res = NullResult.new
|
23
|
+
yield res.data, res
|
24
|
+
end
|
25
|
+
|
26
|
+
def subscribe
|
27
|
+
# no-op
|
28
|
+
end
|
29
|
+
|
30
|
+
def on_error(&block)
|
31
|
+
# no-op
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'null_subscriber'
|
4
|
+
|
5
|
+
module PubsubClient
|
6
|
+
# A null object to act as a subscriber factory when clients are in dev or test
|
7
|
+
class NullSubscriberFactory
|
8
|
+
def build(*)
|
9
|
+
NullSubscriber.new
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -4,12 +4,13 @@ require 'google/cloud/pubsub'
|
|
4
4
|
|
5
5
|
module PubsubClient
|
6
6
|
class Publisher
|
7
|
+
# @param topic [Google::Cloud::PubSub::Topic]
|
7
8
|
def initialize(topic)
|
8
9
|
@topic = topic
|
9
10
|
end
|
10
11
|
|
11
|
-
def publish(message, &block)
|
12
|
-
topic.publish_async(message, &block)
|
12
|
+
def publish(message, attributes = {}, &block)
|
13
|
+
topic.publish_async(message, attributes, &block)
|
13
14
|
end
|
14
15
|
|
15
16
|
def flush
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'google/cloud/pubsub'
|
4
|
+
|
5
|
+
module PubsubClient
|
6
|
+
class Subscriber
|
7
|
+
DEFAULT_CONCURRENCY = 8
|
8
|
+
|
9
|
+
# @param subscription [Google::Cloud::PubSub::Subscription]
|
10
|
+
def initialize(subscription)
|
11
|
+
@subscription = subscription
|
12
|
+
end
|
13
|
+
|
14
|
+
# @param concurrency [Integer] - The number of threads to run the subscriber with. Default is 8.
|
15
|
+
# @param auto_ack [Boolean] - Flag to acknowledge the Pub/Sub message. A message must be acked
|
16
|
+
# to remove it from the topic. Default is `true`.
|
17
|
+
#
|
18
|
+
# @return [Google::Cloud::PubSub::Subscriber]
|
19
|
+
def listener(concurrency: DEFAULT_CONCURRENCY, auto_ack: true, &block)
|
20
|
+
@listener ||= begin
|
21
|
+
@subscription.listen(threads: { callback: concurrency }) do |received_message|
|
22
|
+
yield received_message.data, received_message
|
23
|
+
received_message.acknowledge! if auto_ack
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def subscribe
|
29
|
+
raise ConfigurationError, 'A listener must be configured' unless @listener
|
30
|
+
|
31
|
+
begin
|
32
|
+
@listener.start
|
33
|
+
|
34
|
+
sleep
|
35
|
+
rescue SignalException
|
36
|
+
@listener.stop.wait!
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def on_error(&block)
|
41
|
+
raise ConfigurationError, 'A listener must be configured' unless @listener
|
42
|
+
|
43
|
+
@listener.on_error do |exception|
|
44
|
+
yield exception
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'subscriber'
|
4
|
+
|
5
|
+
module PubsubClient
|
6
|
+
class SubscriberFactory
|
7
|
+
def initialize
|
8
|
+
@subscribers = {}
|
9
|
+
end
|
10
|
+
|
11
|
+
# @param subscription_name [String]
|
12
|
+
# @retrun [Subscriber]
|
13
|
+
def build(subscription_name)
|
14
|
+
if @subscribers.key?(subscription_name)
|
15
|
+
raise ConfigurationError, "PubsubClient already subscribed to #{subscription_name}"
|
16
|
+
end
|
17
|
+
|
18
|
+
@subscribers[subscription_name] = build_subscriber(subscription_name)
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
def build_subscriber(subscription_name)
|
24
|
+
pubsub = Google::Cloud::PubSub.new
|
25
|
+
subscription = pubsub.subscription(subscription_name)
|
26
|
+
raise InvalidSubscriptionError, "The subscription #{subscription_name} does not exist" unless subscription
|
27
|
+
Subscriber.new(subscription)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pubsub_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Apartment List Platforms
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -88,8 +88,12 @@ files:
|
|
88
88
|
- lib/pubsub_client.rb
|
89
89
|
- lib/pubsub_client/null_publisher.rb
|
90
90
|
- lib/pubsub_client/null_publisher_factory.rb
|
91
|
+
- lib/pubsub_client/null_subscriber.rb
|
92
|
+
- lib/pubsub_client/null_subscriber_factory.rb
|
91
93
|
- lib/pubsub_client/publisher.rb
|
92
94
|
- lib/pubsub_client/publisher_factory.rb
|
95
|
+
- lib/pubsub_client/subscriber.rb
|
96
|
+
- lib/pubsub_client/subscriber_factory.rb
|
93
97
|
- lib/pubsub_client/version.rb
|
94
98
|
- pubsub_client.gemspec
|
95
99
|
homepage: https://github.com/apartmentlist/pubsub_client
|