|
Condition where-inV-is does not work
Hi, JanusGraph users.
I try a simple query from TinkerPop docs with my JanusGraph installation, but it does not work as expected. How is it possible:
gremlin>
Hi, JanusGraph users.
I try a simple query from TinkerPop docs with my JanusGraph installation, but it does not work as expected. How is it possible:
gremlin>
|
By
Anton Eroshenko <erosh...@...>
·
#5421
·
|
|
Re: Running OLAP on HBase with SparkGraphComputer fails with Error Container killed by YARN for exceeding memory limits
Oh, I recall that we once tried to debug the same issue with JanusGraph-Hbase, had clear supernodes in the graph. No attempts on repartitioning, including analyzing code of
Oh, I recall that we once tried to debug the same issue with JanusGraph-Hbase, had clear supernodes in the graph. No attempts on repartitioning, including analyzing code of
|
By
Evgeniy Ignatiev <yevgeniy...@...>
·
#5425
·
|
|
addE doesn't create more than 1 edge
I'm trying to link one vertex (let's say Activity) with two others (person), I expect to have two
edges in result, the request below creates only one.
gremlin>
I'm trying to link one vertex (let's say Activity) with two others (person), I expect to have two
edges in result, the request below creates only one.
gremlin>
|
By
Anton Eroshenko <erosh...@...>
·
#5420
·
|
|
Re: Configuring Transaction Log feature
The code explains behavior. the api sets start time to null instead of Instant.now() hence different behaviour.
public LogProcessorBuilder setStartTimeNow() {
this.startTime = null;
return this;
}
The code explains behavior. the api sets start time to null instead of Instant.now() hence different behaviour.
public LogProcessorBuilder setStartTimeNow() {
this.startTime = null;
return this;
}
|
By
Sandeep Mishra <sandy...@...>
·
#5419
·
|
|
Re: Property with multiple data types
Hi Laura,
The JanusGraph storage backends can store many isolated graphs (see e.g. the storage.cql.keyspace configuration property). However, it is not possible to have edges between vertices from
Hi Laura,
The JanusGraph storage backends can store many isolated graphs (see e.g. the storage.cql.keyspace configuration property). However, it is not possible to have edges between vertices from
|
By
HadoopMarc <bi...@...>
·
#5418
·
|
|
Re: Running OLAP on HBase with SparkGraphComputer fails with Error Container killed by YARN for exceeding memory limits
Thanks Marc
By
Roy Yu <7604...@...>
·
#5417
·
|
|
Re: Centric Indexes failing to support all conditions for better performance.
Thank you, looking forward to have profile() with such information added.
Cheers, CM
Thank you, looking forward to have profile() with such information added.
Cheers, CM
|
By
chrism <cmil...@...>
·
#5414
·
|
|
Re: Property with multiple data types
Maybe I'm completely wrong, but would I be right to say that "labels" are the equivalent of Java classes? Like, one label represents a Java class and graph properties represent a class properties? So,
Maybe I'm completely wrong, but would I be right to say that "labels" are the equivalent of Java classes? Like, one label represents a Java class and graph properties represent a class properties? So,
|
By
Laura Morales <laur...@...>
·
#5416
·
|
|
Re: Centric Indexes failing to support all conditions for better performance.
Hi Christopher,
I don't have any workaround in mind except testing and comparing query latencies.
I have created https://github.com/JanusGraph/janusgraph/issues/2283 which hopefully can be addressed
Hi Christopher,
I don't have any workaround in mind except testing and comparing query latencies.
I have created https://github.com/JanusGraph/janusgraph/issues/2283 which hopefully can be addressed
|
By
Boxuan Li <libox...@...>
·
#5410
·
|
|
Re: Property with multiple data types
Thank you for your further comments.
I'm still a bit confused though. Janus advertises itself as a database for huge graphs. But I'm asking myself if it means huge "homogeneous" graphs (ie. a simple
Thank you for your further comments.
I'm still a bit confused though. Janus advertises itself as a database for huge graphs. But I'm asking myself if it means huge "homogeneous" graphs (ie. a simple
|
By
Laura Morales <laur...@...>
·
#5415
·
|
|
Re: Property with multiple data types
Hi Laura,
Things are a bit different than you ask:
a vertex has a single label only
a property key has a single datatype only, but it can be Object.class, see
Hi Laura,
Things are a bit different than you ask:
a vertex has a single label only
a property key has a single datatype only, but it can be Object.class, see
|
By
HadoopMarc <bi...@...>
·
#5409
·
|
|
Re: Is there a standard, human-friendly, serialization format?
Hi Laura,
Many people use CSV for data and JSON for schemas (in other graph databases too). Not sure what will be the most "standard" or "efficient" approach, but CSV/JSON seems to be most common.
Hi Laura,
Many people use CSV for data and JSON for schemas (in other graph databases too). Not sure what will be the most "standard" or "efficient" approach, but CSV/JSON seems to be most common.
|
By
Evgeniy Ignatiev <yevgeniy...@...>
·
#5413
·
|
|
Is there a standard, human-friendly, serialization format?
All the examples that I see in the Janus documentation seem to use Groovy. Instructions such as JanusGraphFactory.open(), graph.openManagement(), mgmt.makeEdgeLabel() etc.
Is there any human-friendly
All the examples that I see in the Janus documentation seem to use Groovy. Instructions such as JanusGraphFactory.open(), graph.openManagement(), mgmt.makeEdgeLabel() etc.
Is there any human-friendly
|
By
Laura Morales <laur...@...>
·
#5412
·
|
|
Re: Property with multiple data types
Thank you Marc, I think it does indeed! If I understand correctly, I can use labels to "namespace" my nodes, or in other words as a way to identify subgraphs.
If I have a node with 2 labels instead,
Thank you Marc, I think it does indeed! If I understand correctly, I can use labels to "namespace" my nodes, or in other words as a way to identify subgraphs.
If I have a node with 2 labels instead,
|
By
Laura Morales <laur...@...>
·
#5411
·
|
|
Re: Property with multiple data types
Hi Laura,
Good that you pay close attention to understanding indices in JanusGraph because they are essential to proper use. Does the following section of the ref docs answers your
Hi Laura,
Good that you pay close attention to understanding indices in JanusGraph because they are essential to proper use. Does the following section of the ref docs answers your
|
By
HadoopMarc <bi...@...>
·
#5408
·
|
|
Re: Centric Indexes failing to support all conditions for better performance.
Thank you Boxuan Li,
It is obvious that your are an expert, is any other way apart of isFitted=true to know that index is used or not?
(It may be even debugging JanusGraph server or Cassandra)
We
Thank you Boxuan Li,
It is obvious that your are an expert, is any other way apart of isFitted=true to know that index is used or not?
(It may be even debugging JanusGraph server or Cassandra)
We
|
By
chrism <cmil...@...>
·
#5407
·
|
|
Property with multiple data types
I'm new to Janus and LPGs. I have a question after reading the Janus documentation. As far as I understand, edges labels as well as properties (for both nodes and edges) are indexed globally. What
I'm new to Janus and LPGs. I have a question after reading the Janus documentation. As far as I understand, edges labels as well as properties (for both nodes and edges) are indexed globally. What
|
By
Laura Morales <laur...@...>
·
#5406
·
|
|
subscribe
subscribe
By
Laura Morales <laur...@...>
·
#5404
·
|
|
Re: Centric Indexes failing to support all conditions for better performance.
Hi Christopher,
isFitted = true basically means no in-memory filtering is needed. If you see isFitted = false, it does not necessarily mean vertex-centric indexes are not used. It could be the case
Hi Christopher,
isFitted = true basically means no in-memory filtering is needed. If you see isFitted = false, it does not necessarily mean vertex-centric indexes are not used. It could be the case
|
By
BO XUAN LI <libo...@...>
·
#5405
·
|
|
Re: Configuring Transaction Log feature
Pawan,
I was able to make your code work. the problem is "setStartTimeNow()"
Instead use setStartTime(Instant.now()) and test. It works. I am yet to explore difference between two api.
make sure to
Pawan,
I was able to make your code work. the problem is "setStartTimeNow()"
Instead use setStartTime(Instant.now()) and test. It works. I am yet to explore difference between two api.
make sure to
|
By
Sandeep Mishra <sandy...@...>
·
#5403
·
|