Replies: 2 comments 3 replies
-
I have run into a similar issue with my C* storage as well. In my case, it turned out that JanusGraph could not obtain a lock on the index to start the reindexing. Add in your storage config just for re-indexing purposes: Once re-indexing is done, please turn it off. |
Beta Was this translation helpful? Give feedback.
-
@rg2609 most likely you faced a ghost JanusGraph instance by improper shutdown of the previous JanusGraph instances. If you are new to schema initialisation, you may benefit from the JSON schema initializer: https://docs.janusgraph.org/schema/schema-init-strategies/ Here is a useful configuration option from docs (useful during testing, but be careful to not use it in Prod):
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to create a composite index on the title property in JanusGraph using the Gremlin console.
Here's what I've done so far:
title
property key.byTitleUnique
.After running the command and waiting a long time (even over an hour), the index status still remains in the
INSTALLED
state.As per my understanding, after this step, I should be able to Reindex and then Enable the index. But since the index isn’t moving past the
INSTALLED
state, I'm stuck.Questions:
Why isn't the index transitioning from
INSTALLED
toREGISTERED
afterrunning the command?
Is there anything else I need to do to make this transition happen?
Could this be related to the backend (I'm using Cassandra and
Elasticsearch)?
Any help or insights would be appreciated.
Beta Was this translation helpful? Give feedback.
All reactions