JMS - Apache ActiveMQ Classic Kamelet Source
Provided by: "Apache Software Foundation"
Support Level for this Kamelet is: "Preview"
A Kamelet that can consume events from an Apache ActiveMQ Classic message broker using JMS
Configuration Options
The following table summarizes the configuration options available for the jms-apache-activemq-source
Kamelet:
Property | Name | Description | Type | Default | Example |
---|---|---|---|---|---|
Broker URL |
Required The JMS URL. |
string |
tcp://k3s-node-master.usersys.redhat.com:31616 |
||
Destination Name |
Required The JMS destination name. |
string |
|||
Destination Type |
The JMS destination type (i.e.: queue or topic). |
string |
queue |
||
Broker Password |
Target AMQ Broker password. |
string |
admin |
password1! |
|
Broker Username |
Target AMQ Broker userName. |
string |
admin |
userName |
Dependencies
At runtime, the jms-apache-activemq-source
Kamelet relies upon the presence of the following dependencies:
-
camel:activemq
-
camel:kamelet
-
mvn:org.apache.activemq:activemq-http:5.16.2
Usage
This section describes how you can use the jms-apache-activemq-source
.
Knative source
You can use the jms-apache-activemq-source
Kamelet as a Knative source by binding it to a Knative object.
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: jms-apache-activemq-source-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: jms-apache-activemq-source
properties:
brokerURL: tcp://k3s-node-master.usersys.redhat.com:31616
destinationName: The Destination Name
sink:
ref:
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
Prerequisite
You have Camel K installed on the cluster.
Procedure for using the cluster CLI
-
Save the
jms-apache-activemq-source-binding.yaml
file to your local drive, and then edit it as needed for your configuration. -
Run the source by using the following command:
kubectl apply -f jms-apache-activemq-source-binding.yaml
Procedure for using the Kamel CLI
Configure and run the source by using the following command:
kamel bind jms-apache-activemq-source -p "source.brokerURL=tcp://k3s-node-master.usersys.redhat.com:31616" -p "source.destinationName=The Destination Name" channel:mychannel
This command creates the KameletBinding in the current namespace on the cluster.
Kafka source
You can use the jms-apache-activemq-source
Kamelet as a Kafka source by binding it to a Kafka topic.
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: jms-apache-activemq-source-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: jms-apache-activemq-source
properties:
brokerURL: tcp://k3s-node-master.usersys.redhat.com:31616
destinationName: The Destination Name
sink:
ref:
kind: KafkaTopic
apiVersion: kafka.strimzi.io/v1beta1
name: my-topic
Prerequisites
-
You’ve installed Strimzi.
-
You’ve created a topic named
my-topic
in the current namespace. -
You have Camel K installed on the cluster.
Procedure for using the cluster CLI
-
Save the
jms-apache-activemq-source-binding.yaml
file to your local drive, and then edit it as needed for your configuration. -
Run the source by using the following command:
kubectl apply -f jms-apache-activemq-source-binding.yaml
Procedure for using the Kamel CLI
Configure and run the source by using the following command:
kamel bind jms-apache-activemq-source -p "source.brokerURL=tcp://k3s-node-master.usersys.redhat.com:31616" -p "source.destinationName=The Destination Name" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
This command creates the KameletBinding in the current namespace on the cluster.