The following table describes the ZooKeeper properties for the Accounts microservice:
S.NOPROPERTYDESCRIPTION
1skava.authorization.authExpiryTimeMinsThis property holds the expiry time of authorization token generated using the getTestToken API call. The value is mentioned in minutes.
2skava.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.
3skava.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).
4skava.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.
5skava.authorization.superAdminRoleNameThe property indicates the Super Admin role name for the corresponding microservice.
6skava.cache.redis.cacheNamesThis property holds the Redis cache names used by the application.
7skava.cache.redis.clearCacheEventNameThis property is used to set the event name for cache clear operation.
8skava.cache.redis.databaseThis property holds the Redis database index used by the connection factory.
9skava.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).
10skava.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.
11skava.cache.redis.hostThis property holds the Redis server’s hostname/IP for caching objects.
12skava.cache.redis.passwordThis property holds the password for connecting to the Redis server. This is required if the authentication is enabled for the Redis server. It is recommended that it should be enabled for the production environment.
13skava.cache.redis.portThis property holds the Redis server’s port for the application to connect for both read and write cache operations.
14skava.cache.redis.timeoutThis property holds the connection timeout value of all Redis connections for both read and write.
15skava.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.
16skava.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.
17skava.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.
18skava.hibernate.dialectThis property represents a dialect of SQL implemented by a particular RDBMS.
It holds the dialect to be used by Hibernate. The dialect specifies the type of database used in Hibernate so that Hibernate can generate appropriate type of SQL statements.
19skava.hibernate.driverClassNameThis property holds the JDBC driver class name for making the connections to the database.
20skava.hibernate.enabledThis property indicates whether the Hibernate component is enabled or disabled for this application. It is recommended that not to update this property from the default value.
21skava.hibernate.showSqlThis property indicates whether the SQL generated by Hibernate to be printed in the log file or not. If it is set to true, will print all the SQLs generated by Hibernate as part of the dialect.
22skava.hibernate.formatSqlThis property indicates whether the SQL statements enabled for printing should be formatted or not. If this property and the property skava.hibernate.showSql is set to true then the queries are SQL formatted making it more readable.
23skava.hibernate.hbm2ddlAutoThis property holds the strategy to be used by Hibernate on startup. The possible values are validate, update, create, or create-drop which indicate the appropriate action will be taken on startup. It is recommended that the value is to be set as none in the production and/or production-like environments because where the schema will not be created every time the application starts up.
24skava.hibernate.newGeneratorMappingsThis property holds the Hibernate setting. It indicates whether the new IdentifierGenerator implementations are used for AUTO, TABLE, and SEQUENCE or not. If it is set to false, the ID generation is left to the DB sequence or the application logic. It is recommended that this property is set as false.
25skava.hibernate.packageToScanThis property indicates the Java package having all the database entity objects to be used by Hibernate component.
26skava.hibernate.passwordThis property holds the data store password to be used by Hibernate component to connect to the database.
27skava.hibernate.portThis property holds the port number of the database to be used by Hibernate component to connect to the database.
28skava.hibernate.urlThis property holds the database JDBC URL to enable the database connection.
29skava.hibernate.usernameThis property holds the username to be used by Hibernate component to connect to the database.
30skava.localization.default-localeThis property holds the default locale to be used for all response messages if it has not been provided in the request.
31skava.localization.enabledThis property indicates whether the localization component is enabled or not. The value true indicates it is enabled and false indicates it is disabled.
32skava.localization.externalPathThis property holds the external path from where the localized messages are to be read from.
33skava.localization.param-nameThis property holds the parameter name in which the localization component is used.
34skava.localization.resourceBundleBaseNameThis property holds the resource bundle’s base name.
35skava.log.enabledThis property is used to set the resource bundle’s base name.
36skava.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.
37skava.log.fluentdAppenderEnabledThis property indicates whether the log file should be aggregated to Fluentd directly rather than to a file or not.
38skava.log.fluentdHostThis property holds the hostname of Fluentd server instance where the log will be aggregated.
39skava.log.fluentdPortThis property holds the port of Fluentd server instance where the log will be aggregated.
40skava.log.fluentdPatternThis property holds the pattern for writing logs into the Fluentd server.
41skava.log.fluentdTagNameThis property holds the tag name to be added to the logs.
42spring.application.nameThis property holds the application name of the Spring Boot application.
43spring.autoconfigure.excludeThis property holds the classes that are to be excluded from the Spring’s autoconfiguration.
44server.servlet.contextPathThis property holds the Spring Boot application’s context path.
By default, the context path is “/”. If that’s not ideal and you need to change it – to something like /app_name, here’s the quick and simple way to do it via properties
45server.tomcat.accesslog.enabledThis property controls the Tomcat logs for the Boot application.
46server.tomcat.accesslog.patternThis property holds the pattern of the access logs to be printed. This will follow the Apache Tomcat parameters.
47server.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.
48skava.event.rabbitmq.ssl.enabledThis property enables or disables the SSL support for RabbitMQ server.
49skava.event.rabbitmq.ssl.algorithmThis property sets the SSL algorithm, which is used for the RabbitMQ server.
50skava.event.rabbitmq.cluster-enabledThis property enables or disables the cluster for the RabbitMQ server.
51skava.event.rabbitmq.addressesThis property sets the addresses for the RabbitMQ server cluster.
52skava.accounts.liveEnvironmentThis property specifies whether the deployment environment is live or authoring/staging environment. The value can be:
  • true - Indicates the live environment. Updating content is not allowed in the live environment.
  • false - Indicates the authoring/staging environment. There is no restriction in updating the contents.
The default value is false.
53skava.cache.enabledThis property is used to enable cache.
54skava.cache.enableCascadeThis property is used to enable cascade cache.
55skava.cache.useOnlyL2CacheThis property is used to enable L2 cache.
56skava.cache.cascadeCacheNamesThis property is used to enable cascade cache by its name.
57skava.cache.localCache.typeThis property represents the local cache type for L1 cache used in cascade cache.
58skava.cache.localCache.config.accountscollections.cacheSizeThis property represents the local cache entry size.
59skava.cache.localCache.config.accountscollections.timeToLiveInSecondsThis property represents the local cache expiry time in seconds.
60skava.cache.localCache.config.accountscollections.maxIdleInSecondsThis property represents the local cache maximum idle time in seconds.
61skava.cache.localCache.config.accountscollectionattributes.cacheSizeThis property represents the local cache entry size.
62skava.cache.localCache.config.accountscollectionattributes.timeToLiveInSecondsThis property represents the local cache expiry time in seconds.
63skava.cache.localCache.config.accountscollectionattributes.maxIdleInSecondsThis property represents the local cache maximum idle time in seconds.
64skava.cache.redis.clusterEnabledThis property represents the toggle cluster for Redis server.
65skava.cache.redis.cluster.maxRedirectsThis property represents the maximum number of redirects to follow when executing commands across the cluster.
66skava.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.
67skava.cache.redis.sentinel.masterThis property represents the name of the Redis server.
68skava.cache.redis.sentinel.nodesThis property represents the comma-separated list of 'host:port' pairs.
69skava.cache.redis.sslThis property represents the enable/disable of Redis server ssl.
70skava.cache.redis.urlThis property represents the Redis server url.
71skava.cache.redis.maxTimeToliveThis property is used to set the max time to live in minutes time for redis cache.
72skava.cache.redis.clientThis property represents the type of client for redis connection.
73skava.swaggerglobalparams.enabledIf this property is enabled Swagger global params from the application.yml will be referred and added in the swagger-ui.
74skava.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.
75skava.hibernate.hibernateReader.enabledThis property is used to enable reader DB.
76skava.event.enableExternalEventThis property is used to enable/disable the external event component.
77skava.event.enabledThis property is used to enable/disable the event component.
78skava.hibernate.hibernateReader.c3p0IdleTestPeriodThis property holds the idle time in seconds before a connection is automatically validated. If it is greater than 0, c3p0 will test all idle, pooled but unchecked-out connections, at the specified time period (in seconds)
79skava.cors.pathPatternThis property is used to set pathPattern for cors request.
80skava.cors.allowedHeadersThis property is used to set allowedHeaders for cors request
81skava.hibernate.c3p0MinSizeThis property holds the minimum number of JDBC connections to be held in the pool at any given time. You need to take extra care while updating this value since it has a direct impact on the performance of the application, tune only when there is a necessity.
82skava.hibernate.c3p0IdleTestPeriodThis property holds the idle time in seconds before a connection is automatically validated. If it is greater than 0, c3p0 will test all idle, pooled but unchecked-out connections, at the specified time period (in seconds).
83server.ssl.key-storeThis property holds the keystore PrivateKeyEntry which will be used as the SSL certificate for the microservice.
84skava.core.releasedefinition.enabledThis property is used to enable the release definition endpoint.
85spring.cloud.zookeeper.config.rootThis property is used to enable/disable the ZooKeeper base path.
86server.ssl.key-store-typeThis property holds the keystore type.
87skava.hibernate.c3p0MaxStatementsThis property holds the number of prepared statements that will be cached, i.e., c3p0's global PreparedStatement cache. This controls the total number of statements cached, for all connections.
88skava.event.rabbitmq.portThis property is used to set the port for the RabbitMQ server.
89skava.hibernate.hibernateReader.acquireIncrementacquire increment
90hystrix.command.user-key.circuitBreaker.requestVolumeThresholdThis property sets the minimum number of requests in a rolling window that will trip the circuit.
91skava.auditlog.db.userNameThis property is used to connect to the MySQL DB for audit logs.
92skava.auditlog.db.urlThis property is used to connect to the MySQL DB for audit logs.
93spring.cloud.zookeeper.config.watcher.enabledThis property is used to enable/disable the ZooKeeper watcher.
94skava.event.rabbitmq.routingKeyThis property is used to set the routing key for RabbitMQ server.
95spring.cloud.zookeeper.enabledThis property is used to enable/disable the ZooKeeper server.
96skava.hibernate.hibernateReader.c3p0TimeoutThis property holds the pool's idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value 0 indicates that idle connections never expire.
97skava.auditlog.db.driverClassNameThis property is used to connect to the MySQL DB for audit logs.
98skava.event.rabbitmq.concurrentConsumersThis property is used to set the maximum allowed concurrent consumers.
99skava.hibernate.hibernateReader.initialPoolSizeinitial PoolSize
100server.ssl.enabled-protocolsThis property holds the protocols enabled for this application. It takes comma separated values.
101skava.event.rabbitmq.topicExchangeThis property is used to set the topic exchange for RabbitMQ server.
102skava.hibernate.acquireIncrementacquire increment
103skava.hibernate.initialPoolSizeinitial PoolSize
104spring.cloud.zookeeper.connect-stringThis property specifies the location of the ZooKeeper server.
105skava.event.rabbitmq.enabledThis property is used to enable/disable the RabbitMQ server for the event component.
106skava.cors.enabledThis property is used to enable the cors component.
107skava.hibernate.c3p0MaxSizeThis property holds the maximum number of JDBC connections to be held in the pool at any given time. You need to take extra care while updating this value since it has a direct impact on the performance of the application. Tune it only when there is a necessity.
108skava.auditlog.db.passwordThis property is used to connect to the MySQL DB for audit logs.
109skava.hibernate.hibernateReader.urlThis property is used to set the database URL.
110skava.event.externalClassNameThis property is used to set the fully qualified name of the custom implementation class.
111server.ssl.key-store-passwordThis property holds the keystore password for opening the keystore mentioned in the key-store property.
112skava.cors.allowedOriginsThis property is used to set allowedOrigins for cors request.
113skava.cors.allowedMethodsThis property is used to set allowedMethods for cors request.
114skava.event.rabbitmq.queueNameThis property is used to set the queue name used by the event component.
115skava.event.rabbitmq.passwordThis property is used to set password for RabbitMQ server.
116spring.sleuth.trace-id128This property is used to enable/disable the sleuth 128 bit traceid in the logs.
117skava.secretsmanager.classNameThis property specifies the name of the class used for the secret management.
118skava.event.classNameThis property is used to set the fully qualified name of the custom implementation class.
119skava.hibernate.c3p0TimeoutThis property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. Value of 0 indicates that idle connections never expire.
120skava.event.rabbitmq.userNameThis property is used to set the username for RabbitMQ server.
121skava.hibernate.hibernateReader.c3p0MaxStatementsThis property holds the number of prepared statements that be cached i.e. c3p0‘s global PreparedStatement cache. This controls the total number of Statements cached, for all Connections.
122server.ssl.key-aliasThis property holds the keystore alias name set during the import using keytool utility.
123hystrix.command.user-key.execution.isolation.thread.timeoutInMillisecondsThis property sets instance-specific values dynamically which overrides the preceding three levels of defaults.
124server.ssl.enabledThis property controls the SSL configuration for the boot application.
125skava.event.eventbridge.regionThis property is used to set the fully qualified name of the custom implementation class.
126skava.event.rabbitmq.hostThis property is used to set the host for RabbitMQ server.
127skava.event.externalFatEventClassThis property is used to set the fully qualified name of the custom implementation class.
128skava.cors.exposedHeadersThis property is used to set exposedHeaders for cors request.
129skava.auditlog.db.enabledThis property is used to enable/disable the DB for audit logs.
130skava.event.rabbitmq.virtualHostThis property is used to set the virtual host for RabbitMQ server.
131spring.cloud.zookeeper.config.enabledThis property is used to enable/disable the ZooKeeper base path.
132skava.cors.maxAgeThis property is used to set maxAge for cors request in seconds.
133skava.hibernate.hibernateReader.c3p0MaxSizeThis property holds the maximum number of JDBC connections to be held in the pool at any given time. You need to take extra care while updating this value since it has a direct impact on the performance of the application, tune only when there is a necessity. The hibernate default value is 100.
134skava.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.
135server.tomcat.accesslog.max-daysThe maximum number of days rotated access logs will be retained for before being deleted. If not specified, the default value is set to 10.
136skava.hibernate.hibernateReader.c3p0MinSizeThis propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1.
137hystrix.command.user-key.circuitBreaker.sleepWindowInMillisecondsThis property sets instance-specific values dynamically which overrides the preceding three levels of defaults.
138skava.event.enableFatEventThis property is used to enable/disable the fat event.
139skava.event.eventbridge.eventBusNameThis property is used to set the fully qualified name of the custom implementation class.
140ZK_REDIS_SSL_ENABLEDThis property enables or disables the Redis server SSL. The default value is FALSE.
141ZK_REDIS_TIMEOUTThis property holds connection timeout value of Redis in milliseconds.
The default value is 10000.
142ZK_REDIS_USERNAMEThis property holds the login username of the Redis server.
The default value is empty.
143ZK_PROTOCOLSThis property enables macro support for the TLS protocol version.
144ZK_REDIS_PASSWORDThis property holds the Redis password.
145skava.cache.redis.usernameThis property indicates the login username of the Redis server.
146endpoints.loggers.enabledThis property is used to enable or disable the logger.
147web.exposure.includeThis property is used to expose the management endpoints.
148server..max-http-header-sizeTo increase http header size we have externalize this property.
149externalEventConfig.fileHostThis property is used to set the hosting events on external website.
150externalEventConfig.tempStoragePathThis property is used to set the file path for the external events.
151skava.event.rabbitmq.amqpEnabled
This property is used to enable AMQP (Advanced Message Queuing Protocol). When the value is
  • true: The RabbitMQ is enabled. This is default.
  • false: The AMQP is enabled.
Note: To enable AMQP, contact the Infra team.

Revision History
2024-07-12 | SD – Updated the ZK properties
2024-06-19 | SD – Updated the ZK properties for 8.16.0 to 8.17.2.
2023-10-22 | JP – Updated content for Release 8.15.4.
2023-01-03 | JP – Updated content for Release 8.13.0.
2022-04-09 | JP – Fixed link and http issues.
2021-12-23 | AN – Updated content for 8.11 release.
2020-12-10 | 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-16 | AN – Updated to a new table tool.
2019-05-01 | PLK – Minor copyedit.
2019-01-21 | PLK – Content uploaded.