-
Notifications
You must be signed in to change notification settings - Fork 79
(Re)indexing tool #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi @jexp, Is there any documentation on how to implement a shell command? I've inherited my class from
|
You missed to add the service loader for shell apps in src/main/resources |
Perfect, thanks. |
Just for the record, this has been implemented in PR #8, from my fork of |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Implement a shell extension to force a reindex of the
IndexSpecs
defined inneo4j.properties
as a shell extension, just like neo4j-shell-tools.If
elasticsearch_index.spec
is defined aspeople:Person(first_name,last_name), places:Place(name)
, the tool would perform two queries which result will be in turn sent to ElasticSearch:MATCH (n:Person) RETURN n.first_name, n.last_name
sent to indexpeople
MATCH (n:Place) RETURN n.name
sent to indexplaces
.The text was updated successfully, but these errors were encountered: