|
Limitation of vertex property
Hi guys,
Is there a default limitation of vertex property? Does it depend on the property type if so? Currently it's failed when try to insert a 60k text to a property with type String.
Also,
Hi guys,
Is there a default limitation of vertex property? Does it depend on the property type if so? Currently it's failed when try to insert a 60k text to a property with type String.
Also,
|
By
Eddie J <fars...@...>
·
#3762
·
|
|
Re: Error during serialization: Cannot get namespace of root
I am getting the same error
When I am using python client.
gremlin_client = client.Client('ws://localhost:8182/gremlin',
I am getting the same error
When I am using python client.
gremlin_client = client.Client('ws://localhost:8182/gremlin',
|
By
mandarba...@...
·
#3761
·
|
|
Re: How to use DSL in javascript? Like this: g.V().user(789).knows(15)
Please don't post the same question in two different groups. gremlin-users is actually the better place here as the question is not specific to JanusGraph:
Please don't post the same question in two different groups. gremlin-users is actually the better place here as the question is not specific to JanusGraph:
|
By
Florian Hockmann <f...@...>
·
#3760
·
|
|
How to use DSL in javascript? Like this: g.V().user(789).knows(15)
How can I create Domain Specific functions in javascript? Like this:
g.V().user(789).knows(15)
Thank you.
How can I create Domain Specific functions in javascript? Like this:
g.V().user(789).knows(15)
Thank you.
|
By
Augusto Will <pw...@...>
·
#3758
·
|
|
Re: Best practices to add a lot of Vertex and Edges
This is expected, and I'm pretty sure I mentioned it somewhere before. There's really nothing you can do about it, it's up to the provider to optimize that.
Cheers,
Daniel
This is expected, and I'm pretty sure I mentioned it somewhere before. There's really nothing you can do about it, it's up to the provider to optimize that.
Cheers,
Daniel
|
By
Daniel Kuppitz <me@...>
·
#3757
·
|
|
Re: Some GLOBAL configuration cannot be modified when following the step listed in the document
1. Yes there is the property entry with the 0.05s value.
2. Although there is 0.05s in the configuration file, it should not overwrite the newly committed value since tx.max-commit-time is a
1. Yes there is the property entry with the 0.05s value.
2. Although there is 0.05s in the configuration file, it should not overwrite the newly committed value since tx.max-commit-time is a
|
By
Chen Wu <cjx...@...>
·
#3756
·
|
|
Re: Exception during dropping a graph (org.apache.tinkerpop.gremlin.jsr223.console.RemoteException)
Hi Florian,
Yes. When i am doing ConfiguredGraphFactory.graphnames , than i can see this graph name .
Is no data in graph can also be the reason?
Hi Florian,
Yes. When i am doing ConfiguredGraphFactory.graphnames , than i can see this graph name .
Is no data in graph can also be the reason?
|
By
Anshul Sharma <sharma.a...@...>
·
#3759
·
|
|
Re: Exception during dropping a graph (org.apache.tinkerpop.gremlin.jsr223.console.RemoteException)
The NullPointerException is thrown because the graph you're trying to drop is null. Do you actually have a graph configured with the name graph_23_may_1?
Am Montag, 27. Mai 2019 13:01:32 UTC+2 schrieb
The NullPointerException is thrown because the graph you're trying to drop is null. Do you actually have a graph configured with the name graph_23_may_1?
Am Montag, 27. Mai 2019 13:01:32 UTC+2 schrieb
|
By
Florian Hockmann <f...@...>
·
#3755
·
|
|
Re: Best practices to add a lot of Vertex and Edges
Hi Daniel,
Sorry for bothering you again, but I found a problem with the last query we talked about, and I am wondering if you maybe know any solution to it. I found that in this query the indices are
Hi Daniel,
Sorry for bothering you again, but I found a problem with the last query we talked about, and I am wondering if you maybe know any solution to it. I found that in this query the indices are
|
By
aab...@...
·
#3754
·
|
|
Re: Exception during dropping a graph (org.apache.tinkerpop.gremlin.jsr223.console.RemoteException)
Hi Florian,
Please find below gremlin-server.log :
3373334 [gremlin-server-session-1] WARN org.apache.tinkerpop.gremlin.server.op.AbstractEvalOpProcessor - Exception processing a script on request
Hi Florian,
Please find below gremlin-server.log :
3373334 [gremlin-server-session-1] WARN org.apache.tinkerpop.gremlin.server.op.AbstractEvalOpProcessor - Exception processing a script on request
|
By
Anshul Sharma <sharma.a...@...>
·
#3753
·
|
|
Load xml data using ConfiguredGraphFactory
Hi Team,
We are trying to load xml data to a graph using ConfiguredGraphFactory.
We have created an empty graph and trying to load the data but only one row is inserting into the graph and failed due
Hi Team,
We are trying to load xml data to a graph using ConfiguredGraphFactory.
We have created an empty graph and trying to load the data but only one row is inserting into the graph and failed due
|
By
Anshul Sharma <sharma.a...@...>
·
#3752
·
|
|
JanusGraph not using index in where step
Hello,
I found that JanusGraph do not use the index when I perform a where step. For example:
gremlin> t.V().hasLabel("text").has("url","http://www.an-url.com/tweet2")
==>v[4112]
but, the same query
Hello,
I found that JanusGraph do not use the index when I perform a where step. For example:
gremlin> t.V().hasLabel("text").has("url","http://www.an-url.com/tweet2")
==>v[4112]
but, the same query
|
By
aab...@...
·
#3751
·
|
|
Re: Some GLOBAL configuration cannot be modified when following the step listed in the document
Does your config file contain the property with the 0.05s value?
I would actually expect the config file to overwrite the value in this case. How should JanusGraph know that it should ignore certain
Does your config file contain the property with the 0.05s value?
I would actually expect the config file to overwrite the value in this case. How should JanusGraph know that it should ignore certain
|
By
Florian Hockmann <f...@...>
·
#3750
·
|
|
Re: Unable to traverse a remote graph using ConfiguredGraphFactory
Hi Florian,
Thanks.
I am aware about other means of connecting to the remote cluster and submitting the gremlin commands via Java client. However we have a requirement where a custom code written in
Hi Florian,
Thanks.
I am aware about other means of connecting to the remote cluster and submitting the gremlin commands via Java client. However we have a requirement where a custom code written in
|
By
v.sure...@...
·
#3749
·
|
|
Re: Really bad performance when reading - Share some example java code?
Ok. I found the problem. As I was guessing... the indices were not being used from the java code. The point is the reason.
I have not very clear what is the original reason, but the problem origin is
Ok. I found the problem. As I was guessing... the indices were not being used from the java code. The point is the reason.
I have not very clear what is the original reason, but the problem origin is
|
By
aab...@...
·
#3748
·
|
|
Re: Some GLOBAL configuration cannot be modified when following the step listed in the document
Thank you for your reply.No, I didn't start another instance among the operations.
This is how I observed the config changed back: After I called mgmt.commit(), I start another janusgraph instance to
Thank you for your reply.No, I didn't start another instance among the operations.
This is how I observed the config changed back: After I called mgmt.commit(), I start another janusgraph instance to
|
By
Chen Wu <cjx...@...>
·
#3747
·
|
|
Re: Exception during dropping a graph (org.apache.tinkerpop.gremlin.jsr223.console.RemoteException)
Please also show you connected in the console to the remote JanusGraph Server and share the relevant part of the logs from the server. They should contain an error message if you're getting a
Please also show you connected in the console to the remote JanusGraph Server and share the relevant part of the logs from the server. They should contain an error message if you're getting a
|
By
Florian Hockmann <f...@...>
·
#3746
·
|
|
Re: Some GLOBAL configuration cannot be modified when following the step listed in the document
How did you see that the config changed back? Did you start another JanusGraph instance in between, maybe with a config file that contained the old value for this config entry?
Am Freitag, 24. Mai
How did you see that the config changed back? Did you start another JanusGraph instance in between, maybe with a config file that contained the old value for this config entry?
Am Freitag, 24. Mai
|
By
Florian Hockmann <f...@...>
·
#3745
·
|
|
Re: Unable to traverse a remote graph using ConfiguredGraphFactory
That is expected because the ConfiguredGraphFactory is only configured on the remote server so you shouldn't use it locally.
The code in your local client application should instead look like this:
That is expected because the ConfiguredGraphFactory is only configured on the remote server so you shouldn't use it locally.
The code in your local client application should instead look like this:
|
By
Florian Hockmann <f...@...>
·
#3744
·
|
|
Write-ahead log not fixing all the failures
I have about 400 threads writing data to the janusgraph(hbase+es), because of the timeout exception of httpclient library used in the RestElasticsearchClient, I enable the WAL of janusgraph to
I have about 400 threads writing data to the janusgraph(hbase+es), because of the timeout exception of httpclient library used in the RestElasticsearchClient, I enable the WAL of janusgraph to
|
By
Chen Wu <cjx...@...>
·
#3743
·
|