javeme commented on code in PR #1653:
URL:
https://github.com/apache/incubator-hugegraph/pull/1653#discussion_r857310177
##########
hugegraph-cassandra/src/main/java/com/baidu/hugegraph/backend/store/cassandra/CassandraSessionPool.java:
##########
@@ -68,6 +68,11 @@ public synchronized void open() {
assert this.cluster == null || this.cluster.isClosed();
Builder builder = Cluster.builder()
.addContactPoints(hosts.split(","))
+ /*
+ * Here is incompatible, java11 glassfish
+ * metrics use version 4,but cassandra metrics
+ * use version 3.
+ */
Review Comment:
can move to line 69:
```
/*
* We disable cassandra metrics through withoutMetrics(), due to
* metrics versions are incompatible, java11 glassfish use metrics 4,
* but cassandra use metrics 3.
* TODO: fix it after after cassandra upgrade metrics version
*/
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]