Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable node level metrics #621

Merged
merged 54 commits into from
Nov 15, 2023
Merged
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
ad94017
Query Executor interface for CQL
kathirsvn Oct 23, 2023
54ee2ec
[Native Protocol] Create and delete collection command changes (#581)
maheshrajamani Oct 24, 2023
02055dd
Cache changes (#582)
kathirsvn Oct 24, 2023
f74b0e8
[Native Protocol]Changes for InsertOperation (#586)
maheshrajamani Oct 24, 2023
40bc367
[Native Protocol] Read and count operation (#589)
maheshrajamani Oct 24, 2023
3a858f5
ReadAndUpdateOperation changes for native driver (#588)
kathirsvn Oct 24, 2023
136fa76
Fix for empty filter
maheshrajamani Oct 24, 2023
67ccba4
Changes for delete command
maheshrajamani Oct 25, 2023
f9836a9
Changes for keyspace commands
maheshrajamani Oct 25, 2023
44a19c7
CQL Session changes
kathirsvn Oct 25, 2023
849e55c
Fix for filter clauses
maheshrajamani Oct 25, 2023
d5bc2a0
Merge branch 'native_cql_changes' of https://github.com/stargate/json…
maheshrajamani Oct 25, 2023
4c49fa8
Logging added
kathirsvn Oct 25, 2023
83694ad
Fixed code for boolean sort
maheshrajamani Oct 25, 2023
82a6c2d
Merge branch 'native_cql_changes' of https://github.com/stargate/json…
maheshrajamani Oct 25, 2023
bea0649
CQL session fix
kathirsvn Oct 25, 2023
2f46109
Merge branch 'native_cql_changes' of github.com:stargate/jsonapi into…
kathirsvn Oct 25, 2023
0832de8
CQL session fix
kathirsvn Oct 25, 2023
a1abb8a
Set default value to null so no need to serialize the key
maheshrajamani Oct 25, 2023
d39c199
Merge branch 'native_cql_changes' of https://github.com/stargate/json…
maheshrajamani Oct 25, 2023
94d98f6
CQL session cache key fix
kathirsvn Oct 26, 2023
0575802
Merge branch 'native_cql_changes' of github.com:stargate/jsonapi into…
kathirsvn Oct 26, 2023
92e0e85
CQL session cache key fix
kathirsvn Oct 26, 2023
b874e52
IT bug fixes
maheshrajamani Oct 27, 2023
983420c
Avoid creating bridge Values
maheshrajamani Oct 27, 2023
70944a2
Moved cache configurations to quarkus properties
kathirsvn Oct 30, 2023
bdbe639
CqlSessionCache key changes
kathirsvn Oct 30, 2023
d806343
Merge branch 'native_cql_changes' of github.com:stargate/jsonapi into…
kathirsvn Oct 30, 2023
e6090b5
CQL session cache eviction listener added
kathirsvn Oct 30, 2023
873193c
getSessionCacheKey method improvement
kathirsvn Oct 30, 2023
a7c8763
CQL session config file based driver changes and metrics changes
kathirsvn Oct 30, 2023
4d0ee75
Fix running it (#601)
maheshrajamani Oct 30, 2023
d640c0a
Changes to use token as cache key for OSS cassandra when present in t…
kathirsvn Oct 30, 2023
d1ab1cd
Metrics changes
kathirsvn Oct 31, 2023
6f44428
Fixed Auth token changes for IT
kathirsvn Oct 31, 2023
90ffc3f
Fixed driver metrics conf
kathirsvn Nov 1, 2023
9dda913
Added histogram metrics
maheshrajamani Nov 1, 2023
873e04f
Removed run on subscription
maheshrajamani Nov 1, 2023
57d465a
Added http request histogram
maheshrajamani Nov 1, 2023
13d83a7
JAVA_OPTIONS change
kathirsvn Nov 1, 2023
77f47af
cql branch, Error mapping, IT fix (#610)
Yuqi-Du Nov 1, 2023
89d8024
JAVA_OPTIONS change reverted
kathirsvn Nov 1, 2023
b87a21f
Merge branch 'native_cql_changes' of github.com:stargate/jsonapi into…
kathirsvn Nov 1, 2023
470bf43
Session metrics id generator changes
kathirsvn Nov 2, 2023
898042b
Fixed the unit test for metrics to ignore histogram metrics
maheshrajamani Nov 3, 2023
ad7260e
Merge branch 'native_cql_changes' of https://github.com/stargate/json…
maheshrajamani Nov 3, 2023
54f9c34
Merge changes from `main` to `native_cql_changes` (#615)
tatu-at-datastax Nov 3, 2023
44ad4c5
Merge branch 'main' into native_cql_changes (resolve conflicts)
tatu-at-datastax Nov 3, 2023
6f073d4
restore DeleteOneCommandResolverTest.java
Yuqi-Du Nov 3, 2023
7c66e93
merge main to native_cql_branch (#616)
Yuqi-Du Nov 6, 2023
69f16c3
Fix #617: increase Java driver local connection pool size to 8
tatu-at-datastax Nov 6, 2023
43f4af3
Merge branch 'main' into native_cql_changes
tatu-at-datastax Nov 7, 2023
7cb8321
Expose driver node metrics
amorton Nov 7, 2023
b15cf8f
Merge branch 'main' into ajm-node-metrics
jeffreyscarpenter Nov 15, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ datastax-java-driver {
refresh-interval = 30 seconds
}
}
node {
enabled = [pool.open-connections, pool.available-streams, pool.in-flight, cql-messages, errors.request.unsent, errors.request.write-timeouts, errors.request.read-timeouts, errors.request.unavailables, retries.total, speculative-executions]
}
}
basic.request.timeout = 10 seconds
profiles {
Expand Down