|
Re: [DISCUSS] Vertex Centric Index with UUID
Great. I'll try to get a PR together sometime in the next week or two. I have something written, it seems to work well, but I need to write some tests before I submit a PR.
Great. I'll try to get a PR together sometime in the next week or two. I have something written, it seems to work well, but I need to write some tests before I submit a PR.
|
By
Keith Lohnes <loh...@...>
·
#576
·
|
|
Re: Janus Inmemory in JVM
The best practice would be for your program to invoke close() on the JanusGraph instance before shutting down the JVM. The close() method calls on closeInternal() and then removes the shutdown
The best practice would be for your program to invoke close() on the JanusGraph instance before shutting down the JVM. The close() method calls on closeInternal() and then removes the shutdown
|
By
Jason Plurad <plu...@...>
·
#575
·
|
|
Re: Posgres backend
I'm not aware of anybody writing a Postgres backend for JanusGraph. Probably the easiest thing to do would be to study the code of the existing backends, like inmemory, berkeleyje, or cql. Beyond the
I'm not aware of anybody writing a Postgres backend for JanusGraph. Probably the easiest thing to do would be to study the code of the existing backends, like inmemory, berkeleyje, or cql. Beyond the
|
By
Jason Plurad <plu...@...>
·
#574
·
|
|
Re: Documentation question: Section 10.6 Nested Transactions
Let's say Transaction A from the example begins first and sets v2 uniqueName=foo. Transaction A takes a long time to "do many other things", so it is not committed yet.
Transaction B then begins and
Let's say Transaction A from the example begins first and sets v2 uniqueName=foo. Transaction A takes a long time to "do many other things", so it is not committed yet.
Transaction B then begins and
|
By
Jason Plurad <plu...@...>
·
#573
·
|
|
Re: DistributedStoreManager sleepAfterWrite
The javadoc on MaskedTimestamp seems to describe the reasoning:
> Helper class to create the deletion and addition timestamps for a particular transaction. It needs to be ensured that the deletion
The javadoc on MaskedTimestamp seems to describe the reasoning:
> Helper class to create the deletion and addition timestamps for a particular transaction. It needs to be ensured that the deletion
|
By
Jason Plurad <plu...@...>
·
#572
·
|
|
Re: [DISCUSS] Vertex Centric Index with UUID
Sounds reasonable enough to me. I opened up issue 948 to track this.
Sounds reasonable enough to me. I opened up issue 948 to track this.
|
By
Jason Plurad <plu...@...>
·
#571
·
|
|
[DISCUSS] Vertex Centric Index with UUID
In the docs it states that
>The property keys used in a vertex-centric index must have an explicitly defined data type (i.e. not Object.class) which supports a native sort order.
I'm curious as to
In the docs it states that
>The property keys used in a vertex-centric index must have an explicitly defined data type (i.e. not Object.class) which supports a native sort order.
I'm curious as to
|
By
Keith Lohnes <loh...@...>
·
#570
·
|
|
Re: DynamoDB storage backend
I just published support for JanusGraph 0.2.0 to Maven
I just published support for JanusGraph 0.2.0 to Maven
|
By
Alexander Patrikalakis <amcpatr...@...>
·
#569
·
|
|
Re: [DISCUSS] Requiring use of 2FA (two-factor auth) on GitHub
No, we haven't yet, because we still don't have 100% 2FA compliance among our current committers and enabling this feature will immediately remove write access from those folks, which would have a
No, we haven't yet, because we still don't have 100% 2FA compliance among our current committers and enabling this feature will immediately remove write access from those folks, which would have a
|
By
Misha Brukman <mbru...@...>
·
#568
·
|
|
Re: [DISCUSS] Requiring use of 2FA (two-factor auth) on GitHub
Did we ever enable this? +1 let's do it
Did we ever enable this? +1 let's do it
|
By
mathias...@...
·
#567
·
|
|
Re: [PROPOSAL] Strict Schema
We are currently evaluating JanusGraph for our new project. And it happens to be that we just had discussion today morning about the exact same use case described by Ted here -
We found this imp
We are currently evaluating JanusGraph for our new project. And it happens to be that we just had discussion today morning about the exact same use case described by Ted here -
We found this imp
|
By
rahul.n....@...
·
#566
·
|
|
Re: gremlin-server.sh as a daemon enhancement/update?
janusgraph.sh has start/stop. But I agree that gremlin-server.sh should also be updated. I've added it as a task to https://github.com/JanusGraph/janusgraph/issues/845
Robert Dale
janusgraph.sh has start/stop. But I agree that gremlin-server.sh should also be updated. I've added it as a task to https://github.com/JanusGraph/janusgraph/issues/845
Robert Dale
|
By
Robert Dale <rob...@...>
·
#565
·
|
|
gremlin-server.sh as a daemon enhancement/update?
I was trying to find some best practices for running JanusGraph as a service or at least find some existing init scripts to reference when I came upon Tinkerpop Jira issue 980. Relevant code changes
I was trying to find some best practices for running JanusGraph as a service or at least find some existing init scripts to reference when I came upon Tinkerpop Jira issue 980. Relevant code changes
|
By
Chris Hupman <chris...@...>
·
#564
·
|
|
Re: DynamoDB storage backend
Hi Ted,
Thanks for sharing the link. Interesting given integration with Dynamo for JanusGraph ...
But support for RDF/SPARQL could be nice integration for some use cases.
- Henry
Hi Ted,
Thanks for sharing the link. Interesting given integration with Dynamo for JanusGraph ...
But support for RDF/SPARQL could be nice integration for some use cases.
- Henry
|
By
Henry Saputra <henry....@...>
·
#563
·
|
|
Re: DynamoDB storage backend
Hi Henry,
I'm not from Amazon, but it looks like it has no relation to JanusGraph. From what I've read, I think it might have some Blazegraph DNA in it:
Hi Henry,
I'm not from Amazon, but it looks like it has no relation to JanusGraph. From what I've read, I think it might have some Blazegraph DNA in it:
|
By
Ted Wilmes <twi...@...>
·
#562
·
|
|
Re: DynamoDB storage backend
Sorry to follow up on old thread, anyone from AWS could chime whether Neptune is using or base on JanusGraph or totally build from scratch?
Trying to build case to use JanusGraph rather than come up
Sorry to follow up on old thread, anyone from AWS could chime whether Neptune is using or base on JanusGraph or totally build from scratch?
Trying to build case to use JanusGraph rather than come up
|
By
Henry Saputra <henry....@...>
·
#561
·
|
|
DistributedStoreManager sleepAfterWrite
I've been going through the Janus source and noticed that the Hbase and Cassandra backends both call sleepAfterWrite after sending the write request to the underlying backend. What I can't seem to
I've been going through the Janus source and noticed that the Hbase and Cassandra backends both call sleepAfterWrite after sending the write request to the underlying backend. What I can't seem to
|
By
Melvin Ross <melvi...@...>
·
#559
·
|
|
Re: JanusGraph support for HBase v2?
I opened a ticket to track it.
https://github.com/JanusGraph/janusgraph/issues/915
We can continue the discussion over there.
Thanks for raising this.
Jerry
I opened a ticket to track it.
https://github.com/JanusGraph/janusgraph/issues/915
We can continue the discussion over there.
Thanks for raising this.
Jerry
|
By
Jerry He <jerr...@...>
·
#558
·
|
|
JanusGraph support for HBase v2?
Hi,
Sorry if this is well known - but dowe have a plan to support HBase v2 - and if so do you know when that willbe released?
Best regards,
Graham
Graham Wallis
IBM Analytics Emerging Technology
Hi,
Sorry if this is well known - but dowe have a plan to support HBase v2 - and if so do you know when that willbe released?
Best regards,
Graham
Graham Wallis
IBM Analytics Emerging Technology
|
By
Graham Wallis <graham...@...>
·
#560
·
|
|
Re: JanusGraph NiFi connector - exists?
Thanks for the feedback Jason. We will keep the community updated.
-g
Thanks for the feedback Jason. We will keep the community updated.
-g
|
By
Gene Fojtik <genef...@...>
·
#557
·
|