The following table describes the ZooKeeper properties for the Promotions microservice:

S.NOPROPERTYDESCRIPTION
1hystrix.command.user-key.circuitBreaker.requestVolumeThresholdThis property sets the minimum number of requests in a rolling window that will trip the circuit.
2hystrix.command.user-key.circuitBreaker.sleepWindowInMillisecondsThis property sets the amount of time, after tripping the circuit, to reject requests before allowing attempts again to determine if the circuit should again be closed.
3hystrix.command.user-key.execution.isolation.thread.timeoutInMillisecondsThis property sets the amount of time, after tripping the circuit, to reject requests before allowing attempts again to determine if the circuit should again be closed.
4server.servlet.contextPathThis property holds the Spring Boot application's context path.
5server.ssl.enabledThis property controls the SSL configuration of the Boot application. When it is set to true, the application is started in HTTPS protocol only and all HTTP request will be rejected.
6server.ssl.enabled-protocolsThis property holds the SSL protocols enabled for this application. The values are given as comma-separated.
7server.ssl.key-aliasThis property holds the key store alias name set during the import using keytool utility.
8server.ssl.key-storeThis property holds the key store's PrivateKeyEntry which will be used as the SSL certificate for the microservice.
9server.ssl.key-store-passwordThis property holds the key store password for accessing the key store as mentioned in the key-store property.
10server.ssl.key-store-typeThis property holds the key store type.
11server.tomcat.accesslog.directoryThis property holds the directory in which log files are created. It can be absolute or relative to the Tomcat's base directory.
12server.tomcat.accesslog.enabledThis property controls the Tomcat logs for the Boot application.
13server.tomcat.accesslog.max-daysThe property holds the maximum number of days the rotated access logs will be retained before it is deleted. The default value is 10 days.
14server.tomcat.accesslog.patternThis property holds the pattern of the access logs to be printed. This will follow the Apache Tomcat parameters.
15skava.auditlog.customLayoutFormatThis property holds the custom layout property information.
16skava.auditlog.enabledThis property enables or disables the audit log component.
17skava.auditlog.file-locationThis property specifies the location to save audit log.
18skava.auditlog.layout-typeThis property describes the layout type details.
19skava.auditlog.mongodb.enabledThis property is used to enable or disable to store the audit logs in the Mongo DB.
20skava.auditlog.mongodb.uriThis property is used to connect the mongo server.
21skava.auditlog.passwordThis property is used to connect to the MySQL DB for audit logs.
22skava.authorization.authExpiryTimeMinsThis property holds the expiry time of authorization token generated using the getTestToken API call. The value is mentioned in minutes.
23skava.authorization.authHeaderThis property holds the HTTP request header name in which the authorization token (JWT) is passed by the caller. Since the functionality of validating token is inherited from the framework, this property's value is used for identifying the correct header and its value is considered for access/authorization checks.
24skava.authorization.enabledThis property indicates whether the authorization component is enabled or disabled for the corresponding microservice. If the value is set as false, then all APIs are open to access without any authorization check and this is not recommended for the production or public APIs. For the production, production-like, or public environments, this property should be enabled (true).
25skava.authorization.gettesttoken.enabledThis property indicates whether the authorization endpoint for test JWT tokens is enabled or not. If it is set to true, an API will be exposed to obtain test JWT tokens.
26skava.authorization.guestUserRoleNameThe property sets the guest user role name used in the application.
27skava.authorization.superAdminRoleNameThe property indicates the Super Admin role name for the corresponding microservice.
28skava.authorization.tokenSecretThis property holds the secret which will be used to verify the signature of the JWT passed by the caller. Only if the JWT passed by the caller found valid with respect to signature, expiry and having necessary privileges, the request will be processed further.
29skava.cache.cascadeCacheNamesThis property is used to enable cascade cache by its name.
30skava.cache.enableCascadeThis property is used to enable cascade cache.
31skava.cache.enabledThis property is used to enable cache.
32skava.cache.localCache.config.collectionAllPropertyCache.cacheSizeThis property represents the local cache entry size.
33skava.cache.localCache.config.collectionAllPropertyCache.maxIdleInSecondsThis property represents the local cache maximum idle time in seconds.
34skava.cache.localCache.config.collectionAllPropertyCache.timeToLiveInSeconds This property represents the local cache expiry time in seconds.
35skava.cache.localCache.config.collectionCache.cacheSizeThis property represents the local cache entry size.
36skava.cache.localCache.config.collectionCache.maxIdleInSecondsThis property represents the local cache maximum idle time in seconds.
37skava.cache.localCache.config.collectionCache.timeToLiveInSecondsThis property represents the local cache expiry time in seconds.
38skava.cache.localCache.typeThis property represents the local cache type for L1 cache used in cascade cache.
39skava.cache.maxCacheSizeThis property holds the cache size in bytes. If the value is greater than 0, then the cache is restricted based on the value. Otherwise, no limitation for cache.
40skava.cache.redis.cacheNamesThis property holds the Redis cache names used by the application.
41skava.cache.redis.clearCacheEventNameThis property is used to set the event name for cache clear operation.
42skava.cache.redis.clientThis property represents the type of client for redis connection.
43skava.cache.redis.cluster.maxRedirectsThis property represents the maximum number of redirects to follow when executing commands across the cluster.
44skava.cache.redis.cluster.nodesThis property represents the comma-separated list of 'host:port' pairs to bootstrap from. This represents an 'initial' list of cluster nodes and is required to have at least one entry.
45skava.cache.redis.clusterEnabledThis property represents the toggle cluster for Redis server.
46skava.cache.redis.databaseThis property holds the Redis database index used by the connection factory.
47skava.cache.redis.enabledThis property indicates whether the Redis component needs to be enabled or disabled for this application. It is recommended that it should be enabled (true) for the production and production-grade environments (like performance).
48skava.cache.redis.expTimeToliveThis property holds the expiration time of Redis entries. That is the maximum time the objects are requested to be held in the Redis server. Using this property you are requesting Redis to hold the objects for the specified time but it is the LRU/LCU which will determine how long an entry survives in the cache.
49skava.cache.redis.hostThis property holds the Redis server's hostname/IP for caching objects.
50skava.cache.redis.maxTimeToliveThis property holds the expiration time of the Redis entries. That is the maximum time the objects are requested to be held in the Redis server. Using this property you are requesting the Redis to hold the objects for the specified time but it is the LRU/LCU which will determine how long an entry survives in the cache.
51skava.cache.redis.passwordThis property holds the password for connecting to Redis Server. This is required if the authentication is enabled for Redis Server and we strongly recommend it to be enabled for Production environment.
52skava.cache.redis.pool.maxActiveThis property holds the maximum number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.
53skava.cache.redis.pool.maxIdleThis property holds the maximum number of idle connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
54skava.cache.redis.pool.minIdleThis property holds the minimum number of idle connections to maintain in the pool. This setting only has an effect if it is positive.
55skava.cache.redis.portThis property holds the Redis server's port for the application to connect for both read and write cache operations.
56skava.cache.redis.sentinel.masterThis property represents the name of the Redis server.
57skava.cache.redis.sentinel.nodesThis property represents the comma-separated list of 'host:port' pairs.
58skava.cache.redis.sslThis property represents the enable/disable for the Redis server ssl.
59skava.cache.redis.timeoutThis property holds the connection timeout value of all Redis connections for both read and write.
60skava.cache.redis.urlThis property represents the Redis server url.
61skava.cache.useOnlyL1CacheThis property is used to enable L1 cache.
62skava.cache.useOnlyL2CacheThis property is used to enable L2 cache.
63skava.cors.allowedHeadersThis property is used to set the list of headers that a pre-flight request can list as allowed for use during an actual request.
64skava.cors.allowedMethodsThis property is used to set the HTTP methods to allow, For example, {@code "GET"}, {@code "POST"}, {@code "PUT"}, etc.
65skava.cors.allowedOriginsThe list of allowed origins. For example, {@code "http://domain1.com"} for the specific origin or {@code "*"} for all the origins.
66skava.cors.enabledThis property enables or disables the cors component.
67skava.cors.exposedHeadersThis property is used to set exposedHeaders for the CORS request.
68skava.cors.maxAgeThis property is used to configure how long in seconds the response from a preflight request can be cached by the clients.
69skava.cors.pathPatternThis property enables the cross-origin request handling for the specified path pattern.
70skava.event.classNameThis property is used to set the fully qualified name of the custom implementation class.
71skava.event.enabledThis property is used to enable or disable the event component.
72skava.event.enableExternalEventThis property enables or disables the external event component.
73skava.event.enableFatEventThis property enables or disables the fat event.
74skava.event.eventbridge.eventBusNameThis property sets the fully qualified name of the custom implementation class.
75skava.event.eventbridge.regionThis property sets the fully qualified name of the custom implementation class.
76skava.event.externalClassNameThis property sets the fully qualified name of the custom implementation class.
77skava.event.externalFatEventClassThis property sets the fully qualified name of the custom implementation class.
78skava.event.rabbitmq.addressesThis property sets the addresses for the RabbitMQ server cluster.
79skava.event.rabbitmq.cluster-enabledThis property enables or disables the cluster for the RabbitMQ server.
80skava.event.rabbitmq.concurrentConsumersThis property is used to set the maximum allowed concurrent consumers.
81skava.event.rabbitmq.enabledThis property is used to enable or disable the RabbitMQ server for the event component.
82skava.event.rabbitmq.hostThis property is used to set the host for the RabbitMQ server.
83skava.event.rabbitmq.passwordThis property is used to set password of the RabbitMQ server.
84skava.event.rabbitmq.portThis property is used to set the port for the RabbitMQ server.
85skava.event.rabbitmq.queueNameThis property is used to set the queue name used by the event component.
86skava.event.rabbitmq.routingKeyThis property is used to set the routing key for the RabbitMQ server.
87skava.event.rabbitmq.ssl.algorithmThis property sets the SSL algorithm, which is used for the RabbitMQ server.
88skava.event.rabbitmq.ssl.enabledThis property enables or disables the SSL support for RabbitMQ server.
89skava.event.rabbitmq.topicExchangeThis property is used to set the topic exchange for the RabbitMQ server.
90skava.event.rabbitmq.userNameThis property is used to set the username for the RabbitMQ server.
91skava.event.rabbitmq.virtualHostThis property is used to set the virtual host for the RabbitMQ server.
92skava.log.enabledThis property is used to set the resource bundle base name.
93skava.log.fileAppenderEnabledThis property indicates whether the log needs to be appended to a log file or not. If it is set to true the log is written to the log file as specified in log4j2.yml.
94skava.log.fluentdAppenderEnabledThis property indicates whether the log file should be aggregated to the Fluentd directly rather than to a file or not.
95skava.log.fluentdHostThis property holds the hostname for the Fluentd server instance where the log will be aggregated.
96skava.log.fluentdPatternThis property holds the pattern for writing logs into the Fluentd server.
97skava.log.fluentdPortThis property holds the port of the Fluentd server instance where the log will be aggregated.
98skava.log.fluentdTagNameThis property holds the tag name to be added in the logs.
99skava.mongo.databaseThis property is used to set the database name for the Mongo server.
100skava.mongo.enabledThis property is used to enable the Mongo component.
101skava.mongo.uriThis property is used to connect to the mongo server.
102skava.promotion.event.publish-topic-nameThis property sends promotion events to the message queue.
103skava.promotion.liveEnvironmentThis property is used to identify the live environment and authoring environment.
104skava.querydsl.mongo.disableLiteralStringReplacementThis property disables the literal pattern replacement in QueryDSL.
105skava.ruleengine.enabledThis property is used to enable or disable the rule engine component.
106skava.ruleengine.poolClearTimeDelayThis property is used to set the time for creating a new session over the existing session.
107skava.ruleengine.sessionPoolSizeThis property is used to set the number of sessions pool for a collection.
108skava.secretsmanager.classNameThis property specifies the name of the class used for the secret management.
109skava.secretsmanager.enabledThis property specifies whether the secrets manager component is enabled or not.
110skava.swaggerglobalparams.enabledThis property indicates the Swagger global params. The default value is false. If this property value is set to true, the Swagger global params from the application .yml will be referred and added in the Swagger UI.
111spring.application.nameThis property holds the application name of the Spring Boot application.
112spring.autoconfigure.excludeThis property holds the classes that are to be excluded from the Spring's autoconfiguration.
113spring.cloud.zookeeper.config.enabledThis property is used to enable or disable the ZooKeeper.
114spring.cloud.zookeeper.config.rootThis property is used to enable or disable the ZooKeeper's base path.
115spring.cloud.zookeeper.config.watcher.enabledThis property indicates whether the ZooKeeper watcher has been enabled or not. If it is set to true, the watcher is enabled and if there is any change in the ZooKeeper configuration is communicated to the server. Updated properties are loaded automatically if the implementation allows it.
116spring.cloud.zookeeper.connect-stringThis property is used to specify the location if the server locates somewhere other than localhost:2181. This configuration is required to locate the server.
117spring.cloud.zookeeper.enabledThis property is used to enable or disable the ZooKeeper server.
118spring.sleuth.trace-id128This property is used to enable or disable the sleuth 128 bit trace ID in the logs.
119ZK_REDIS_SSL_ENABLEDThis property enables or disables the Redis server SSL. The default value is FALSE.
120skava.app.enabledThis property enables the app. The default value is TRUE.
121skava.app.appClassNameThis property holds the app component class name (GCP/Azure).
The default value is com.skava.core.app.gcp.GCPAppComponent.
122skava.app.hostThis property holds the service endpoint URL of the App Marketplace service.
The default value is ##ZK_SERVICE_END_POINT##.
123skava.app.apiKeyThis property holds the API key which is sent to the App for authentication.
The default value is ##ZK_APP_API_KEY##.
124ZK_REDIS_TIMEOUTThis property holds connection timeout value of Redis in milliseconds.
The default value is 10000.
125ZK_REDIS_USERNAMEThis property holds the login username of the Redis server.
The default value is empty.
126ZK_PROTOCOLSThis property enables macro support for the TLS protocol version.
127ZK_REDIS_PASSWORDThis property holds the Redis password.
128skava.cache.redis.usernameThis property indicates the login username of the Redis server.
129endpoints.loggers.enabledThis property is used to enable or disable the logger.
130web.exposure.includeThis property is used to expose the management endpoints.
131server.max-http-header-sizeTo increase http header size we have externalize this property.
132externalEventConfig.fileHostThis property is used to set the hosting events on external website.
133externalEventConfig.tempStoragePathThis property is used to set the file path for the external events.
134skava.event.rabbitmq.amqpEnabledThis property is used to enable AMQP (Advanced Message Queuing Protocol). When the value is
  • true: The RabbitMQ is enabled.
  • false: The AMQP is enabled.
Note: To enable AMQP, contact the Infra team.


Revision History
2024-07-12 | SD – Updated ZK properties.
2024-06-19 | SD – Updated ZK properties for 8.17.0 to 8.16.0.
2023-10-22 | JP – Updated content for 8.15.4 release.
2023-01-06 | AN – Updated content for 8.13 release.
2022-04-10 | JP – Fixed link and http issues.
2021-12-27 | AN – Updated content for 8.11 release.
2020-12-09 | HM – Updated missing ZK properties.
2020-03-09 | AN – Updated content for April 2020 release.
2020-01-14 | AN – Updated content for February 2020 release.
2019-07-09 | AM – Updated ZK properties for July 2019 release.
2019-05-17 | AM – Updated to a new table tool.
2019-04-17 | AM – Updated zookeeper properties.
2019-01-23 | PLK – Page added and content uploaded.