Chapter 62. Protobuf Serialize Action
Serialize payload to Protobuf.
62.1. Configuration Options Copy linkLink copied to clipboard!
The following table summarizes the configuration options available for the protobuf-serialize-action Kamelet:
| Property | Name | Description | Type | Default | Example |
|---|---|---|---|---|---|
| schema | Schema | The Protobuf schema to use during serialization (as single-line) | string | message Person { required string first = 1; required string last = 2; } |
* = Fields marked with an asterisk are mandatory.
62.2. Dependencies Copy linkLink copied to clipboard!
62.2.1. Quarkus dependencies Copy linkLink copied to clipboard!
<dependencies>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifact>camel-quarkus-core</artifact>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifact>camel-quarkus-jackson-protobuf</artifact>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifact>camel-quarkus-kamelet</artifact>
</dependency>
<dependency>
<groupId>org.apache.camel.kamelets</groupId>
<artifact>camel-kamelets-utils</artifact>
<version>4.8.5</version>
</dependency>
</dependencies>
62.3. Usage Copy linkLink copied to clipboard!
62.3.1. Camel JBang usage Copy linkLink copied to clipboard!
62.3.1.1. Prerequisites for JBang Copy linkLink copied to clipboard!
- Install JBang.
You have executed the following command:
jbang app install camel@apache/camel
62.3.1.2. Running a route with JBang Copy linkLink copied to clipboard!
Suppose you have a file named route.yaml with this content:
- route:
from:
uri: "kamelet:timer-source"
parameters:
period: 10000
message: 'test'
steps:
- to:
uri: "kamelet:log-sink"
You can now run it directly through the following command.
camel run route.yaml
62.3.2. Knative Action Copy linkLink copied to clipboard!
You can use the protobuf-serialize-action Kamelet as an intermediate step in a Knative binding.
protobuf-serialize-action-binding.yaml
apiVersion: camel.apache.org/v1
kind: Pipe
metadata:
name: protobuf-serialize-action-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1
name: timer-source
properties:
message: '{"first": "John", "last":"Doe"}'
steps:
- ref:
kind: Kamelet
apiVersion: camel.apache.org/v1
name: json-deserialize-action
- ref:
kind: Kamelet
apiVersion: camel.apache.org/v1
name: protobuf-serialize-action
properties:
schema: "message Person { required string first [id="protobuf_serialize_action_1;_required_string_last_=_2;_}""] = 1; required string last = 2; }"
sink:
ref:
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
62.3.3. Kafka Action Copy linkLink copied to clipboard!
You can use the protobuf-serialize-action Kamelet as an intermediate step in a Kafka binding.
protobuf-serialize-action-binding.yaml
apiVersion: camel.apache.org/v1
kind: Pipe
metadata:
name: protobuf-serialize-action-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1
name: timer-source
properties:
message: '{"first": "John", "last":"Doe"}'
steps:
- ref:
kind: Kamelet
apiVersion: camel.apache.org/v1
name: json-deserialize-action
- ref:
kind: Kamelet
apiVersion: camel.apache.org/v1
name: protobuf-serialize-action
properties:
schema: "message Person { required string first [id="protobuf_serialize_action_1;_required_string_last_=_2;_}""] = 1; required string last = 2; }"
sink:
ref:
kind: KafkaTopic
apiVersion: kafka.strimzi.io/v1beta1
name: my-topic