Synchronizing Basic Product Data from MySQL with DolphinDB Cached Tables

DolphinDBDolphinDB
2 min read

DolphinDB is a high-throughput distributed time-series database, specially designed for big data analysis scenarios in industrial IoT (IIOT) and finance.

Data analysis in DolphinDB is often conducted based on the basic product information (such as the SKU, size, and storage of a device) from an external business platform, which conventionally runs on a relational database. To associate external product information with the time series data in DolphinDB, you can use the cached tables to save the external data fetched through plugins (MySQL, MongoDB, CSV file, etc.) in memory with regular synchronizations.

This tutorial describes how to synchronize data using a DolphinDB cached table in an IIoT scenario.

Photo by Ant Rozetsky on Unsplash

1. Scenario

In this scenario, a MySQL table must be synchronized every minute with a DolphinDB cached table to update device configuration.

The data to be synchronized is as follows:

2. Solution

Create a cached table in DolphinDB with the following function:

cachedTable(updateFunc, retentionSeconds)

where

  • updateFunc is a function that implements the data synchronization.

  • retentionSeconds is an integer indicating the frequency (in seconds) to update the table in DolphinDB.

2.1 Procedure

  1. Create a table in MySQL (see script).

  2. Install the DolphinDB MySQL plugin.

  3. Synchronize the data from MySQL to DolphinDB (see script below).

2.2 Validation

1.Update the source table by executing the following script in MySQL:

2.After the update, print the “config“ tables in MySQL and DolphinDB:

The tables are identical, indicating that changes have been successfully synchronized.

3. Tips

Data synchronization between databases is a common requirement in Industrial IoT (IIOT) and finance. Its design should not increase inter-system dependency or maintenance cost. The DolphinDB cached tables are a special kind of in-memory table. By synchronizing basic product information to a cached table, you can associate it with the time series data in a distributed database and run business queries smoothly. Note that cached tables are not suitable for real-time data synchronization.

Check out the following tips before deploying your code to production:

(1) Initialize the cached table with non-null values when DolphinDB is started by configuring the startup script startup.dos to improve fault tolerance.

(2) Enable data access through APIs by sharing the cached table across sessions.

(3) Add validation for incoming data.

(4) Add exception handling and logging.

0
Subscribe to my newsletter

Read articles from DolphinDB directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

DolphinDB
DolphinDB