|
Re: Terminal initialization failed ... Found class jline.Terminal, but interface was expected
What OS, terminal are you using? Are there other versions of jline in the classpath?
You can try setting `-Djline.terminal=none`
e.g. `export JAVA_OPTIONS="-Djline.terminal=none" ;
What OS, terminal are you using? Are there other versions of jline in the classpath?
You can try setting `-Djline.terminal=none`
e.g. `export JAVA_OPTIONS="-Djline.terminal=none" ;
|
By
Robert Dale <rob...@...>
·
#698
·
|
|
Terminal initialization failed ... Found class jline.Terminal, but interface was expected
Hi folks,
I keep running into this problem. I don't know how I got around it the last time but it has cropped up again. Any ideas?
bin/gremlin.sh
\,,,/
(o
Hi folks,
I keep running into this problem. I don't know how I got around it the last time but it has cropped up again. Any ideas?
bin/gremlin.sh
\,,,/
(o
|
By
Rohit Jain <rohit.j...@...>
·
#694
·
|
|
Backup and restore when using Janus via Gremlin server and a Berkley DB backend
Is backup as simple as copying the storage.directory path and all of its files? And is a restore replacing that directory with a previously copied backup?
Or better yet, how should I handle backups
Is backup as simple as copying the storage.directory path and all of its files? And is a restore replacing that directory with a previously copied backup?
Or better yet, how should I handle backups
|
By
emeh...@...
·
#693
·
|
|
Re: Getting TemporaryLockingException: No lock columns found for KeyColumn for mgmt.commit()
Did you drop the keyspace before retrying with the corrected properties file?
If not, you might be picking up the old values which were stored in the graph because both have GLOBAL_OFFLINE mutability.
Did you drop the keyspace before retrying with the corrected properties file?
If not, you might be picking up the old values which were stored in the graph because both have GLOBAL_OFFLINE mutability.
|
By
Jason Plurad <plu...@...>
·
#692
·
|
|
Re: Getting TemporaryLockingException: No lock columns found for KeyColumn for mgmt.commit()
Hi Jason,
Thank You..I have changed the values as you said..still getting same exception..
cassandra keyspace:
CREATE KEYSPACE keyspaceName WITH replication = {'class': 'NetworkTopologyStrategy',
Hi Jason,
Thank You..I have changed the values as you said..still getting same exception..
cassandra keyspace:
CREATE KEYSPACE keyspaceName WITH replication = {'class': 'NetworkTopologyStrategy',
|
By
padmasr...@...
·
#691
·
|
|
Re: com.datastax.driver.core.exceptions.BusyPoolException with CQL backend
To be honest, I'm not sure how the backend handles open iterators and other open resources. `next()` and `hasNext()` may not necessarily know that nothing follows and should clean itself up. I'm not
To be honest, I'm not sure how the backend handles open iterators and other open resources. `next()` and `hasNext()` may not necessarily know that nothing follows and should clean itself up. I'm not
|
By
Robert Dale <rob...@...>
·
#690
·
|
|
Re: Getting TemporaryLockingException: No lock columns found for KeyColumn for mgmt.commit()
Your values for storage.lock.expiry-time and storage.lock.wait-time seem to be reversed.
The storage lock docs say the default values for storage.lock.expiry-time is 300000 ms and
Your values for storage.lock.expiry-time and storage.lock.wait-time seem to be reversed.
The storage lock docs say the default values for storage.lock.expiry-time is 300000 ms and
|
By
Jason Plurad <plu...@...>
·
#688
·
|
|
Getting TemporaryLockingException: No lock columns found for KeyColumn for mgmt.commit()
Using janusgraph-0.1.0-hadoop2 with backend cassandra-3.0.14:
This is the configuration
Using janusgraph-0.1.0-hadoop2 with backend cassandra-3.0.14:
This is the configuration
|
By
padmasr...@...
·
#687
·
|
|
Re: Where are my edges?
I did comm at the end:
graph.tx().commit()
graph.close
I did comm at the end:
graph.tx().commit()
graph.close
|
By
Yair Ogen <yair...@...>
·
#689
·
|
|
Re: Where are my edges?
All graph mutations are realized within a (hidden) transaction. You have to commit() the transaction before the changes are visible to other clients. So, look for .commit methods in the gremlin-scala
All graph mutations are realized within a (hidden) transaction. You have to commit() the transaction before the changes are visible to other clients. So, look for .commit methods in the gremlin-scala
|
By
HadoopMarc <marc.d...@...>
·
#686
·
|
|
Where are my edges?
I am using gremlin-scala.
I connect to remote janus server that forked cassandra using:
val conf = new BaseConfiguration()
conf.setProperty("storage.backend",
I am using gremlin-scala.
I connect to remote janus server that forked cassandra using:
val conf = new BaseConfiguration()
conf.setProperty("storage.backend",
|
By
yair...@...
·
#685
·
|
|
Re: Scala client
Hi ...
The gremlin-scala client looks great and uses scala 2_12, indeed. Apart from using gremlin-scala you can import the tinkerpop java libs directly from scala, but this will give you an occasional
Hi ...
The gremlin-scala client looks great and uses scala 2_12, indeed. Apart from using gremlin-scala you can import the tinkerpop java libs directly from scala, but this will give you an occasional
|
By
HadoopMarc <bi...@...>
·
#682
·
|
|
Re: com.datastax.driver.core.exceptions.BusyPoolException with CQL backend
A single thread is doing all CRUD operations, it commits after roughly every 10,000 element touches. Could the number of deltas in the transaction be too large?
A single thread is doing all CRUD operations, it commits after roughly every 10,000 element touches. Could the number of deltas in the transaction be too large?
|
By
Scott P <scott_p...@...>
·
#681
·
|
|
Re: com.datastax.driver.core.exceptions.BusyPoolException with CQL backend
I think I am iterating all the results but I'm not certain. I looked through my traversal code and categorized it into one of these three.
a) Most of my traversals end with toList() or iterate(), such
I think I am iterating all the results but I'm not certain. I looked through my traversal code and categorized it into one of these three.
a) Most of my traversals end with toList() or iterate(), such
|
By
Scott P <scott_p...@...>
·
#680
·
|
|
Re: com.datastax.driver.core.exceptions.BusyPoolException with CQL backend
Are you iterating your results all the way out?
Robert Dale
Are you iterating your results all the way out?
Robert Dale
|
By
Robert Dale <rob...@...>
·
#683
·
|
|
Re: com.datastax.driver.core.exceptions.BusyPoolException with CQL backend
Looks like you can set a batch size, and the default is 20. Let us know if it helps.
storage.cql.batch-statement-size=20
Related reading on the Cassandra Java Driver FAQ.
Looks like you can set a batch size, and the default is 20. Let us know if it helps.
storage.cql.batch-statement-size=20
Related reading on the Cassandra Java Driver FAQ.
|
By
Jason Plurad <plu...@...>
·
#676
·
|
|
com.datastax.driver.core.exceptions.BusyPoolException with CQL backend
I'm trying out the new storage.backend=CQL with cassandra from the master branch (0.2.0) and I'm consistently hitting this error after a few hours of CRUD operations, which could previously be handled
I'm trying out the new storage.backend=CQL with cassandra from the master branch (0.2.0) and I'm consistently hitting this error after a few hours of CRUD operations, which could previously be handled
|
By
scott_p...@...
·
#675
·
|
|
Re: extras that provide business value
Re: visualization: you can use Gephi or Cytoscape (both open source). In addition, several commercial graph visualization vendors are working on integrations with JanusGraph that will be announced in
Re: visualization: you can use Gephi or Cytoscape (both open source). In addition, several commercial graph visualization vendors are working on integrations with JanusGraph that will be announced in
|
By
Misha Brukman <mbru...@...>
·
#679
·
|
|
Re: extras that provide business value
Not speaking for the roadmap...
1. Usually it takes a trivial amount of groovy to parse csv and add the nodes
2. You can point this at a Gremlin server: https://github.com/bricaud/graphexp
Robert
Not speaking for the roadmap...
1. Usually it takes a trivial amount of groovy to parse csv and add the nodes
2. You can point this at a Gremlin server: https://github.com/bricaud/graphexp
Robert
|
By
Robert Dale <rob...@...>
·
#678
·
|
|
Re: filtering a path
I don't know how to write Scala code, so you'll always have to convert my code snippets from Java to Scala ;).
Again, the snippet assumes, that all vertices on a certain path have a num value greater
I don't know how to write Scala code, so you'll always have to convert my code snippets from Java to Scala ;).
Again, the snippet assumes, that all vertices on a certain path have a num value greater
|
By
Daniel Kuppitz <me@...>
·
#674
·
|