|
Re: index not used for query
facing same issue while creating mixed index, can you share your elasticsearch configuration?
facing same issue while creating mixed index, can you share your elasticsearch configuration?
|
By
arnab kumar pan <arnab2...@...>
·
#4167
·
|
|
index are not use
all indexes are shown as enable but at the time og query is showing "use index for better performance", please help, inex backend- elasticsearch, db backend- cassandra
all indexes are shown as enable but at the time og query is showing "use index for better performance", please help, inex backend- elasticsearch, db backend- cassandra
|
By
arnab kumar pan <arnab2...@...>
·
#4166
·
|
|
Re: index not used for query
I figured out that indices not used only "withRemote" connection. Here is content of config files:
#
I figured out that indices not used only "withRemote" connection. Here is content of config files:
#
|
By
Anatoly Belikov <awbe...@...>
·
#4165
·
|
|
Re: Adding vertices with automatically generated IDs
I tried these 2 properties and found that consequence in-memory JanusGraph creation depends on the previous one.
The JanusGraph was created with options:
JanusGraphFactory.Builder builder =
I tried these 2 properties and found that consequence in-memory JanusGraph creation depends on the previous one.
The JanusGraph was created with options:
JanusGraphFactory.Builder builder =
|
By
Alexander Scherbatiy <stell...@...>
·
#4164
·
|
|
Exception in java11 while commit [ org.janusgraph.diskstorage.locking.PermanentLockingException: Permanent locking failure]
JanusGraph dev,
I am getting the below exception while management.commit(); using java11 works well in java8, using janusgraph version 0.4.0.
Any help on this is appreciated.
2019-09-23 05:06:37,707
JanusGraph dev,
I am getting the below exception while management.commit(); using java11 works well in java8, using janusgraph version 0.4.0.
Any help on this is appreciated.
2019-09-23 05:06:37,707
|
By
nixon.r...@...
·
#4161
·
|
|
Re: index not used for query
Hi Anatoly,
i tired below and looks like indexes are working fine
graph = JanusGraphFactory.open('conf/gremlin-server/janusgraph-cql-es-server.properties');
mgmt = graph.openManagement();
vid =
Hi Anatoly,
i tired below and looks like indexes are working fine
graph = JanusGraphFactory.open('conf/gremlin-server/janusgraph-cql-es-server.properties');
mgmt = graph.openManagement();
vid =
|
By
akhilesh singh <akhile...@...>
·
#4163
·
|
|
Re: Adding vertices with automatically generated IDs
can you try below 2 properties
ids.block-size=1000000000
ids.renew-percentage=0.3
--
Thanks
Akhilesh
can you try below 2 properties
ids.block-size=1000000000
ids.renew-percentage=0.3
--
Thanks
Akhilesh
|
By
akhilesh singh <akhile...@...>
·
#4162
·
|
|
Re: Janus not able to connect to cassandra
Found the issue. It was due to inclusion of netty-transport-native-epoll via another application dependency. It seems cassandra core driver 3.7.1 does not like if this library is present in the
Found the issue. It was due to inclusion of netty-transport-native-epoll via another application dependency. It seems cassandra core driver 3.7.1 does not like if this library is present in the
|
By
Bharat Dighe <bdi...@...>
·
#4160
·
|
|
Re: Transactions and uploading a lot of vertices
I have a graph that I need to upload which has about 1000 vertices and 3000 edges.
I tried to load it using commit after
a) each iteration
b) every 100th iteration
c) after all data uploading
It
I have a graph that I need to upload which has about 1000 vertices and 3000 edges.
I tried to load it using commit after
a) each iteration
b) every 100th iteration
c) after all data uploading
It
|
By
Alexander Scherbatiy <stell...@...>
·
#4159
·
|
|
Re: Janus not able to connect to cassandra
Not sure if that can cause your problem but you need to configure storage.cql.keyspace instead of storage.cassandra.keyspace if you're using CQL and the same applies to the consistency levels.
Am
Not sure if that can cause your problem but you need to configure storage.cql.keyspace instead of storage.cassandra.keyspace if you're using CQL and the same applies to the consistency levels.
Am
|
By
Florian Hockmann <f...@...>
·
#4158
·
|
|
Re: Janus not able to connect to cassandra
Didnt help.
Could this be a driver 3.7.1 compatibility issue with cassandra 3.11.3?
Thanks
Bharat
Didnt help.
Could this be a driver 3.7.1 compatibility issue with cassandra 3.11.3?
Thanks
Bharat
|
By
Bharat Dighe <bdi...@...>
·
#4156
·
|
|
Re: Transactions and uploading a lot of vertices
It depends on graph structure how many properties/edges
Good starting point do commit every 10k vertices. Addition info about bulk loading
It depends on graph structure how many properties/edges
Good starting point do commit every 10k vertices. Addition info about bulk loading
|
By
Pavel Ershov <owner...@...>
·
#4155
·
|
|
Re: Adding vertices with automatically generated IDs
I tried to use custom ids for created vertices setting graph.set-vertex-id option.
Now the most time is consumed by code that creates indices and calls ManagementSystem.getOrCreateVertexLabel() (it
I tried to use custom ids for created vertices setting graph.set-vertex-id option.
Now the most time is consumed by code that creates indices and calls ManagementSystem.getOrCreateVertexLabel() (it
|
By
Alexander Scherbatiy <stell...@...>
·
#4157
·
|
|
Re: Janus not able to connect to cassandra
Can you disable thrift on Cassandra and then try
Can you disable thrift on Cassandra and then try
|
By
akhilesh singh <akhile...@...>
·
#4154
·
|
|
Janus not able to connect to cassandra
I am using cql driver.
I am getting below while opening connection. The C* is running on the localhost and listening on port 9042.
Cassandra version is 3.11.3
Connection
I am using cql driver.
I am getting below while opening connection. The C* is running on the localhost and listening on port 9042.
Cassandra version is 3.11.3
Connection
|
By
Bharat Dighe <bdi...@...>
·
#4151
·
|
|
Transactions and uploading a lot of vertices
I am trying to upload several thousands vertices into JanusGraph for my testing.
Is there any performance benefits to commit the transaction after adding all vertices, after adding each vertex or may
I am trying to upload several thousands vertices into JanusGraph for my testing.
Is there any performance benefits to commit the transaction after adding all vertices, after adding each vertex or may
|
By
Alexander Scherbatiy <stell...@...>
·
#4153
·
|
|
JanusGraph Index Management
Index management can stuck when another graph instances exists but invalid. Try to check mgmt.getOpenInstances() and close invalid if exists throught mgmt.forceCloseInstance(). Some of issues already
Index management can stuck when another graph instances exists but invalid. Try to check mgmt.getOpenInstances() and close invalid if exists throught mgmt.forceCloseInstance(). Some of issues already
|
By
Pavel Ershov <owner...@...>
·
#4150
·
|
|
Re: index not used for query
Index still doesn't work somehow:
gremlin> g =
Index still doesn't work somehow:
gremlin> g =
|
By
Anatoly Belikov <awbe...@...>
·
#4149
·
|
|
Re: index not used for query
Hi Anatoly,
"id" is the internal key used by janusgraph to represent vertex id.
So I would suggest you to add a different key for your use case and build index on it it will work for sure .
Hope this
Hi Anatoly,
"id" is the internal key used by janusgraph to represent vertex id.
So I would suggest you to add a different key for your use case and build index on it it will work for sure .
Hope this
|
By
Abhay Pandit <abha...@...>
·
#4152
·
|
|
Backend Exception
I am using janusgraph version 0.3.1 with hbase and elasticsearch
The below error occurs when property size is bigger than 32767 (Short.MAX_LENGTH) this value is hard coded in
I am using janusgraph version 0.3.1 with hbase and elasticsearch
The below error occurs when property size is bigger than 32767 (Short.MAX_LENGTH) this value is hard coded in
|
By
Ali Aboud <ali.ab...@...>
·
#4148
·
|