Kafka Connect for Azure Cosmos DB - V2
APPLIES TO: NoSQL
Kafka Connect is a tool for scalable and reliably streaming data between Apache Kafka and other systems. Using Kafka Connect you can define connectors that move large data sets into and out of Kafka. Kafka Connect for Azure Cosmos DB is a connector to read from and write data to Azure Cosmos DB.
Source connector - Currently this connector supports exactly once.
Sink connector - This connector fully supports exactly once semantics.
3.6.0+
The source and sink connectors can be configured to support the following data formats:
Format | Description |
---|---|
Plain JSON | JSON record structure without any attached schema. |
JSON with schema | JSON record structure with explicit schema information to ensure the data matches the expected format. |
AVRO | A row-oriented remote procedure call and data serialization framework developed within Apache's Hadoop project. It uses JSON for defining data types, protocols, and serializes data in a compact binary format. |
The key and value settings, including the format and serialization can be independently configured in Kafka. So, it's possible to work with different data formats for keys and values, respectively. To cater for different data formats, there's converter configuration for both key.converter
and value.converter
.
If you need to use JSON without schema registry for connect data, use the JsonConverter
supported with Kafka. The following example shows the JsonConverter
key and value properties that are added to the configuration:
key.converter=org.apache.kafka.connect.json.JsonConverter
key.converter.schemas.enable=false
value.converter=org.apache.kafka.connect.json.JsonConverter
value.converter.schemas.enable=false
Set the properties key.converter.schemas.enable
and value.converter.schemas.enable
to true so that the key or value is treated as a composite JSON object that contains both an internal schema and the data. Without these properties, the key or value is treated as plain JSON.
key.converter=org.apache.kafka.connect.json.JsonConverter
key.converter.schemas.enable=true
value.converter=org.apache.kafka.connect.json.JsonConverter
value.converter.schemas.enable=true
The resulting message to Kafka would look like the example below, with schema and payload as top-level elements in the JSON:
{
"schema": {
"type": "struct",
"fields": [
{
"type": "int32",
"optional": false,
"field": "userid"
},
{
"type": "string",
"optional": false,
"field": "name"
}
],
"optional": false,
"name": "ksql.users"
},
"payload": {
"userid": 123,
"name": "user's name"
}
}
Note
The message written to Azure Cosmos DB is made up of the schema and payload. Notice the size of the message, as well as the proportion of it that is made up of the payload vs. the schema. The schema is repeated in every message you write to Kafka. In scenarios like this, you may want to use a serialization format like JSON Schema or AVRO, where the schema is stored separately, and the message holds just the payload.
The Kafka Connector supports AVRO data format. To use AVRO format, configure a AvroConverter
so that connector knows how to work with AVRO data. Azure Cosmos DB Kafka Connect is tested with the AvroConverter supplied by Confluent, under Apache 2.0 license. You can also use a different custom converter if you prefer.
Kafka deals with keys and values independently. Specify the key.converter
and value.converter
properties as required in the worker configuration. When using AvroConverter
, add an extra converter property that provides the URL for the schema registry. The following example shows the AvroConverter key and value properties that are added to the configuration:
key.converter=io.confluent.connect.avro.AvroConverter
key.converter.schema.registry.url=http://schema-registry:8081
value.converter=io.confluent.connect.avro.AvroConverter
value.converter.schema.registry.url=http://schema-registry:8081
The following are some considerations on how to choose a conversion format:
When configuring a Source connector:
If you want Kafka Connect to include plain JSON in the message it writes to Kafka, set Plain JSON configuration.
If you want Kafka Connect to include the schema in the message it writes to Kafka, set JSON with Schema configuration.
If you want Kafka Connect to include AVRO format in the message it writes to Kafka, set AVRO configuration.
If you’re consuming JSON data from a Kafka topic into a Sink connector, understand how the JSON was serialized when it was written to the Kafka topic:
If it was written with JSON serializer, set Kafka Connect to use the JSON converter
(org.apache.kafka.connect.json.JsonConverter)
.- If the JSON data was written as a plain string, determine if the data includes a nested schema or payload. If it does, set JSON with schema configuration.
- However, if you’re consuming JSON data and it doesn’t have the schema or payload construct, then you must tell the connector not to look for a schema by setting
schemas.enable=false
as per Plain JSON configuration.
If it was written with AVRO serializer, set Kafka Connect to use the AVRO converter
(io.confluent.connect.avro.AvroConverter)
as per AVRO configuration.
The source and sink connectors share the following common configuration properties:
Config Property Name | Default | Description |
---|---|---|
azure.cosmos.account.endpoint |
None | Cosmos DB Account Endpoint Uri |
azure.cosmos.account.environment |
Azure |
The Azure environment of the Cosmos DB account: Azure , AzureChina , AzureUsGovernment , AzureGermany . |
azure.cosmos.account.tenantId |
"" |
The tenantId of the Cosmos DB account. Required for ServicePrincipal authentication. |
azure.cosmos.auth.type |
MasterKey |
There are two auth types are supported currently: MasterKey (PrimaryReadWriteKeys, SecondReadWriteKeys, PrimaryReadOnlyKeys, SecondReadWriteKeys), ServicePrincipal |
azure.cosmos.account.key |
"" |
Cosmos DB Account Key (only required if auth.type is MasterKey ) |
azure.cosmos.auth.aad.clientId |
"" |
The clientId/ApplicationId of the service principal. Required for ServicePrincipal authentication. |
azure.cosmos.auth.aad.clientSecret |
"" |
The client secret/password of the service principal. |
azure.cosmos.mode.gateway |
false |
Flag to indicate whether to use gateway mode. By default it's false, means SDK uses direct mode. |
azure.cosmos.preferredRegionList |
[] |
Preferred regions list to be used for a multi region Cosmos DB account. This is a comma separated value (for example, [East US, West US] or East US, West US ) provided preferred regions to be used as hint. You should use a collocated kafka cluster with your Cosmos DB account and pass the kafka cluster region as preferred region. |
azure.cosmos.application.name |
"" |
Application name. It is added as the userAgent suffix. |
azure.cosmos.throughputControl.enabled |
false |
A flag to indicate whether throughput control is enabled. |
azure.cosmos.throughputControl.account.endpoint |
"" |
Cosmos DB Throughput Control Account Endpoint Uri. |
azure.cosmos.throughputControl.account.environment |
Azure |
The Azure environment of the Cosmos DB account: Azure , AzureChina , AzureUsGovernment , AzureGermany . |
azure.cosmos.throughputControl.account.tenantId |
"" |
The tenantId of the Cosmos DB account. Required for ServicePrincipal authentication. |
azure.cosmos.throughputControl.auth.type |
MasterKey |
There are two auth types are supported currently: MasterKey (PrimaryReadWriteKeys, SecondReadWriteKeys, PrimaryReadOnlyKeys, SecondReadWriteKeys), ServicePrincipal |
azure.cosmos.throughputControl.account.key |
"" |
Cosmos DB Throughput Control Account Key (only required if throughputControl.auth.type is MasterKey ). |
azure.cosmos.throughputControl.auth.aad.clientId |
"" |
The clientId/ApplicationId of the service principal. Required for ServicePrincipal authentication. |
azure.cosmos.throughputControl.auth.aad.clientSecret |
"" |
The client secret/password of the service principal. |
azure.cosmos.throughputControl.preferredRegionList |
[] |
Preferred regions list to be used for a multi region Cosmos DB account. This is a comma separated value (for example, [East US, West US] or East US, West US ) provided preferred regions to be used as hint. You should use a collocated kafka cluster with your Cosmos DB account and pass the kafka cluster region as preferred region. |
azure.cosmos.throughputControl.mode.gateway |
false |
Flag to indicate whether to use gateway mode. By default it's false, means SDK uses direct mode. |
azure.cosmos.throughputControl.group.name |
"" |
Throughput control group name. Since customer is allowed to create many groups for a container, the name should be unique. |
azure.cosmos.throughputControl.targetThroughput |
-1 |
Throughput control group target throughput. The value should be larger than 0. |
azure.cosmos.throughputControl.targetThroughputThreshold |
-1 |
Throughput control group target throughput threshold. The value should be between (0,1]. |
azure.cosmos.throughputControl.priorityLevel |
None |
Throughput control group priority level. The value can be None, High, or Low. |
azure.cosmos.throughputControl.globalControl.database.name |
"" |
Database which is used for throughput global control. |
azure.cosmos.throughputControl.globalControl.container.name |
"" |
Container which is used for throughput global control. |
azure.cosmos.throughputControl.globalControl.renewIntervalInMS |
-1 |
This controls how often the client is going to update the throughput usage of itself and adjust its own throughput share based on the throughput usage of other clients. Default is 5 s, the allowed min value is 5 s. |
azure.cosmos.throughputControl.globalControl.expireIntervalInMS |
-1 |
This controls how quickly we detect the client has been offline and hence allow its throughput share to be taken by other clients. Default is 11 s, the allowed min value is 2 * renewIntervalInMS + 1. |
For sink connector-specific configuration, see the Sink Connector Documentation
For source connector-specific configuration, see the Source Connector Documentation
If you misconfigure the converters in Kafka Connect, it can result in errors. These errors show up at the connector because you try to deserialize the messages already stored in Kafka. Converter problems don’t usually occur in source because serialization is set at the source.
For more information, see common configuration errors doc.
Refer to the Developer setup for initial setup instructions.
- Kafka Connect for Azure Cosmos DB source connector
- Kafka Connect for Azure Cosmos DB sink connector