Infinispan Source
Provided by: "Apache Software Foundation"
Support Level for this Kamelet is: "Stable"
Get Events from an Infinispan cache
Configuration Options
The following table summarizes the configuration options available for the infinispan-source
Kamelet:
Property | Name | Description | Type | Default | Example |
---|---|---|---|---|---|
Cache Name |
Required The name of the Infinispan cache to use. |
string |
|||
Hosts |
Required Specifies the host of the cache on Infinispan instance. |
string |
|||
Password |
Required Password to connect to Infinispan. |
string |
|||
Username |
Required Username to connect to Infinispan. |
string |
|||
Infinispan Cluster Name |
Specifies the set of event types to register by the consumer. Multiple event can be separated by comma without spaces. The possible event types are CLIENT_CACHE_ENTRY_CREATED, CLIENT_CACHE_ENTRY_MODIFIED, CLIENT_CACHE_ENTRY_REMOVED, CLIENT_CACHE_ENTRY_EXPIRED, CLIENT_CACHE_FAILOVER. |
string |
CLIENT_CACHE_ENTRY_CREATED,CLIENT_CACHE_ENTRY_MODIFIED,CLIENT_CACHE_ENTRY_REMOVED,CLIENT_CACHE_ENTRY_EXPIRED,CLIENT_CACHE_FAILOVER |
CLIENT_CACHE_ENTRY_CREATED,CLIENT_CACHE_ENTRY_MODIFIED |
|
SASL Mechanism |
The SASL Mechanism to use. |
string |
DIGEST-MD5 |
||
Secure |
If the Infinispan instance is secured or not. |
boolean |
true |
||
Security Realm |
Define the security realm to access the infinispan instance. |
string |
default |
||
Security Server name |
Define the security server name to access the infinispan instance. |
string |
infinispan |
Dependencies
At runtime, the infinispan-source
Kamelet relies upon the presence of the following dependencies:
-
camel:kamelet
-
camel:core
-
camel:infinispan
Usage
This section describes how you can use the infinispan-source
.
Knative source
You can use the infinispan-source
Kamelet as a Knative source by binding it to a Knative object.
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: infinispan-source-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: infinispan-source
properties:
cacheName: The Cache Name
hosts: The Hosts
password: The Password
username: The Username
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
infinispan-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 infinispan-source-binding.yaml
Procedure for using the Kamel CLI
Configure and run the source by using the following command:
kamel bind infinispan-source -p "source.cacheName=The Cache Name" -p "source.hosts=The Hosts" -p "source.password=The Password" -p "source.username=The Username" channel:mychannel
This command creates the KameletBinding in the current namespace on the cluster.
Kafka source
You can use the infinispan-source
Kamelet as a Kafka source by binding it to a Kafka topic.
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: infinispan-source-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: infinispan-source
properties:
cacheName: The Cache Name
hosts: The Hosts
password: The Password
username: The Username
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
infinispan-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 infinispan-source-binding.yaml
Procedure for using the Kamel CLI
Configure and run the source by using the following command:
kamel bind infinispan-source -p "source.cacheName=The Cache Name" -p "source.hosts=The Hosts" -p "source.password=The Password" -p "source.username=The Username" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
This command creates the KameletBinding in the current namespace on the cluster.