All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.hotrod.configuration.package-info Maven / Gradle / Ivy

There is a newer version: 14.0.32.Final
Show newest version
/**
 * Hot Rod client configuration API.
 *
 * 

It is possible to configure the {@link org.infinispan.hotrod.RemoteCacheManager} either programmatically, * using a URI or by constructing a {@link org.infinispan.hotrod.configuration.HotRodConfiguration} using a {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder} * or declaratively, by placing a properties file named hotrod-client.properties in the classpath.

* *

A Hot Rod URI follows the following format: * hotrod[s]://[user[:password]@]host[:port][,host2[:port]][?property=value[&property2=value2]] *

*
    *
  • hotrod or hotrods specifies whether to use a plain connection or TLS/SSL encryption.
  • *
  • user and password optionally specify authentication credentials.
  • *
  • host and port comma-separated list of one or more servers.
  • *
  • property and value one or more ampersand-separated (&) property name/value pairs. The property name must omit the infinispan.client.hotrod prefix.
  • *
* *

The following table describes the individual properties * and the related programmatic configuration API.

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
NameTypeDefaultDescription
Connection properties
infinispan.client.hotrod.uriStringN/AConfigures the client via a URI
infinispan.client.hotrod.server_listStringN/AAdds a list of remote servers in the form: host1[:port][;host2[:port]]...
infinispan.client.hotrod.tcp_no_delayBooleantrueEnables/disables the {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#tcpNoDelay(boolean) TCP_NO_DELAY} flag
infinispan.client.hotrod.tcp_keep_aliveBooleanfalseEnables/disables the {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#tcpKeepAlive(boolean) TCP_KEEPALIVE} flag
infinispan.client.hotrod.client_intelligenceString{@link org.infinispan.hotrod.configuration.ClientIntelligence#HASH_DISTRIBUTION_AWARE HASH_DISTRIBUTION_AWARE}The {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#clientIntelligence(ClientIntelligence) ClientIntelligence}
infinispan.client.hotrod.request_balancing_strategyString (class name){@link org.infinispan.hotrod.impl.transport.tcp.RoundRobinBalancingStrategy RoundRobinBalancingStrategy}The {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#balancingStrategy(String) FailoverRequestBalancingStrategy}
infinispan.client.hotrod.socket_timeoutInteger60000The {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#socketTimeout(int) timeout} for socket read/writes
infinispan.client.hotrod.connect_timeoutInteger60000The {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#connectionTimeout(int) timeout} for connections
infinispan.client.hotrod.max_retriesInteger10The maximum number of operation {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#maxRetries(int) retries}
infinispan.client.hotrod.batch_sizeInteger10000The {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#batchSize(int) size} of a batches when iterating
infinispan.client.hotrod.protocol_versionStringLatest version supported by the client in useThe Hot Rod {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#version(org.infinispan.hotrod.configuration.ProtocolVersion) version}.
infinispan.client.hotrod.dns_resolver_min_ttlInteger0The minimum TTL of the cached DNS resource records in seconds. If the TTL of the DNS resource record returned by the DNS server is shorter than the minimum TTL, the resolver ignores the TTL provided by the DNS server and uses the minimum TTL instead. The defaults respect the DNS server TTL.
infinispan.client.hotrod.dns_resolver_max_ttlIntegerInteger.MAX_VALUEThe maximum TTL of the cached DNS resource records in seconds. If the TTL of the DNS resource record returned by the DNS server is longer than the maximum TTL, the resolver ignores the TTL provided by the DNS server and uses the maximum TTL instead. The defaults respect the DNS server TTL.
infinispan.client.hotrod.dns_resolver_negative_ttlInteger0Sets the TTL of the cache for the failed DNS queries in seconds.
infinispan.client.hotrod.transport_factoryString{@link org.infinispan.hotrod.impl.transport.netty.DefaultTransportFactory}Specifies the transport factory to use.
Connection pool properties
infinispan.client.hotrod.connection_pool.max_activeInteger-1 (no limit)Maximum number of {@link org.infinispan.hotrod.configuration.ConnectionPoolConfigurationBuilder#maxActive(int) connections} per server
infinispan.client.hotrod.connection_pool.exhausted_actionString{@link org.infinispan.hotrod.configuration.ExhaustedAction#WAIT WAIT}Specifies what happens when asking for a connection from a server's pool, and that pool is {@link org.infinispan.hotrod.configuration.ConnectionPoolConfigurationBuilder#exhaustedAction(org.infinispan.hotrod.configuration.ExhaustedAction) exhausted}.
infinispan.client.hotrod.connection_pool.max_waitLong-1 (no limit){@link org.infinispan.hotrod.configuration.ConnectionPoolConfigurationBuilder#maxWait(long) Time} to wait in milliseconds for a connection to become available when exhausted_action is WAIT
infinispan.client.hotrod.connection_pool.min_idleInteger1Minimum number of idle {@link org.infinispan.hotrod.configuration.ConnectionPoolConfigurationBuilder#minIdle(int) connections} that each server should have available.
infinispan.client.hotrod.connection_pool.min_evictable_idle_timeInteger1800000Minimum amount of {@link org.infinispan.hotrod.configuration.ConnectionPoolConfigurationBuilder#minEvictableIdleTime(long) time} that an connection may sit idle in the pool
infinispan.client.hotrod.connection_pool.max_pending_requestsInteger5Specifies maximum number of {@link org.infinispan.hotrod.configuration.ConnectionPoolConfigurationBuilder#maxPendingRequests(int) requests} sent over single connection at one instant.
Thread pool properties
infinispan.client.hotrod.async_executor_factoryString (class name){@link org.infinispan.hotrod.impl.async.DefaultAsyncExecutorFactory DefaultAsyncExecutorFactory}The {@link org.infinispan.hotrod.configuration.ExecutorFactoryConfigurationBuilder#factoryClass(String) factory} for creating threads
infinispan.client.hotrod.default_executor_factory.pool_sizeInteger99Size of the thread pool
infinispan.client.hotrod.default_executor_factory.threadname_prefixStringHotRod-client-async-poolPrefix for the default executor thread names
infinispan.client.hotrod.default_executor_factory.threadname_suffixString"" (empty value)Suffix for the default executor thread names
Marshalling properties
infinispan.client.hotrod.marshallerString (class name){@link org.infinispan.jboss.marshalling.commons.GenericJBossMarshaller} if the infinispan-jboss-marshalling module is present on the classpath, otherwise {@link org.infinispan.commons.marshall.ProtoStreamMarshaller} is usedThe {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#marshaller(String) marshaller} that serializes keys and values
infinispan.client.hotrod.force_return_valuesBooleanfalseWhether to {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#forceReturnValues(boolean) return values} for puts/removes
infinispan.client.hotrod.java_serial_allowlistStringN/AA {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#addJavaSerialAllowList(String...) class allowList} which are trusted for unmarshalling.
infinispan.client.hotrod.hash_function_impl.2String{@link org.infinispan.hotrod.impl.consistenthash.ConsistentHashV2 ConsistentHashV2}The {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#consistentHashImpl(int, String) hash function} to use.
infinispan.client.hotrod.context-initializersString (class names)"" (empty value)A list of {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#addContextInitializers(org.infinispan.protostream.SerializationContextInitializer... contextInitializers) SerializationContextInitializer implementation}
Encryption (TLS/SSL) properties
infinispan.client.hotrod.use_sslBooleanfalse{@link org.infinispan.hotrod.configuration.SslConfigurationBuilder#enable() Enable TLS} (implicitly enabled if a trust store is set)
infinispan.client.hotrod.key_store_file_nameStringN/AThe {@link org.infinispan.hotrod.configuration.SslConfigurationBuilder#keyStoreFileName(String) filename} of a keystore to use when using client certificate authentication.
infinispan.client.hotrod.key_store_typeStringJKSThe {@link org.infinispan.hotrod.configuration.SslConfigurationBuilder#keyStoreType(String) keystore type}
infinispan.client.hotrod.key_store_passwordStringN/AThe {@link org.infinispan.hotrod.configuration.SslConfigurationBuilder#keyStorePassword(char[]) keystore password}
infinispan.client.hotrod.key_aliasStringN/AThe {@link org.infinispan.hotrod.configuration.SslConfigurationBuilder#keyAlias(String) alias} of the
infinispan.client.hotrod.trust_store_file_nameStringN/AThe {@link org.infinispan.hotrod.configuration.SslConfigurationBuilder#trustStoreFileName(String) path} of the trust store.
infinispan.client.hotrod.trust_store_typeStringJKSThe {@link org.infinispan.hotrod.configuration.SslConfigurationBuilder#trustStoreType(String) type} of the trust store. Valid values are JKS, JCEKS, PCKS12 and PEM
infinispan.client.hotrod.trust_store_passwordStringN/AThe {@link org.infinispan.hotrod.configuration.SslConfigurationBuilder#trustStorePassword(char[]) password} of the trust store.
infinispan.client.hotrod.sni_host_nameStringN/AThe {@link org.infinispan.hotrod.configuration.SslConfigurationBuilder#sniHostName(String) SNI hostname} to connect to.
infinispan.client.hotrod.ssl_ciphersStringN/AA list of ciphers, separated with spaces and in order of preference, that are used during the SSL handshake to negotiate * a cryptographic algorithm for key encrytion. By default, the SSL protocol (e.g. TLSv1.2) determines which ciphers to use. * You should customize the cipher list with caution to avoid vulnerabilities from weak algorithms. * For details about cipher lists and possible values, refer to OpenSSL documentation at https://www.openssl.org/docs/man1.1.1/man1/ciphers
infinispan.client.hotrod.ssl_hostname_validationbooleantrueWhether to enable TLS hostname validation using the rules defined in RFC 2818.
infinispan.client.hotrod.ssl_protocolStringN/AThe {@link org.infinispan.hotrod.configuration.SslConfigurationBuilder#protocol(String) SSL protocol} to use (e.g. TLSv1.2).
infinispan.client.hotrod.ssl_providerStringN/AThe security provider to use when creating the SSL engine. If left unspecified, it will attempt to use the openssl for the high-performance native implementation, otherwise the internal JDK will be used.
Authentication properties
infinispan.client.hotrod.use_authBooleanEnabled implicitly with other authentication properties.{@link org.infinispan.hotrod.configuration.AuthenticationConfigurationBuilder#enabled(boolean) Enable} authentication.
infinispan.client.hotrod.sasl_mechanismString
SCRAM-SHA-512
if username and password are set
EXTERNAL if a trust store is set.
The {@link org.infinispan.hotrod.configuration.AuthenticationConfigurationBuilder#saslMechanism(String) SASL mechanism} to use for authentication.
infinispan.client.hotrod.auth_callback_handlerStringAutomatically selected based on the configured SASL mechanism.The {@link org.infinispan.hotrod.configuration.AuthenticationConfigurationBuilder#callbackHandler(javax.security.auth.callback.CallbackHandler) CallbackHandler} to use for providing credentials for authentication.
infinispan.client.hotrod.auth_server_nameStringN/AThe {@link org.infinispan.hotrod.configuration.AuthenticationConfigurationBuilder#serverName(String) server name} to use (for Kerberos).
infinispan.client.hotrod.auth_usernameStringN/AThe {@link org.infinispan.hotrod.configuration.AuthenticationConfigurationBuilder#username(String) username}
infinispan.client.hotrod.auth_passwordStringN/AThe {@link org.infinispan.hotrod.configuration.AuthenticationConfigurationBuilder#password(char[]) password}
infinispan.client.hotrod.auth_tokenStringN/AThe {@link org.infinispan.hotrod.configuration.AuthenticationConfigurationBuilder#token(String) OAuth token}
infinispan.client.hotrod.auth_realmStringdefaultThe {@link org.infinispan.hotrod.configuration.AuthenticationConfigurationBuilder#realm(String) realm} (for DIGEST-MD5 authentication).
infinispan.client.hotrod.sasl_properties.*StringN/AA {@link org.infinispan.hotrod.configuration.AuthenticationConfigurationBuilder#saslProperties(java.util.Map) SASL property} (mech-specific)
Transaction properties
Near cache properties
infinispan.client.hotrod.near_cache.modeString ({@link org.infinispan.hotrod.configuration.NearCacheMode} enum name){@link org.infinispan.hotrod.configuration.NearCacheMode#DISABLED DISABLED}The default near-cache {@link org.infinispan.hotrod.configuration.NearCacheConfigurationBuilder#mode(NearCacheMode) mode}. It is preferable to use the per-cache configuration.
infinispan.client.hotrod.near_cache.max_entriesInteger-1 (no limit)The {@link org.infinispan.hotrod.configuration.NearCacheConfigurationBuilder#maxEntries(int) maximum} number of entries to keep in the local cache. It is preferable to use the per-cache configuration.
Cross-site replication properties
infinispan.client.hotrod.cluster.SITEString HOST and int PORT configurationExample for siteA and siteB:
* infinispan.client.hotrod.cluster.siteA=hostA1:11222; hostA2:11223`
* infinispan.client.hotrod.cluster.siteB=hostB1:11222; hostB2:11223` *
Relates to {@link org.infinispan.hotrod.configuration.ClusterConfigurationBuilder#addCluster(java.lang.String)} and * {@link org.infinispan.hotrod.configuration.ClusterConfigurationBuilder#addClusterNode(java.lang.String, int)}
Statistics properties
infinispan.client.hotrod.statisticsBooleanDefault value {@link org.infinispan.hotrod.configuration.StatisticsConfiguration#ENABLED}Relates to {@link org.infinispan.hotrod.configuration.StatisticsConfigurationBuilder#enabled(boolean)}
infinispan.client.hotrod.jmxBooleanDefault value {@link org.infinispan.hotrod.configuration.StatisticsConfiguration#JMX_ENABLED}Relates to {@link org.infinispan.hotrod.configuration.StatisticsConfigurationBuilder#jmxEnabled(boolean)}
infinispan.client.hotrod.jmx_nameStringDefault value {@link org.infinispan.hotrod.configuration.StatisticsConfiguration#JMX_NAME}Relates to {@link org.infinispan.hotrod.configuration.StatisticsConfigurationBuilder#jmxName(java.lang.String)}
infinispan.client.hotrod.jmx_domainStringDefault value {@link org.infinispan.hotrod.configuration.StatisticsConfiguration#JMX_DOMAIN}Relates to {@link org.infinispan.hotrod.configuration.StatisticsConfigurationBuilder#jmxDomain(java.lang.String)}
infinispan.client.hotrod.tracing.propagation_enabledBooleanEnabled implicitly by the presence of the OpenTelemetry API cn the client classpath.Relates to {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#disableTracingPropagation()}} ()}
Per-cache properties
In per-cache configuration properties, you can use wildcards with cachename, for example: cache-*.
If cache names include the '.' character you must enclose the cache name in square brackets, for example: [example.MyConfig].
infinispan.client.hotrod.cache.cachename.configurationXMLN/AProvides a cache configuration, in XML format, to use when clients request caches that do not exist.
infinispan.client.hotrod.cache.cachename.configuration_uriXMLN/AProvides a URI to a cache configuration, in XML format, to use when clients request caches that do not exist.
infinispan.client.hotrod.cache.cachename.template_nameStringN/ANames a cache template to use when clients request caches that do not exist. The cache template must be available on the server.
infinispan.client.hotrod.cache.cachename.near_cache.modeString ({@link org.infinispan.hotrod.configuration.NearCacheMode} enum name){@link org.infinispan.hotrod.configuration.NearCacheMode#DISABLED DISABLED}The near-cache {@link org.infinispan.hotrod.configuration.RemoteCacheConfigurationBuilder#nearCacheMode(org.infinispan.hotrod.configuration.NearCacheMode)} (NearCacheMode) mode} for this cache
infinispan.client.hotrod.cache.cachename.near_cache.max_entriesInteger-1 (no limit)The {@link org.infinispan.hotrod.configuration.RemoteCacheConfigurationBuilder#nearCacheMaxEntries(int) maximum} number of entries to keep locally for the specified cache.
infinispan.client.hotrod.cache.cachename.force_return_valuesBooleanfalseWhether to {@link org.infinispan.hotrod.configuration.RemoteCacheConfigurationBuilder#forceReturnValues(boolean) return values} for puts/removes for the specified cache.
infinispan.client.hotrod.cache.cachename.transaction.transaction_modeString ({@link org.infinispan.hotrod.configuration.TransactionMode} enum name){@link org.infinispan.hotrod.configuration.TransactionMode#NONE NONE}The default {@link org.infinispan.hotrod.configuration.RemoteCacheConfigurationBuilder#transactionMode(TransactionMode) transaction mode} for the specified cache.
infinispan.client.hotrod.cache.cachename.transaction.transaction_manager_lookupString (class name){@link org.infinispan.hotrod.transaction.lookup.GenericTransactionManagerLookup GenericTransactionManagerLookup}The {@link org.infinispan.commons.tx.lookup.TransactionManagerLookup} for the specified cache.
infinispan.client.hotrod.cache.cachename.marshallerString (class name){@link org.infinispan.commons.marshall.ProtoStreamMarshaller} unless another marshaller is used.The {@link org.infinispan.hotrod.configuration.HotRodConfigurationBuilder#marshaller(String) marshaller} that serializes keys and values for the specified cache.
* * @api.public */ package org.infinispan.hotrod.configuration;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy