The following table describes the ZooKeeper properties for the Feed Job microservice:
S.NO | PROPERTY | DESCRIPTION |
---|---|---|
1 | hystrix.command.user-key.circuitBreaker.requestVolumeThreshold | This property sets the minimum number of requests in a rolling window that will trip the circuit. |
2 | hystrix.command.user-key.circuitBreaker.sleepWindowInMilliseconds | This 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. This property works together with the property hystrix.command.user-key.circuitBreaker.requestVolumeThreshold . |
3 | hystrix.command.user-key.execution.isolation.thread.timeoutInMilliseconds | This 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. |
4 | skava.event.enabled | This property is used to enable/disable the event component. |
5 | skava.event.className | This property is used to set the fully qualified name of the custom implementation class. |
6 | skava.event.externalClassName | This property is used to set the fully qualified name of the custom implementation class. |
7 | skava.event.enableExternalEvent | This property is used to enable/disable the external event component. |
8 | skava.event.externalFatEventClass | This property is used to set the fully qualified name of the custom implementation class. |
9 | skava.event.enableFatEvent | This property is used to enable/disable the fat event. |
10 | skava.event.eventbridge.region | This property is used to set the fully qualified name of the custom implementation class. |
11 | skava.event.eventbridge.eventBusName | This property is used to set the fully qualified name of the custom implementation class. |
12 | skava.event.rabbitmq.ssl.enabled | This property is used to enable/disable the rabbitmq server ssl for the event component. |
13 | skava.event.rabbitmq.ssl.algorithm | This property is used to set the ssl algorithm used for rabbitmq server. |
14 | skava.event.rabbitmq.enabled | This property is used to enable/disable the rabbitmq server for the event component. |
15 | skava.event.rabbitmq.className | This property is used to set the fully qualified name of the custom implementation class. |
16 | skava.event.rabbitmq.concurrentConsumers | This property is used to set the maximum allowed concurrent consumers. |
17 | skava.event.rabbitmq.host | This property is used to set the host for RabbitMQ server. |
18 | skava.event.rabbitmq.userName | This property is used to set the username for RabbitMQ server. |
19 | skava.event.rabbitmq.password | This property is used to set password for RabbitMQ server. |
20 | skava.event.rabbitmq.port | This property is used to set the port for RabbitMQ server. |
21 | skava.event.rabbitmq.queueName | This property is used to set the queue name used by the event component. |
22 | skava.event.rabbitmq.routingKey | This property is used to set the routing key for RabbitMQ server. |
23 | skava.event.rabbitmq.topicExchange | This property is used to set the topic exchange for RabbitMQ server. |
24 | skava.event.rabbitmq.virtualHost | This property is used to set the virtual host for RabbitMQ server. |
25 | skava.event.merchandise.topicExchange | This property is used to set the topic exchange for RabbitMQ server. |
26 | skava.event.merchandise.routingKey | This property is used to set the routing key for RabbitMQ server. |
27 | skava.event.merchandise.queueName | This property is used to set the queue name used by the event component. |
28 | skava.event.price.topicExchange | This property is used to set the topic exchange for RabbitMQ server. |
29 | skava.event.price.routingKey | This property is used to set the routing key for RabbitMQ server. |
30 | skava.event.price.queueName | This property is used to set the queue name used by the event component. |
31 | skava.services.loyalty.url.getTransactions | This property is used to get a transaction URL value in the Loyalty service. |
32 | skava.services.loyalty.url.postTransaction | This property is used to create a post transaction URL value in the Loyalty service. |
33 | skava.services.payment.url.getPayments | This property is used to get a payment URL value in the Payment service. |
34 | skava.search.liveEnvironment | This property is used to identify the live environment and authoring environment. |
35 | skava.search.solr.userName | This property is used to connect to the Solr. |
36 | skava.search.solr.password | This property is used to connect to the Solr. |
37 | skava.search.scp.userName | This property is used to define the scp userName. |
38 | skava.search.scp.password | This property is used to define the scp password. |
39 | skava.searchlive.liveEnvironment | This property is used identify the live environment and authoring environment. |
40 | skava.searchlive.solr.userName | This property is used to connect to the Solr. |
41 | skava.searchlive.solr.password | This property is used to connect to the Solr. |
42 | skava.searchlive.scp.userName | This property is used to define the scp userName. |
43 | skava.searchlive.scp.password | This property is used to define the scp password. |
44 | skava.hibernate.price.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
45 | skava.hibernate.price.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
46 | skava.hibernate.price.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
47 | skava.hibernate.price.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
48 | skava.hibernate.price.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
49 | skava.hibernate.price.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
50 | skava.hibernate.price.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
51 | skava.hibernate.price.batchSize | This property is used to query batch size to insert or update. |
52 | skava.hibernate.pricelive.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
53 | skava.hibernate.pricelive.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
54 | skava.hibernate.pricelive.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
55 | skava.hibernate.pricelive.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
56 | skava.hibernate.pricelive.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
57 | skava.hibernate.pricelive.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
58 | skava.hibernate.pricelive.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
59 | skava.hibernate.pricelive.batchSize | This property is used to query batch size to insert or update. |
60 | skava.hibernate.inventory.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
61 | skava.hibernate.inventory.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
62 | skava.hibernate.inventory.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
63 | skava.hibernate.inventory.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
64 | skava.hibernate.inventory.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
65 | skava.hibernate.inventory.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
66 | skava.hibernate.inventory.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
67 | skava.hibernate.inventory.batchSize | This property is used to query batch size to insert or update. |
68 | skava.hibernate.foundation.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
69 | skava.hibernate.foundation.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
70 | skava.hibernate.foundation.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
71 | skava.hibernate.foundation.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
72 | skava.hibernate.foundation.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
73 | skava.hibernate.foundation.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
74 | skava.hibernate.foundation.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
75 | skava.hibernate.foundationlive.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
76 | skava.hibernate.foundationlive.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
77 | skava.hibernate.foundationlive.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
78 | skava.hibernate.foundationlive.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
79 | skava.hibernate.foundationlive.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
80 | skava.hibernate.foundationlive.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
81 | skava.hibernate.foundationlive.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
82 | skava.hibernate.auth.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
83 | skava.hibernate.auth.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
84 | skava.hibernate.auth.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
85 | skava.hibernate.auth.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
86 | skava.hibernate.auth.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
87 | skava.hibernate.auth.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
88 | skava.hibernate.auth.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
89 | skava.hibernate.cart.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
90 | skava.hibernate.cart.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
91 | skava.hibernate.cart.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
92 | skava.hibernate.cart.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
93 | skava.hibernate.cart.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
94 | skava.hibernate.cart.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
95 | skava.hibernate.cart.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
96 | skava.hibernate.cart.batchSize | This property is used to query batch size to insert or update. |
97 | skava.hibernate.payment.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
98 | skava.hibernate.payment.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
99 | skava.hibernate.payment.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
100 | skava.hibernate.payment.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
101 | skava.hibernate.payment.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
102 | skava.hibernate.payment.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
103 | skava.hibernate.payment.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
104 | skava.hibernate.payment.batchSize | This property is used to query batch size to insert or update. |
105 | skava.hibernate.ratingsAndReviews.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
106 | skava.hibernate.ratingsAndReviews.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
107 | skava.hibernate.ratingsAndReviews.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
108 | skava.hibernate.ratingsAndReviews.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
109 | skava.hibernate.ratingsAndReviews.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
110 | skava.hibernate.ratingsAndReviews.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
111 | skava.hibernate.ratingsAndReviews.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
112 | skava.hibernate.ratingsAndReviews.batchSize | This property is used to query batch size to insert or update. |
113 | skava.hibernate.report.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
114 | skava.hibernate.report.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
115 | skava.hibernate.report.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
116 | skava.hibernate.report.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
117 | skava.hibernate.report.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
118 | skava.hibernate.report.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
119 | skava.hibernate.report.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
120 | skava.hibernate.shipping.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
121 | skava.hibernate.shipping.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
122 | skava.hibernate.shipping.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
123 | skava.hibernate.shipping.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
124 | skava.hibernate.shipping.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
125 | skava.hibernate.shipping.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
126 | skava.hibernate.shipping.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
127 | skava.hibernate.subscription.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
128 | skava.hibernate.subscription.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
129 | skava.hibernate.subscription.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
130 | skava.hibernate.subscription.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
131 | skava.hibernate.subscription.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
132 | skava.hibernate.subscription.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
133 | skava.hibernate.subscription.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
134 | skava.hibernate.subscription.batchSize | This property is used to query batch size to insert or update. |
135 | skava.hibernate.user.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
136 | skava.hibernate.user.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
137 | skava.hibernate.user.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
138 | skava.hibernate.user.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
139 | skava.hibernate.user.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
140 | skava.hibernate.user.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
141 | skava.hibernate.user.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
142 | skava.hibernate.user.batchSize | This property is used to query batch size to insert or update. |
143 | skava.hibernate.tax.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
144 | skava.hibernate.tax.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
145 | skava.hibernate.tax.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
146 | skava.hibernate.tax.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
147 | skava.hibernate.tax.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
148 | skava.hibernate.tax.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
149 | skava.hibernate.tax.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
150 | skava.hibernate.address.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
151 | skava.hibernate.address.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
152 | skava.hibernate.address.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
153 | skava.hibernate.address.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
154 | skava.hibernate.address.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
155 | skava.hibernate.address.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
156 | skava.hibernate.address.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
157 | skava.hibernate.search.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
158 | skava.hibernate.search.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
159 | skava.hibernate.search.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
160 | skava.hibernate.search.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
161 | skava.hibernate.search.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
162 | skava.hibernate.search.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
163 | skava.hibernate.search.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
164 | skava.hibernate.searchlive.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
165 | skava.hibernate.searchlive.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
166 | skava.hibernate.searchlive.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
167 | skava.hibernate.searchlive.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
168 | skava.hibernate.searchlive.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
169 | skava.hibernate.searchlive.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
170 | skava.hibernate.searchlive.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
171 | skava.hibernate.searchlive.batchSize | This property is used to query batch size to insert or update. |
172 | skava.hibernate.notification.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
173 | skava.hibernate.notification.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
174 | skava.hibernate.notification.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
175 | skava.hibernate.notification.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
176 | skava.hibernate.notification.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
177 | skava.hibernate.notification.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
178 | skava.hibernate.notification.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
179 | skava.hibernate.account.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
180 | skava.hibernate.account.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
181 | skava.hibernate.account.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
182 | skava.hibernate.account.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
183 | skava.hibernate.account.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
184 | skava.hibernate.account.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
185 | skava.hibernate.account.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
186 | skava.hibernate.accountlive.initialPoolSize | This property contains the number of connections a pool tries to acquire upon startup. The default value is 3 . |
187 | skava.hibernate.accountlive.acquireIncrement | This property determines how many connections at a time c3p0 tries to acquire when the pool is exhausted. The default value is 3 . |
188 | skava.hibernate.accountlive.c3p0MinSize | This propery holds the minimum number of JDBC connections in the pool. The default hibernate value is 1 . |
189 | skava.hibernate.accountlive.c3p0MaxSize | This propery holds the maximum number of JDBC connections in the pool. The default hibernate value is 100 . |
190 | skava.hibernate.accountlive.c3p0Timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The value of 0 indicates that idle connections never expires. |
191 | skava.hibernate.accountlive.c3p0MaxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0 ‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0 , which means caching is disabled. |
192 | skava.hibernate.accountlive.c3p0IdleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0 , the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. |
193 | skava.mongo.catalog.enabled | This property is used to enable the MongoDB component. |
194 | skava.mongo.catalog.uri | This property is used to connect to the MongoDB server. |
195 | skava.mongo.catalog.database | This property is used to refer to the MongoDB name. |
196 | skava.mongo.cataloglive.enabled | This property is used to enable the MongoDB component. |
197 | skava.mongo.cataloglive.uri | This property is used to connect to the MongoDB server. |
198 | skava.mongo.cataloglive.database | This property is used to refer to the MongoDB name. |
199 | skava.mongo.feed.enabled | This property is used to enable the MongoDB component |
200 | skava.mongo.feed.uri | This property is used to connect to the MongoDB server. |
201 | skava.mongo.feed.database | This property is used to refer to the MongoDB name. |
202 | skava.mongo.dataimportsolr.enabled | This property is used to enable the MongoDB component. |
203 | skava.mongo.dataimportsolr.uri | This property is used to connect to the MongoDB server. |
204 | skava.mongo.dataimportsolr.database | This property is used to refer to the MongoDB name. |
205 | skava.mongo.merchandise.enabled | This property is used to enable the MongoDB component. |
206 | skava.mongo.merchandise.uri | This property is used to connect to the MongoDB server. |
207 | skava.mongo.merchandise.database | This property is used to refer to the MongoDB name. |
208 | skava.mongo.merchandiselive.enabled | This property is used to enable the MongoDB component. |
209 | skava.mongo.merchandiselive.uri | This property is used to connect to the MongoDB server. |
210 | skava.mongo.merchandiselive.database | This property is used to refer to the MongoDB name. |
211 | skava.mongo.promotion.enabled | This property is used to enable the MongoDB component. |
212 | skava.mongo.promotion.uri | This property is used to connect to the MongoDB server. |
213 | skava.mongo.promotion.database | This property is used to refer to the MongoDB name. |
214 | skava.mongo.promotionlive.enabled | This property is used to enable the MongoDB component. |
215 | skava.mongo.promotionlive.uri | This property is used to connect to the MongoDB server. |
216 | skava.mongo.promotionlive.database | This property is used to refer to the MongoDB name. |
217 | skava.mongo.oms.enabled | This property is used to enable the MongoDB component. |
218 | skava.mongo.oms.uri | This property is used to connect to the MongoDB server. |
219 | skava.mongo.oms.database | This property is used to refer to the MongoDB name. |
220 | skava.mongo.loyalty.enabled | This property is used to enable the MongoDB component. |
221 | skava.mongo.loyalty.uri | This property is used to connect to the MongoDB server. |
222 | skava.mongo.loyalty.database | This property is used to refer to the MongoDB name. |
223 | skava.mongo.list.enabled | This property is used to enable the MongoDB component. |
224 | skava.mongo.list.uri | This property is used to connect to the MongoDB server. |
225 | skava.mongo.list.database | This property is used to refer to the MongoDB name. |
226 | skava.secretsmanager.className | this property is used to specify which class to be used for the secret management. |
227 | skava.cache.enabled | This property is used to enable cache. |
228 | skava.cache.enableCascade | This property is used to enable cascade cache. |
229 | skava.cache.useOnlyL2Cache | This property is used to enable L2 cache. |
230 | skava.cache.cascadeCacheNames | This property is used to enable cascade cache by its name. |
231 | skava.cache.localCache.type | This 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). |
232 | skava.cache.stepLevel.inventory.queryCacheEnabled | This property is used to enable batch step level cache. |
233 | skava.cache.redis.clusterEnabled | This property enables or disables the cluster of the Redis server. |
234 | skava.cache.redis.cacheNames | This property is used to set the fully qualified name of the custom implementation class. |
235 | skava.cache.redis.clearCacheEventName | This property is used to set the event name for cache clear operation. |
236 | skava.cache.redis.cluster.maxRedirects | This property contains the maximum number of redirects to follow when executing commands across the clusters of the Redis server. |
237 | skava.cache.redis.cluster.nodes | This property indicates 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. |
238 | skava.cache.redis.database | This property holds the Redis database index used by the connection factory. |
239 | skava.cache.redis.enabled | This property is used to enable/disabled the redis component. |
240 | skava.cache.redis.expTimeTolive | This property is used to set the expiration time for redis messages. |
241 | skava.cache.redis.host | This property holds the Redis server's hostname/IP for caching objects. |
242 | skava.cache.redis.password | This 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. |
243 | skava.cache.redis.port | This property holds the Redis server's port for the application to connect for both read and write cache operations. |
244 | skava.cache.redis.sentinel.master | This property contains the name of the Redis server. |
245 | skava.cache.redis.sentinel.nodes | This property indicates the comma-separated list of 'host:port ' pairs. |
246 | skava.cache.redis.ssl | This property enables or disables the SSL in the Redis server:
|
247 | skava.cache.redis.timeout | This property holds the connection timeout value of all Redis connections for both read and write operations. |
248 | skava.cache.redis.url | This property specifies the URL of the Redis server. |
249 | skava.cache.redis.maxTimeTolive | This property holds the expiration time of Redis entries, that is, the maximum time the objects are requested to be held in the Redis server. Using this property, you can request Redis server to hold the objects for a specified time, but it is the LRU/LCU, which determines how long an entry survives in the cache. |
250 | skava.cache.redis.pool.minIdle | This property holds the minimum number of idle connections to maintain in the pool. This setting only has an effect if it is positive. |
251 | skava.cache.redis.pool.maxIdle | This property holds the maximum number of idle connections in the pool. Use a negative value to indicate an unlimited number of idle connections. |
252 | skava.cache.redis.pool.maxActive | This 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. |
253 | skava.cache.redis.client | This property represents the type of client for redis connection. |
254 | skava.contentrepository.defaultImplClass | This property specifies the name of the default class used to select a content repository, which specifies the type of storage. |
255 | skava.contentrepository.enabled | This property enables or disables a content repository. The value true enables a content repository. |
256 | skava.contentrepository.urlEncoded | This property enables or disables the URL encoding of the content repository. |
257 | skava.contentrepository.properties.cloudFrontDomain | This property sets the cloud front domain of the content repository. It is used to fetch the object from the s3 bucket. |
258 | skava.contentrepository.properties.s3Bucket | This property sets the S3 bucket of the content repository. |
259 | skava.contentrepository.properties.s3Region | This property sets the S3 region of the content repository. |
260 | skava.resttemplate.cookiePolicy | This property is used to ignore cookies. |
261 | skava.resttemplate.cxn-timeout-m-sec | This property is used to set connection timeout in milliseconds. |
262 | skava.resttemplate.readTimeout | This property is used to set to read timeout in milliseconds. |
263 | skava.resttemplate.cxnPoolSize | This property is used to set the connection pool size. |
264 | skava.resttemplate.defaultMaxPerRoute | This property is used to set the total number of concurrent connections to a specific route, which is 2 by default. |
265 | skava.resttemplate.enabled | This property is used to enable the resttemplate component. |
266 | skava.resttemplate.handleRedirects | This property is used to enable the redirects for resttemplate component. |
267 | skava.resttemplate.ignore-invalid-h-t-t-p-s-cert | This property is used to enable/disable invalid HTTPS certificate. |
268 | skava.resttemplate.keyPass | This property is used to set the password for keystore. |
269 | skava.resttemplate.p12File | This property is used to set the p12 file path. |
270 | skava.resttemplate.supportedProtocols | This property is used to set the protocols for HTTP calls. |
271 | skava.ratingsAndReviews.profanity | This property is used to check profanity. |
272 | skava.rabbitListener.enabled | This property is used to enable the listener feeds. |
273 | skava.rabbitListener.queueName | This property is used to set listener queue name. |
274 | skava.rabbitListener.exchange | This property is used to set ecomm name. |
275 | skava.rabbitListener.merchandise.queueName | This property is used to set merchandise listener queue name. |
276 | skava.rabbitListener.merchandise.exchange | This property is used to set listener exchange name. |
277 | skava.rabbitListener.catalogb2b.queueName | This property is used to set catalog B2B listener queue name. |
278 | skava.rabbitListener.catalogb2b.exchange | This property is used to set listener exchange name. |
279 | skava.rabbitListener.price.queueName | This property is used to set price event listener queue name. |
280 | skava.rabbitListener.price.exchange | This property is used to set price event listener exchange name. |
281 | skava.rabbitListener.pricerule.queueName | This property is used to set price rule event listener queue name. |
282 | skava.rabbitListener.pricerule.exchange | This property is used to set price rule event listener exchange name. |
283 | skava.springbatch.notification.notificationRoutingKey | This property is used to set routingkey for notificationQueue . |
284 | skava.springbatch.notification.notificationExchange | This property is used to set exchange for notificationQueue . |
285 | skava.springbatch.batchconfig.importandapproval.chunkSize | This property is used to set a chunk size for all the imports. |
286 | skava.springbatch.batchconfig.importandapproval.enableListener | This property is used to enable/disable RabbitMQ message creation while doing import or approval. |
287 | skava.springbatch.batchconfig.catalogeventpublisher.maxPoolSize | This property is used to set maximum pool size. |
288 | skava.springbatch.batchconfig.catalogeventpublisher.corePoolSize | This property is used to set current running threads. |
289 | skava.springbatch.batchconfig.catalogeventpublisher.concurrencyLimit | This property is used to set a concurrency limit. |
290 | skava.springbatch.batchconfig.catalogeventpublisher.chunkSize | This property is used to set a chunk size. |
291 | skava.springbatch.batchconfig.priceeventpublisher.maxPoolSize | This property is used to set maximum pool size. |
292 | skava.springbatch.batchconfig.priceeventpublisher.corePoolSize | This property is used to set current running threads. |
293 | skava.springbatch.batchconfig.priceeventpublisher.concurrencyLimit | This property is used to set a concurrency limit. |
294 | skava.springbatch.batchconfig.priceeventpublisher.chunkSize | This property is used to set a chunk size. |
295 | skava.springbatch.batchconfig.merchandiseeventpublisher.maxPoolSize | This property is used to set maximum pool size. |
296 | skava.springbatch.batchconfig.merchandiseeventpublisher.corePoolSize | This property is used to set current running threads. |
297 | skava.springbatch.batchconfig.merchandiseeventpublisher.concurrencyLimit | This property is used to set a concurrency limit. |
298 | skava.springbatch.batchconfig.merchandiseeventpublisher.chunkSize | This property is used to set a chunk size. |
299 | skava.springbatch.batchconfig.merchimportandapproval.chunkSize | This property is used to set a chunk size for all the imports. |
300 | skava.springbatch.batchconfig.merchimportandapproval.enableListener | This property is used to enable/disable RabbitMQ message creation while doing import or approval. |
301 | skava.springbatch.batchconfig.merchandise.merchimport.chunkSize | This property is used to set a chunk size for all the imports. |
302 | skava.springbatch.batchconfig.merchandise.merchimport.enableListener | This property is used to enable/disable rabbitmq message creation while doing import. |
303 | skava.springbatch.batchconfig.merchandise.merchexport.chunkSize | This property is used to set a chunk size for all the imports. |
304 | skava.springbatch.batchconfig.merchandise.merchexport.enableListener | This property is used to enable/disable RabbitMQ message creation while doing import. |
305 | skava.springbatch.batchconfig.merchandise.merchapproval.chunkSize | This property is used to set a chunk size for all the imports. |
306 | skava.springbatch.batchconfig.merchandise.merchapproval.enableListener | This property is used to enable/disable RabbitMQ message creation while doing import. |
307 | skava.springbatch.batchconfig.price.priceImport.chunkSize | This property is used to set a chunk size for the imports. |
308 | skava.springbatch.batchconfig.price.priceExport.chunkSize | This property is used to set a chunk size for the export. |
309 | skava.springbatch.batchconfig.price.priceExport.pageableChunkSize | This property is used to set pageable chunk size for the export. |
310 | skava.springbatch.batchconfig.price.priceApproval.chunkSize | This property is used to set a chunk size for all the imports. |
311 | skava.springbatch.batchconfig.price.priceApproval.enableListener | This property is used to enable/disable RabbitMQ message creation while doing import or approval. |
312 | skava.springbatch.batchconfig.price.priceListClone.chunkSize | This property is used to set a chunk size for all the priceListClone . |
313 | skava.springbatch.batchconfig.search.searchPublish.chunkSize | This property is used to set pageable chunk size for the searchPublish . |
314 | skava.springbatch.batchconfig.catalog.catalogMapping.chunkSize | This property is used to set pageable chunk size for the imports. |
315 | skava.springbatch.batchconfig.catalog.catalogExport.chunkSize | This property is used to set pageable chunk size for the export. |
316 | skava.springbatch.batchconfig.catalog.modelValueExport.chunkSize | This property is used to set pageable chunk size for all the imports. |
317 | skava.springbatch.batchconfig.catalog.catalogApproval.chunkSize | This property is used to set a chunk size for all the imports. |
318 | skava.springbatch.batchconfig.catalog.catalogApproval.enableListener | This property is used to enable/disable RabbitMQ message creation while doing import or approval. |
319 | skava.springbatch.batchconfig.catalog.catalogImport.chunkSize | This property is used to set a chunk size for all the imports. |
320 | skava.springbatch.batchconfig.catalog.catalogImport.enableListener | This property is used to enable/disable RabbitMQ message creation while doing import or approval. |
321 | skava.springbatch.batchconfig.catalog.modelValueImport.chunkSize | This property is used to set a chunk size for all the imports. |
322 | skava.springbatch.batchconfig.promotion.promotionlistupload.chunkSize | This property is used to set a chunk size. |
323 | skava.springbatch.batchconfig.promotion.promotionlistdownload.chunkSize | This property is used to set a chunk size. |
324 | skava.springbatch.batchconfig.promotion.promocodesupload.chunkSize | This property is used to set a chunk size. |
325 | skava.springbatch.batchconfig.promotion.promocodesdownload.chunkSize | This property is used to set a chunk size. |
326 | skava.springbatch.batchconfig.promotion.promocodesgenerate.chunkSize | This property is used to set a chunk size. |
327 | skava.springbatch.batchconfig.loyaltycyclecalculation.maxPoolSize | This property is used to set maximum pool size. |
328 | skava.springbatch.batchconfig.loyaltycyclecalculation.corePoolSize | This property is used to set current running threads. |
329 | skava.springbatch.batchconfig.loyaltycyclecalculation.concurrencyLimit | This property is used to set a concurrency limit. |
330 | skava.springbatch.batchconfig.loyaltycyclecalculation.chunkSize | This property is used to set a chunk size. |
331 | skava.springbatch.batchconfig.loyaltytransactionexpiry.maxPoolSize | This property is used to set maximum pool size. |
332 | skava.springbatch.batchconfig.loyaltytransactionexpiry.corePoolSize | This property is used to set current running threads. |
333 | skava.springbatch.batchconfig.loyaltytransactionexpiry.concurrencyLimit | This property is used to set a concurrency limit. |
334 | skava.springbatch.batchconfig.loyaltytransactionexpiry.chunkSize | This property is used to set a chunk size. |
335 | skava.springbatch.batchconfig.loyaltypointsexpiry.maxPoolSize | This property is used to set maximum pool size. |
336 | skava.springbatch.batchconfig.loyaltypointsexpiry.corePoolSize | This property is used to set current running threads. |
337 | skava.springbatch.batchconfig.loyaltypointsexpiry.concurrencyLimit | This property is used to set a concurrency limit. |
338 | skava.springbatch.batchconfig.loyaltypointsexpiry.chunkSize | This property is used to set a chunk size. |
339 | skava.springbatch.batchconfig.loyaltypointsexport.maxPoolSize | This property is used to set maximum pool size. |
340 | skava.springbatch.batchconfig.loyaltypointsexport.corePoolSize | This property is used to set current running threads. |
341 | skava.springbatch.batchconfig.loyaltypointsexport.concurrencyLimit | This property is used to set a concurrency limit. |
342 | skava.springbatch.batchconfig.loyaltypointsexport.chunkSize | This property is used to set a chunk size. |
343 | skava.springbatch.batchconfig.loyaltyimport.maxPoolSize | This property is used to set maximum pool size. |
344 | skava.springbatch.batchconfig.loyaltyimport.corePoolSize | This property is used to set current running threads. |
345 | skava.springbatch.batchconfig.loyaltyimport.concurrencyLimit | This property is used to set a concurrency limit. |
346 | skava.springbatch.batchconfig.loyaltyimport.chunkSize | This property is used to set a chunk size. |
347 | skava.springbatch.batchconfig.loyaltyordervalue.maxPoolSize | This property is used to set maximum pool size. |
348 | skava.springbatch.batchconfig.loyaltyordervalue.corePoolSize | This property is used to set current running threads. |
349 | skava.springbatch.batchconfig.loyaltyordervalue.concurrencyLimit | This property is used to set a concurrency limit. |
350 | skava.springbatch.batchconfig.loyaltyordervalue.chunkSize | This property is used to set a chunk size. |
351 | skava.springbatch.batchconfig.subscriptionfeed.chunkSize | This property is used to set a chunk size. |
352 | skava.springbatch.batchconfig.subscriptionfeed.deploymentEnvironment | This property is used to describe environment for demo mode. |
353 | skava.springbatch.batchconfig.subscriptionfeed.topicExchange | This property is used to set orchestration exchange. |
354 | skava.springbatch.batchconfig.subscriptionfeed.reminderRoutingKey | This property is used to describe routing key. |
355 | skava.springbatch.batchconfig.subscriptionfeed.paymentExpiredRoutingKey | This property is used to describe routing key. |
356 | skava.springbatch.batchconfig.subscriptionfeed.paymentExpiresSoonRoutingKey | This property is used to describe routing key. |
357 | skava.springbatch.batchconfig.subscriptionfeed.paymentExpiresNextRoutingKey | This property is used to describe routing key. |
358 | skava.springbatch.batchconfig.migration.chunkSize | This property is used to set a chunk size. |
359 | skava.springbatch.batchconfig.inventory.binImport.chunkSize | This property is used to set a chunk size. |
360 | skava.springbatch.batchconfig.inventory.binExport.chunkSize | This property is used to set a chunk size. |
361 | skava.springbatch.batchconfig.inventory.binItemImport.chunkSize | This property is used to set a chunk size. |
362 | skava.springbatch.batchconfig.inventory.binItemExport.chunkSize | This property is used to set a chunk size. |
363 | skava.springbatch.batchconfig.inventory.transactionImport.chunkSize | This property is used to set a chunk size. |
364 | skava.springbatch.batchconfig.inventory.transactionExport.chunkSize | This property is used to set a chunk size. |
365 | skava.springbatch.batchconfig.ratingsandreviews.reviewsImport.chunkSize | This property is used to set a chunk size. |
366 | spring.application.name | This property is used to set the Spring Boot application name. |
367 | spring.main.allow-circular-references | this property is used to enable/disable the circular references. |
368 | spring.autoconfigure.exclude | This property is used to set the autoconfiguration exclusion classes. |
369 | spring.datasource.url | This property is the URL of the MySQL datasource. |
370 | spring.datasource.driverClassName | This property is used to connect to the MySQL DB for content repository. |
371 | spring.datasource.hikari.maximum-pool-size | This property is used to set maximum pool size connections. |
372 | spring.datasource.hikari.minimum-idle | This property is used to set minimum idle size connections. |
373 | spring.datasource.hikari.idleTimeout | This property controls the maximum amount of time in milliseconds that a connection is allowed to sit idle in the pool. |
374 | spring.datasource.hikari.connectionTimeout | This property controls the maximum number of milliseconds wait for setting up a connection from the pool. |
375 | spring.cloud.zookeeper.enabled | This property is used to enable/disable the ZooKeeper server. |
376 | spring.cloud.zookeeper.connect-string | This property is used to located somewhere other than localhost:2181 , the configuration is required to locate the server. |
377 | spring.cloud.zookeeper.config.enabled | This property is used to enable/disable the ZooKeeper base path. |
378 | spring.cloud.zookeeper.config.root | This property is used to enable/disable the ZooKeeper base path. |
379 | spring.cloud.zookeeper.config.watcher.enabled | This property is used to enable/disable the ZooKeeper watcher. |
380 | server.servlet.contextPath | This property holds the Spring Boot application's context path. By default, the context path is “/ ”. If that’s not ideal and you need to change it – to something like /app_name , here’s the quick and simple way to do it via properties. |
381 | server.tomcat.accesslog.enabled | This property controls the tomcat logs for the Spring Boot application. |
382 | server.tomcat.accesslog.pattern | This property is used to set the pattern for writing logs in tomcat. |
383 | server.tomcat.accesslog.directory | This property holds the directory details for storing access log. It can be absolute or relative to the Tomcat base directory. |
384 | server.tomcat.accesslog.max-days | The maximum number of days rotated access logs will be retained for before being deleted. If not specified, the default value is set to 10 . |
385 | server.ssl.enabled | This property controls the SSL configuration for the Spring Boot application. |
386 | server.ssl.key-store | This property holds the keystore PrivateKeyEntry which will be used as the SSL certificate for the microservice. |
387 | server.ssl.key-store-password | This property holds the keystore password for opening the keystore mentioned in key-store property. |
388 | server.ssl.key-store-type | This property holds the keystore type. |
389 | server.ssl.key-alias | This property holds the keystore alias name set during the import using keytool utility. |
390 | server.ssl.enabled-protocols | This property holds the protocols enabled for this application, it takes comma separated values. |
391 | ZK_REDIS_SSL_ENABLED | This property enables or disables the Redis server SSL. The default value is FALSE . |
392 | ZK_REDIS_TIMEOUT | This property holds connection timeout value of Redis in milliseconds. The default value is 10000. |
393 | ZK_REDIS_USERNAME | This property holds the login username of the Redis server. The default value is empty. |
394 | ZK_PROTOCOLS | This property enables macro support for the TLS protocol version. |
395 | ZK_REDIS_PASSWORD | This property holds the Redis password. |
396 | skava.cache.redis.username | This property indicates the login username of the Redis server. |
397 | ZK_SOLR_ENVIRONMENTVARIABLEENABLED | When 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. |
398 | ZK_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. |
399 | ZK_CERT_SOLR_KEYSTORE | This keystore property is required for the SSL enablement for SOLR. |
400 | ZK_CERT_SOLR_KEYTOREPASSWORD | This keystore property is required to SSL enablement for SOLR. |
401 | ZK_MYSQL_ENABLELIVE | This property has been enabled for the Preview and Live (Publish) features. |
402 | endpoints.loggers.enabled | This property is used to enable or disable the logger. |
403 | web.exposure.include | This property is used to expose the management endpoints. |
404 | server.max-http-header-size | To increase http header size we have externalize this property. |
405 | externalEventConfig.fileHost | This property is used to set the hosting events on external website. |
406 | externalEventConfig.tempStoragePath | This property is used to set the file path for the external events. |
407 | skava.event.rabbitmq.amqpEnabled | This property is used to enable AMQP (Advanced Message Queuing Protocol). When the value is
|
408 | spring.jpa.properties.hibernate.c3p0.minSize | This property holds the minimum number of JDBC connections in the pool. The default hibernate value is 5 |
409 | spring.jpa.properties.hibernate.c3p0.maxSize | This property holds the maximum number of JDBC connections in the pool. The default hibernate value is 10 |
410 | spring.jpa.properties.hibernate.c3p0.timeout | This property holds the pool’s idle connection timeout post which the connection is removed from the pool. The value mentioned here is in seconds. The default hibernate value is 2000 |
411 | spring.jpa.properties.hibernate.c3p0.maxStatements | This property holds the number of prepared statements that be cached, i.e., c3p0‘s global PreparedStatement cache. This controls the total number of statements cached, for all connections. The default value is 0. |
412 | spring.jpa.properties.hibernate.c3p0.idleTestPeriod | This property holds the idle time (in seconds) before a connection is validated automatically. If the given number is greater than 0, the Hybernate connection pool c3p0 tests all idle connections pooled, but validates the connections for every number of seconds. The default value is 100. |
413 | cacheClearConfig | This property is used to configure the mode of cache clearing: API , EVENT , or NONE . This property is supported in both ZooKeeper and Store configurations. It sets the default cache clear configuration. The default value is {“product”:”event”,”merch”:”event”} . For example, in the ZooKeeper property, you can configure as follows:
|
Revision History
2024-12-25 | JP – Updated Release 8.17.7 properties.
2024-08-05 | SD – Updated ZK properties.
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 – Page added and updated content for Release 8.15.4.
2023-01-06 | JP – Page added and updated content for Release 8.13.0.