|
Concurrent TimeoutException on connection to gremlin server remotely
Hi,
I have a Gremlin Server Running v3.3.3
I am connecting to it remotely to run my gremlin queries via Java. But recently I'm bombarded with this
Hi,
I have a Gremlin Server Running v3.3.3
I am connecting to it remotely to run my gremlin queries via Java. But recently I'm bombarded with this
|
By
sarthak...@...
·
#4215
·
|
|
Option storage.transactions does not work
Hello,
For my tests, I want to use embedded janusGraph with inmemory storage but without transaction supports. I found the option storage.transactions in
Hello,
For my tests, I want to use embedded janusGraph with inmemory storage but without transaction supports. I found the option storage.transactions in
|
By
nicolas...@...
·
#4214
·
|
|
Janusgraph Hadoop Spark standalone cluster - Janusgraph job always creates constant number 513 of Spark tasks
Hello,
I have setup Janusgraph 0.4.0 with Hadoop 2.9.0 and Spark 2.4.4 in a K8s cluster.
I connect to Janusgraph from gremlin console and execute:
It takes 25min to do the count! The same time took
Hello,
I have setup Janusgraph 0.4.0 with Hadoop 2.9.0 and Spark 2.4.4 in a K8s cluster.
I connect to Janusgraph from gremlin console and execute:
It takes 25min to do the count! The same time took
|
By
dimitar....@...
·
#4213
·
|
|
janusgraph 0.5.0 release date
We are using Elastic Search 7.3.2 as index backend. Janusgraph latest version 0.4.0 doesn't support this version but 0.5.0 supports. When is the release date for 0.5.0? If it is far, any workaround
We are using Elastic Search 7.3.2 as index backend. Janusgraph latest version 0.4.0 doesn't support this version but 0.5.0 supports. When is the release date for 0.5.0? If it is far, any workaround
|
By
Baskar Vangili <vanb...@...>
·
#4212
·
|
|
Upgraded Janus Version to 0.4 and tinkerpop gremlin-server/console version to 3.4.1
I have upgraded janus version to 0.4.0 and tinker pop version to 3.4.1.
Index Backend ES version: 7.3.2
Cassandra Version: 3.3.0
After the upgrade, I am getting this error. Any idea what's happening
I have upgraded janus version to 0.4.0 and tinker pop version to 3.4.1.
Index Backend ES version: 7.3.2
Cassandra Version: 3.3.0
After the upgrade, I am getting this error. Any idea what's happening
|
By
Baskar Vangili <vanb...@...>
·
#4211
·
|
|
Re: [QUESTION] Usage of the cassandraembedded
- Did you increase the block-size? It should large than number of vertices you want insert in the bulk load.
(ids.block-size * ids.renew-percentage should be large than the vertices to insert
- Did you increase the block-size? It should large than number of vertices you want insert in the bulk load.
(ids.block-size * ids.renew-percentage should be large than the vertices to insert
|
By
faro...@...
·
#4210
·
|
|
Re: Compatiblity with Spark 2.3
Hi,
Currently, I am getting this error:
java.lang.ClassCastException: org.apache.hadoop.yarn.proto.YarnServiceProtos$GetNewApplicationRequestProto cannot be cast to
Hi,
Currently, I am getting this error:
java.lang.ClassCastException: org.apache.hadoop.yarn.proto.YarnServiceProtos$GetNewApplicationRequestProto cannot be cast to
|
By
Juraj Polačok <polaco...@...>
·
#4208
·
|
|
Re: olap connection with spark standalone cluster
Hi Abhay,
It seems to work fine now unless I am overseeing something. Why do you think it should not?
It also worked beforehand on using the spark.master=local setting.
Thanks,
Lilly
Am Mittwoch,
Hi Abhay,
It seems to work fine now unless I am overseeing something. Why do you think it should not?
It also worked beforehand on using the spark.master=local setting.
Thanks,
Lilly
Am Mittwoch,
|
By
Lilly <lfie...@...>
·
#4207
·
|
|
Re: olap connection with spark standalone cluster
Hi Marc,
Great this dependency plugin is precisely what I needed!! I tried to manually figure this out via maven central but one goes crazy that way!
It now works perfect thanks so much!
Lilly
Am
Hi Marc,
Great this dependency plugin is precisely what I needed!! I tried to manually figure this out via maven central but one goes crazy that way!
It now works perfect thanks so much!
Lilly
Am
|
By
Lilly <lfie...@...>
·
#4206
·
|
|
Re: olap connection with spark standalone cluster
Hi Lilly,
SparkGraphComputer will not support direct gremlin queries using Java programs.
You can try using this as below.
String query = "g.V().count()";
ComputerResult result =
Hi Lilly,
SparkGraphComputer will not support direct gremlin queries using Java programs.
You can try using this as below.
String query = "g.V().count()";
ComputerResult result =
|
By
Abhay Pandit <abha...@...>
·
#4209
·
|
|
Issue creating vertex with a List property having large number of elements
There is a small change in last line of the python code.
Updated code
from gremlin_python.driver import client
client = client.Client('ws://localhost:8182/gremlin', 'g')
mgmtScript = "mgmt =
There is a small change in last line of the python code.
Updated code
from gremlin_python.driver import client
client = client.Client('ws://localhost:8182/gremlin', 'g')
mgmtScript = "mgmt =
|
By
Aswin Karthik P <zas...@...>
·
#4205
·
|
|
Issue creating vertex with a List property having large number of elements
Hi,For a use case, I'm trying to create a vertex with some list properties which contains large number of elements using gremlin-python.
But the server gets crashed and I'm getting
Hi,For a use case, I'm trying to create a vertex with some list properties which contains large number of elements using gremlin-python.
But the server gets crashed and I'm getting
|
By
Aswin Karthik P <zas...@...>
·
#4204
·
|
|
Re: olap connection with spark standalone cluster
Hi Lilly,
This error says that are somehow two versions of the TinkerPop jars in your project. If you use maven you check this with the dependency plugin.
If other problems appear, also be sure that
Hi Lilly,
This error says that are somehow two versions of the TinkerPop jars in your project. If you use maven you check this with the dependency plugin.
If other problems appear, also be sure that
|
By
marc.d...@...
·
#4203
·
|
|
How roll back works in janus graph, will it roll back the storage write in one transaction
Hi, for below sample code. storage backend is Hbase, "name" is used as index, it will at least has two rows update: but what if index update succeed while vertex update failed(throw exception).
Hi, for below sample code. storage backend is Hbase, "name" is used as index, it will at least has two rows update: but what if index update succeed while vertex update failed(throw exception).
|
By
Lighter <yangch...@...>
·
#4202
·
|
|
olap connection with spark standalone cluster
Hi everyone,
I downloaded a fresh spark binary relaese (spark-2.4.0-hadoop2.7) and set the master to spark://127.0.0.1:7077. I then started all services via $SPARK_HOME/sbin/start-all.sh.
I checked
Hi everyone,
I downloaded a fresh spark binary relaese (spark-2.4.0-hadoop2.7) and set the master to spark://127.0.0.1:7077. I then started all services via $SPARK_HOME/sbin/start-all.sh.
I checked
|
By
Lilly <lfie...@...>
·
#4201
·
|
|
New committer: Dmitry Kovalev
On behalf of the JanusGraph Technical Steering Committee (TSC), I'm pleased to welcome a new committer on the project!
Dmitry Kovalev made a major contribution with the production-ready in-memory
On behalf of the JanusGraph Technical Steering Committee (TSC), I'm pleased to welcome a new committer on the project!
Dmitry Kovalev made a major contribution with the production-ready in-memory
|
By
"Florian Hockmann" <f...@...>
·
#4200
·
|
|
Re: [QUESTION] Usage of the cassandraembedded
I now experimented with many types of settings now for the cql connection and timed how long it took.
My observation is the following:
-Embedded with bulk loading took 16 min
- CQL without bulk
I now experimented with many types of settings now for the cql connection and timed how long it took.
My observation is the following:
-Embedded with bulk loading took 16 min
- CQL without bulk
|
By
Lilly <lfie...@...>
·
#4199
·
|
|
Re: index not used for query
index.search.backend=elasticsearch
index.search.hostname=127.0.0.1
index.search.elasticsearch.client-only=true
Do you think it is due to elastic search?
index.search.backend=elasticsearch
index.search.hostname=127.0.0.1
index.search.elasticsearch.client-only=true
Do you think it is due to elastic search?
|
By
Anatoly Belikov <awbe...@...>
·
#4198
·
|
|
Re: [QUESTION] Usage of the cassandraembedded
For "violation of unique key" it could be the case that cql checks id's to be unique (JanusGraph could run out of id's in the batch loading mode) but i'm not sure what the embedded backend is
For "violation of unique key" it could be the case that cql checks id's to be unique (JanusGraph could run out of id's in the batch loading mode) but i'm not sure what the embedded backend is
|
By
faro...@...
·
#4197
·
|
|
Re: [QUESTION] Usage of the cassandraembedded
Your block-size should be large in this example, see Id Creation: https://www.experoinc.com/post/janusgraph-nuts-and-bolts-part-1-write-performance
Am Dienstag, 8. Oktober 2019 09:05:56 UTC+2 schrieb
Your block-size should be large in this example, see Id Creation: https://www.experoinc.com/post/janusgraph-nuts-and-bolts-part-1-write-performance
Am Dienstag, 8. Oktober 2019 09:05:56 UTC+2 schrieb
|
By
faro...@...
·
#4196
·
|