Getting Started with Apache Kafka Structured Metadata

Overview

This article describes how to read and write structured data with Apache Kafka. The Semarchy xDI structured metadata allows exchanging data in a specific format (for example, AVRO or JSON).

To exchange data with no specific format, use the Semarchy xDI raw metadata. Refer to Getting Started with Kafka Raw Metadata for more information.

Create metadata

To create the metadata:

  1. Right-click the project folder, then select New > Metadata.

  2. In the New Metadata window, select Kafka Server - structured and click Next.

  3. Name the data model and click Next.

  4. Select the installed Apache Kafka module and click Finish.
    The metadata is created.

Define a host

Select the root node of the metadata to define the server properties listed below:

Table 1. Apache Kafka Server Properties
Property Description

Name

A label/alias for this metadata.

Module

Apache Kafka module to use.

Connection Properties

Properties to be used for connection to kafka server, defined with the format: <key>=<value> and separated with line returns.

The boostrap.servers property is mandatory. Specify it in the format bootstrap.servers = <host>:<port>.

The following image illustrates an example of a host:
getting started kafka structured host

Create topics

Topics are used to store data in Apache Kafka in the form of messages.
To create a topic:

  1. Right-click the host node, then click New > Topic.

    getting started kafka structured topic

  2. Enter a name and a physical name for the topic.

  3. Right-click the topic, click New > Key.

    Do not create more than one key on a topic.
  4. In the Standard tab of the key properties, in the Schema field, drag and drop the JSON or the AVRO schema that the topic should represent. You can also use the browse button to browse through the available schemas.

    Drag and drop or select only the root node of the JSON or AVRO schema.
  5. Right-click the topic again, click New > Value.

    Do not create more than one value on a topic.
  6. In the Standard tab of the value properties, in the Schema field, drag and drop the JSON or the AVRO schema that the topic should represent. You can also use the browse button to browse through the available schemas.

    Drag and drop or select only the root node of the JSON or AVRO schema.

getting started kafka structured value

Create consumers

Consumers subscribe to topics to read messages.
To create a consumer:

  1. Right-click the host, then click New > Topic Consumer.

    getting started kafka structured consumer

  2. Enter a name and a group name for the consumer.

  3. From the Topic drop-down list, select the topic to which the consumer should subscribe.

    getting started kafka structured consumer subscribe

Create mappings

Mappings can be created for sending (produce) and receiving (consume) data.

Produce mapping

The following example illustrates a produce mapping in which a database table is mapped to a topic:
getting started kafka structured mapping produce

The topic node must be mapped to a field.

Consume mapping

The following example illustrates a consume mapping in which a consumer is mapped to a database table:
getting started kafka structured mapping consume