|
19 | 19 | "description": "Whether to enable the PersistenceExceptionTranslationPostProcessor.",
|
20 | 20 | "defaultValue": true
|
21 | 21 | },
|
22 |
| - { |
23 |
| - "name": "spring.data.cassandra.compression", |
24 |
| - "defaultValue": "none", |
25 |
| - "deprecation": { |
26 |
| - "replacement": "spring.cassandra.compression", |
27 |
| - "level": "error" |
28 |
| - } |
29 |
| - }, |
30 |
| - { |
31 |
| - "name": "spring.data.cassandra.config", |
32 |
| - "type": "org.springframework.core.io.Resource", |
33 |
| - "deprecation": { |
34 |
| - "replacement": "spring.cassandra.config", |
35 |
| - "level": "error" |
36 |
| - } |
37 |
| - }, |
38 |
| - { |
39 |
| - "name": "spring.data.cassandra.connection.connect-timeout", |
40 |
| - "defaultValue": "5s", |
41 |
| - "deprecation": { |
42 |
| - "replacement": "spring.cassandra.connection.connect-timeout", |
43 |
| - "level": "error" |
44 |
| - } |
45 |
| - }, |
46 |
| - { |
47 |
| - "name": "spring.data.cassandra.connection.init-query-timeout", |
48 |
| - "defaultValue": "5s", |
49 |
| - "deprecation": { |
50 |
| - "replacement": "spring.cassandra.connection.init-query-timeout", |
51 |
| - "level": "error" |
52 |
| - } |
53 |
| - }, |
54 |
| - { |
55 |
| - "name": "spring.data.cassandra.contact-points", |
56 |
| - "defaultValue": [ |
57 |
| - "127.0.0.1:9042" |
58 |
| - ], |
59 |
| - "deprecation": { |
60 |
| - "replacement": "spring.cassandra.contact-points", |
61 |
| - "level": "error" |
62 |
| - } |
63 |
| - }, |
64 |
| - { |
65 |
| - "name": "spring.data.cassandra.controlconnection.timeout", |
66 |
| - "defaultValue": "5s", |
67 |
| - "deprecation": { |
68 |
| - "replacement": "spring.cassandra.controlconnection.timeout", |
69 |
| - "level": "error" |
70 |
| - } |
71 |
| - }, |
72 |
| - { |
73 |
| - "name": "spring.data.cassandra.jmx-enabled", |
74 |
| - "type": "java.lang.Boolean", |
75 |
| - "description": "Whether to enable JMX reporting. Default to false as Cassandra JMX reporting is not compatible with Dropwizard Metrics.", |
76 |
| - "deprecation": { |
77 |
| - "reason": "Cassandra no longer provides JMX metrics.", |
78 |
| - "level": "error" |
79 |
| - } |
80 |
| - }, |
81 |
| - { |
82 |
| - "name": "spring.data.cassandra.keyspace-name", |
83 |
| - "type": "java.lang.String", |
84 |
| - "deprecation": { |
85 |
| - "replacement": "spring.cassandra.keyspace-name", |
86 |
| - "level": "error" |
87 |
| - } |
88 |
| - }, |
89 |
| - { |
90 |
| - "name": "spring.data.cassandra.load-balancing-policy", |
91 |
| - "type": "java.lang.Class", |
92 |
| - "description": "Class name of the load balancing policy. The class must have a default constructor.", |
93 |
| - "deprecation": { |
94 |
| - "level": "error" |
95 |
| - } |
96 |
| - }, |
97 |
| - { |
98 |
| - "name": "spring.data.cassandra.local-datacenter", |
99 |
| - "type": "java.lang.String", |
100 |
| - "deprecation": { |
101 |
| - "replacement": "spring.cassandra.local-datacenter", |
102 |
| - "level": "error" |
103 |
| - } |
104 |
| - }, |
105 |
| - { |
106 |
| - "name": "spring.data.cassandra.password", |
107 |
| - "type": "java.lang.String", |
108 |
| - "deprecation": { |
109 |
| - "replacement": "spring.cassandra.password", |
110 |
| - "level": "error" |
111 |
| - } |
112 |
| - }, |
113 |
| - { |
114 |
| - "name": "spring.data.cassandra.pool.heartbeat-interval", |
115 |
| - "defaultValue": "30s", |
116 |
| - "deprecation": { |
117 |
| - "replacement": "spring.cassandra.pool.heartbeat-interval", |
118 |
| - "level": "error" |
119 |
| - } |
120 |
| - }, |
121 |
| - { |
122 |
| - "name": "spring.data.cassandra.pool.idle-timeout", |
123 |
| - "defaultValue": "5s", |
124 |
| - "deprecation": { |
125 |
| - "replacement": "spring.cassandra.pool.idle-timeout", |
126 |
| - "level": "error" |
127 |
| - } |
128 |
| - }, |
129 |
| - { |
130 |
| - "name": "spring.data.cassandra.pool.max-queue-size", |
131 |
| - "type": "java.lang.Integer", |
132 |
| - "deprecation": { |
133 |
| - "replacement": "spring.cassandra.request.throttler.max-queue-size", |
134 |
| - "level": "error" |
135 |
| - } |
136 |
| - }, |
137 |
| - { |
138 |
| - "name": "spring.data.cassandra.pool.pool-timeout", |
139 |
| - "type": "java.time.Duration", |
140 |
| - "description": "Pool timeout when trying to acquire a connection from a host's pool.", |
141 |
| - "deprecation": { |
142 |
| - "reason": "No longer available.", |
143 |
| - "level": "error" |
144 |
| - } |
145 |
| - }, |
146 |
| - { |
147 |
| - "name": "spring.data.cassandra.port", |
148 |
| - "type": "java.lang.Integer", |
149 |
| - "deprecation": { |
150 |
| - "replacement": "spring.cassandra.port", |
151 |
| - "level": "error" |
152 |
| - } |
153 |
| - }, |
154 |
| - { |
155 |
| - "name": "spring.data.cassandra.reconnection-policy", |
156 |
| - "type": "java.lang.Class", |
157 |
| - "description": "Class name of the reconnection policy. The class must have a default constructor.", |
158 |
| - "deprecation": { |
159 |
| - "level": "error" |
160 |
| - } |
161 |
| - }, |
162 |
| - { |
163 |
| - "name": "spring.data.cassandra.repositories.type", |
164 |
| - "type": "org.springframework.boot.autoconfigure.data.RepositoryType", |
165 |
| - "description": "Type of Cassandra repositories to enable.", |
166 |
| - "defaultValue": "auto" |
167 |
| - }, |
168 |
| - { |
169 |
| - "name": "spring.data.cassandra.request.consistency", |
170 |
| - "type": "com.datastax.oss.driver.api.core.DefaultConsistencyLevel", |
171 |
| - "deprecation": { |
172 |
| - "replacement": "spring.cassandra.request.consistency", |
173 |
| - "level": "error" |
174 |
| - } |
175 |
| - }, |
176 |
| - { |
177 |
| - "name": "spring.data.cassandra.request.page-size", |
178 |
| - "defaultValue": 5000, |
179 |
| - "deprecation": { |
180 |
| - "replacement": "spring.cassandra.request.page-size", |
181 |
| - "level": "error" |
182 |
| - } |
183 |
| - }, |
184 |
| - { |
185 |
| - "name": "spring.data.cassandra.request.serial-consistency", |
186 |
| - "type": "com.datastax.oss.driver.api.core.DefaultConsistencyLevel", |
187 |
| - "deprecation": { |
188 |
| - "replacement": "spring.cassandra.request.serial-consistency", |
189 |
| - "level": "error" |
190 |
| - } |
191 |
| - }, |
192 |
| - { |
193 |
| - "name": "spring.data.cassandra.request.throttler.drain-interval", |
194 |
| - "type": "java.time.Duration", |
195 |
| - "deprecation": { |
196 |
| - "replacement": "spring.cassandra.request.throttler.drain-interval", |
197 |
| - "level": "error" |
198 |
| - } |
199 |
| - }, |
200 |
| - { |
201 |
| - "name": "spring.data.cassandra.request.throttler.max-concurrent-requests", |
202 |
| - "type": "java.lang.Integer", |
203 |
| - "deprecation": { |
204 |
| - "replacement": "spring.cassandra.request.throttler.max-concurrent-requests", |
205 |
| - "level": "error" |
206 |
| - } |
207 |
| - }, |
208 |
| - { |
209 |
| - "name": "spring.data.cassandra.request.throttler.max-queue-size", |
210 |
| - "type": "java.lang.Integer", |
211 |
| - "deprecation": { |
212 |
| - "replacement": "spring.cassandra.request.throttler.max-queue-size", |
213 |
| - "level": "error" |
214 |
| - } |
215 |
| - }, |
216 |
| - { |
217 |
| - "name": "spring.data.cassandra.request.throttler.max-requests-per-second", |
218 |
| - "type": "java.lang.Integer", |
219 |
| - "deprecation": { |
220 |
| - "replacement": "spring.cassandra.request.throttler.max-requests-per-second", |
221 |
| - "level": "error" |
222 |
| - } |
223 |
| - }, |
224 |
| - { |
225 |
| - "name": "spring.data.cassandra.request.throttler.type", |
226 |
| - "defaultValue": "none", |
227 |
| - "deprecation": { |
228 |
| - "replacement": "spring.cassandra.request.throttler.type", |
229 |
| - "level": "error" |
230 |
| - } |
231 |
| - }, |
232 |
| - { |
233 |
| - "name": "spring.data.cassandra.request.timeout", |
234 |
| - "defaultValue": "2s", |
235 |
| - "deprecation": { |
236 |
| - "replacement": "spring.cassandra.request.timeout", |
237 |
| - "level": "error" |
238 |
| - } |
239 |
| - }, |
240 |
| - { |
241 |
| - "name": "spring.data.cassandra.retry-policy", |
242 |
| - "type": "java.lang.Class", |
243 |
| - "description": "Class name of the retry policy. The class must have a default constructor.", |
244 |
| - "deprecation": { |
245 |
| - "level": "error" |
246 |
| - } |
247 |
| - }, |
248 |
| - { |
249 |
| - "name": "spring.data.cassandra.schema-action", |
250 |
| - "type": "java.lang.String", |
251 |
| - "deprecation": { |
252 |
| - "replacement": "spring.cassandra.schema-action", |
253 |
| - "level": "error" |
254 |
| - } |
255 |
| - }, |
256 |
| - { |
257 |
| - "name": "spring.data.cassandra.session-name", |
258 |
| - "type": "java.lang.String", |
259 |
| - "deprecation": { |
260 |
| - "replacement": "spring.cassandra.session-name", |
261 |
| - "level": "error" |
262 |
| - } |
263 |
| - }, |
264 |
| - { |
265 |
| - "name": "spring.data.cassandra.ssl", |
266 |
| - "type": "java.lang.Boolean", |
267 |
| - "deprecation": { |
268 |
| - "replacement": "spring.cassandra.ssl.enabled", |
269 |
| - "level": "error" |
270 |
| - } |
271 |
| - }, |
272 |
| - { |
273 |
| - "name": "spring.data.cassandra.username", |
274 |
| - "type": "java.lang.String", |
275 |
| - "deprecation": { |
276 |
| - "replacement": "spring.cassandra.username", |
277 |
| - "level": "error" |
278 |
| - } |
279 |
| - }, |
280 | 22 | {
|
281 | 23 | "name": "spring.data.couchbase.consistency",
|
282 | 24 | "type": "org.springframework.data.couchbase.core.query.Consistency",
|
|
0 commit comments