Working with ProtoBuf Serialized Data and DeltaStream Descriptors
Last updated
Last updated
In streaming stores such as Apache Kafka and Amazon Kinesis, producers send data events as bytes that consumers of the data must interpret. The most popular formats for data serialization include JSON, ProtoBuf, and Apache Avro, and DeltaStream supports all of these. This tutorial focuses on ProtoBuf and how to create and use a Descriptor for data serialization/deserialization.
Begin with a Store with s whose data records are serialized with ProtoBuf. This means you also have ProtoBuf messages and file descriptors to serialize and deserialize these data events. In DeltaStream, you can create a DeltaStream Descriptor -- which is a wrapper around your ProtoBuf file descriptor -- and associate it with any that requires the ProtoBuf file descriptor for serialization/deserialization.
When working with ProtoBuf, you first define a ProtoBuf message and then generate a ProtoBuf file descriptor from that message. DeltaStream then uses this ProtoBuf file descriptor to generate any code necessary for serializing and deserializing data that conforms to the ProtoBuf message structure.
In this example, the ProtoBuf message, which lives in the file p.proto
, resembles the following:
You can generate a ProtoBuf descriptor in the file pageviews_value.desc
from this ProtoBuf message in the file p.proto
(see ProtoBuf documentation for more details):
Now create a DeltaStream Descriptor from this ProtoBuf file descriptor. In the CLI you can do this using the CREATE DESCRIPTOR_SOURCE DDL. In the UI, follow these steps to add a descriptor:
In the lefthand navigation click Resources ( ). When the Resources page displays, click Descriptor Sources and then click + Add Descriptor Source.
Choose the file containing your ProtoBuf file descriptor (pageviews-descriptor
in this example). When prompted, name your descriptor, and then click UPLOAD.
Now you can click on the descriptor to view the message names it contains (in this example, Pageviews
).
Click the store you want, and when the store page displays, click the topic you want. In the example below, we selected the KafkaStore
containing the ProtoBuf entity pageviews_key_descriptor
:
As this is a Kafka store, it allows for keys and enables you to assign a Key Descriptor and/or a Value Descriptor. For stores that don’t allow for keys, including Kinesis stores, you can only add a value descriptor.
Click + Add Descriptors, and from the menus that display click the relevant descriptors to assign to this entity. In this example the Pageviews
value descriptor is assigned, and the Key Descriptor
is empty.
That's it. You've assigned your descriptor to the relevant entity; now you can use this entity to run commands (such as PRINT ENTITY) and queries with relations.
With descriptors added, you can now create a relation that specifies a key.format
or value.format
of PROTOBUF
as shown in the below DDL example. See CREATE STREAM for more details.
You can also create new relations using CREATE STREAM AS SELECT or CREATE CHANGELOG AS SELECT, specifying PROTOBUF
as the data format for the sink relation. The below example shows how you can easily convert the JSON stream pageviews_json
to a stream called pageviews_converted_to_proto
with a ProtoBuf key and value format.
When the sink relation has a key or value format of PROTOBUF
, the descriptor for the sink relation is automatically created and assigned to the entity. You can easily view your descriptors in the Descriptors tab or use the LIST DESCRIPTORS command in the CLI. To use the descriptor outside of DeltaStream, you can download the ProtoBuf descriptor via the COPY DESCRIPTOR_SOURCE command.
Finally, with regard to the PRINT ENTITY
command:
If an entity in a store has a descriptor, the descriptor is for deserialization even if the store has a schema registry.
If the entity does not have a descriptor, the store checks whether the schema registry contains a schema for the entity, and uses it for deserialization.
If the entity doesn’t have a descriptor and the store doesn’t have a schema registry—or it has a schema registry, but there is no corresponding schema in the registry—DeltaStream attempts to deserialize the data in the entity as JSON.
Now you can associate your descriptor with any relevant that needs it for serialization/deserialization. To do this in the CLI, see UPDATE ENTITY. For the UI, follow these steps:
In the lefthand navigation, click Resources ( ) to display the Resources page