Skip to content

Commit 739bd9d

Browse files
authored
Change QueryCacheStats field types from int -> long (#2513)
1 parent 07e6742 commit 739bd9d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

specification/_types/Stats.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -194,19 +194,19 @@ export class QueryCacheStats {
194194
* Total number of entries added to the query cache across all shards assigned to selected nodes.
195195
* This number includes current and evicted entries.
196196
*/
197-
cache_count: integer
197+
cache_count: long
198198
/**
199199
* Total number of entries currently in the query cache across all shards assigned to selected nodes.
200200
*/
201-
cache_size: integer
201+
cache_size: long
202202
/**
203203
* Total number of query cache evictions across all shards assigned to selected nodes.
204204
*/
205-
evictions: integer
205+
evictions: long
206206
/**
207207
* Total count of query cache hits across all shards assigned to selected nodes.
208208
*/
209-
hit_count: integer
209+
hit_count: long
210210
/**
211211
* Total amount of memory used for the query cache across all shards assigned to selected nodes.
212212
*/
@@ -218,11 +218,11 @@ export class QueryCacheStats {
218218
/**
219219
* Total count of query cache misses across all shards assigned to selected nodes.
220220
*/
221-
miss_count: integer
221+
miss_count: long
222222
/**
223223
* Total count of hits and misses in the query cache across all shards assigned to selected nodes.
224224
*/
225-
total_count: integer
225+
total_count: long
226226
}
227227

228228
export class RecoveryStats {

0 commit comments

Comments
 (0)