How Frequently Akita App Syncs Your Data?

How Frequently Akita App 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.

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 squeezy.

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 segmentation software Best Customer Segmentation Software to Utilize in 2024

Understanding customers at scale has come a long way. Back in the day, companies used simple attributes to carve up their customer base in some way to apply different resources to support and/or expand those customers. Boy was it blunt though! Generally, it never got far beyond segmenting your account list by their spending or […]

Read more
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 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 onboarding statistics 15 Customer Onboarding Statistics and Trends in 2024 to Note

In the SaaS world today, each lead you turn into a customer is a call for celebration. Still, to ensure them a smooth journey and success with your product, it is crucial to first help them understand how they can use your product or service effectively to get all the benefits they offer in the […]

Read more
how to become a customer success manager How to Become a Customer Success Manager: All You Need to Know

Nowadays, it seems that acquiring each new customer calls for celebration. Yet, their choosing you over competition is merely the beginning of a beautiful friendship, as retaining them is equally, or usually even more, difficult. 

Read more
Voice of the customer best practices Voice of the Customer Best Practices and Tips in 2024

When we aim to understand someone or something, the first step is to listen or observe carefully. The same rule applies for customers.  If you wish to truly meet your customers and understand their concerns and goals, you must not only solicit and gather their feedback but also act on it. This is precisely what […]

Read more
what is product discovery What Is Product Discovery: Definition, Benefits and How to Do it?

Developing, launching and promoting a new product or feature is not only time and energy-consuming but also expensive. This is why frustration is inevitable if the new feature of a product goes unnoticed or unused.  To avoid that, companies must first understand market trends and customer needs to be able to create products that address […]

Read more
What is customer stickiness What is Customer Stickiness: How to Measure & Increase it?

Although customer churn and retention are the most important metrics that help you assess the overall health of your business, they often fail to explain why customers leave or stay with you. This is precisely where customer stickiness can help you. To answer the question “What is customer stickiness?” with ultimate precision, we must thoroughly […]

Read more
Customer success books Best Customer Success Books You Should Read in 2024

Customer success is the backbone of a successful SaaS business. The way your CS team manages and nurtures customer relationships often determines the size and quality of your customer base and, therefore, affects revenue and growth.  A smart customer success manager knows very well that customer success is a dynamic and ever-changing field where continuous […]

Read more