简单_V2
简单_V2
你在想屁吃,救不了一点哈哈哈
[root@localhost conf]# cat rest-server.properties # bind url # could use '0.0.0.0' or specified (real)IP to expose external network access restserver.url=http://0.0.0.0:8080 #restserver.enable_graphspaces_filter=false # gremlin server url, need to be consistent with...
[root@localhost conf]# cat graphs/hugegraph.properties # gremlin entrance to create graph # auth config: org.apache.hugegraph.auth.HugeFactoryAuthProxy gremlin.graph=org.apache.hugegraph.HugeFactory # cache config #schema.cache_capacity=100000 # vertex-cache default is 1000w, 10min expired vertex.cache_type=l2 #vertex.cache_capacity=10000000 #vertex.cache_expire=600 #...
HStore(Raft+RocksDB),配置 raft.group_peers、raft.mode=true 麻烦这个能提供下详细参数吗
raft.group_peers=192.168.230.128:8091,192.168.230.129:8091,192.168.230.130:8091 这个参数写 rest-server.properties 这个里面吗,还是graphs/hugegraph.properties 这个里面。 已经部署了两周,docker。docker-compsoe,二进制都部署不出来集群,真难好难,麻烦指点下谢谢
我现在 rest-server.properties 配置里面这样写 rpc.server_host=192.168.230.128 rpc.server_port=8091 rpc.remote_url=192.168.230.128:8091,192.168.230.129:8091,192.168.230.130:8091 graphs/hugegraph.properties 配置这样写 rocksdb.data_path=./data rocksdb.wal_path=./wal backend=rocksdb serializer=binary store=hugegraph raft.mode=true raft.group_peers=192.168.230.128:8091,192.168.230.129:8091,192.168.230.130:8091 是否可行,能否组成集群
请问百亿边和点怎么设置jvm大小,在那个配置文件中设置参数怎么写,目前使用的是rocksdb存储,hugegraph1.5.0版本
rocksdb.write_buffer_size=128MB rocksdb.max_write_buffer_number=6 rocksdb.block_cache_size=8GB 设置以后报错 2025-06-07 19:37:19 [main] [ERROR] o.a.h.c.TypedOption - Invalid type of value '128MB' for option 'rocksdb.write_buffer_size' java.lang.reflect.InvocationTargetException: null at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:?] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]...
分部署存储使用rocksdb存储,详细部署教程可以提供一下吗
使用rocksdb作为后端存储启动集群后数据不同步配置信息如下 rest-server.properties配置下面信息 raft.group_peers=192.168.230.128:8091,192.168.230.129:8091,192.168.230.130:8091 graphs/hugegraph.properties配置信息如下 backend=rocksdb serializer=binary store=hugegraph rocksdb.data_path=./data rocksdb.wal_path=./wal raft.group_peers=192.168.230.128:8091,192.168.230.129:8091,192.168.230.130:8091 raft.election_timeout=10000 raft.rpc_connect_timeout=5000 raft.rpc_timeout=60 rocksdb.write_buffer_size=134217728 rocksdb.max_write_buffer_number=6 rocksdb.block_cache_size=8589934592 然后所有的节点bin/init-store.sh 初始化 然后start-hugegraph启动集群,在192.168.230.128:8080创建的顶边,在192.168.230.129:8080和192.168.230.130:8080节点无法查询 数据不同步应该怎么处理