The following table describes the ZooKeeper Properties for the Catalog 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 instance-specific values dynamically which overrides the preceding three levels of defaults.
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 protocols enabled for this application. It takes comma separated values.
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 details for storing the access log.
12server.tomcat.accesslog.enabledThis property controls the Tomcat logs for the Boot application.
13server.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.
14server.tomcat.accesslog.patternThis property holds the pattern of the access logs to be printed. This will follow the Apache Tomcat parameters.
15skava.auditlog.enabledThis property enables or disables the audit log component.
16skava.auditlog.file-locationThis property holds the path to store the audit logs.
17skava.auditlog.layout-typeThis property used to denote the layout type.
18skava.auditlog.mongodb.enabledThis property enables the Mongo component for the audit log.
19skava.auditlog.mongodb.uriThis property is used to connect to the MongoDB server.
20skava.auditlog.passwordThis property is used to connect to the MySQL DB for audit logs.
21skava.authorization.authExpiryTimeMinsThis property holds the expiry time of authorization token generated using the getTestToken API call. The value is mentioned in minutes.
22skava.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.
23skava.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).
24skava.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.
25skava.authorization.superAdminRoleNameThe property indicates the Super Admin role name for the corresponding microservice.
26skava.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.
27skava.cache.cascadeCacheNamesThis property enables cascade cache by its name.
28skava.cache.enableCascadeThis property enables cascade cache.
29skava.cache.enabledThis property enables cache.
30skava.cache.localCache.config.cache_collection.cacheSizeThis property indicates the local cache entry size.
31skava.cache.localCache.config.cache_collection.maxIdleInSecondsThis property enables the local cache maximum idle time in seconds.
32skava.cache.localCache.config.cache_collection.timeToLiveInSecondsThis property enables the local cache expiry time in seconds.
33skava.cache.localCache.config.cache_collection_attribute.cacheSizeThis property indicates the local cache entry size.
34skava.cache.localCache.config.cache_collection_attribute.maxIdleInSecondsThis property enables local cache maximum idle time in seconds.
35skava.cache.localCache.config.cache_collection_attribute.timeToLiveInSecondsThis property enables the local cache expiry time in seconds.
36skava.cache.localCache.config.Catalog_Version_Cache.cacheSizeThis property indicates the local cache entry size.
37skava.cache.localCache.config.Catalog_Version_Cache.maxIdleInSecondsThis property enables the local cache maximum idle time in seconds.
38skava.cache.localCache.config.Catalog_Version_Cache.timeToLiveInSecondsThis property enables the local cache expiry time in seconds.
39skava.cache.localCache.typeThis property indicates the local cache type for L1 cache used in cascade cache.
40skava.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.
41skava.cache.redis.cacheNamesThis property holds the Redis cache names used by the application.
42skava.cache.redis.cacheNamesWithTimeToLiveMap.cache_search_countThis property sets the fully qualified name of the custom implementation class.
43skava.cache.redis.clearCacheEventNameThis property sets the event name for cache clear operation.
44skava.cache.redis.clientThis property specifies the type of client for redis connection.
45skava.cache.redis.cluster.maxRedirectsThis property specifies the maximum number of redirects to follow when executing commands across the cluster.
46skava.cache.redis.cluster.nodesThis property sets 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.
47skava.cache.redis.clusterEnabledThis property indicates the Toggle cluster for Redis server.
48skava.cache.redis.databaseThis property holds the Redis database index used by the connection factory.
49skava.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).
50skava.cache.redis.expTimeToliveThis 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.hostThis property holds the Redis server's hostname/IP for caching objects.
52skava.cache.redis.maxTimeToliveThis property sets the max time to live in minutes time for redis cache
53skava.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.
54skava.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.
55skava.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.
56skava.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.
57skava.cache.redis.portThis property holds the Redis server's port for the application to connect for both read and write cache operations.
58skava.cache.redis.sentinel.masterThis property indicates the name of the Redis server.
59skava.cache.redis.sentinel.nodesThis property indicates the comma-separated list of 'host:port' pairs.
60skava.cache.redis.sslThis property enables or disables the redis server ssl
61skava.cache.redis.timeoutThis property holds the connection timeout value of all Redis connections for both read and write.
62skava.cache.redis.urlThis property indicates the redis server url
63skava.cache.useOnlyL2CacheThis property enables L2 cache.
64skava.catalog.liveEnvironmentThis property indicates whether the deployed environment is live or staging (authoring) environment. When it is set to true, indicates the live environment.
65skava.catalog.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.
66skava.core.releasedefinition.enabledThis property is used to enable the release definition endpoint.
67skava.cors.allowedHeadersThis property contains the value of the allowed header.
68skava.cors.allowedMethodsThis property contains the allowed methods for Spring controller.
69skava.cors.allowedOriginsThis property is sets the allowedOrigins for the cors request.
70skava.cors.enabledThis property enables or disables the cors.
71skava.cors.exposedHeadersThis property sets the exposedHeaders for the cors request.
72skava.cors.maxAgeThis property sets the maxAge for the cors request in seconds.
73skava.cors.pathPatternThis property holds the pattern for the cors request.
74skava.event.classNameThis property sets the fully qualified name of the custom implementation class.
75skava.event.enabledThis property enables or disables the event component.
76skava.event.enableExternalEventThis property is used to enable/disable the external event component.
77skava.event.enableFatEventThis property is used to enable/disable the fat event.
78skava.event.eventbridge.eventBusNameThis property is used to set the fully qualified name of the custom implementation class.
79skava.event.eventbridge.regionThis property is used to set the fully qualified name of the custom implementation class.
80skava.event.externalClassNameThis property is used to set the fully qualified name of the custom implementation class.
81skava.event.externalFatEventClassThis property is used to set the fully qualified name of the custom implementation class.
82skava.event.rabbitmq.addressesThis property sets the addresses for the RabbitMQ server cluster.
83skava.event.rabbitmq.cluster-enabledThis property enables or disables the cluster for the RabbitMQ server.
84skava.event.rabbitmq.concurrentConsumersThis property holds the maximum allowed concurrent consumers.
85skava.event.rabbitmq.deadLetterExchangeThis property is used to set the dead letter exchange for the RabbitMQ server.
86skava.event.rabbitmq.defaultMaxRetryCountThis property is used to set the default maximum retrival count for the RabbitMQ server.
87skava.event.rabbitmq.enabledThis property enables or disables the Rabbitmq server for the event component.
88skava.event.rabbitmq.hostThis property holds the hostname of the RabbitMQ server.
89skava.event.rabbitmq.passwordThis property holds the password of the RabbitMQ server.
90skava.event.rabbitmq.portThis property tells the port of the RabbitMQ server.
91skava.event.rabbitmq.ssl.algorithmThis property sets the SSL algorithm, which is used for the RabbitMQ server.
92skava.event.rabbitmq.ssl.enabledThis property enables or disables the SSL support for RabbitMQ server.
93skava.event.rabbitmq.topicExchangeThis property sets the topic exchange for the RabbitMQ server.
94skava.event.rabbitmq.userNameThis property has the username of the RabbitMQ server.
95skava.event.rabbitmq.virtualHostThis property sets the virtual host for the RabbitMQ server.
96skava.localization.default-localeThis property holds the default locale to be used for all response messages if it has not been provided in the request.
97skava.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.
98skava.localization.externalPathThis property holds the external path from where the localized messages are to be read from.
99skava.localization.param-nameThis property holds the parameter name in which the localization component is used.
100skava.localization.resourceBundleBaseNameThis property holds the resource bundle's base name.
101skava.log.enabledThis property sets the resource bundle's base name.
102skava.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.
103skava.log.fluentdAppenderEnabledThis property indicates whether the log file should be aggregated to Fluentd directly rather than to a file or not.
104skava.log.fluentdHostThis property holds the hostname of Fluentd server instance where the log will be aggregated.
105skava.log.fluentdPatternThis property holds the pattern for writing logs into the Fluentd server.
106skava.log.fluentdPortThis property holds the port of Fluentd server instance where the log will be aggregated.
107skava.log.fluentdTagNameThis property holds the tag name to be added to the logs.
108skava.mongo.databaseThis property denotes the name of the Mongo database for this service user by Hibernate to connect.
109skava.mongo.enabledThis property indicates whether the Mongo database is enabled or not. It is based on the input true or false.
110skava.mongo.uriThis property is used to connect to the MongoDB server.
111skava.secretsmanager.classNameThis property is used to specify which class to be used for the secret management.
112skava.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.
113spring.application.nameThis property holds the application name of the Spring Boot application.
114spring.autoconfigure.excludeThis property holds the classes that are to be excluded from the Spring's autoconfiguration.
115spring.cloud.zookeeper.config.enabledThis property is used to enable/disable the ZooKeeper base path.
116spring.cloud.zookeeper.config.rootThis property is used to enable/disable the zookeeper base path.
117spring.cloud.zookeeper.config.watcher.enabledThis property is used to enable/disable the zookeeper watcher.
118spring.cloud.zookeeper.connect-stringThis property is used to located somewhere other than localhost:2181, the configuration is required to locate the server.
119spring.cloud.zookeeper.enabledThis property enables or disables the ZooKeeper server.
120spring.sleuth.trace-id128This property is used to enable/disable the sleuth 128 bit trace ID in the logs.
121ZK_REDIS_SSL_ENABLEDThis property enables or disables the Redis server SSL. The default value is FALSE.
122skava.app.enabledThis property enables the app. The default value is TRUE.
123skava.app.appClassNameThis property holds the app component class name (GCP/Azure).
The default value is com.skava.core.app.gcp.GCPAppComponent.
124skava.app.hostThis property holds the service endpoint URL of the App Marketplace service.
The default value is ##ZK_SERVICE_END_POINT##.
125skava.app.apiKeyThis property holds the API key which is sent to the App for authentication.
The default value is ##ZK_APP_API_KEY##.
126ZK_REDIS_TIMEOUTThis property holds connection timeout value of Redis in milliseconds.
The default value is 10000.
127ZK_REDIS_USERNAMEThis property holds the login username of the Redis server.
The default value is empty.
128ZK_PROTOCOLSThis property enables macro support for the TLS protocol version.
129ZK_REDIS_PASSWORDThis property holds the Redis password.
130contentrepository.defaultImplClassThis property is used for specifying the type of the storage.
131contentrepository.enabledThis property is used to enable or disable the ZooKeeper server.
132contentrepository.urlEncodedThis property is used to enable or disable the URL encoding.
133contentrepository.properties.cloudFrontDomainThis property sets the cloud front domain of the content repository. It is used to fetch the object from the s3 bucket.
134contentrepository.properties.s3BucketThis property sets the S3 bucket of the content repository.
135contentrepository.properties.s3RegionThis property sets the S3 region of the content repository.
136endpoints.loggers.enabledThis property is used to enable or disable the logger.
137web.exposure.includeThis property is used to expose the management endpoints.
138server.max-http-header-sizeTo increase http header size we have externalize this property.
139externalEventConfig.fileHostThis property is used to set the hosting events on external website.
140externalEventConfig.tempStoragePathThis property is used to set the file path for the external events.
141skava.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-04 | AN – Updated content for 8.13.0 release.
2022-04-10 | JP – Fixed link and http issues.
2021-12-27 | AN – Updated content for 8.11 release.
2020-12-09 | SW – Added missing properties.
2020-03-09 | AN – Updated content for April 2020 release.
2020-01-14 | AN – Updated content for February 2020 release.
2019-07-09 | AN – Updated ZK properties for July 2019 release.
2019-06-08 | PLK – Minor copyedits.
2019-05-16 | JP – Updated to a new table tool.
2019-04-16 | AN – Content updated for April 2019 release.
2019-01-21 | PLK – Page created and content uploaded.