You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/11/07 11:07:29 UTC

(camel-kamelets) 01/05: Kafka Azure Schema Registry Sink Kamelet

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch azure-schema-registry-sink
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 4ea38727a1175a739480361a8ccc2ea5d25a7787
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Nov 7 12:04:25 2023 +0100

    Kafka Azure Schema Registry Sink Kamelet
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../kafka-azure-schema-registry-sink.kamelet.yaml  | 149 +++++++++++++++++++++
 1 file changed, 149 insertions(+)

diff --git a/kamelets/kafka-azure-schema-registry-sink.kamelet.yaml b/kamelets/kafka-azure-schema-registry-sink.kamelet.yaml
new file mode 100644
index 00000000..4f5d7450
--- /dev/null
+++ b/kamelets/kafka-azure-schema-registry-sink.kamelet.yaml
@@ -0,0 +1,149 @@
+# ---------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ---------------------------------------------------------------------------
+apiVersion: camel.apache.org/v1
+kind: Kamelet
+metadata:
+  name: kafka-azure-schema-registry-sink
+  annotations:
+    camel.apache.org/kamelet.support.level: "Stable"
+    camel.apache.org/catalog.version: "4.2.0-SNAPSHOT"
+    camel.apache.org/kamelet.icon: "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA1MDAgNTAwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MD [...]
+    camel.apache.org/provider: "Apache Software Foundation"
+    camel.apache.org/kamelet.group: "Kafka"
+    camel.apache.org/kamelet.namespace: "Kafka"
+  labels:
+    camel.apache.org/kamelet.type: "sink"
+spec:
+  definition:
+    title: "Azure Kafka through Eventhubs with Azure Schema Registry Sink"
+    description: |-
+      Send data to Kafka topics on Azure Eventhubs combined with Azure Schema Registry.
+
+      The Kamelet is able to understand the following headers to be set:
+
+      - `key` / `ce-key`: as message key
+    
+      - `partition-key` / `ce-partitionkey`: as message partition key
+
+      Both the headers are optional.
+    required:
+      - topic
+      - bootstrapServers
+      - azureRegistryUrl
+      - password
+    type: object
+    properties:
+      topic:
+        title: Topic Names
+        description: Comma separated list of Kafka topic names
+        type: string
+      bootstrapServers:
+        title: Bootstrap Servers
+        description: Comma separated list of Kafka Broker URLs
+        type: string
+      securityProtocol:
+        title: Security Protocol
+        description: Protocol used to communicate with brokers. SASL_PLAINTEXT, PLAINTEXT, SASL_SSL and SSL are supported
+        type: string
+        default: SASL_SSL
+      saslMechanism:
+        title: SASL Mechanism
+        description: The Simple Authentication and Security Layer (SASL) Mechanism used. 
+        type: string
+        default: PLAIN
+      user:
+        title: Username
+        description: Username to authenticate to Kafka 
+        type: string
+        x-descriptors:
+        - urn:camel:group:credentials
+      password:
+        title: Password
+        description: Password to authenticate to kafka
+        type: string
+        format: password
+        x-descriptors:
+        - urn:alm:descriptor:com.tectonic.ui:password
+        - urn:camel:group:credentials
+      valueSerializer:
+        title: Value Deserializer
+        description: Deserializer class for value that implements the Deserializer interface.
+        type: string
+        default: "com.microsoft.azure.schemaregistry.kafka.avro.KafkaAvroSerializer"
+      azureRegistryUrl:
+        title: Azure Schema Registry URL
+        description: The Apicurio Schema Registry URL
+        type: string
+        x-descriptors:
+        - urn:keda:metadata:bootstrapServers
+        - urn:keda:required
+      specificAvroValueType:
+        title: Specific Avro Value Type
+        description: The Specific Type Avro will have to deal with
+        type: string
+        example: "com.example.Order"
+  dependencies:
+    - "mvn:org.apache.camel.kamelets:camel-kamelets-utils:4.2.0-SNAPSHOT"
+    - "camel:core"
+    - "camel:kafka"
+    - "camel:kamelet"
+    - "mvn:com.microsoft.azure:azure-schemaregistry-kafka-avro:1.1.1"
+    - "mvn:com.azure:azure-data-schemaregistry-apacheavro:1.1.4"
+    - "mvn:com.azure:azure-identity:1.9.0"
+  template:
+    beans:
+      - name: defaultAzureCredential
+        type: "#class:org.apache.camel.kamelets.utils.kafka.registry.DefaultAzureCredentialWrapper"
+    from:
+      uri: "kamelet:source"
+      steps:
+      - choice:
+          when:
+          - simple: "${header[key]}"
+            steps:
+            - set-header:
+                name: kafka.KEY
+                simple: "${header[key]}"
+          - simple: "${header[ce-key]}"
+            steps:
+            - set-header:
+                name: kafka.KEY
+                simple: "${header[ce-key]}"
+      - choice:
+          when:
+          - simple: "${header[partition-key]}"
+            steps:
+            - set-header:
+                name: kafka.PARTITION_KEY
+                simple: "${header[partition-key]}"
+          - simple: "${header[ce-partitionkey]}"
+            steps:
+            - set-header:
+                name: kafka.PARTITION_KEY
+                simple: "${header[ce-partitionkey]}"
+      - to:
+          uri: "kafka:{{topic}}"
+          parameters:
+            brokers: "{{bootstrapServers}}"
+            securityProtocol: "{{securityProtocol}}"
+            saslMechanism: "{{saslMechanism}}"
+            saslJaasConfig: 'org.apache.kafka.common.security.plain.PlainLoginModule required username="$ConnectionString" password={{password}};'
+            valueSerializer: "{{valueSerializer}}"
+            additionalProperties.schema.registry.url: "{{azureRegistryUrl}}"
+            additionalProperties.schema.group: avro
+            additionalProperties.schema.registry.credential: '#bean:defaultAzureCredential'
+            additionalProperties.specific.avro.value.type: '#valueAs(java.lang.Class):{{specificAvroValueType}}'