Dev Services for Infinispan
Quarkus supports a feature called Dev Services that allows you to create
various datasources without any config. If you have docker running and have
not configured quarkus.infinispan-client.hosts
, Quarkus will automatically
start an Infinispan container when running tests or dev mode, and
automatically configure the connection.
The following properties are available to customize the Infinispan Dev Services:
Configuration property fixed at build time - All other configuration properties are overridable at runtime
Type |
Default |
|
---|---|---|
If DevServices has been explicitly enabled or disabled. DevServices is generally enabled by default, unless there is an existing configuration present. When DevServices is enabled Quarkus will attempt to automatically configure and start a database when running in Dev or Test mode and when Docker is running. Environment variable: Show more |
boolean |
|
Optional fixed port the dev service will listen to. If not defined, the port will be chosen randomly. Environment variable: Show more |
int |
|
Indicates if the Infinispan server managed by Quarkus Dev Services is shared. When shared, Quarkus looks for running containers using label-based service discovery. If a matching container is found, it is used, and so a second one is not started. Otherwise, Dev Services for Infinispan starts a new container. The discovery uses the Container sharing is only used in dev mode. Environment variable: Show more |
boolean |
|
The value of the This property is used when you need multiple shared Infinispan servers. Environment variable: Show more |
string |
|
The image to use. Note that only official Infinispan images are supported. Environment variable: Show more |
string |
|
List of the artifacts to automatically download and add to the Infinispan server libraries. For example a Maven coordinate (org.postgresql:postgresql:42.3.1) or a dependency location url. If an invalid value is passed, the Infinispan server will throw an error when trying to start. Environment variable: Show more |
list of string |
|
Add a site name to start the Infinispan Server Container with Cross Site Replication enabled (ex. lon). Cross Site Replication is the capability to connect two separate Infinispan Server Clusters that might run in different Data Centers, and configure backup caches to copy the data across the clusters with active-active or active-passive replication. See more about Cross Site Replication in the Infinispan Documentation https://infinispan.org/docs/stable/titles/xsite/xsite.html Configure Environment variable: Show more |
string |
|
If you are running an Infinispan Server already in docker, if the containers use the same mcastPort they will form a cluster. Set a different mcastPort to create a separate cluster in Docker (e. 46656). A common use case in a local Docker development mode, is the need of having two different Infinispan Clusters with Cross Site Replication enabled. see https://github.com/infinispan/infinispan-simple-tutorials/blob/main/infinispan-remote/cross-site-replication/docker-compose/ Environment variable: Show more |
int |
|
Runs the Infinispan Server container with tracing enabled. Traces are disabled by default Environment variable: Show more |
boolean |
|
Sets Infinispan Server otlp endpoint. Default value is http://localhost:4317 Environment variable: Show more |
string |
|
Environment variables that are passed to the container. Environment variable: Show more |
|
|
If DevServices has been explicitly enabled or disabled. DevServices is generally enabled by default, unless there is an existing configuration present. When DevServices is enabled Quarkus will attempt to automatically configure and start a database when running in Dev or Test mode and when Docker is running. Environment variable: Show more |
boolean |
|
Optional fixed port the dev service will listen to. If not defined, the port will be chosen randomly. Environment variable: Show more |
int |
|
Indicates if the Infinispan server managed by Quarkus Dev Services is shared. When shared, Quarkus looks for running containers using label-based service discovery. If a matching container is found, it is used, and so a second one is not started. Otherwise, Dev Services for Infinispan starts a new container. The discovery uses the Container sharing is only used in dev mode. Environment variable: Show more |
boolean |
|
The value of the This property is used when you need multiple shared Infinispan servers. Environment variable: Show more |
string |
|
The image to use. Note that only official Infinispan images are supported. Environment variable: Show more |
string |
|
List of the artifacts to automatically download and add to the Infinispan server libraries. For example a Maven coordinate (org.postgresql:postgresql:42.3.1) or a dependency location url. If an invalid value is passed, the Infinispan server will throw an error when trying to start. Environment variable: Show more |
list of string |
|
Add a site name to start the Infinispan Server Container with Cross Site Replication enabled (ex. lon). Cross Site Replication is the capability to connect two separate Infinispan Server Clusters that might run in different Data Centers, and configure backup caches to copy the data across the clusters with active-active or active-passive replication. See more about Cross Site Replication in the Infinispan Documentation https://infinispan.org/docs/stable/titles/xsite/xsite.html Configure Environment variable: Show more |
string |
|
If you are running an Infinispan Server already in docker, if the containers use the same mcastPort they will form a cluster. Set a different mcastPort to create a separate cluster in Docker (e. 46656). A common use case in a local Docker development mode, is the need of having two different Infinispan Clusters with Cross Site Replication enabled. see https://github.com/infinispan/infinispan-simple-tutorials/blob/main/infinispan-remote/cross-site-replication/docker-compose/ Environment variable: Show more |
int |
|
Runs the Infinispan Server container with tracing enabled. Traces are disabled by default Environment variable: Show more |
boolean |
|
Sets Infinispan Server otlp endpoint. Default value is http://localhost:4317 Environment variable: Show more |
string |
|
Environment variables that are passed to the container. Environment variable: Show more |
|
When running the production version of the application, the Infinispan
connection need to be configured as normal, so if you want to include a
production database config in your application.properties
and continue to
use Dev Services we recommend that you use the %prod.
profile to define
your Infinispan settings.
Dev Services for Infinispan relies on Docker to start the server.
Connecting to the running Infinispan Server
You don’t need to configure anything in dev mode. The server will be
running in a random port. If you need a fixed port, then configure
quarkus.infinispan-client.devservices.port
property.
The running Infinispan Server has authentication enabled and a user with full admin role. The credentials of the user are admin/password. |
Accessing to the Infinispan Server Console
Infinispan Server provides a web console that can be accessed with a browser:
-
Open the Dev UI
-
You will see an Infinispan Client box. Click on Web Console and enter the credentials above.
If your environment does not support Docker, you will need to spin up an Infinispan Server manually, or connect to an already running server.
Overriding the Infinispan Server Image
The extension is updated regularly and the Dev Services will start the
latest final version image of Infinispan. Use
quarkus.infinispan-client.devservices.image-name
property to specify
another image that fits your needs.
Enabling / Disabling Dev Services for Infinispan
Dev Services for Infinispan is automatically enabled unless:
-
quarkus.infinispan-client.devservices.enabled
is set tofalse
-
the
quarkus.infinispan-client.hosts
is configured
Dev Services for Infinispan relies on Docker to start the broker. If your
environment does not support Docker, you will need to start the broker
manually, or connect to an already running broker. You can configure the
broker address using quarkus.infinispan-client.hosts
.
Cross Site Replication
If you want run the Infinispan Server container with Cross Site Replication configuration, you need to provide a site name.
quarkus.infinispan-client.devservices.site=NYC (1)
quarkus.infinispan-client.devservices.mcast-port=46666 (2)
1 | Provides a site name for your Infinispan cluster |
2 | Eventually configure a mcastPort if you want to avoid creating a cluster with another container |
Learn more about Cross Site Replication in the Infinispan Cross Site Replication documentation guide and in the Infinispan Cross Site Replication simple code tutorial. |
Multiple Dev Services for named connections
The Infinispan Client extension supports connecting to more than one Infinispan Cluster with the named connections. If you need to spin an additional dev service for a connection name, configure at least on property in the application properties:
quarkus.infinispan-client.conn-2.devservices.enabled=true
Tracing with OpenTelemetry
Infinispan supports instrumentation of the server via OpenTelemetry. Enable
tracing setting quarkus.infinispan-client.devservices.tracing.enabled
to
true. The default otlp exporter endpoint is http://localhost:4317
. If
you are running Jaeger in a container as explained in the
OpenTelemetry guide, since the containers are
running in the default network, Infinispan container won’t have access to
localhost. You need to get the IP running the following command and
configure the
quarkus.infinispan-client.devservices.tracing.exporter.otlp.endpoint
property.
docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' jaeger
Persistence layer for Infinispan
Infinispan caches provide several features that need to connect to a persistence layer using a particular SQL database driver such as persisting caches in a SQL database or off-loading database tables or queries with SQL cache stores.
Infinispan needs the SQL Java Driver depending on the database kind the
application is using. To spin up a container with a particular SQL driver,
configure quarkus.infinispan-client.devservices.artifacts
.
Learn more about persistence and SQL Cache Stores check the SQL Store Demo + Quarkus Demo and the Infinispan Persistence Documentation guide. |
Shared server
Most of the time you need to share the server between applications. Dev Services for Infinispan implements a service discovery mechanism for your multiple Quarkus applications running in dev mode to share a single server.
Dev Services for Infinispan starts the container with the infinispan label
which is used to identify the container.
|
If you need multiple (shared) servers, you can configure the
quarkus.infinispan-client.devservices.service-name
attribute and indicate
the server name. It looks for a container with the same value, or starts a
new one if none can be found. The default service name is infinispan
.
Sharing is enabled by default in dev mode, but disabled in test mode. You
can disable the sharing with
quarkus.infinispan-client.devservices.shared=false