PubSub on Rails is a gem facilitating opinionated approach to leveraging publish/subscribe messaging pattern in Ruby on Rails applications.
There are many programming techniques that are powerful yet complex. The beauty of publish/subscribe patterns is that it is powerful while staying simple.
Instead of using callbacks or directly and explicitly executing series of actions, action execution is requested using an event object combined with event subscription. This helps in keeping code isolation high, and therefore makes large codebases maintainable and testable.
While it has little to do with event sourcing, it encompasses a couple of ideas related to domain-driven development. Therefore it is only useful in applications in which domains/bounded-contexts can be identified. This is especially true for applications covering many side effects, integrations and complex business logic.
# Gemfile
gem 'pubsub_on_rails', '~> 1.1.0'
# config/initializers/pub_sub.rb
require 'pub_sub/subscriptions_list'
Rails.configuration.to_prepare do
Rails.configuration.event_store = event_store = RailsEventStore::Client.new(
repository: RailsEventStoreActiveRecord::EventRepository.new(serializer: RubyEventStore::NULL)
)
PubSub::SubscriptionsList.config_path =
Rails.root.join('config/subscriptions.yml')
PubSub::SubscriptionsList.load!(event_store)
end
- Update gem to version
1.0.0
# Gemfile
gem 'pubsub_on_rails', '~> 1.0.0'
- Run Rails Event Store migrations
MySQL
bin/rails generate rails_event_store_active_record:migration
bin/rails db:migrate
PostgreSQL
bin/rails generate rails_event_store_active_record:migration --data-type=jsonb
bin/rails db:migrate
- Update initializer to use Rails Event Store Client
# config/initializers/pub_sub.rb
require 'pub_sub/subscriptions_list'
Rails.configuration.to_prepare do
Rails.configuration.event_store = event_store = RailsEventStore::Client.new(
repository: RailsEventStoreActiveRecord::EventRepository.new(serializer: RubyEventStore::NULL)
)
PubSub::SubscriptionsList.config_path =
Rails.root.join('config/subscriptions.yml')
PubSub::SubscriptionsList.load!(event_store)
end
- Override
EventWorker
or overrideEventHandlerBuilder
if needed
For example when you want to have different workers for different events:
# config/initializers/pub_sub.rb
PubSub::EventHandlerBuilder.class_eval do
def call(event)
if async?
if class_name.to_s.include?('MyType')
SingleThreadEventWorker.perform_in(2.seconds, class_name.to_s, event.event_id)
else
EventWorker.perform_in(2.seconds, class_name.to_s, event.event_id)
end
else
class_name.new(event).call!
end
end
end
- Add event objects for Rails Event Store streams. Check Event section.
- Update test cases to use new matchers. Check Testing section.
There are five entities that are core to PubSub on Rails: domains, events, event publishers, event handlers and subscriptions.
Domain is simply a named context in application. You can refer to it as "module", "subsystem", "engine", whatever you like. Good names for domains are "ordering", "messaging", "logging", "accounts", "logistics" etc. Your app does not need to have code isolated inside domains, but using Component-Based Rails Applications concept (CBRA) sounds like a nice idea to be combined with PubSub on Rails.
Domain example:
# app/domains/messaging.rb
module Messaging
end
Event is basically an object indicating that something has happened (event has occured). There are two important things that need to be considered when planning an event: its name and its payload (fields).
Name of event should describe an action that has just happened, also it should be namespaced with the name of the domain it has occurred within.
Some examples of good event names: Ordering::OrderCancelled
, Messaging::IncorrectLoginNotificationSent
, Accounts::UserCreated
, Bookings::CheckinDateChanged
, Reporting::MonthlySalesReportGenerationRequested
Payload of event is just simple set of fields that should convey critical information related to the event.
As the payload is very important for each event (it acts as a contract between publisher and handler), PubSub on Rails leverages Dry::Struct
and Dry::Types
to ensure both presence and correct type of attributes events are created with.
It is a good rule of a thumb not to create too many fields for each event and just start with the minimal set. It is easy to add more fields to event's payload later (while it might be cumbersome to remove or change them).
Event example:
# app/events/ordering/order_created_event.rb
module PubSub
module Ordering
class OrderCreatedEvent < PubSub::EventWithType
schema do
attribute :order_id, Types::Strict::Integer
attribute :customer_id, Types::Strict::Integer
attribute :line_items, Types::Strict::Array
attribute :total_amount, Types::Strict::Float
attribute :comment, Types::Strict::String.optional
end
end
end
end
Since we are using Rails Event Store to handle events, it gives us a possibility to create stream of events. We can treat them as sub-list of events. To be able to use that functionality we need to declare which streams given event should be part of. By default we add event to stream based on its name. In case of our example it is ordering__order_created
. We can provide also custom streams even based on some additional data from the event attributes (for example to group all events related to given order).
Event example:
# app/events/rails_event_store/ordering/order_created_event.rb
module PubSub
module Ordering
class OrderCreatedEvent < PubSub::EventWithType
def stream_names
[
"order__#{data[:order_id]}"
]
end
end
end
end
Event publisher is any class capable of emitting an event. Usually a great places to start emitting events are model callbacks, service objects or event handlers. It is very preferable to emit one specific event from only one place, as in most cases this makes the most sense and makes the whole solution more comprehensible.
Event publisher example:
# app/models/order.rb
class Order < ApplicationRecord
include PubSub::Emit
belongs_to :customer
has_many :line_items
#...
after_create do
emit(:ordering__order_created, order_id: id)
end
end
Event handler is a class that encapsulates logic that should be executed in reaction to event being emitted. One event can be handled by many handlers, but only one unique handler within each domain. Event handlers can be executed synchronously or asynchronously. The latter is recommended for both performance and error-recovery reasons.
Event handler example:
# app/event_handlers/messaging/ordering_order_created_handler.rb
module Messaging
class OrderingOrderCreatedHandler < PubSub::DomainEventHandler
def call
OrderMailer.order_creation_notification(order).deliver_now
end
private
def order
Order.find(event_data.order_id)
end
end
end
All fields of event's payload are accessible through event_data
method, which is a simple struct.
If in any case you would like to control if given handler should be executed or not (maybe using feature flags), you can override #process_event?
method.
# app/event_handlers/messaging/ordering_order_created_handler.rb
module Messaging
class OrderingOrderCreatedHandler < PubSub::DomainEventHandler
# ...
private
def process_event?
Features.notifications_enabled?
end
end
end
Subscription is "the glue", the binds events with their corresponding handlers. Each subscription binds one or all events with one handler. Subscription defines if given handler should be executed in synchronous or asynchronous way.
Subscription example:
# config/subscriptions.yml
messaging:
ordering__order_created: async
Most of entities in Pub/Sub approach should be tested, yet both domain and event classes can be tested implicitly. It is recommended to start testing from testing subscription itself, then ensure that both event emission and handling are in place. Depending on situation the recommended order may change though.
The recommended RSpec configuration is as follows:
# spec/support/pub_sub.rb
require 'pub_sub/testing'
RSpec.configure do |config|
config.include PubSub::Testing::RailsEventStore
config.include PubSub::Testing::EventDataHelper
config.around(:each, in_memory_res_client: true) do |example|
current_event_store = Rails.configuration.event_store
Rails.configuration.event_store = RubyEventStore::Client.new(
repository: RubyEventStore::InMemoryRepository.new
)
example.run
Rails.configuration.event_store = current_event_store
end
end
This will allow you to use in_memory_res_client
which will not create object (event) in the database and do not call all dependent logic (handlers).
Testing subscription is as easy as telling what domains should subscribe to what event in what way.
Example:
RSpec.describe Messaging do
it { is_expected.to subscribe_to(:ordering__order_created).asynchronously }
end
To test publisher it is crucial to test if event was emitted under certain conditions (if any).
Example:
RSpec.describe Order do
describe 'after_create' do
it 'emits ordering__order_created' do
customer = create(:customer)
line_items = create_list(:line_item, 2)
Order.create(
customer: customer,
total_amount: 100.99,
comment: 'Small order',
line_items: line_items
)
expect(event_store).to have_published(
an_event(PubSub::Ordering::OrderCreatedEvent).with_data(
order_id: fetch_next_id_for(Order),
total_amount: 100.99,
comment: 'Small order',
line_items: line_items
)
).in_stream('ordering__order_created')
end
end
end
Handlers can be tested by testing their call!
method, that calls call
behind the scenes.
To ensure event payload contract is met, please use event_data_for
helper to build event payload hash.
It will instantiate event object behind the scenes to ensure it exists and its payload requirements are met.
Example:
module Messaging
RSpec.describe OrderingOrderCreatedHandler do
describe '#call!' do
it 'delivers order creation notification' do
order = create(:order)
event_data = event_data_for(
'ordering__order_created',
order_id: order.id,
total_amount: 100.99,
comment: 'Small order',
line_items: [build(:line_item)]
)
order_creation_notification = double(:order_creation_notification, deliver_now: true)
allow(OrderMailer).to receive(:order_creation_notification).
with(order).and_return(order_creation_notification)
OrderingOrderCreatedHandler.new(event_data).call!
expect(order_creation_notification).to have_received(:deliver_now)
end
end
end
end
It is a common problem to implement a publisher and handler and forget about implementing subscription. Without proper integration testing the problem might stay undetected before identified (hopefully) during manual testing. This is where subscriptions linting comes into play. All existing event handlers will be verified against registered subscriptions during linting process. In case of any mismatch, exception will be raised.
To lint subscriptions, place PubSub::Subscriptions.lint!
for instance in your rails_helper.rb
or some initializer of choice.
Even though default domain always routes event subscriptions to correspondingly named event handlers, it is possible to implement domains that will route subscriptions in the different way. The simplest way is to define it manually:
# app/domains/logging.rb
module Messaging
def self.ordering__order_created(event_payload)
# whatever you need goes here
end
end
This technique can be useful for instance for logging
# app/domains/logging.rb
module Logging
def self.event_logger
@event_logger ||= Logger.new("#{Rails.root}/log/#{Rails.env}_event_logger.log")
end
def self.method_missing(method_name, *event_data)
event_logger.info("Evt: #{method_name}: \n#{event_data.map(&:to_json).join(', ')}\n\n")
end
def self.respond_to_missing?(method_name, include_private = false)
method_name.to_s.start_with?(/[a-z_]+__/) || super
end
end
# config/subscriptions.yml
logging:
all_events: sync
Every time event is emitted, its payload is supplied to corresponding Dry::Struct
event class and is verified.
This ensures that whenever we emit event we can be sure its payload is matching specification.
Example:
module PubSub
module Accounts
class PersonCreatedEvent < PubSub::EventWithType
schema do
attribute :person_id, Types::Strict::Integer
end
end
end
end
emit(:accounts__person_created, person_id: 1)
is okemit(:accounts__person_created)
will result inPubSub::EventEmission::EventPayloadArgumentMissing: Event [Accounts::PersonCreatedEvent] expects [person_id] payload attribute to be either exposed as [person] method in emitting object or provided as argument
emit(:accounts__person_created, person_id: 'abc')
will result inDry::Struct::Error: [Accounts::PersonCreatedEvent.new] "abc" (String) has invalid type for :person_id violates constraints (type?(Integer, "abc") failed)
When you namespace your code to match your domain names, you can skip prefixing an event name with domain name when emitting it.
# app/models/oriering/order.rb
module Ordering
class Order < ApplicationRecord
include PubSub::Emit
after_create do
emit(:order_created, order_id: id)
# emit(:ordering__order_created, order_id: id) # this will work as well
end
end
end
Whenever you emit an event, it will try to populate its payload with data using public interface of object it is emitted from within.
# app/models/oriering/order.rb
module Ordering
class Order < ApplicationRecord
include PubSub::Emit
after_create do
emit(:order_created, order_id: id)
# emit(
# :ordering__order_created,
# order_id: id, # `self` does not implement `order_id`, therefore value has to be provided explicitly here
# total_amount: total_amount, # attribute matches the name of method on `self`, therefore it can be skipped
# comment: comment # same here
# )
end
end
end
- Dynamic event classes
- TYPES declaration