The following table describes the ZooKeeper properties of the Feeds microservice:

S.NOPROPERTYDESCRIPTION
1server.ssl.enabledThis property controls the SSL configuration of the Spring Boot application. When it is set to true, the application is started in HTTPS protocol only and all HTTP request will be rejected.
2server.ssl.key-aliasThis property holds the key store alias name set during the import using the keytool utility.
3server.ssl.key-storeThis property holds the key store's PrivateKeyEntry which will be used as the SSL certificate for the microservice.
4server.ssl.key-store-passwordThis property holds the key store password for accessing the key store as mentioned in the key-store property.
5server.ssl.key-store-typeThis property holds the key store type.
6server.tomcat.accesslog.directoryThis property holds the directory in which access log files are created. It can be absolute or relative to the Tomcat's base directory.
7server.tomcat.accesslog.enabledThis property controls the Tomcat logs for the Spring Boot application.
8server.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.
9server.tomcat.accesslog.patternThis property holds the pattern of the access logs to be printed. This will follow the Apache Tomcat parameters.
10skava.alertIntervalTimeThis property is used to put message on every interval time once feed exceeds the maximum run time.
11skava.auditlog.enabledThis property enables or disables the audit log component.
12skava.auditlog.file-locationThis property holds the path to store the audit logs.
13skava.auditlog.layout-typeThis property is used to denote the layout type.
14skava.auditlog.mongodb.enabledThis property is used to enable the Mongo component for the audit log.
15skava.auditlog.mongodb.uriThis property connects to the MongoDB server.
16skava.cache.cascadeCacheNamesThis property enables the Cascade cache by its name.
17skava.cache.enableCascadeThis property enables or disables the Cascade cache.
18skava.cache.enabledThis property enables or disables the cache.
19skava.cache.localCache.typeThis property sets the local cache type for L1 cache used in the cascade cache (uses both in-memory cache and server-side cache using Redis).
20skava.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.
21skava.cache.redis.cacheNamesThis property holds the Redis cache names used by this application.
22skava.cache.redis.clearCacheEventNameThis property sets the event name for cache clear operation.
23skava.cache.redis.clientThis property indicates the type of client for Redis connection.
24skava.cache.redis.cluster.maxRedirectsThis property indicates the maximum number of redirects to follow when executing the commands across the cluster.
25skava.cache.redis.cluster.nodesThis property holds a comma-separated list of 'host:port' pairs to bootstrap from. It represents an 'initial' list of cluster nodes and it is required to have at least one entry.
26skava.cache.redis.clusterEnabledThis property holds the toggle cluster of the Redis server.
27skava.cache.redis.databaseThis property holds the Redis database index used by the connection factory.
28skava.cache.redis.enabledThis property indicates whether the Redis component needs to be enabled or disabled for this application.
29skava.cache.redis.expTimeToliveThis property holds the expiry time of the Redis entries.
30skava.cache.redis.hostThis property holds the Redis server's hostname or IP for caching objects.
31skava.cache.redis.maxTimeToliveThis property indicates the maximum live time (in minutes) of Redis cache.
32skava.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 to enable (that is, setting the value true) for the production cache server environment.
33skava.cache.redis.pool.maxActiveThis property holds the maximum number of connections that can be allocated by the pool at a given time. If it is a negative value, indicates there is no limit.
34skava.cache.redis.pool.maxIdleThis property holds the maximum number of idle connections in the pool. If it is a negative value, indicates an unlimited number of idle connections.
35skava.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.
36skava.cache.redis.portThis property holds the Redis server's port for the application to connect for both read and write cache operations.
37skava.cache.redis.sentinel.masterThis property indicates the name of the Redis server.
38skava.cache.redis.sentinel.nodesThis property holds a comma-separated list of 'host:port' pairs.
39skava.cache.redis.sslThis property indicates whether the Redis server SSL is enabled or disabled.
40skava.cache.redis.timeoutThis property holds the connection timeout value of all the Redis connections for both read and write.
41skava.cache.redis.urlThis property indicates the Redis server URL.
42skava.cache.useOnlyL2CacheThis property enables or disables the L2 cache (that is, in-memory cache).
43skava.core.releasedefinition.enabledThis property enables the release definition endpoint.
44skava.cors.allowedHeadersThis property contains the allowed headers value.
45skava.cors.allowedMethodsThis property contains the allowed methods for Spring controller.
46skava.cors.allowedOriginsThis property is used to set allowedOrigins for the cors request.
47skava.cors.enabledThis property is used to enable or disable the cors.
48skava.cors.exposedHeadersThis property is used to set exposedHeaders for the cors request.
49skava.cors.maxAgeThis property is used to set maxAge for the cors request in seconds.
50skava.cors.pathPatternThis property holds the pattern for the cors request.
51skava.event.classNameThis property sets the fully qualified name of the custom implementation class.
52skava.event.enabledThis property enables or disables the event component.
53skava.event.enableExternalEventThis property is used to enable/disable the external event component.
54skava.event.enableFatEventThis property is used to enable/disable the fat event.
55skava.event.eventbridge.eventBusNameThis property is used to set the fully qualified name of the custom implementation class.
56skava.event.eventbridge.regionThis property is used to set the fully qualified name of the custom implementation class.
57skava.event.externalClassNameThis property is used to set the fully qualified name of the custom implementation class.
58skava.event.externalFatEventClassThis property is used to set the fully qualified name of the custom implementation class.
59skava.event.rabbitmq.concurrentConsumersThis property sets the maximum allowed concurrent consumers.
60skava.event.rabbitmq.enabledThis property enables or disables the RabbitMQ server for the event component.
61skava.event.rabbitmq.hostThis property sets the host of RabbitMQ server.
62skava.event.rabbitmq.passwordThis property holds the password of the RabbitMQ server.
63skava.event.rabbitmq.portThis property sets the port of RabbitMQ server.
64skava.event.rabbitmq.queueNameThis property sets the queue name used by the event component.
65skava.event.rabbitmq.routingKeyThis property sets the routing key of RabbitMQ server.
66skava.event.rabbitmq.ssl.algorithmThis property sets the SSL algorithm, which is used for the RabbitMQ server.
67skava.event.rabbitmq.ssl.enabledThis property enables or disables the SSL support for RabbitMQ server.
68skava.event.rabbitmq.topicExchangeThis property sets the topic exchange of RabbitMQ server.
69skava.event.rabbitmq.userNameThis property sets the username of RabbitMQ server.
70skava.event.rabbitmq.virtualHostThis property sets the virtual host of RabbitMQ server.
71skava.feed.service.accounts.authoring.event.classNameThis property sets the fully qualified name of the custom implementation class of the Accounts service.
72skava.feed.service.accounts.authoring.event.concurrentConsumersThis property sets the maximum allowed concurrent consumers of the Accounts service.
73skava.feed.service.accounts.authoring.event.enabledThis property enables or disables the event component of the Accounts service.
74skava.feed.service.accounts.authoring.event.hostThis property sets the host of RabbitMQ server of the Accounts service.
75skava.feed.service.accounts.authoring.event.passwordThis property sets the password of RabbitMQ server of the Accounts service.
76skava.feed.service.accounts.authoring.event.portThis property sets the port of RabbitMQ server of the Accounts service.
77skava.feed.service.accounts.authoring.event.queueNameThis property sets the queue name used by the event component of the Accounts service.
78skava.feed.service.accounts.authoring.event.routingKeyThis property sets the routing key of RabbitMQ server of the Accounts service.
79skava.feed.service.accounts.authoring.event.topicExchangeThis property sets the topic exchange of RabbitMQ server of the Accounts service.
80skava.feed.service.accounts.authoring.event.userNameThis property sets the username of RabbitMQ server of the Accounts service.
81skava.feed.service.accounts.authoring.event.virtualHostThis property sets the virtual host of RabbitMQ server of the Accounts service.
82skava.feed.service.accounts.authoring.hostThis property sets host in which Accounts microservice is running.
83skava.feed.service.accounts.authoring.mysql.dialectThis property indicates a dialect of SQL implemented by a particular RDBMS of the Accounts service.
84skava.feed.service.accounts.authoring.mysql.driverClassNameThis property indicates the class name of the JDBC driver class of the Accounts service.
85skava.feed.service.accounts.authoring.mysql.enabledThis property indicates whether the MySQL component of the Accounts service is enabled or disabled.
86skava.feed.service.accounts.authoring.mysql.formatSqlThis property formats the generated SQL statement to make it more readable for the Accounts service.
87skava.feed.service.accounts.authoring.mysql.hbm2ddlAutoThis property sets the strategies used for DDL generation of the Accounts service.
88skava.feed.service.accounts.authoring.mysql.newGeneratorMappingsThis property indicates whether the generator mappings are enabled or disabled for the Accounts service.
89skava.feed.service.accounts.authoring.mysql.packageToScanThis property indicates the Java package containing all the database entity objects to be scanned by the MySQL server of the Accounts service.
90skava.feed.service.accounts.authoring.mysql.passwordThis property sets the password of the MySQL server of the Accounts service.
91skava.feed.service.accounts.authoring.mysql.portThis property sets the port of the MySQL server of the Accounts service.
92skava.feed.service.accounts.authoring.mysql.showSqlThis property indicates whether the MySQL generated SQL is visible or not for the Accounts service.
93skava.feed.service.accounts.authoring.mysql.urlThis property sets the MySQL database URL of the Accounts service.
94skava.feed.service.accounts.authoring.mysql.usernameThis property sets the username of the MySQL server of the Accounts service.
95skava.feed.service.accounts.live.hostThis property sets the host in which the microservice is running in the production (live) environment. The value should be a valid host entry with protocol and port details if available.
96skava.feed.service.accounts.live.mysql.dialectThis property indicates a dialect of SQL implemented by a particular RDBMS of the Accounts service.
97skava.feed.service.accounts.live.mysql.driverClassNameThis property indicates the class name of the JDBC driver class of the Accounts service.
98skava.feed.service.accounts.live.mysql.enabledThis property indicates whether the MySQL component of the Accounts service is enabled or disabled.
99skava.feed.service.accounts.live.mysql.formatSqlThis property formats the generated SQL statement to make it more readable for the Accounts service.
100skava.feed.service.accounts.live.mysql.hbm2ddlAutoThis property sets the strategies used for DDL generation of the Accounts service.
101skava.feed.service.accounts.live.mysql.newGeneratorMappingsThis property indicates whether the generator mappings are enabled or disabled for the Accounts service.
102skava.feed.service.accounts.live.mysql.packageToScanThis property indicates the Java package containing all the database entity objects to be scanned by the MySQL server of the Accounts service.
103skava.feed.service.accounts.live.mysql.passwordThis property sets the password of the MySQL server of the Accounts service.
104skava.feed.service.accounts.live.mysql.portThis property sets the port of the MySQL server of the Accounts service.
105skava.feed.service.accounts.live.mysql.showSqlThis property indicates whether the MySQL generated SQL is visible or not for the Accounts service.
106skava.feed.service.accounts.live.mysql.urlThis property sets the MySQL database URL of the Accounts service.
107skava.feed.service.accounts.live.mysql.usernameThis property sets the username of the MySQL server of the Accounts service.
108skava.feed.service.address.authoring.hostThis property sets host in which Address microservice is running.
109skava.feed.service.adminorchestration.authoring.hostThis property is used to set Host in which this microservice is running.
110skava.feed.service.authorization.authoring.hostThis property sets host in which Authorization microservice is running.
111skava.feed.service.authorization.authoring.mysql.dialectThis property represents a dialect of SQL implemented by a particular RDBMS.
112skava.feed.service.authorization.authoring.mysql.driverClassNameThis property represents the class name of JDBC driver class.
113skava.feed.service.authorization.authoring.mysql.enabledThis property is used to enable/disable the hibernate component.
114skava.feed.service.authorization.authoring.mysql.formatSqlThis property is used to format the generated SQL statement to make it more readable.
115skava.feed.service.authorization.authoring.mysql.hbm2ddlAutoThis property is used to set the strategies used for DDL generation.
116skava.feed.service.authorization.authoring.mysql.newGeneratorMappingsThis property is used to enable/disable the generator mappings.
117skava.feed.service.authorization.authoring.mysql.packageToScanThis property is used to specify the package to scan the hibernate comonent.
118skava.feed.service.authorization.authoring.mysql.passwordThis property is used to set the password for the hibernate component.
119skava.feed.service.authorization.authoring.mysql.portThis property is used to set the port for hibernate component.
120skava.feed.service.authorization.authoring.mysql.showSqlThis property is used to enable/disable the hibernate generate SQL.
121skava.feed.service.authorization.authoring.mysql.urlThis property is used to set the database URL.
122skava.feed.service.authorization.authoring.mysql.usernameThis property is used to set the username for hibernate.
123skava.feed.service.authorization.live.hostThis property sets the host in which the microservice is running in the production (live) environment. The value should be a valid host entry with protocol and port details if available.
124skava.feed.service.cart.authoring.hostThis property sets host in which Cart microservice is running.
125skava.feed.service.cart.authoring.mysql.dialectThis property indicates a dialect of SQL implemented by a particular RDBMS of the Cart service.
126skava.feed.service.cart.authoring.mysql.driverClassNameThis property indicates the class name of the JDBC driver class of the Cart service.
127skava.feed.service.cart.authoring.mysql.enabledThis property indicates whether the MySQL component of the Cart service is enabled or disabled.
128skava.feed.service.cart.authoring.mysql.formatSqlThis property formats the generated SQL statement to make it more readable for the Cart service.
129skava.feed.service.cart.authoring.mysql.hbm2ddlAutoThis property sets the strategies used for DDL generation of the Cart service.
130skava.feed.service.cart.authoring.mysql.newGeneratorMappingsThis property indicates whether the generator mappings are enabled or disabled for the Cart service.
131skava.feed.service.cart.authoring.mysql.packageToScanThis property indicates the Java package containing all the database entity objects to be scanned by the MySQL server of the Cart service.
132skava.feed.service.cart.authoring.mysql.passwordThis property sets the password of the MySQL server of the Cart service.
133skava.feed.service.cart.authoring.mysql.portThis property sets the port of the MySQL server of the Cart service.
134skava.feed.service.cart.authoring.mysql.showSqlThis property indicates whether the MySQL generated SQL is visible or not for the Cart service.
135skava.feed.service.cart.authoring.mysql.urlThis property sets the MySQL database URL of the Cart service.
136skava.feed.service.cart.authoring.mysql.usernameThis property sets the username of the MySQL server of the Cart service.
137skava.feed.service.catalog.authoring.event.classNameThis property sets the fully qualified name of the custom implementation class of the Catalog service.
138skava.feed.service.catalog.authoring.event.concurrentConsumersThis property sets the maximum allowed concurrent consumers of the Catalog service.
139skava.feed.service.catalog.authoring.event.enabledThis property enables or disables the event component of the Catalog service.
140skava.feed.service.catalog.authoring.event.hostThis property sets the host of RabbitMQ server of the Catalog service.
141skava.feed.service.catalog.authoring.event.passwordThis property sets the password of RabbitMQ server of the Catalog service.
142skava.feed.service.catalog.authoring.event.portThis property sets the port of RabbitMQ server of the Catalog service.
143skava.feed.service.catalog.authoring.event.queueNameThis property sets the queue name used by the event component of the Catalog service.
144skava.feed.service.catalog.authoring.event.routingKeyThis property sets the routing key of RabbitMQ server of the Catalog service.
145skava.feed.service.catalog.authoring.event.topicExchangeThis property sets the topic exchange of RabbitMQ server of the Catalog service.
146skava.feed.service.catalog.authoring.event.userNameThis property sets the username of RabbitMQ server of the Catalog service.
147skava.feed.service.catalog.authoring.event.virtualHostThis property sets the virtual host of RabbitMQ server of the Catalog service.
148skava.feed.service.catalog.authoring.hostThis property sets host in which Catalog microservice is running.
149skava.feed.service.catalog.authoring.mongo.authenticationDatabaseThis property sets the authentication database of MongoDB server of Catalog service.
150skava.feed.service.catalog.authoring.mongo.connectionsPerHostThis property sets the connection per host of MongoDB server of the Catalog service.
151skava.feed.service.catalog.authoring.mongo.connectTimeoutThis property sets the connection timeout of MongoDB server of the Catalog service.
152skava.feed.service.catalog.authoring.mongo.databaseThis property sets the database name of MongoDB server of the Catalog service.
153skava.feed.service.catalog.authoring.mongo.enabledThis property enables the MongoDB component of the Catalog service.
154skava.feed.service.catalog.authoring.mongo.hostThis property sets the host of MongoDB server of the Catalog service.
155skava.feed.service.catalog.authoring.mongo.importFileThis property sets the location from which the Catalog's MongoDB server will read the DB.
156skava.feed.service.catalog.authoring.mongo.mongoAuthRequiredThis property enables or disables the authentication of the MongoDB server of the Catalog service.
157skava.feed.service.catalog.authoring.mongo.passwordThis property sets the password of MongoDB server of the Catalog service.
158skava.feed.service.catalog.authoring.mongo.portThis property sets the port of MongoDB server of the Catalog service.
159skava.feed.service.catalog.authoring.mongo.usernameThis property sets the user name of MongoDB server of the Catalog service.
160skava.feed.service.catalog.live.hostThis property sets the host in which the microservice is running in the production (live) environment. The value should be a valid host entry with protocol and port details if available.
161skava.feed.service.catalog.live.mongo.authenticationDatabaseThis property sets the authentication database of the MongoDB server of Catalog service.
162skava.feed.service.catalog.live.mongo.connectionsPerHostThis property sets the connection per host of MongoDB server of the Catalog service.
163skava.feed.service.catalog.live.mongo.connectTimeoutThis property sets the connection timeout of the MongoDB server of the Catalog service.
164skava.feed.service.catalog.live.mongo.databaseThis property sets the database name of MongoDB server of the Catalog service.
165skava.feed.service.catalog.live.mongo.enabledThis property enables the MongoDB component of the Catalog service.
166skava.feed.service.catalog.live.mongo.hostThis property sets the host of MongoDB server of the Catalog service.
167skava.feed.service.catalog.live.mongo.importFileThis property sets the location from which the Catalog's MongoDB server will read the DB.
168skava.feed.service.catalog.live.mongo.mongoAuthRequiredThis property enables or disables the authentication of the MongoDB server of the Catalog service.
169skava.feed.service.catalog.live.mongo.passwordThis property sets the password of MongoDB server of the Catalog service.
170skava.feed.service.catalog.live.mongo.portThis property sets the port of MongoDB server of the Catalog service.
171skava.feed.service.catalog.live.mongo.usernameThis property sets the user name of MongoDB server of the Catalog service.
172skava.feed.service.core.authoring.contentrepository.contentRepositoryLocalDirectoryThis property is used for storing the content details.
173skava.feed.service.core.authoring.contentrepository.dataStoreTypeThis property is used to specify the type of storage.
174skava.feed.service.core.authoring.contentrepository.dbDriverClassNameThis property is used to connect to the MySQL DB for the content repository. It contains the class name of DB driver.
175skava.feed.service.core.authoring.contentrepository.dbPasswordThis property is used to connect to the MySQL DB for the content repository. It contains the password of the MySQL DB.
176skava.feed.service.core.authoring.contentrepository.dbUrlThis property is used to connect to the MySQL DB for the content repository. it contains the DB URL.
177skava.feed.service.core.authoring.contentrepository.dbUserNameThis property is used to connect to the MySQL DB for the content repository. It contains the user name of the MySQL DB.
178skava.feed.service.core.authoring.contentrepository.defaultImplClassThis property is used to specify the type of storage.
179skava.feed.service.core.authoring.contentrepository.enabledThis property is used for storing the content details.
180skava.feed.service.core.authoring.contentrepository.mongodb.databaseThis property sets the database name of the MongoDB server of the content repository.
181skava.feed.service.core.authoring.contentrepository.mongodb.enabledThis property enables the MongoDB component of the content repository.
182skava.feed.service.core.authoring.contentrepository.mongodb.uriThis property sets the MongoDB URL of the content repository.
183skava.feed.service.core.authoring.contentrepository.passwordThis property sets the password of the content repository.
184skava.feed.service.core.authoring.contentrepository.properties.cacheSizeInMBThis property sets the cache size in MB of the content repository.
185skava.feed.service.core.authoring.contentrepository.properties.cloudFrontDomainThis property sets the cloud front domain of the content repository.
186skava.feed.service.core.authoring.contentrepository.properties.connectionTimeoutThis property sets the connection timeout of the content repository.
187skava.feed.service.core.authoring.contentrepository.properties.maxCachedBinarySizeThis property sets the maximum cached binary size of the content repository.
188skava.feed.service.core.authoring.contentrepository.properties.maxConnectionsThis property sets the maximum connections of the content repository.
189skava.feed.service.core.authoring.contentrepository.properties.maxErrorRetryThis property sets the maximum error retry of the content repository.
190skava.feed.service.core.authoring.contentrepository.properties.s3BucketThis property sets the S3 bucket of the content repository.
191skava.feed.service.core.authoring.contentrepository.properties.s3EndPointThis property sets the S3 end point of the content repository.
192skava.feed.service.core.authoring.contentrepository.properties.S3isPrivateAccessThis property refers to the s3 bucket with private access.
193skava.feed.service.core.authoring.contentrepository.properties.s3RegionThis property sets the S3 region of the content repository.
194skava.feed.service.core.authoring.contentrepository.properties.socketTimeoutThis property sets the socket timeout of the content repository.
195skava.feed.service.core.authoring.contentrepository.properties.stagingPurgeIntervalThis property sets the staging purge interval of the content repository.
196skava.feed.service.core.authoring.contentrepository.userIdThis property sets the user ID of the content repository.
197skava.feed.service.core.authoring.ftp.hostThe fully qualified domain name of a network host, or its IP address.
198skava.feed.service.core.authoring.ftp.passwordThis property refers to the password corresponding to the user name.
199skava.feed.service.core.authoring.ftp.portThis property is used to connect to the port number. If omitted, it defaults to 21.
200skava.feed.service.core.authoring.ftp.userNameThis property refers to a user name (user ID) on the host.
201skava.feed.service.customers.authoring.cacheClearPasswordThis property is used to get password for cache clear.
202skava.feed.service.customers.authoring.cacheClearUserNameThis property is used to get user name/e-mail for cache clear.
203skava.feed.service.customers.authoring.hostThis property stores the API endpoint host where Customer microservice is running.
204skava.feed.service.customers.authoring.mysql.dialectThis property indicates a dialect of SQL implemented by a particular RDBMS of the Customers service.
205skava.feed.service.customers.authoring.mysql.driverClassNameThis property indicates the class name of the JDBC driver class of the Customers service.
206skava.feed.service.customers.authoring.mysql.enabledThis property indicates whether the MySQL component of the Customers service is enabled or disabled.
207skava.feed.service.customers.authoring.mysql.formatSqlThis property formats the generated SQL statement to make it more readable for the Customers service.
208skava.feed.service.customers.authoring.mysql.hbm2ddlAutoThis property sets the strategies used for DDL generation of the Customers service.
209skava.feed.service.customers.authoring.mysql.newGeneratorMappingsThis property indicates whether the generator mappings are enabled or disabled for the Customers service.
210skava.feed.service.customers.authoring.mysql.packageToScanThis property indicates the Java package containing all the database entity objects to be scanned by the MySQL server of the Customers service.
211skava.feed.service.customers.authoring.mysql.passwordThis property sets the password of the MySQL server of the Customers service.
212skava.feed.service.customers.authoring.mysql.portThis property sets the port of the MySQL server of the Customers service.
213skava.feed.service.customers.authoring.mysql.showSqlThis property indicates whether the MySQL generated SQL is visible or not for the Customers service.
214skava.feed.service.customers.authoring.mysql.urlThis property sets the MySQL database URL of the Customers service.
215skava.feed.service.customers.authoring.mysql.usernameThis property sets the username of the MySQL server of the Customers service.
216skava.feed.service.customers.live.cacheClearPasswordThis property holds the password to clear the cache.
217skava.feed.service.customers.live.cacheClearUserNameThis property holds the user name or e-mail address to clear the cache.
218skava.feed.service.customers.live.hostThis property sets the host in which the microservice is running in the production (live) environment. The value should be a valid host entry with protocol and port details if available.
219skava.feed.service.feed.authoring.event.classNameThis property sets the fully qualified name of the custom implementation class of Feed service.
220skava.feed.service.feed.authoring.event.concurrentConsumersThis property sets the maximum allowed concurrent consumers of events for the Feed service.
221skava.feed.service.feed.authoring.event.enabledThis property enables or disables the event component of the Feed service.
222skava.feed.service.feed.authoring.event.hostThis property sets the hostname of events for the Feed service.
223skava.feed.service.feed.authoring.event.passwordThis property sets the event password of the Feed service.
224skava.feed.service.feed.authoring.event.portThis property sets the event port number of the Feed service.
225skava.feed.service.feed.authoring.event.queueNameThis property sets the queue name of events for the Feed service.
226skava.feed.service.feed.authoring.event.routingKeyThis property sets the routing key of events for the Feed service.
227skava.feed.service.feed.authoring.event.topicExchangeThis property sets the topic exchange of events for the Feed service.
228skava.feed.service.feed.authoring.event.userNameThis property sets the user name of events for the Feed service.
229skava.feed.service.feed.authoring.event.virtualHostThis property sets the virtual host of events for the Feed service.
230skava.feed.service.feed.authoring.hostThis property stores the API endpoint host where Feed microservice is running.
231skava.feed.service.feed.authoring.mongo.authenticationDatabaseThis property sets the authentication database of the MongoDB server of the Feed service.
232skava.feed.service.feed.authoring.mongo.connectionsPerHostThis property sets the connections per host of MongoDB server of the Feed service.
233skava.feed.service.feed.authoring.mongo.connectTimeoutThis property is used to set the connection timeout for the Mongo server.
234skava.feed.service.feed.authoring.mongo.databaseThis property sets the database name for MongoDB server of the Feed service.
235skava.feed.service.feed.authoring.mongo.enabledThis property enables the MongoDB component of the Feed service.
236skava.feed.service.feed.authoring.mongo.hostThis property sets the host of MongoDB server of the Feed service.
237skava.feed.service.feed.authoring.mongo.importFileThis property sets the import file link of the Feed service.
238skava.feed.service.feed.authoring.mongo.mongoAuthRequiredThis property enables or disables the authentication of the MongoDB server of the Feed service.
239skava.feed.service.feed.authoring.mongo.passwordThis property sets the password of MongoDB server of the Feeds service.
240skava.feed.service.feed.authoring.mongo.portThis property sets the port of the MongoDB server of the Feed service.
241skava.feed.service.feed.authoring.mongo.usernameThis property sets the user name of MongoDB server of the Feeds service.
242skava.feed.service.foundation.authoring.hostThis property sets the host of the Feed service.
243skava.feed.service.foundation.authoring.mysql.dialectThis property indicates a dialect of SQL implemented by a particular RDBMS of the Foundation service.
244skava.feed.service.foundation.authoring.mysql.driverClassNameThis property indicates the class name of the JDBC driver class of the Foundation service.
245skava.feed.service.foundation.authoring.mysql.enabledThis property indicates whether the MySQL component of the Foundation service is enabled or disabled.
246skava.feed.service.foundation.authoring.mysql.formatSqlThis property formats the generated SQL statement to make it more readable for the Foundation service.
247skava.feed.service.foundation.authoring.mysql.hbm2ddlAutoThis property sets the strategies used for DDL generation of the Foundation service.
248skava.feed.service.foundation.authoring.mysql.newGeneratorMappingsThis property indicates whether the generator mappings are enabled or disabled for the Foundation service.
249skava.feed.service.foundation.authoring.mysql.packageToScanThis property indicates the Java package containing all database entity objects to be scanned by the MySQL server of the Foundation service.
250skava.feed.service.foundation.authoring.mysql.passwordThis property sets the password of the MySQL server of the Foundation service.
251skava.feed.service.foundation.authoring.mysql.portThis property sets the port of the MySQL server of the Foundation service.
252skava.feed.service.foundation.authoring.mysql.showSqlThis property indicates whether the MySQL generated SQL is visible or not for the Foundation service.
253skava.feed.service.foundation.authoring.mysql.urlThis property sets the MySQL database URL of the Foundation service.
254skava.feed.service.foundation.authoring.mysql.usernameThis property sets the username of the MySQL server of the Foundation service.
255skava.feed.service.foundation.live.hostThis property sets the host in which the microservice is running in the production (live) environment. The value should be a valid host entry with protocol and port details if available.
256skava.feed.service.foundation.live.mysql.dialectThis property indicates a dialect of SQL implemented by a particular RDBMS of the Foundation service.
257skava.feed.service.foundation.live.mysql.driverClassNameThis property indicates the class name of the JDBC driver class of the Foundation service.
258skava.feed.service.foundation.live.mysql.enabledThis property indicates whether the MySQL component of the Foundation service is enabled or disabled.
259skava.feed.service.foundation.live.mysql.formatSqlThis property formats the generated SQL statement to make it more readable for the Foundation service.
260skava.feed.service.foundation.live.mysql.hbm2ddlAutoThis property sets the strategies used for DDL generation of the Foundation service.
261skava.feed.service.foundation.live.mysql.newGeneratorMappingsThis property indicates whether the generator mappings are enabled or disabled for the Foundation service.
262skava.feed.service.foundation.live.mysql.packageToScanThis property indicates the Java package containing all database entity objects to be scanned by the MySQL server of the Foundation service.
263skava.feed.service.foundation.live.mysql.passwordThis property sets the password of the MySQL server of the Foundation service.
264skava.feed.service.foundation.live.mysql.portThis property sets the port of the MySQL server of the Foundation service.
265skava.feed.service.foundation.live.mysql.showSqlThis property indicates whether the MySQL generated SQL is visible or not for the Foundation service.
266skava.feed.service.foundation.live.mysql.urlThis property sets the MySQL database URL of the Foundation service.
267skava.feed.service.foundation.live.mysql.usernameThis property sets the username of the MySQL server of the Foundation service.
268skava.feed.service.inventory.authoring.hostThis property is used to store the API endpoint host where the Inventory microservice is running.
269skava.feed.service.inventory.authoring.mysql.dialectThis property indicates a dialect of SQL implemented by a particular RDBMS of the Inventory service.
270skava.feed.service.inventory.authoring.mysql.driverClassNameThis property indicates the class name of the JDBC driver class of the Inventory service.
271skava.feed.service.inventory.authoring.mysql.enabledThis property indicates whether the MySQL component of the Inventory service is enabled or disabled.
272skava.feed.service.inventory.authoring.mysql.formatSqlThis property is used to format the generated SQL statement to make it more readable for the Inventory service.
273skava.feed.service.inventory.authoring.mysql.hbm2ddlAutoThis property sets the strategies used for DDL generation of the Inventory service.
274skava.feed.service.inventory.authoring.mysql.newGeneratorMappingsThis property indicates whether the generator mappings are enabled or disabled for the Inventory service.
275skava.feed.service.inventory.authoring.mysql.packageToScanThis property is used to specify the package to scan of the MySQL component of the Inventory service.
276skava.feed.service.inventory.authoring.mysql.passwordThis property sets the password of the MySQL server of the Inventory service.
277skava.feed.service.inventory.authoring.mysql.portThis property sets the port of MySQL server of the Inventory service.
278skava.feed.service.inventory.authoring.mysql.showSqlThis property indicates whether the MySQL generated SQL is enabled or disabled for the Inventory service.
279skava.feed.service.inventory.authoring.mysql.urlThis property sets the MySQL database URL of the Inventory service.
280skava.feed.service.inventory.authoring.mysql.usernameThis property sets the username of MySQL server of the Inventory service.
281skava.feed.service.lists.authoring.hostThis property stores the API endpoint host where the Lists microservice is running.
282skava.feed.service.lists.authoring.mongo.authenticationDatabaseThis property is used to set the authentication database for MongoDB server.
283skava.feed.service.lists.authoring.mongo.connectionsPerHostThis property is used to set the connection per host for MongoDB server.
284skava.feed.service.lists.authoring.mongo.connectTimeoutThis property is used to set the connection timeout for MongoDB server.
285skava.feed.service.lists.authoring.mongo.databaseThis property is used to set the database name for MongoDB server.
286skava.feed.service.lists.authoring.mongo.enabledThis property is used to enable the mongo component.
287skava.feed.service.lists.authoring.mongo.hostThis property is used to set the host for MongoDB server.
288skava.feed.service.lists.authoring.mongo.importFileThis property is used to set the location from which the mongo server is read the DB.
289skava.feed.service.lists.authoring.mongo.mongoAuthRequiredThis property is used to enable/disable the authentication for MongoDB server.
290skava.feed.service.lists.authoring.mongo.passwordThis property is used to set the password for MongoDB server.
291skava.feed.service.lists.authoring.mongo.portThis property is used to set the port for MongoDB server.
292skava.feed.service.lists.authoring.mongo.usernameThis property is used to set the username for MongoDB server.
293skava.feed.service.loyalty.authoring.hostThis property is used to set host in which this microservice is running.
294skava.feed.service.loyalty.authoring.mongo.authenticationDatabaseThis property is used to set the authentication database for MongoDB server.
295skava.feed.service.loyalty.authoring.mongo.connectionsPerHostThis property is used to set the connection per host for MongoDB server.
296skava.feed.service.loyalty.authoring.mongo.connectTimeoutThis property is used to set the connection timeout for MongoDB server.
297skava.feed.service.loyalty.authoring.mongo.databaseThis property is used to set the database name for MongoDB server.
298skava.feed.service.loyalty.authoring.mongo.enabledThis property is used to enable the MongoDB component.
299skava.feed.service.loyalty.authoring.mongo.hostThis property is used to set the host for MongoDB server.
300skava.feed.service.loyalty.authoring.mongo.importFileThis property is used to set the location from which the mongo server is read the DB.
301skava.feed.service.loyalty.authoring.mongo.mongoAuthRequiredThis property is used to enable/disable the authentication for MongoDB server.
302skava.feed.service.loyalty.authoring.mongo.passwordThis property is used to set the password for MongoDB server.
303skava.feed.service.loyalty.authoring.mongo.portThis property is used to set the port for MongoDB server.
304skava.feed.service.loyalty.authoring.mongo.usernameThis property is used to set the username for MongoDB server.
305skava.feed.service.merchandise.authoring.event.classNameThis property sets the fully qualified name of the custom implementation class of the Merchandising service.
306skava.feed.service.merchandise.authoring.event.concurrentConsumersThis property sets the maximum allowed concurrent consumers of the Merchandising service.
307skava.feed.service.merchandise.authoring.event.enabledThis property enables or disables the event component of the Merchandising service.
308skava.feed.service.merchandise.authoring.event.hostThis property sets the host of RabbitMQ server of the Merchandising service.
309skava.feed.service.merchandise.authoring.event.passwordThis property sets the password of the RabbitMQ server of the Merchandising service.
310skava.feed.service.merchandise.authoring.event.portThis property sets the port of the RabbitMQ server of the Merchandising service.
311skava.feed.service.merchandise.authoring.event.queueNameThis property sets the queue name used by the event component of the Merchandising service.
312skava.feed.service.merchandise.authoring.event.routingKeyThis property sets the routing key of the RabbitMQ server of the Merchandising service.
313skava.feed.service.merchandise.authoring.event.topicExchangeThis property sets the topic exchange of the RabbitMQ server of the Merchandising service.
314skava.feed.service.merchandise.authoring.event.userNameThis property sets the username of the RabbitMQ server of the Merchandising service.
315skava.feed.service.merchandise.authoring.event.virtualHostThis property sets the virtual host of the RabbitMQ server of the Merchandising service.
316skava.feed.service.merchandise.authoring.hostThis property stores the API endpoint host where the Merchandising microservice is running.
317skava.feed.service.merchandise.authoring.mongo.authenticationDatabaseThis property sets the authentication database of the MongoDB server of the Merchandising service.
318skava.feed.service.merchandise.authoring.mongo.connectionsPerHostThis property sets the connection per host of MongoDB server of the Merchandising service.
319skava.feed.service.merchandise.authoring.mongo.connectTimeoutThis property sets the connection timeout of the MongoDB server of the Merchandising service.
320skava.feed.service.merchandise.authoring.mongo.databaseThis property sets the database name of MongoDB server of the Merchandising service.
321skava.feed.service.merchandise.authoring.mongo.enabledThis property enables the MongoDB component of the Merchandising service.
322skava.feed.service.merchandise.authoring.mongo.hostThis property sets the host of MongoDB server of the Merchandising service.
323skava.feed.service.merchandise.authoring.mongo.importFileThis property sets the location from which the Feed's MongoDB server will read the DB.
324skava.feed.service.merchandise.authoring.mongo.mongoAuthRequiredThis property enables or disables the authentication of the MongoDB server of the Merchandising service.
325skava.feed.service.merchandise.authoring.mongo.passwordThis property sets the password of MongoDB server of the Merchandising service.
326skava.feed.service.merchandise.authoring.mongo.portThis property sets the port of the MongoDB server of the Merchandising service.
327skava.feed.service.merchandise.authoring.mongo.usernameThis property sets the user name of MongoDB server of the Merchandising service.
328skava.feed.service.merchandise.live.hostThis property sets the host in which the microservice is running in the production (live) environment. The value should be a valid host entry with protocol and port details if available.
329skava.feed.service.merchandise.live.mongo.authenticationDatabaseThis property sets the authentication database of the MongoDB server of the Merchandising service.
330skava.feed.service.merchandise.live.mongo.connectionsPerHostThis property sets the connection per host of the MongoDB server of the Merchandising service.
331skava.feed.service.merchandise.live.mongo.connectTimeoutThis property sets the connection timeout of the MongoDB server of the Merchandising service.
332skava.feed.service.merchandise.live.mongo.databaseThis property sets the database name of the MongoDB server of the Merchandising service.
333skava.feed.service.merchandise.live.mongo.enabledThis property enables the MongoDB component of the Merchandising service.
334skava.feed.service.merchandise.live.mongo.hostThis property sets the host of the MongoDB server of the Merchandising service.
335skava.feed.service.merchandise.live.mongo.importFileThis property sets the location from which the Merchandising's MongoDB server will read the DB.
336skava.feed.service.merchandise.live.mongo.mongoAuthRequiredThis property enables or disables the authentication of the MongoDB server of the Merchandising service.
337skava.feed.service.merchandise.live.mongo.passwordThis property sets the password of MongoDB server of the Merchandising service.
338skava.feed.service.merchandise.live.mongo.portThis property sets the port of the MongoDB server of the Merchandising service.
339skava.feed.service.merchandise.live.mongo.usernameThis property sets the user name of MongoDB server of the Merchandising service.
340skava.feed.service.notifications.authoring.hostThis property stores the API endpoint host where the Notifications microservice is running.
341skava.feed.service.oms.authoring.hostThis property stores the API endpoint host where the Order microservice is running.
342skava.feed.service.oms.authoring.mongo.authenticationDatabaseThis property sets the authentication database of the MongoDB server of the Order service.
343skava.feed.service.oms.authoring.mongo.connectionsPerHostThis property sets the connection per host of the MongoDB server of the Order service.
344skava.feed.service.oms.authoring.mongo.connectTimeoutThis property sets the connection timeout of the MongoDB server of the Order service.
345skava.feed.service.oms.authoring.mongo.databaseThis property sets the database name of MongoDB server of the Order service.
346skava.feed.service.oms.authoring.mongo.enabledThis property enables the MongoDB component of the Order service.
347skava.feed.service.oms.authoring.mongo.hostThis property sets the host of MongoDB server of the Order service.
348skava.feed.service.oms.authoring.mongo.importFileThis property sets the location from which the Order's MongoDB server will read the DB.
349skava.feed.service.oms.authoring.mongo.mongoAuthRequiredThis property enables or disables the authentication of the MongoDB server of the Merchandising service.
350skava.feed.service.oms.authoring.mongo.passwordThis property sets the password of MongoDB server of the Order service.
351skava.feed.service.oms.authoring.mongo.portThis property sets the port of the MongoDB server of the Order service.
352skava.feed.service.oms.authoring.mongo.usernameThis property sets the user name of MongoDB server of the Order service.
353skava.feed.service.payment.authoring.hostThis property is used to store the API endpoint host where the Payment microservice is running.
354skava.feed.service.payment.authoring.mysql.dialectThis property represents a dialect of SQL implemented by a particular RDBMS.
355skava.feed.service.payment.authoring.mysql.driverClassNameThis property represents the class name of JDBC driver class.
356skava.feed.service.payment.authoring.mysql.enabledThis property is used to enable/disable the hibernate component.
357skava.feed.service.payment.authoring.mysql.formatSqlThis property is used to format the generated SQL statement to make it more readable.
358skava.feed.service.payment.authoring.mysql.hbm2ddlAutoThis property is used to set the strategies used for DDL generation.
359skava.feed.service.payment.authoring.mysql.newGeneratorMappingsThis property is used to enable/disable the generator mappings.
360skava.feed.service.payment.authoring.mysql.packageToScanThis property is used to specify the package to scan the hibernate component.
361skava.feed.service.payment.authoring.mysql.passwordThis property is used to set the password for the hibernate component.
362skava.feed.service.payment.authoring.mysql.portThis property is used to set the port for hibernate component
363skava.feed.service.payment.authoring.mysql.showSqlThis property is used to enable/disable the hibernate generate SQL.
364skava.feed.service.payment.authoring.mysql.urlThis property is used to set the database URL.
365skava.feed.service.payment.authoring.mysql.usernameThis property is used to set the username for hibernate.
366skava.feed.service.price.authoring.event.classNameThis property sets the fully qualified name of the custom implementation class of the Pricing service.
367skava.feed.service.price.authoring.event.concurrentConsumersThis property sets the maximum allowed concurrent consumers of the Pricing service.
368skava.feed.service.price.authoring.event.enabledThis property enables or disables the event component of the Pricing service.
369skava.feed.service.price.authoring.event.hostThis property sets the host of RabbitMQ server of the Pricing service.
370skava.feed.service.price.authoring.event.passwordThis property sets the password of RabbitMQ server of the Pricing service.
371skava.feed.service.price.authoring.event.portThis property sets the port of RabbitMQ server of the Pricing service.
372skava.feed.service.price.authoring.event.queueNameThis property sets the queue name used by the event component of the Pricing service.
373skava.feed.service.price.authoring.event.routingKeyThis property sets the routing key of RabbitMQ server of the Pricing service.
374skava.feed.service.price.authoring.event.topicExchangeThis property sets the topic exchange of RabbitMQ server of the Pricing service.
375skava.feed.service.price.authoring.event.userNameThis property sets the username of RabbitMQ server of the Pricing service.
376skava.feed.service.price.authoring.event.virtualHostThis property sets the virtual host of RabbitMQ server of the Pricing service.
377skava.feed.service.price.authoring.hostThis property stores the API endpoint host where the Pricing microservice is running.
378skava.feed.service.price.authoring.mysql.dialectThis property indicates a dialect of SQL implemented by a particular RDBMS of the Pricing service.
379skava.feed.service.price.authoring.mysql.driverClassNameThis property indicates the class name of JDBC driver class of the Pricing service.
380skava.feed.service.price.authoring.mysql.enabledThis property indicates whether the MySQL component of the Pricing service is enabled or disabled.
381skava.feed.service.price.authoring.mysql.formatSqlThis property is used to format the generated SQL statement to make it more readable for the Pricing service.
382skava.feed.service.price.authoring.mysql.hbm2ddlAutoThis property sets the strategies used for DDL generation of the Pricing service.
383skava.feed.service.price.authoring.mysql.newGeneratorMappingsThis property indicates whether the generator mappings is enabled or disabled for the Pricing service.
384skava.feed.service.price.authoring.mysql.packageToScanThis property is used to specify the package to scan the Hibernate component of the Pricing service.
385skava.feed.service.price.authoring.mysql.passwordThis property sets the password of the MySQL server of the Pricing service.
386skava.feed.service.price.authoring.mysql.portThis property sets the port of MySQL server of the Pricing service.
387skava.feed.service.price.authoring.mysql.showSqlThis property indicates whether the MySQL generated SQL is enabled or disabled for the Pricing service.
388skava.feed.service.price.authoring.mysql.urlThis property sets the MySQL database URL of the Pricing service.
389skava.feed.service.price.authoring.mysql.usernameThis property sets the username of MySQL server of the Pricing service.
390skava.feed.service.price.live.hostThis property sets the host in which the microservice is running in the production (live) environment. The value should be a valid host entry with protocol and port details if available.
391skava.feed.service.price.live.mysql.dialectThis property indicates a dialect of SQL implemented by a particular RDBMS of the Pricing service.
392skava.feed.service.price.live.mysql.driverClassNameThis property indicates the class name of JDBC driver class of Pricing service.
393skava.feed.service.price.live.mysql.enabledThis property indicates whether the MySQL component of Pricing service is enabled or disabled.
394skava.feed.service.price.live.mysql.formatSqlThis property is used to format the generated SQL statement to make it more readable for the Pricing service.
395skava.feed.service.price.live.mysql.hbm2ddlAutoThis property sets the strategies used for DDL generation of the Pricing service.
396skava.feed.service.price.live.mysql.newGeneratorMappingsThis property indicates whether the generator mappings is enabled or disabled for the Pricing service.
397skava.feed.service.price.live.mysql.packageToScanThis property is used to specify the package to scan the Hibernate component of the Pricing service.
398skava.feed.service.price.live.mysql.passwordThis property sets the password of the MySQL server of the Pricing service.
399skava.feed.service.price.live.mysql.portThis property sets the port of MySQL server of the Pricing service.
400skava.feed.service.price.live.mysql.showSqlThis property indicates whether the MySQL generated SQL is enabled or disabled for the Pricing service.
401skava.feed.service.price.live.mysql.urlThis property sets the MySQL database URL of the Pricing service.
402skava.feed.service.price.live.mysql.usernameThis property sets the username of MySQL server of the Pricing service.
403skava.feed.service.promotion.authoring.event.classNameThis property sets the fully qualified name of the custom implementation class of the Promotions service.
404skava.feed.service.promotion.authoring.event.concurrentConsumersThis property sets the maximum allowed concurrent consumers of the Promotions service.
405skava.feed.service.promotion.authoring.event.enabledThis property enables or disables the event component of the Promotions service.
406skava.feed.service.promotion.authoring.event.hostThis property sets the host of RabbitMQ server of the Promotions service.
407skava.feed.service.promotion.authoring.event.passwordThis property sets the password of RabbitMQ server of the Promotions service.
408skava.feed.service.promotion.authoring.event.portThis property sets the port of RabbitMQ server of the Promotions service.
409skava.feed.service.promotion.authoring.event.queueNameThis property sets the queue name used by the event component of the Promotions service.
410skava.feed.service.promotion.authoring.event.routingKeyThis property sets the routing key of RabbitMQ server of the Promotions service.
411skava.feed.service.promotion.authoring.event.topicExchangeThis property sets the topic exchange of RabbitMQ server of the Promotions service.
412skava.feed.service.promotion.authoring.event.userNameThis property sets the username of RabbitMQ server of the Promotions service.
413skava.feed.service.promotion.authoring.event.virtualHostThis property sets the virtual host of RabbitMQ server of the Promotions service.
414skava.feed.service.promotion.authoring.hostThis property stores the API endpoint host where the Promotion microservice is running.
415skava.feed.service.promotion.authoring.mongo.authenticationDatabaseThis property sets the authentication database of the MongoDB server of the Promotion service.
416skava.feed.service.promotion.authoring.mongo.connectionsPerHostThis property sets the connection per host of MongoDB server of the Promotion service.
417skava.feed.service.promotion.authoring.mongo.connectTimeoutThis property sets the connection timeout of the MongoDB server of the Promotion service.
418skava.feed.service.promotion.authoring.mongo.databaseThis property sets the database name of MongoDB server of the Promotion service.
419skava.feed.service.promotion.authoring.mongo.enabledThis property enables the MongoDB component of the Promotion service.
420skava.feed.service.promotion.authoring.mongo.hostThis property sets the host of the MongoDB server of the Promotion service.
421skava.feed.service.promotion.authoring.mongo.importFileThis property sets the location from which the Promotion's MongoDB server will read the DB.
422skava.feed.service.promotion.authoring.mongo.mongoAuthRequiredThis property enables or disables the authentication of the MongoDB server of the Promotion service.
423skava.feed.service.promotion.authoring.mongo.passwordThis property sets the password of MongoDB server of the Promotions service.
424skava.feed.service.promotion.authoring.mongo.portThis property sets the port of the MongoDB server of the Promotion service.
425skava.feed.service.promotion.authoring.mongo.usernameThis property sets the user name of MongoDB server of the Promotions service.
426skava.feed.service.promotion.live.event.classNameThis property sets the fully qualified name of the custom implementation class of the Promotions service.
427skava.feed.service.promotion.live.event.concurrentConsumersThis property sets the maximum allowed concurrent consumers of the Promotions service.
428skava.feed.service.promotion.live.event.enabledThis property enables or disables the event component of the Promotions service.
429skava.feed.service.promotion.live.event.hostThis property sets the host of RabbitMQ server of the Promotions service.
430skava.feed.service.promotion.live.event.passwordThis property sets the password of RabbitMQ server of the Promotions service.
431skava.feed.service.promotion.live.event.portThis property sets the port of RabbitMQ server of the Promotions service.
432skava.feed.service.promotion.live.event.queueNameThis property sets the queue name used by the event component of the Promotions service.
433skava.feed.service.promotion.live.event.routingKeyThis property sets the routing key of RabbitMQ server of the Promotions service.
434skava.feed.service.promotion.live.event.topicExchangeThis property sets the topic exchange of RabbitMQ server of the Promotions service.
435skava.feed.service.promotion.live.event.userNameThis property sets the username of RabbitMQ server of the Promotions service.
436skava.feed.service.promotion.live.event.virtualHostThis property sets the virtual host of RabbitMQ server of the Promotions service.
437skava.feed.service.promotion.live.hostThis property is used to set Host in which this live microservice is running.
438skava.feed.service.promotion.live.mongo.authenticationDatabaseThis property sets the authentication database of the MongoDB server of the Promotion service.
439skava.feed.service.promotion.live.mongo.connectionsPerHostThis property sets the connection per host of MongoDB server of the Promotion service.
440skava.feed.service.promotion.live.mongo.connectTimeoutThis property sets the connection timeout of the MongoDB server of the Promotion service.
441skava.feed.service.promotion.live.mongo.databaseThis property sets the database name of MongoDB server of the Promotion service.
442skava.feed.service.promotion.live.mongo.enabledThis property enables the MongoDB component of the Promotion service.
443skava.feed.service.promotion.live.mongo.hostThis property sets the host of the MongoDB server of the Promotion service.
444skava.feed.service.promotion.live.mongo.importFileThis property sets the location from which the Promotion's MongoDB server will read the DB.
445skava.feed.service.promotion.live.mongo.mongoAuthRequiredThis property enables or disables the authentication of the MongoDB server of the Promotion service.
446skava.feed.service.promotion.live.mongo.passwordThis property sets the password of MongoDB server of the Promotions service.
447skava.feed.service.promotion.live.mongo.portThis property sets the port of the MongoDB server of the Promotion service.
448skava.feed.service.promotion.live.mongo.usernameThis property sets the user name of MongoDB server of the Promotions service.
449skava.feed.service.ratingsreviews.authoring.hostThis property is used to set host in which this microservice is running.
450skava.feed.service.ratingsreviews.authoring.mysql.dialectThis property represents a dialect of SQL implemented by a particular RDBMS.
451skava.feed.service.ratingsreviews.authoring.mysql.driverClassNameThis property represents the class name of JDBC driver class.
452skava.feed.service.ratingsreviews.authoring.mysql.enabledThis property is used to enable/disable the hibernate component.
453skava.feed.service.ratingsreviews.authoring.mysql.formatSqlThis property is used to format the generated SQL statement to make it more readable.
454skava.feed.service.ratingsreviews.authoring.mysql.hbm2ddlAutoThis property is used to set the strategies used for DDL generation.
455skava.feed.service.ratingsreviews.authoring.mysql.newGeneratorMappingsThis property is used to enable/disable the generator mappings.
456skava.feed.service.ratingsreviews.authoring.mysql.packageToScanThis property is used to specify the package to scan the hibernate comonent.
457skava.feed.service.ratingsreviews.authoring.mysql.passwordThis property is used to set the password for the hibernate component.
458skava.feed.service.ratingsreviews.authoring.mysql.portThis property is used to set the port for hibernate component.
459skava.feed.service.ratingsreviews.authoring.mysql.showSqlThis property is used to enable/disable the hibernate generate SQL.
460skava.feed.service.ratingsreviews.authoring.mysql.urlThis property is used to set the database URL.
461skava.feed.service.ratingsreviews.authoring.mysql.usernameThis property is used to set the username for hibernate.
462skava.feed.service.search.authoring.event.classNameThis property sets the fully qualified name of the custom implementation class of the Search service.
463skava.feed.service.search.authoring.event.concurrentConsumersThis property sets the maximum allowed concurrent consumers of the Search service.
464skava.feed.service.search.authoring.event.enabledThis property enables or disables the event component of the Search service.
465skava.feed.service.search.authoring.event.hostThis property sets the host of RabbitMQ server of the Search service.
466skava.feed.service.search.authoring.event.passwordThis property sets the password of RabbitMQ server of the Search service.
467skava.feed.service.search.authoring.event.portThis property sets the port of RabbitMQ server of the Search service.
468skava.feed.service.search.authoring.event.queueNameThis property sets the queue name used by the event component of the Search service.
469skava.feed.service.search.authoring.event.routingKeyThis property sets the routing key of RabbitMQ server of the Search service.
470skava.feed.service.search.authoring.event.topicExchangeThis property sets the topic exchange of RabbitMQ server of the Search service.
471skava.feed.service.search.authoring.event.userNameThis property sets the username of RabbitMQ server of the Search service.
472skava.feed.service.search.authoring.event.virtualHostThis property sets the virtual host of RabbitMQ server of the Search service.
473skava.feed.service.search.authoring.hostThis property sets host in which the Search microservice is running.
474skava.feed.service.search.authoring.mysql.dialectThis property indicates a dialect of SQL implemented by a particular RDBMS for the Search service.
475skava.feed.service.search.authoring.mysql.driverClassNameThis property indicates the class name of JDBC driver class of the Search service.
476skava.feed.service.search.authoring.mysql.enabledThis property indicates whether the MySQL component is enabled or disabled.
477skava.feed.service.search.authoring.mysql.formatSqlThis property is used to format the generated SQL statement to make it more readable for the Search service.
478skava.feed.service.search.authoring.mysql.hbm2ddlAutoThis property sets the strategies used for DDL generation of the Search service.
479skava.feed.service.search.authoring.mysql.newGeneratorMappingsThis property indicates whether the generator mappings are enabled or disabled for the Search service.
480skava.feed.service.search.authoring.mysql.packageToScanThis property is used to specify the package to scan the Hibernate component of the Search service.
481skava.feed.service.search.authoring.mysql.passwordThis property sets the password of the MySQL server of the Search service.
482skava.feed.service.search.authoring.mysql.portThis property sets the port of MySQL server of the Search service.
483skava.feed.service.search.authoring.mysql.showSqlThis property indicates whether the MySQL generated SQL is enabled or disabled for the Search service.
484skava.feed.service.search.authoring.mysql.urlThis property sets the MySQL database URL of the Search service.
485skava.feed.service.search.authoring.mysql.usernameThis property sets the username of MySQL server of the Search service.
486skava.feed.service.search.authoring.priceRuleVirtualHostThis property is used to set the virtual host for RabbitMQ server.
487skava.feed.service.search.authoring.scpPasswordThis property represents the SCP password.
488skava.feed.service.search.authoring.scpUserNameThis property represents the SCP username.
489skava.feed.service.search.live.hostThis property sets the host in which the microservice is running in the production (live) environment. The value should be a valid host entry with protocol and port details if available.
490skava.feed.service.search.live.mysql.dialectThis property indicates a dialect of SQL implemented by a particular RDBMS of the Search service.
491skava.feed.service.search.live.mysql.driverClassNameThis property indicates the class name of the JDBC driver class of the Search service.
492skava.feed.service.search.live.mysql.enabledThis property indicates whether the MySQL component of the Search service is enabled or disabled.
493skava.feed.service.search.live.mysql.formatSqlThis property formats the generated SQL statement to make it more readable for the Search service.
494skava.feed.service.search.live.mysql.hbm2ddlAutoThis property sets the strategies used for DDL generation of the Search service.
495skava.feed.service.search.live.mysql.newGeneratorMappingsThis property indicates whether the generator mappings are enabled or disabled for the Search service.
496skava.feed.service.search.live.mysql.packageToScanThis property indicates the Java package containing all database entity objects to be scanned by the MySQL server of the Search service.
497skava.feed.service.search.live.mysql.passwordThis property sets the password of the MySQL server of the Search service.
498skava.feed.service.search.live.mysql.portThis property sets the port of the MySQL server of the Search service.
499skava.feed.service.search.live.mysql.showSqlThis property indicates whether the MySQL generated SQL is visible or not for the Search service.
500skava.feed.service.search.live.mysql.urlThis property sets the MySQL database URL of the Search service.
501skava.feed.service.search.live.mysql.usernameThis property sets the username of the MySQL server of the Search service.
502skava.feed.service.search.live.scpPasswordThis property represents the SCP password.
503skava.feed.service.search.live.scpUserNameThis property represents the SCP username.
504skava.feed.service.sfo.authoring.hostThis property sets host in which Storefront Orchestration microservice is running.
505skava.feed.service.shipping.authoring.hostThis property sets host in which the Shipping microservice is running.
506skava.feed.service.subscription.authoring.event.classNameThis property is used to set the fully qualified name of the custom implementation class.
507skava.feed.service.subscription.authoring.event.concurrentConsumersThis property is used to set the maximum allowed concurrent consumers.
508skava.feed.service.subscription.authoring.event.enabledThis property is used to enable/disable the RabbitMQ server for the event component.
509skava.feed.service.subscription.authoring.event.hostThis property is used to set the host for RabbitMQ server.
510skava.feed.service.subscription.authoring.event.passwordThis property is used to set password for RabbitMQ server.
511skava.feed.service.subscription.authoring.event.portThis property is used to set the port for RabbitMQ server.
512skava.feed.service.subscription.authoring.event.queueNameThis property is used to set the queue name used by the event component.
513skava.feed.service.subscription.authoring.event.routingKeyThis property is used to set the routing key for RabbitMQ server.
514skava.feed.service.subscription.authoring.event.topicExchangeThis property is used to set the topic exchange for RabbitMQ server.
515skava.feed.service.subscription.authoring.event.userNameThis property is used to set the username for RabbitMQ server.
516skava.feed.service.subscription.authoring.event.virtualHostThis property is used to set the virtual host for RabbitMQ server.
517skava.feed.service.subscription.authoring.hostThis property sets host in which Subscription microservice is running.
518skava.feed.service.subscription.authoring.mysql.dialectThis property represents a dialect of SQL implemented by a particular RDBMS.
519skava.feed.service.subscription.authoring.mysql.driverClassNameThis property Represents the class name of JDBC driver class
520skava.feed.service.subscription.authoring.mysql.enabledThis property is used to enable/disable the hibernate component.
521skava.feed.service.subscription.authoring.mysql.formatSqlThis property is used to format the generated SQL statement to make it more readable.
522skava.feed.service.subscription.authoring.mysql.hbm2ddlAutoThis property is used to set the strategies used for DDL generation.
523skava.feed.service.subscription.authoring.mysql.newGeneratorMappingsThis property is used to enable/disable the generator mappings.
524skava.feed.service.subscription.authoring.mysql.packageToScanThis property is used to specify the package to scan the hibernate component.
525skava.feed.service.subscription.authoring.mysql.passwordThis property is used to set the password for the hibernate component.
526skava.feed.service.subscription.authoring.mysql.portThis property is used to set the port for hibernate component.
527skava.feed.service.subscription.authoring.mysql.showSqlThis property is used to enable/disable the hibernate generate SQL.
528skava.feed.service.subscription.authoring.mysql.urlThis property is used to set the database URL.
529skava.feed.service.subscription.authoring.mysql.usernameThis property is used to set the username for hibernate.
530skava.feed.service.tax.authoring.hostThis property sets host in which the Tax microservice is running.
531skava.localization.cookieEnabledThis property is used to enable or disable the localization component.
532skava.mongo.databaseThis property denotes the name of the Mongo database for this service user by Hibernate to connect.
533skava.secretsmanager.classNameThis property is used to specify, which class to be used for the secret management.
534skava.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.
535spring.sleuth.trace-id128This property indicates whether the sleuth 128 bit trace ID in the logs is enabled or not. The default value is true.
536ZK_REDIS_SSL_ENABLEDThis property enables or disables the Redis server SSL. The default value is FALSE.
537ZK_REDIS_TIMEOUTThis property holds connection timeout value of Redis in milliseconds.
The default value is 10000.
538ZK_REDIS_USERNAMEThis property holds the login username of the Redis server.
The default value is empty.
539ZK_PROTOCOLSThis property enables macro support for the TLS protocol version.
540ZK_REDIS_PASSWORDThis property holds the Redis password.
541skava.cache.redis.username
This property indicates the login username of the Redis server.
542ZK_SOLR_ENVIRONMENTVARIABLEENABLEDWhen this property is set to true for both keystore and keypassword in the environment variable for the Solr server for SSL. The default value is false.
543ZK_SOLR_SSLENABLED This property has a default value of false. However, when the SSL is configured for the Solr server, this property needs to be enabled as true.
544ZK_CERT_SOLR_KEYSTORE This keystore property is required for the SSL enablement for SOLR.
555ZK_CERT_SOLR_KEYTOREPASSWORD This keystore property is required to SSL enablement for SOLR.
556endpoints.loggers.enabledThis property is used to enable or disable the logger.
557web.exposure.includeThis property is used to expose the management endpoints.
558server.max-http-header-sizeTo increase http header size we have externalize this property.
559externalEventConfig.fileHostThis property is used to set the hosting events on external website.
560externalEventConfig.tempStoragePathThis property is used to set the file path for the external events.
561skava.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-08 | JP – 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-11 | AN – Added the 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 | AM – Updated ZK properties for July 2019 release. 2019-06-08 | PLK – Minor copyedits.
2019-05-16 | AN – Updated to a new table tool.
2019-04-17 | AN – Updated content for April 2019 release.
2019-01-21 | PLK – Content uploaded.