|
Re: ConfiguredGraphFactory and Authentication not working
Hi Vinayak,
The information you provide is still a puzzle of little pieces which is hard to make sense of. Do you mean either of the following:
there is some behaviour of janusgraph that is
Hi Vinayak,
The information you provide is still a puzzle of little pieces which is hard to make sense of. Do you mean either of the following:
there is some behaviour of janusgraph that is
|
By
hadoopmarc@...
·
#5650
·
|
|
Delete label is very difficult
Deleting all edges in a label/all vertices in a label from gremlin is almost impossible..
g.E().hasLabel('MAID-BRAND-012021').drop()
g.V().hasLabel('BRAND').drop()
it gets timeout even thought you
Deleting all edges in a label/all vertices in a label from gremlin is almost impossible..
g.E().hasLabel('MAID-BRAND-012021').drop()
g.V().hasLabel('BRAND').drop()
it gets timeout even thought you
|
By
vamsi.lingala@...
·
#5649
·
Edited
|
|
Re: Not able to reindex with bigtable as backend
Sorry for multiple emails. My found the final error from Janusgraph. Not sure it's a bigtable issue or a janusgraph/bigtable compatibility issue. Can anybody help to take a look?
3035627 [Thread-8]
Sorry for multiple emails. My found the final error from Janusgraph. Not sure it's a bigtable issue or a janusgraph/bigtable compatibility issue. Can anybody help to take a look?
3035627 [Thread-8]
|
By
liqingtaobkd@...
·
#5648
·
|
|
Re: Not able to reindex with bigtable as backend
Found follow error in the log. janusgraph version 0.5.3 with bigtable as backend. Any suggestions pls? I have been stuck with it for a few
Found follow error in the log. janusgraph version 0.5.3 with bigtable as backend. Any suggestions pls? I have been stuck with it for a few
|
By
liqingtaobkd@...
·
#5647
·
|
|
Re: ConfiguredGraphFactory and Authentication not working
Hi Marc,
It was working with 0.4.0. After the update to 0.5.2, it is not working. The difference which I saw between the two was when I start 0.4.0 automatically configuredgraphfactory schema was
Hi Marc,
It was working with 0.4.0. After the update to 0.5.2, it is not working. The difference which I saw between the two was when I start 0.4.0 automatically configuredgraphfactory schema was
|
By
Vinayak Bali
·
#5646
·
|
|
Re: JanusGraphIndex how to retrieve constraint (indexOnly) specified for the global index?
Works like a charm, thank you Bo Xuan Li.
Works like a charm, thank you Bo Xuan Li.
|
By
cmilowka
·
#5645
·
|
|
Re: Not able to reindex with bigtable as backend
Thanks for the reply. I carefully followed each step described in the doc. Before the reindex, I closed all the open transactions and management instance. I sent the reindex command from the console
Thanks for the reply. I carefully followed each step described in the doc. Before the reindex, I closed all the open transactions and management instance. I sent the reindex command from the console
|
By
liqingtaobkd@...
·
#5644
·
|
|
Re: ConfiguredGraphFactory and Authentication not working
Hi Vinayak,
I played around a bit with the ConfigurationManagementGraph myself. The client error you describe occurs when you run ":remote console" twice. It works as a toggle switch, in other words,
Hi Vinayak,
I played around a bit with the ConfigurationManagementGraph myself. The client error you describe occurs when you run ":remote console" twice. It works as a toggle switch, in other words,
|
By
hadoopmarc@...
·
#5643
·
|
|
Re: Not able to reindex with bigtable as backend
Please be sure to run all the steps (including a graph.tx().rollback() before index creation and a mgmt.commit() after update of the index) from the example
Please be sure to run all the steps (including a graph.tx().rollback() before index creation and a mgmt.commit() after update of the index) from the example
|
By
hadoopmarc@...
·
#5642
·
|
|
Not able to reindex with bigtable as backend
Hi community,
I am new to Janusgraph and am trying to build a POC. I ran into an issue that I really need some help. I am running Janusgraph on GCP with bigtable as storage backend. I am trying to
Hi community,
I am new to Janusgraph and am trying to build a POC. I ran into an issue that I really need some help. I am running Janusgraph on GCP with bigtable as storage backend. I am trying to
|
By
liqingtaobkd@...
·
#5641
·
|
|
Re: JanusGraphIndex how to retrieve constraint (indexOnly) specified for the global index?
You can do this:
JanusGraphSchemaType constraint = ManagementSystem.getGraphIndexDirect("indexName", ((ManagementSystem) mgmt).getWrappedTx()).getSchemaTypeConstraint();
If (constraint == null) then
You can do this:
JanusGraphSchemaType constraint = ManagementSystem.getGraphIndexDirect("indexName", ((ManagementSystem) mgmt).getWrappedTx()).getSchemaTypeConstraint();
If (constraint == null) then
|
By
Boxuan Li
·
#5640
·
|
|
Re: ConfiguredGraphFactory and Authentication not working
Hi Vinayak,
You showed the error message from the remote console. Does gremlin server itself log anything particular about the ConfigurationManagementGraph after a restart?
Marc
Hi Vinayak,
You showed the error message from the remote console. Does gremlin server itself log anything particular about the ConfigurationManagementGraph after a restart?
Marc
|
By
hadoopmarc@...
·
#5639
·
|
|
Re: ConfiguredGraphFactory and Authentication not working
Hi Marc,
Tried the approach you mentioned, still facing the same issue. In one of the blogs, I read that it is due to the Cassandra cluster is first configured with janusgraphfactory and it works for
Hi Marc,
Tried the approach you mentioned, still facing the same issue. In one of the blogs, I read that it is due to the Cassandra cluster is first configured with janusgraphfactory and it works for
|
By
Vinayak Bali
·
#5638
·
|
|
Re: ConfiguredGraphFactory and Authentication not working
Hi Vinayak,
Could you try in the gremlin-server.yaml with just:
graphs: {
ConfigurationManagementGraph: conf/janusgraph-cql-configurationgraph.properties
}
So, without the graph, graph1 and graph2
Hi Vinayak,
Could you try in the gremlin-server.yaml with just:
graphs: {
ConfigurationManagementGraph: conf/janusgraph-cql-configurationgraph.properties
}
So, without the graph, graph1 and graph2
|
By
hadoopmarc@...
·
#5637
·
|
|
Re: ConfiguredGraphFactory and Authentication not working
Hi All,
Investigated the issue further. We I start janusgraph by default janusgraph schema is created, but I need configuredmanagementgraph. Request you to please help regarding it .
Thanks &
Hi All,
Investigated the issue further. We I start janusgraph by default janusgraph schema is created, but I need configuredmanagementgraph. Request you to please help regarding it .
Thanks &
|
By
Vinayak Bali
·
#5636
·
|
|
Re: JanusGraphIndex how to retrieve constraint (indexOnly) specified for the global index?
Thanks. Still, my earlier answer remains unsatisfactory. Somehow, a new JanusGraph instance must be able to load an existing schema from the system table and have the information about label
Thanks. Still, my earlier answer remains unsatisfactory. Somehow, a new JanusGraph instance must be able to load an existing schema from the system table and have the information about label
|
By
hadoopmarc@...
·
#5635
·
|
|
ConfiguredGraphFactory and Authentication not working
Hi All,
Followed the following blogs for configuring authentication and ConfiguredGraphFactory
Hi All,
Followed the following blogs for configuring authentication and ConfiguredGraphFactory
|
By
Vinayak Bali
·
#5634
·
|
|
Re: JanusGraphIndex how to retrieve constraint (indexOnly) specified for the global index?
Thank you, Index class is having tx() transaction description, but I have not found it there as well,
I have added these comments to 1163 as suggested.
Regards, CM
Thank you, Index class is having tx() transaction description, but I have not found it there as well,
I have added these comments to 1163 as suggested.
Regards, CM
|
By
cmilowka
·
#5633
·
|
|
Re: JanusGraphIndex how to retrieve constraint (indexOnly) specified for the global index?
Confirmed, could not find it either. Could you please add it as a comment to:
https://github.com/JanusGraph/janusgraph/issues/1163
Unless someone comes up with a solution, it seems you will have to
Confirmed, could not find it either. Could you please add it as a comment to:
https://github.com/JanusGraph/janusgraph/issues/1163
Unless someone comes up with a solution, it seems you will have to
|
By
hadoopmarc@...
·
#5632
·
|
|
Re: Gremlin Query to return count for nodes and edges
Hi Vinayak,
Speeding up your query depends on your setup. 15.000 vertices/second is already fast. Is this the janusgraph inmemory backend? Or ScyllaDB?
In a perfect world, not there yet, your query
Hi Vinayak,
Speeding up your query depends on your setup. 15.000 vertices/second is already fast. Is this the janusgraph inmemory backend? Or ScyllaDB?
In a perfect world, not there yet, your query
|
By
hadoopmarc@...
·
#5631
·
|