Protobuf

    The druid-protobuf-extensions provides the Protobuf Parser for . See corresponding docs for details.

    This example demonstrates how to load Protobuf messages from Kafka. Please read the first, and see Kafka Indexing Service documentation for more details.

    The files used in this example are found at .

    For this example:

    • Kafka broker host is localhost:9092
    • Kafka topic is metrics_pb
    • Datasource name is metrics-protobuf

    Here is a JSON example of the ‘metrics’ data schema used in the example.

    The corresponding proto file for our ‘metrics’ dataset looks like this. You can use Protobuf inputFormat with a proto file or .

    1. syntax = "proto3";
    2. message Metrics {
    3. string unit = 1;
    4. string http_method = 2;
    5. int32 value = 3;
    6. string timestamp = 4;
    7. string http_code = 5;
    8. string page = 6;
    9. string metricType = 7;
    10. string server = 8;
    11. }

    When using a descriptor file

    Next, we use the protoc Protobuf compiler to generate the descriptor file and save it as metrics.desc. The descriptor file must be either in the classpath or reachable by URL. In this example the descriptor file was saved at /tmp/metrics.desc, however this file is also available in the example files. From your Druid install directory:

    1. protoc -o /tmp/metrics.desc ./quickstart/protobuf/metrics.proto
    1. POST /subjects/test/versions HTTP/1.1
    2. Host: schemaregistry.example1.com
    3. Accept: application/vnd.schemaregistry.v1+json, application/vnd.schemaregistry+json, application/json
    4. {
    5. "schemaType": "PROTOBUF",
    6. "schema": "syntax = \"proto3\";\nmessage Metrics {\n string unit = 1;\n string http_method = 2;\n int32 value = 3;\n string timestamp = 4;\n string http_code = 5;\n string page = 6;\n string metricType = 7;\n string server = 8;\n}\n"

    This feature uses Confluent’s Protobuf provider which is not included in the Druid distribution and must be installed separately. You can fetch it and its dependencies from the Confluent repository and Maven Central at:

    Copy or symlink those files inside the folder extensions/protobuf-extensions under the distribution root directory.

    Below is the complete Supervisor spec JSON to be submitted to the Overlord. Make sure these keys are properly configured for successful ingestion.

    When using a descriptor file

    Important supervisor properties

    • protoBytesDecoder.descriptor for the descriptor file URL
    • protoBytesDecoder.protoMessageType from the proto definition
    • protoBytesDecoder.type set to file, indicate use descriptor file to decode Protobuf file
    • inputFormat should have type set to protobuf

    To adopt to old version. You can use old parser style, which also works.

    1. "parser": {
    2. "type": "protobuf",
    3. "descriptor": "file:///tmp/metrics.desc",
    4. "protoMessageType": "Metrics"
    5. }
    6. }

    Important supervisor properties

    • protoBytesDecoder.url for the schema registry URL with single instance.
    • protoBytesDecoder.urls for the schema registry URLs with multi instances.
    • protoBytesDecoder.capacity capacity for schema registry cached schemas.
    • protoBytesDecoder.config to send additional configurations, configured for Schema Registry.
    • protoBytesDecoder.headers to send headers to the Schema Registry.
    • protoBytesDecoder.type set to schema_registry, indicate use schema registry to decode Protobuf file.
    • parser should have type set to protobuf, but note that the format of the parseSpec must be json.
    1. {
    2. "parser": {
    3. "type": "protobuf",
    4. "protoBytesDecoder": {
    5. "urls": ["http://schemaregistry.example1.com:8081","http://schemaregistry.example2.com:8081"],
    6. "type": "schema_registry",
    7. "capacity": 100,
    8. "config" : {
    9. "basic.auth.credentials.source": "USER_INFO",
    10. "basic.auth.user.info": "fred:letmein",
    11. "schema.registry.ssl.truststore.location": "/some/secrets/kafka.client.truststore.jks",
    12. "schema.registry.ssl.truststore.password": "<password>",
    13. "schema.registry.ssl.keystore.location": "/some/secrets/kafka.client.keystore.jks",
    14. "schema.registry.ssl.key.password": "<password>",
    15. ...
    16. },
    17. "headers": {
    18. "traceID" : "b29c5de2-0db4-490b-b421",
    19. "timeStamp" : "1577191871865",
    20. }
    21. }
    22. }
    23. }

    If necessary, from your Kafka installation directory run the following command to create the Kafka topic

    1. ./bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic metrics_pb

    You can confirm that data has been inserted to your Kafka topic using the following command from your Kafka installation directory

    1. ./bin/kafka-console-consumer --zookeeper localhost --topic metrics_pb

    which should print messages like this

    1. millisecondsGETR"2017-04-06T03:23:56Z*2002/list:request/latencyBwww1.example.com

    If your supervisor created in the previous step is running, the indexing tasks should begin producing the messages and the data will soon be available for querying in Druid.

    The files provided in the example quickstart can be generated in the following manner starting with only metrics.proto.

    metrics.desc

    The descriptor file is generated using protoc Protobuf compiler. Given a .proto file, a .desc file can be generated like so.

    1. protoc -o metrics.desc metrics.proto

    metrics_pb2.py is also generated with protoc

    pb_publisher.py

    After metrics_pb2.py is generated, another script can be constructed to parse JSON data, convert it to Protobuf, and produce to a Kafka topic

    1. #!/usr/bin/env python
    2. import sys
    3. import json
    4. from kafka import KafkaProducer
    5. from metrics_pb2 import Metrics
    6. producer = KafkaProducer(bootstrap_servers='localhost:9092')
    7. topic = 'metrics_pb'
    8. for row in iter(sys.stdin):
    9. d = json.loads(row)
    10. metrics = Metrics()
    11. for k, v in d.items():
    12. setattr(metrics, k, v)
    13. pb = metrics.SerializeToString()
    14. producer.send(topic, pb)
    15. producer.flush()