Skip to content
This repository has been archived by the owner on May 6, 2021. It is now read-only.

Neo.ClientError.Procedure.ProcedureNotFound - Windows10 - Desktop version #156

Closed
andreasalamanos opened this issue Dec 22, 2019 · 3 comments

Comments

@andreasalamanos
Copy link

I am trying to perform nlp by using the following Cypher query:

CALL ga.nlp.processor.addPipeline({ name:"pipeline_name", textProcessor: 'com.graphaware.nlp.processor.stanford.ee.processor.EnterpriseStanfordTextProcessor', processingSteps: {tokenize:true, ner:true, dependencies:true, relations:true, open:true, sentiment:true} })

However I got this error:
Neo.ClientError.Procedure.ProcedureNotFound There is no procedure with the namega.nlp.processor.addPipelineregistered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed
After searching online I added the following packages in the .conf file and the .jar files in the plugins file:

plugins

And added in the config file:

path

After the above procedure I get a new error:

neo

Please some help here!

@andreasalamanos
Copy link
Author

andreasalamanos commented Dec 23, 2019 via email

@aldrinm
Copy link
Contributor

aldrinm commented Dec 24, 2019

Can you print a listing of all ga.nlp procedures available? Typically this cypher,

CALL dbms.procedures() YIELD name, signature, description
WHERE name =~ 'ga.nlp.*' RETURN name ORDER BY name asc

Also, this may not be related to the issue, but you seem to have both, a graphaware-server-enterprise-all-* and a graphaware-server-community-all-* plugin. Only one is required. In your case, it seems like only the enterprise plugin is necessary. You can remove the community one

@andreasalamanos
Copy link
Author

andreasalamanos commented Dec 27, 2019 via email

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants