top of page

What is event driven architecture ? How does salesforce platform support event driven architecture ?

fcscloud



Salesforce supports Event-Driven Architecture through its robust event streaming and handling mechanisms like Platform Events, Change Data Capture, and the Streaming API. These tools enable real-time, scalable, and asynchronous workflows, making Salesforce a powerful platform for building modern, event-driven solutions.


What is Event-Driven Architecture (EDA)?

Event-Driven Architecture (EDA) is a software design pattern where the flow of the application is determined by events. An event is any significant change or occurrence in the system, such as a user action, system update, or an external service trigger. In EDA:

  1. Event Producers: These are the sources that generate events (e.g., a customer placing an order).

  2. Event Consumers: These are systems or components that listen to events and respond to them (e.g., sending an order confirmation email).

  3. Event Channels: These facilitate the transmission of events between producers and consumers (e.g., message queues or event streams).

EDA is commonly used for real-time systems, microservices, and scalable, asynchronous workflows.

Does Salesforce Support Event-Driven Architecture?

Yes, Salesforce supports Event-Driven Architecture, enabling real-time communication and integration across applications, systems, and devices. It achieves this using its Event-Driven Platform called Salesforce Event Bus, which offers multiple tools and capabilities to implement EDA.

Here’s how Salesforce supports EDA:

1. Platform Events

  • Platform Events are Salesforce's mechanism for creating, publishing, and subscribing to events. They are similar to custom objects but designed specifically for event communication.

  • Key Features:

    • Publish-Subscribe Model: Producers publish events, and consumers (both internal and external) subscribe to these events.

    • Real-time event delivery with high scalability.

    • Events can carry custom fields to include data relevant to the event.

  • Example:

    • An e-commerce app publishes a OrderCreatedEvent when a customer places an order.

    • Consumers, such as payment processing or inventory systems, subscribe to this event and act accordingly.

2. Change Data Capture (CDC)

  • CDC allows you to track changes to Salesforce records (inserts, updates, deletes, and undeletes) and stream them to external systems.

  • This is useful when you want to trigger downstream processes whenever specific data in Salesforce changes.

  • Key Features:

    • Captures changes for standard and custom objects.

    • Streams changes in real-time using the Salesforce Event Bus.

  • Example:

    • A record in the Opportunity object is updated, triggering a downstream system to update its database or analytics pipeline.

3. Pub/Sub API

  • The Pub/Sub API is a new event-driven framework in Salesforce that simplifies the way external systems interact with the Salesforce Event Bus.

  • Key Features:

    • It unifies Platform Events, CDC, and Real-Time Events under a single API.

    • Supports higher throughput and more flexible subscription mechanisms.

  • Use Case:

    • External applications like an ERP system can subscribe to Salesforce events and act on them in real-time.

4. Outbound Messaging and Asynchronous Triggers

  • Outbound Messaging: Enables you to send SOAP messages to external systems when specific Salesforce objects change.

  • Asynchronous Apex Triggers:

    • Triggers on Platform Events allow you to execute asynchronous business logic in Salesforce when an event is published.

  • Example:

    • A Platform Event triggers an Apex class that processes data in Salesforce, while an outbound message notifies an external system.

5. Streaming API

  • The Streaming API enables real-time streaming of events and data changes from Salesforce.

  • It includes PushTopics (for custom SOQL-based event subscriptions) and Generic Streaming (for custom event notifications).

  • Use Case:

    • A third-party app uses the Streaming API to display real-time updates from Salesforce on a dashboard.

6. Real-Time Integration with External Systems

  • Salesforce allows external systems to publish events back to the Salesforce Event Bus, creating a two-way event-driven flow.

  • Integration can be achieved using tools like:

    • Salesforce Connect for accessing external data in real time.

    • Apex Callouts for invoking external web services.

    • MuleSoft for building complex, event-driven workflows across systems.

7. Process Automation with EDA

  • Salesforce automates workflows in an event-driven manner using:

    • Flow Orchestration: Respond to Platform Events and CDC events within declarative workflows.

    • Process Builder (deprecated but still in use) and Flows: Subscribe to Platform Events and execute automation processes.

8. Salesforce IoT and Einstein Automate

  • Salesforce IoT enables processing and responding to events from connected devices.

  • Einstein Automate integrates with EDA to create intelligent workflows that can react to events.

Key Benefits of Salesforce EDA

  1. Scalability: Easily handle large-scale, asynchronous event processing.

  2. Decoupling: Producers and consumers operate independently, making systems more flexible and maintainable.

  3. Real-Time Insights: Instant event streaming for dashboards, notifications, and analytics.

  4. Interoperability: Seamless integration between Salesforce and external applications or systems.

  5. Improved Automation: Streamlined processes with real-time triggers and workflows.

Example Scenario in Salesforce EDA

Use Case: Order Fulfillment System

  1. A customer places an order in an e-commerce app.

  2. The app publishes a Platform Event (OrderPlacedEvent) to Salesforce.

  3. Salesforce subscribers handle the event:

    • Subscriber 1: Triggers an Apex class to create an Order record in Salesforce.

    • Subscriber 2: A Flow subscribes to the event and notifies the shipping department.

    • Subscriber 3: External payment gateway system (via Pub/Sub API) processes the payment.

  4. The event is also streamed to an external ERP system using the Streaming API for inventory updates.


While Salesforce is a powerful platform that supports Event-Driven Architecture (EDA) in many ways, there are certain limitations or gaps you should be aware of when building an event-driven solution on the platform. Below are some key areas where Salesforce's event-driven capabilities may fall short:


Summary of Gaps

Limitation

Impact

Workaround

Event Volume Limits

Restricted scalability

External event bus (Kafka, RabbitMQ)

Ephemeral Event Retention

Events unavailable after 24 hours

External event persistence

No Guaranteed Event Order

Processing sequence issues

Custom ordering logic

Payload Size Limits

Cannot send large or complex payloads

External payload storage

Static Subscriptions

Lack of dynamic subscription flexibility

Middleware for dynamic subscriptions

Monitoring Gaps

Limited visibility into event flows

External monitoring tools


 
 
 

Comments


FCS Digital

At fcs Digital, we are dedicated to pushing the boundaries of what's possible in the global business landscape. Our passion for innovation and client success drives everything we do.

  • LinkedIn
  • Facebook
  • Instagram
  • Youtube

Contact Info

Address - 69/3B, DD Mondal Ghat Rd, Dakshineswar, Kolkata, West Bengal - 700076

Phone No. - +91 98301 96563

© 2023 fcs Digital. All rights reserved.

bottom of page