How Frequently Our Customer Success Application Syncs Your Data

In a previous post, we looked at How We Built More Than 100 Customer Success-Integrations between Akita and apps like Hubspot, Salesforce, Intercom and Zendesk. We outlined our 3-step process for keeping data in sync: Schedule, Retrieve, and Process.

The Scheduler kicks everything off and is responsible for determining which data needs retrieving at any given time.

Note: Now might be a good time to re-read our previous post on How We Built More Than 100 Customer Success-Integrations for our Product!

Let’s look at a customer (ACME) who has connected their Salesforce account. We can sync many types of data (or Interaction Types) from Salesforce including:

  • Accounts
  • Contacts
  • Opportunities
  • Tasks
  • Notes
  • Users

By default, we sync each type of Salesforce data every 180 minutes. This may be overkill for “Users” (ie. new Salesforce licenses you might rarely add) but is useful for having timely access to new Accounts and Contacts in Akita.

We schedule the retrieval of each different Interaction Type for ACME (an Integration Object) separately. This simplified SQL statement allows us to select the Integration Objects that need syncing:

SELECT * FROM IntegrationObjects WHERE SyncedAt <= NOW() - INTERVAL ‘3 HOURS’;

The Scheduler runs every couple of minutes, finding any Integration Objects (ex. ACME’s > Salesforce > Accounts) that need syncing, creating a Retrieve Job and dispatching it to a queue. When the Retriever successfully executes the Retrieve Job, it will update the SyncedAt property to the current time.

The Retriever doesn’t re-sync the entire dataset each time. It selects only those records that have changed since it last ran. Combined with our Scheduler logic, it creates a system where updates are quickly added to Akita without straining our system or those of our integration partners.

Easy peasy lemon squeazy.

But not really. There are some important edge cases.

The Initial Sync

We have to make sure we catch brand-new Integrations that have not yet synced, so we tweak our SELECT statement to also include any __ Integration Objects that have not yet been synced:


SELECT * FROM IntegrationObjects WHERE SyncedAt <= NOW() - INTERVAL ‘3 HOURS’ OR SyncedAt IS NULL;

This first sync is the costliest—it syncs all data at once. After the initial sync, each update is relatively easy.

Throttling

Akita uses messaging queues extensively (AWS SQS). On occasion, the job queue will be backed up. It is possible that a Retrieve job is queued but doesn’t run before the next evocation of the Scheduler. In this case, there could be duplicate retrieve jobs causing two syncs to run in parallel.

To avoid this, we use throttling to make sure we don’t dispatch the same Retrieve Job more than once in a given time period.

Flexibility

We can adjust the sync frequency of each individual Integration Object (ex. ACME’s Salesforce Tickets). That is we can sync Salesforce Accounts more frequently for customer A than for customer B. This is useful in two situations:


The customer absolutely MUST have their data synced more frequently

Every business is different. Some of our customers have legitimate requirements to have data available in close-to -real time. In these cases, we can adjust their settings to sync a specific Integration Objectmore frequently (by no means in-real-time but fairly frequently).

The customer’s entire dataset changes continuously (making every-3-hour syncs too costly)

Take an analytics tool that provides up-to-the-second statistics for every Account. It may show new results for every Account each time it is queried. Since each record was updated, each sync would require a full re-sync. If there were 100K or 1M Accounts, a full re-sync would mean a never-ending series of API calls.

In this case, we change “every three hours” to “once a day”. This reduces the strain on our servers and our integration partners but still keeps the data fresh enough for almost any Customer Success purpose (building Customer Health Scores, triggering Customer Success Playbooks, or refreshing a Customer Dashboard).

Next week, we’ll look at how our Retriever requests data from our integration partners, handles responses (including errors) and dispatches jobs to the queue for our Processor to analyze.

Related Articles

Best Customer Success Software Best Customer Success Software for Your CS Department in 2024

If you are reading this, you are faced with a real challenge. Either you already manage a customer success function and your existing toolset is not fit for purpose, or you have decided to start a customer success department and want to implement the right software as a solid foundation for your Customer Success Managers […]

Read more
Top Customer Retention Software to Reduce Churn in 2024

Figuring out the right customer retention management software to help manage your Customer Retention goals can be tricky. It really comes down to what your specific goals are, what type of market you serve, the customer data you retain and where that data resides. There are some specific types of tools you should consider. Customer […]

Read more
customer success vs customer experience Customer Success vs. Customer Experience: Notable Differences

Positive customer relationships are the foundation of any SaaS business. Both customer success and customer experience aim to boost customer satisfaction, but they are actually different concepts that address different segments of the customer journey.

Read more
customer onboarding software Best Customer Onboarding Software in 2024

How do you make sure you get this process right? Apart from having the right people and the right motivation, it would be remiss not to use the tools you already have or invest in some new ones, such as customer onboarding software so that everything required is being done to ensure your clients expectations […]

Read more
what is customer success What is Customer Success: Short and Simple Guide

In the world of SaaS, customer churn can feel like a constant threat. But what if there was a secret weapon to turn happy trials into loyal customers? Customer success is what you seek, it’s a strategic approach that goes beyond basic support to ensure your users achieve their goals.

Read more
CSAT vs NPS CSAT vs. NPS: Differences, Formulas, Examples

Customer satisfaction is the holy grail of any SaaS business. But how do you truly measure it? Enter CSAT and NPS, two powerful metrics that can shed light on your customer experience.

Read more
customer success vs sales Customer Success vs. Sales: Differences and Similarities

Understanding the differences between customer success and sales in SaaS is crucial for navigating the intricacies of customer retention, satisfaction, and acquisition. Although both departments participate equally to ensure and maintain the business’ sustainability and growth, they work with different methodologies and goals. While customer success focuses on ensuring customers derive maximum value from the […]

Read more
customer onboarding email templates Steps to Creating a Customer Onboarding Email Template

How you begin your relationship with customers often dictates how long and successful their relationship with your company will be. Given that SaaS companies need to retain customers for a period of time in order to accrue enough subscription revenues to become profitable, delivering valuable onboarding experiences is essential.

Read more