|
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
·
|
|
What is the best practice for saving a file in janusgraph?
I am developing my backend application in java using janusgraph database version 0.3.1 . I want to manage the saved files as properties for vertex in the graph.
1- Can I save images, xml files, text
I am developing my backend application in java using janusgraph database version 0.3.1 . I want to manage the saved files as properties for vertex in the graph.
1- Can I save images, xml files, text
|
By
Ali Aboud <ali.ab...@...>
·
#4147
·
|
|
Re: index not used for query
The index was created with these commands:
gremlin> vid = mgmt.getPropertyKey('id')
==>id
gremlin> mgmt.buildIndex('byId', Vertex.class).addKey(vid).buildCompositeIndex()
gremlin> mgmt.commit()
One
The index was created with these commands:
gremlin> vid = mgmt.getPropertyKey('id')
==>id
gremlin> mgmt.buildIndex('byId', Vertex.class).addKey(vid).buildCompositeIndex()
gremlin> mgmt.commit()
One
|
By
Anatoly Belikov <awbe...@...>
·
#4146
·
|
|
Re: index not used for query
Hi,
How was your index defined? You've shown that it exists and is enabled but not the creation. Specifically, did you create it with a label constraint? If so, your traversal is not including the
Hi,
How was your index defined? You've shown that it exists and is enabled but not the creation. Specifically, did you create it with a label constraint? If so, your traversal is not including the
|
By
Kevin Schmidt <ktsc...@...>
·
#4145
·
|
|
Re: How can Multiple Vertex-Centric Indexes Be Built for the Same Edge Label in JanusGraph
Hi, Jun
The methods buildEdgeIndex and buildRelationTypeIndex are
Hi, Jun
The methods buildEdgeIndex and buildRelationTypeIndex are
|
By
Jerry He <jerr...@...>
·
#4144
·
|
|
Re: Adding vertices with automatically generated IDs
All entities needs assigned id: edges, vertices, properties and same for schema entities too. But this pause occurred not so frequently for each 10 000 ids by default
You can trace pool size and
All entities needs assigned id: edges, vertices, properties and same for schema entities too. But this pause occurred not so frequently for each 10 000 ids by default
You can trace pool size and
|
By
Pavel Ershov <owner...@...>
·
#4143
·
|