|
Re: Bulk load into janus graph using python gremlin or hadoop spark
Hi Abhay,
I tried using SParkGraphComputer but not able to make it work. I followed https://docs.janusgraph.org/advanced-topics/hadoop/ for config changes. May be can you give me the gist of the code
Hi Abhay,
I tried using SParkGraphComputer but not able to make it work. I followed https://docs.janusgraph.org/advanced-topics/hadoop/ for config changes. May be can you give me the gist of the code
|
By
brahmasree battina <brahm...@...>
·
#4763
·
|
|
Re: Bulk load into janus graph using python gremlin or hadoop spark
Hi Brahma,
It seems you are using OLTP approach to load data.
You can explore OLAP that will use SparkGraphComputer to load data and also based upon your infrastructure you can scale accordingly.
I am
Hi Brahma,
It seems you are using OLTP approach to load data.
You can explore OLAP that will use SparkGraphComputer to load data and also based upon your infrastructure you can scale accordingly.
I am
|
By
Abhay Pandit <abha...@...>
·
#4762
·
|
|
Re: Question related to profile() method
The vertex-centric index is created like below.
gremlin > edgeLabel = mgmt.getEdgeLabel('link');
gremlin > assocKind= mgmt.getPropertyKey('assocKind')
gremlin > mgmt.buildEdgeIndex(edgeLabel,
The vertex-centric index is created like below.
gremlin > edgeLabel = mgmt.getEdgeLabel('link');
gremlin > assocKind= mgmt.getPropertyKey('assocKind')
gremlin > mgmt.buildEdgeIndex(edgeLabel,
|
By
Shiva Krishnan <shivain...@...>
·
#4761
·
|
|
Bulk load into janus graph using python gremlin or hadoop spark
Hello,
I am trying to bulk load data into janus graph with python using gremlins ql. I want to be able to insert about 50K vertexes per hour. currently I am using below technique to insert the
Hello,
I am trying to bulk load data into janus graph with python using gremlins ql. I want to be able to insert about 50K vertexes per hour. currently I am using below technique to insert the
|
By
brahm...@...
·
#4760
·
|
|
Re: CQL Pooling Options and its configuration in JanusGraph
any reason storage.cql.max-remote-connections-per-host, is fixed ?
any reason storage.cql.max-remote-connections-per-host, is fixed ?
|
By
Patrice Le Manach <plem...@...>
·
#4759
·
|
|
Re: Question related to profile() method
Please show how you created the vertex centric index. Also, did you check whether the index is actually enabled?
Am Dienstag, 5. Mai 2020 10:07:24 UTC+2 schrieb Shiva Krishnan:
Please show how you created the vertex centric index. Also, did you check whether the index is actually enabled?
Am Dienstag, 5. Mai 2020 10:07:24 UTC+2 schrieb Shiva Krishnan:
|
By
Florian Hockmann <f...@...>
·
#4758
·
|
|
Index corruption after reindexing vertex-centric indices with direction 'BOTH'
I have noticed a corruption in index after reindexing vertex-centric indices with direction 'BOTH'.
Issue : A self-link is getting added to every vertex after reindexing.
To demonstrate this, I have
I have noticed a corruption in index after reindexing vertex-centric indices with direction 'BOTH'.
Issue : A self-link is getting added to every vertex after reindexing.
To demonstrate this, I have
|
By
Shiva Krishnan <shivain...@...>
·
#4757
·
|
|
Re: Question related to profile() method
Thanks a lot for your quick reply @Florian.
It really worked well !!
Just one more question related to profiling.
I have a vertex-centric index which is created for the edge.
gremlin > edgeLabel =
Thanks a lot for your quick reply @Florian.
It really worked well !!
Just one more question related to profiling.
I have a vertex-centric index which is created for the edge.
gremlin > edgeLabel =
|
By
Shiva Krishnan <shivain...@...>
·
#4756
·
|
|
Re: Created index on edge label. "WARNING" Message observed when we query edges by label [ Query requires iterating over all vertices [(~label = xc)]. For better performance, use indexes ]
Hi,
Your query must include "type" also to use index. I.e. g1.E().hasLabel('xc').has('type', yourType)
Currently there is no possibility to index by label only. The related feature request issue is
Hi,
Your query must include "type" also to use index. I.e. g1.E().hasLabel('xc').has('type', yourType)
Currently there is no possibility to index by label only. The related feature request issue is
|
By
Oleksandr Porunov <alexand...@...>
·
#4755
·
|
|
Created index on edge label. "WARNING" Message observed when we query edges by label [ Query requires iterating over all vertices [(~label = xc)]. For better performance, use indexes ]
HI,
We have created Index on "xc" label and "ENABLED" the index by executing below gremlin commands.
=====================================================================
gremlin> mgmt =
HI,
We have created Index on "xc" label and "ENABLED" the index by executing below gremlin commands.
=====================================================================
gremlin> mgmt =
|
By
Tejasri pavuluri <tejas...@...>
·
#4754
·
|
|
Re: JanusGraph Memory Utilization
I am currently using JanusGraph version 0.5.0.
I am currently using JanusGraph version 0.5.0.
|
By
seanjo...@...
·
#4753
·
|
|
Re: How to get vertices with array of adjacent vertices using Spark
This was also asked on gremlin-users where it already got a response.
Am Donnerstag, 30. April 2020 23:11:53 UTC+2 schrieb Alex Kumundzhiev:
This was also asked on gremlin-users where it already got a response.
Am Donnerstag, 30. April 2020 23:11:53 UTC+2 schrieb Alex Kumundzhiev:
|
By
Florian Hockmann <f...@...>
·
#4752
·
|
|
Re: Question related to profile() method
profile() is a Gremlin step and can therefore only be used as part of a Gremlin traversal, but your second query is not a Gremlin traversal. It seems to be using the graph API directly which is an API
profile() is a Gremlin step and can therefore only be used as part of a Gremlin traversal, but your second query is not a Gremlin traversal. It seems to be using the graph API directly which is an API
|
By
Florian Hockmann <f...@...>
·
#4751
·
|
|
Question related to profile() method
Hi,
I have a small graph with 2 vertices(A & B) and 1 edge connecting them(A to B).
I have one global index and one vertex centric index(created for the edge from A to B).
When i run the below
Hi,
I have a small graph with 2 vertices(A & B) and 1 edge connecting them(A to B).
I have one global index and one vertex centric index(created for the edge from A to B).
When i run the below
|
By
Shiva Krishnan <shivain...@...>
·
#4750
·
|
|
How to get vertices with array of adjacent vertices using Spark
I need a query for Spark where I have vertex's property (id) and all adjacent vertices ids array
I'm trying with this:
g.V().has('TYPE',
I need a query for Spark where I have vertex's property (id) and all adjacent vertices ids array
I'm trying with this:
g.V().has('TYPE',
|
By
Alex Kumundzhiev <alex...@...>
·
#4749
·
|
|
Re: JanusGraph Memory Utilization
Hi,
What version of JanusGraph are you using?
Hi,
What version of JanusGraph are you using?
|
By
Oleksandr Porunov <alexand...@...>
·
#4748
·
|
|
Re: JanusGraph Full-Text search not support SET string?
Hi,
JanusGraph Full-Text search supports SET. The problem in your code is that you don't enable your indexes, you just create them. To use your indexes you should enable them. Check index life-cycle
Hi,
JanusGraph Full-Text search supports SET. The problem in your code is that you don't enable your indexes, you just create them. To use your indexes you should enable them. Check index life-cycle
|
By
Oleksandr Porunov <alexand...@...>
·
#4747
·
|
|
Re: Possible 0.5.0 bug. Graph B hits Graph A's Mixed Index because of INDEX_STORE_NAMES_CACHE.
I have opened an issue here: https://github.com/JanusGraph/janusgraph/issues/2102
I have opened a PR to fix the issue here: https://github.com/JanusGraph/janusgraph/pull/2103
I have opened an issue here: https://github.com/JanusGraph/janusgraph/issues/2102
I have opened a PR to fix the issue here: https://github.com/JanusGraph/janusgraph/pull/2103
|
By
Oleksandr Porunov <alexand...@...>
·
#4746
·
|
|
Re: Possible 0.5.0 bug. Graph B hits Graph A's Mixed Index because of INDEX_STORE_NAMES_CACHE.
Hi Patrick,
Thank you for this investigation! Yes, it is a bug which I made. I will check it later and will provide a fix in 0.5.2 release.
Hi Patrick,
Thank you for this investigation! Yes, it is a bug which I made. I will check it later and will provide a fix in 0.5.2 release.
|
By
Oleksandr Porunov <alexand...@...>
·
#4745
·
|
|
how to set storage.batch-loading
Hello,
How can i set the storage.batch-loading parameter? I'm running JG in kubernetes.
Thanks,
Haroon
Hello,
How can i set the storage.batch-loading parameter? I'm running JG in kubernetes.
Thanks,
Haroon
|
By
Haroon Qureshi <qure...@...>
·
#4744
·
|