Datamart replication
The datamart replication feature allows you to replicate the data ingested by mediarithmics in an external solution of your choice. For now, we are integrated with:
Google Cloud Platform - Pub/Sub
Microsoft Azure - Event Hubs (Alpha)
This module is not included in the default plan. Contact your Account manager to activate it.
How it works
Replication
We replicate the update
and delete
operations from Pionus for the following objects:
User agents (for datamart
user_point_system_version
before v202205)User device points (for datamart
user_point_system_version
v202205)User device technical ids (for datamart
user_point_system_version
v202205)Parent user points (when user points are merging)
Document type filtering
You can select which documents to replicate when creating the Datamart replication using API (This capability will soon be added in the UI).
Note that you cannot update the document type filter selection once set. You will need to create a new datamart replication in that case.
Versionning
There are currently 2 versions of Datamart replications:
Version | Format |
---|---|
Version 1 | (Legacy) JSON format |
Version 2 | Avro Binary format |
Please note that:
At the moment, you can create a Version 2 datamart replication only through API (This capability will soon be added in the UI)
By default, a datamart replication is created in Version 1 (i.e. if "version" body parameter is not provided)
You cannot upgrade a datamart replication from Version 1 to Version 2
Replication status
Your replication can be in one of the following status:
ACTIVE: All data processed by Pionus will be replicated to your external solution.
PAUSED: No data processed by Pionus will be replicated to your external solution.
ERROR: The system is no longer able to replicate messages. In this case, check your external solution (expired instance, invalid credentials, etc). If you can't find anything wrong, please contact your Account manager.
Initial synchronization
You can run an initial synchronization so that already existing data within the mediarithmics platform can be replicated.
All your active replications will receive a set of UPDATE
operations that represent all existing elements of your datamart for exampleUserPoint
, and UserActivity.
Please note that if you run an initial synchronization you might receive a large volume of messages. Processing them can be expensive, depending on your cloud provider.
Output messages
We convert Pionus operations in a standardized output format: operation = {ts, doc_type, doc_id, op, value}
Field | Type | Comment | Version availability |
---|---|---|---|
ts | Timestamp (Long) | The mutation date | All |
doc_type | Enumeration | The object type : | All |
ctx_id | UUID | The userpoint id | Version 2 |
doc_id | String | The object unique id. The format varies depending on | All |
op | String | The operation type | All |
value | JSON Object | The object value. The format varies depending on doc_type. | All |
Object formats based on doc_type
doc_type
doc_type | doc_id | value |
|
| Empty (you already have the |
|
| Browser info and device info |
|
| Browser info and device info |
|
| Empty (you already have the |
|
| Detailed activity |
|
| Creation timestamp and last modify timestamp (date) |
|
| Detailed profile |
|
| Empty (you already have the |
|
| User's email hash |
|
It is the ID of the | Message |
Message metadata
To help filtering the topic, replication adds some metadata on message (attributes in PubSub and properties in EventHub)
Metadata key | Comment |
---|---|
| The message |
Legacy JSON Format
This format is the original replication format. It was designed to work with a streaming architecture (like Dataflow or Databricks) but has some limitations with tools needing a schema (like BigQuery)
Examples
A new activity will trigger a replicated UserActivity
operation. You will receive a similar message in your external solution as shown in this example.
A new user agent will trigger a replicated UserAgent operation like the one bellow
A new user device point will trigger a replication UserDevicePoint operation like the one bellow
A new user device technical id will trigger a replicated UserDeviceTechnicalId
operation like the ones bellow
Avro Binary Format
This version introduce a schema to help integration.
This format is almost the same as Legacy one, but with Avro binary format.
The target topic should reference the schema and the encoding as BINARY to take full advantages of the format.
Upgrade of datamarts to user_point_system_version
v202205
user_point_system_version
v202205For datamarts with user_point_system_version
anterior to v202205, device identifiers are stored as User Agents, and replicated as UserAgent operations (doc_id exemple: 4700c85f-17e3-4304-aa7f-dc140173b08d:vec:32453299893
).
However for datamarts leveraging the user_point_system_version
v202205, device identifiers are stored as User Device Points and User Device Technical Ids, and replicated through UserDevicePoint and UserDeviceTechnicalId operations.
In the case of a datamart that is upgraded to theuser_point_system_version
v202205:
New device identifiers are directly stored and replicated using the device point formats,
Existing device identifiers that were previously stored in the UserAgent format are progressively migrated.
This migration is seemless within the datamart, however it is reflected on your datamart replication. For each migrated device identifier, you will receive:
A DELETE operation with the doc_type User Agent
Two UPDATE operations with doc_type UserDevicePoint and doc_type UserDeviceTechnicalId
For instance, a migration of a user agent with a doc_id 4700c85f-17e3-4304-aa7f-dc140173b08d:vec:
7231822539 will produce
1 DELETE operation with doc_type UserAgent the same doc_id
2 UPDATE operations:
1 with doc_type UserDevicePoint and the following doc_id:
4700c85f-17e3-4304-aa7f-dc140173b08d:udp:-32453299893
1 with doc_type UserDeviceTechnicalId and the following doc_id
4700c85f-17e3-4304-aa7f-dc140173b08d:udp:-32453299893:mum:7231822539
After migration, no more UserAgent operations will be produced
Setting up replications
Prerequisites
You need to have an instance of the external solution where you want to replicate your mediarithmics data.
Depending on the external solution, you will need to fulfill some requirements.
Google Pub/Sub
You will need:
A Google Cloud Platform account
A Google Cloud Platform project: https://cloud.google.com/resource-manager/docs/creating-managing-projects;
An Access Control on this project: https://cloud.google.com/resource-manager/docs/access-control-proj;
To create and activate your service accounts (generate credentials file): https://cloud.google.com/iam/docs/understanding-service-accounts https://cloud.google.com/compute/docs/access/create-enable-service-accounts-for-instances
TO SUM IT UP: You can click here https://console.cloud.google.com/iam-admin/serviceaccounts, create a service account, and edit it to create a Key in a JSON format (this is the credential file);
Click on Create Service Account :
Give your service account a name, select the right account access (Pub/Sub Publisher, Pub/Sub Editor) and save.
Once your Service Account is created, you can generate your key :
credentials.json file example:
To create a Google Cloud Platform Pub/Sub instance. Pub/Sub documentation: https://cloud.google.com/pubsub/docs/quickstart-py-mac until Quickstart setup > Create service account credentials (included) should be enough to begin.
NOTE: Here is the Google Pub/Sub Pricing documentation: https://cloud.google.com/pubsub/pricing
Microsoft Azure Event Hubs (Alpha)
You will need:
A Microsoft Azure account
A Resource Group, an Event Hubs namespace, and an Event Hub: https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-create
A connection string over the namespace or the Event Hub: https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-get-connection-string
Save your connection string in a credentials.txt file. It would be your credentials file to upload in mediarithmics platform.
credentials.txt file example:
NOTE: Here is the Microsoft Azure Event Hubs Pricing documentation: https://azure.microsoft.com/en-us/pricing/details/event-hubs/
Listing your replications
You can access replications in the datamart settings in your navigator application.
Select the organisation on which there is the datamart you want to replicate.
Click on Settings.
Click on the Datamarts tab and then click the Datamart menu entry.
Select the datamart you want to replicate.
In the Replications subtab, you will see a table dedicated to your Datamart Replications.
Creating & starting a replication
To create a new replication:
Go to the Replications subtab.
Click New Replication.
Select a Replication type matching the external solution of your choice.
Complete configuration information (see Prerequisites as help to configure advanced fields).
Click Select a File to upload your credentials file and click on Update.
Click Save Replication to create your new replication.
You will see your new replication in the Replications subtab.
example for Google Pub/Sub :
When a Replication is created, its status is automatically set to Paused. To start your replication, you will have to activate it. If the system can't replicate your datamart on activation, you will see an error.
When a replication can't be activated, it is usually due to an error on credentials, so you might want to verify your replication configuration and your credentials file first.
Activating / pausing a replication
You can change the replication status using the status button.
If the system is no longer able to replicate the messages, the replication status will be set to ERROR. In this case, check your external solution (expired instance, invalid credentials, etc). If you can't find anything wrong, please contact your Account manager.
In case of an error with your external solution, you will need to recreate your replication to rebind it to a new working external solution with good credentials and the right specific information.
Executing an initial synchronization
A dashboard listing every Initial Synchronization that was done on your datamart is available in the same Replications subtab.
For now, you will have to ask your Account manager to run an initial synchronization. Later, you will be able to run an initial synchronization yourself by clicking New Execution. You must have at least one active replication and you can't run an initial synchronization more than once a week.
We replicate all operations. No filtering is possible.
Please note that you might receive a large volume of messages while running an initial synchronization. Processing them can be expensive, depending on your cloud provider.
While an initial synchronization is running, you can't change the status of your replications. The initial synchronization will only replicate the data for active replications.
The active replications are still running during initial synchronizations. Messages from the initial synchronization and live messages (tag, import, etc.) from the active replications are mixed.
API documentation
Creating a replication
POST
https://api.mediarithmics.com/v1/datamarts/:datamartId/replications
Path Parameters
Name | Type | Description |
---|---|---|
datamartId | integer | The ID of the datamart |
Request Body
Name | Type | Description |
---|---|---|
version | integer | Version of the datamart replication to be created. Check Versionning for more info. |
name | string | The name of the API Token |
status | string | Status of the replication. Need to be "PAUSED" at the creation |
destination | string |
|
project_id | string | Google project ID. Only for |
topic_id | string | Google PubSub topic ID.Only for |
event_hub_name | string | Azure event hub name. Only for |
datamart_id | string | As per the Path parameter |
replication_filters | array | Optional. List of documents to replicate. If not provided, all documents will be replicated |
replication_filters > document | string | Name of the document to replicate among |
replication_filters > filter | string | Not used at the moment |
Add credentials to replication
POST
https://api.mediarithmics.com/v1/datamarts/:datamartId/replications/:replicationId/credentials
Path Parameters
Name | Type | Description |
---|---|---|
datamartId | integer | The ID of the datamart |
replicationId | integer | The ID of the datamart replication |
Request Body
Name | Type | Description |
---|---|---|
file | binary | The path of the file that contain the credentials |
Retrieve a replication
GET
https://api.mediarithmics.com/v1/datamarts/:datamartId/replications/:replicationId
Path Parameters
Name | Type | Description |
---|---|---|
datamartId | integer | The ID of the datamart |
replicationId | integer | The ID of the datamart replication |
Last updated