Delivering data from Yandex Managed Service for YDB using Yandex Data Transfer
You can track data changes in a Managed Service for YDB source and send them to a Managed Service for Apache Kafka® target cluster using change data capture (CDC). The system will automatically insert this data into Managed Service for Apache Kafka® topics with Managed Service for YDB table names.
Note
In YDB, CDC mode is supported starting from version 22.5.
To start data delivery:
If you no longer need the resources you created, delete them.
Required paid resources
-
Managed Service for YDB database (see Managed Service for YDB pricing). Its cost depends on the deployment mode:
- In serverless mode, you pay for data operations and storage volume, including stored backups.
- In dedicated instance mode, you pay for the use of computing resources allocated to the database, storage size, and backups.
-
Managed Service for Apache Kafka® cluster, which includes computing resources allocated to hosts, storage and backup size (see Managed Service for Apache Kafka® pricing).
-
Public IP addresses if public access is enabled for cluster hosts (see Virtual Private Cloud pricing).
-
Each transfer, which includes the use of computing resources and number of transferred data rows (see Data Transfer pricing).
Getting started
-
Set up your data delivery infrastructure:
ManuallyTerraform-
Create a Managed Service for YDB database of your preferred configuration.
-
If you selected Dedicated database mode, create and configure a security group in the network hosting your database.
-
Create a Managed Service for Apache Kafka® target cluster in any suitable configuration with publicly accessible hosts.
-
If using security groups, configure them to allow internet access to your cluster.
-
Configure Apache Kafka® topics in the target cluster. The settings vary depending on the topic management method used. The format for data topic names is as follows:
<topic_prefix>.<YDB_table_name>. In this tutorial, we will use thecdcprefix as an example.-
When managing topics using the native Yandex Cloud interfaces (management console, CLI, or API):
-
Create a topic named
cdc.sensors.To track changes in multiple tables, create a separate topic with the
cdcprefix for each of them. -
Create a user with the
ACCESS_ROLE_CONSUMERandACCESS_ROLE_PRODUCERroles for thecdc.sensorstopic. To include all created topics, specifycdc.*in the topic name.
-
-
When managing topics via the Kafka Admin API:
-
Create an admin user.
-
In addition to
ACCESS_ROLE_ADMIN, assign the admin user theACCESS_ROLE_CONSUMERandACCESS_ROLE_PRODUCERroles forcdc.*topics whose names are prefixed withcdc.The system will automatically create the relevant topics upon the first change to the source cluster tables you are tracking. This solution can help tracking changes in multiple tables but it requires extra free space in the cluster storage. For more information, see Storage in Managed Service for Apache Kafka®.
-
-
-
If you do not have Terraform yet, install it.
-
Get the authentication credentials. You can add them to environment variables or specify them later in the provider configuration file.
-
Configure and initialize a provider. There is no need to create a provider configuration file manually, you can download it
. -
Place the configuration file in a separate working directory and specify the parameter values. If you did not add the authentication credentials to environment variables, specify them in the configuration file.
-
Download the data-transfer-ydb-mkf.tf
configuration file to the same working directory.This file describes:
- Network.
- Subnet.
- Security group and the rule required for connecting to the Managed Service for Apache Kafka® cluster.
- Managed Service for YDB database.
- Managed Service for Apache Kafka® target cluster.
- Apache Kafka® topic.
- Apache Kafka® user.
- Transfer.
The topic management method is specified in the
kf_topics_managementTerraform variable. You set it when running theterraform planandterraform applycommands (see below):-
When managing topics using the native Yandex Cloud interfaces (management console, CLI, or API):
- To track changes in multiple tables, add the descriptions of separate topics with the
cdcprefix to the configuration file, one for each table. - Set the
kf_topics_managementTerraform variable tofalse.
- To track changes in multiple tables, add the descriptions of separate topics with the
-
When managing topics using the Kafka Admin API, set the
kf_topics_managementTerraform variable totrue.
-
In the
data-transfer-ydb-mkf.tffile, specify the following variables:source_db_name: Managed Service for YDB database name.target_kf_version: Apache Kafka® version in the target cluster.target_user_name: Username for connection to the Apache Kafka® topic.target_user_password: User password.transfer_enabled: Set to0to ensure no transfer is created until you create endpoints manually.
-
Validate your Terraform configuration files using this command:
terraform validateTerraform will display any configuration errors detected in your files.
-
Create the required infrastructure:
-
Run this command to view the planned changes:
terraform planIf you described the configuration correctly, the terminal will display a list of the resources to update and their parameters. This is a verification step that does not apply changes to your resources.
-
If everything looks correct, apply the changes:
-
Run this command:
terraform apply -
Confirm updating the resources.
-
Wait for the operation to complete.
-
All the required resources will be created in the specified folder. You can check resource availability and their settings in the management console
. -
-
-
Install kafkacat
for data reads and writes in Apache Kafka® topics.sudo apt update && sudo apt install --yes kafkacatMake sure you can use it to connect to the Managed Service for Apache Kafka® target cluster over SSL.
Prepare the source
-
Create a YDB table. As an example, we will use the
sensorstable with data collected from some car sensors.Add the following columns to the table manually:
Name Type Primary key device_idStringYes datetimeStringlatitudeDoublelongitudeDoublealtitudeDoublespeedDoublebattery_voltageDoublecabin_temperatureUint8fuel_levelUint32Leave the default values for the other settings.
You can also create a table by running this YQL command:
CREATE TABLE sensors ( device_id String, datetime String, latitude Double, longitude Double, altitude Double, speed Double, battery_voltage Double, cabin_temperature Uint8, fuel_level Uint32, PRIMARY KEY (device_id) )
Set up and activate the transfer
-
-
Database type:
YDB. -
Endpoint parameters:
-
Connection settings:
-
Database: Select your Managed Service for YDB database from the list.
-
Service account ID: Select an existing service account or create a new one with the
editorrole.
-
-
Included paths list: Specify the names of tables and Managed Service for YDB database directories to transfer.
Warning
Only the listed tables and directories will be replicated. If you do not specify any names, no tables will be transferred.
-
-
-
-
Database type:
Kafka. -
Endpoint parameters:
-
Connection type:
Managed Service for Apache Kafka cluster:- Managed Service for Apache Kafka cluster: Select the previously created Managed Service for Apache Kafka® source cluster.
- Authentication: Specify the credentials of the Apache Kafka® user you created.
-
Topic:
Topic full name. -
Topic full name:
cdc.sensors.
If you need to track changes in multiple tables, fill in the fields as follows:
- Topic:
Topic prefix. - Topic prefix: Enter the
cdcprefix you used to generate topic names.
-
-
-
Create a transfer:
ManuallyTerraform- Create a transfer of the Replication type that will use the endpoints you created.
- Activate the transfer.
-
In the
data-transfer-ydb-mkf.tffile, specify the following variables:source_endpoint_id: Source endpoint ID.target_endpoint_id: Target endpoint ID.transfer_enabled: Set to1to create a transfer.
-
Validate your Terraform configuration files using this command:
terraform validateTerraform will display any configuration errors detected in your files.
-
Create the required infrastructure:
-
Run this command to view the planned changes:
terraform planIf you described the configuration correctly, the terminal will display a list of the resources to update and their parameters. This is a verification step that does not apply changes to your resources.
-
If everything looks correct, apply the changes:
-
Run this command:
terraform apply -
Confirm updating the resources.
-
Wait for the operation to complete.
-
The transfer will be activated automatically upon creation.
-
Test the transfer
-
Wait for the transfer status to change to Replicating.
-
In a separate terminal, run
kafkacatin consumer mode:kafkacat \ -C \ -b <broker_host_1_FQDN>:9091,...,<broker_host_N_FQDN>:9091 \ -t cdc.sensors \ -X security.protocol=SASL_SSL \ -X sasl.mechanisms=SCRAM-SHA-512 \ -X sasl.username=kafka-user \ -X sasl.password=<password> \ -X ssl.ca.location=/usr/local/share/ca-certificates/Yandex/YandexInternalRootCA.crt \ -Z \ -K:You can get the FQDNs of broker hosts with the list of hosts in the Managed Service for Apache Kafka® cluster.
-
Connect to the Managed Service for YDB database and add test data to the
sensorstable:REPLACE INTO sensors (device_id, datetime, latitude, longitude, altitude, speed, battery_voltage, cabin_temperature, fuel_level) VALUES ('iv9a94th6rzt********', '2022-06-05 17:27:00', 55.70329032, 37.65472196, 427.5, 0, 23.5, 17, NULL), ('rhibbh3y08qm********', '2022-06-06 09:49:54', 55.71294467, 37.66542005, 429.13, 55.5, NULL, 18, 32), ('iv9a94th6rzt********', '2022-06-08 17:45:00', 53.70987913, 36.62549834, 378.0, NULL, 20.5, 15, 20); -
Make sure the terminal running
kafkacatdisplays the data format schema of thesensorstable and information about the added rows.Message snippet example
{ "payload": { "device_id": "aXY5YTk0dGg2cnp0b294********" }, "schema": { "fields": [ { "field": "device_id", "optional": false, "type": "bytes" } ], "name": "cdc..sensors.Key", "optional": false, "type": "struct" } }: { "payload": { "after": { "altitude": 378, "battery_voltage": 20.5, "cabin_temperature": 15, "datetime": "MjAyMi0wNi0wOCAxNzo0********", "device_id": "aXY5YTk0dGg2cnp0b294********", "fuel_level": 20, "latitude": 53.70987913, "longitude": 36.62549834, "speed": null }, "before": null, "op": "c", "source": { "db": "", "name": "cdc", "snapshot": "false", "table": "sensors", "ts_ms": 1678642104797, "version": "1.1.2.Final" }, "transaction": null, "ts_ms": 1678642104797 }, "schema": { "fields": [ { "field": "before", "fields": [ { "field": "device_id", "optional": false, "type": "bytes" }, ... ], "name": "cdc..sensors.Value", "optional": true, "type": "struct" }, { "field": "after", "fields": [ { "field": "device_id", "optional": false, "type": "bytes" }, ... ], "name": "cdc..sensors.Value", "optional": true, "type": "struct" }, { "field": "source", "fields": [ { "field": "version", "optional": false, "type": "string" }, { "field": "connector", "optional": false, "type": "string" }, { "field": "name", "optional": false, "type": "string" }, { "field": "ts_ms", "optional": false, "type": "int64" }, { "default": "false", "field": "snapshot", "name": "io.debezium.data.Enum", "optional": true, "parameters": { "allowed": "true,last,false" }, "type": "string", "version": 1 }, { "field": "db", "optional": false, "type": "string" }, { "field": "table", "optional": false, "type": "string" } ], "optional": false, "type": "struct" }, ..., { "field": "transaction", "fields": [ { "field": "id", "optional": false, "type": "string" }, { "field": "total_order", "optional": false, "type": "int64" }, { "field": "data_collection_order", "optional": false, "type": "int64" } ], "optional": true, "type": "struct" } ], "name": "cdc..sensors.Envelope", "optional": false, "type": "struct" } }
Delete the resources you created
Note
Before deleting the resources, deactivate the transfer.
To reduce the consumption of resources, delete those you do not need:
-
If you created a service account when creating the source endpoint, delete it.
-
Delete the other resources depending on how you created them:
ManuallyTerraform-
In the terminal window, go to the directory containing the infrastructure plan.
Warning
Make sure the directory has no Terraform manifests with the resources you want to keep. Terraform deletes all resources that were created using the manifests in the current directory.
-
Delete resources:
-
Run this command:
terraform destroy -
Confirm deleting the resources and wait for the operation to complete.
All the resources described in the Terraform manifests will be deleted.
-
-