Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been testing neo4j-community-1.8.M03 (with neo4jresstclient for Python2.6) and got stuck when under different conditions I started to get:

Error [500]: Internal Server Error. Server got itself in trouble.

That destroyed the database (files) and I had to start with a new database.

I was very puzzled, because the following Cypher query worked:

START n_from = node:index_faqts( node_name = "%26Z%2CNulPTib%20g%3E%221%403Q%3CYAB%23p0RV%21cs_%5EGjKH%285JE%7Ev%24L%27%3B%3F6%3D%25yIrdFMh%5C%7B7%5D8x2" ), n_to = node:index_faqts( node_name = "%26Z%2CNulPTib%20g%3E%221%403Q%3CYAB%23p0RV%21cs_%5EGjKH%285JE%7Ev%24L%27%3B%3F6%3D%25yIrdFM" ) RELATE n_from-[r:%26Z%2CNulPTib%20g%3E%221%403Q%3CYAB%23p0RV%21cs_%5EGjKH%285JE%7Ev%24L%27%3B%3F6%3D%25yIrdFMh%5C%7B7%5D8x2_%26Z%2CNulPTib%20g%3E%221%403Q%3CYAB%23p0RV%21cs_%5EGjKH%285JE%7Ev%24L%27%3B%3F6%3D%25yIrdFM {K2xqah:'VALUE'} ]->n_to RETURN r

while (almost the same) query did not work (causing "Internal Server Error. Server got itself in trouble." ):

START n_from = node:index_faqts( node_name = "%26Z%2CNulPTib%20g%3E%221%403Q%3CYAB%23p0RV%21cs_%5EGjKH%285JE%7Ev%24L%27%3B%3F6%3D%25yIrdFMh%5C%7B7%5D8x2" ), n_to = node:index_faqts( node_name = "%26Z%2CNulPTib%20g%3E%221%403Q%3CYAB%23p0RV%21cs_%5EGjKH%285JE%7Ev%24L%27%3B%3F6%3D%25yIrdFMh" ) RELATE n_from-[r:%26Z%2CNulPTib%20g%3E%221%403Q%3CYAB%23p0RV%21cs_%5EGjKH%285JE%7Ev%24L%27%3B%3F6%3D%25yIrdFMh%5C%7B7%5D8x2_%26Z%2CNulPTib%20g%3E%221%403Q%3CYAB%23p0RV%21cs_%5EGjKH%285JE%7Ev%24L%27%3B%3F6%3D%25yIrdFMh {K2xqah:'VALUE'} ]->n_to RETURN r

Just adding one 'h' character (not even a special character) to 'node_name' cause a server failure.

After wasting a lot of time and getting nowhere I decided to try neo4j-community-1.8.M07. My tests failed immediately with the following error:

> Error [400]: Bad Request. Bad request syntax or unsupported method. Invalid data sent: string matching regex $' expected butR' found

Think we should have better error message here? Help us by sending this query to c ypher@neo4j.org.

Thank you, the Neo4j Team.

"START n_from = node:index_faqts( node_name = "%3E" ), n_to = node:index_faqts( no de_name = "%3ED" ) RELATE n_from-[r:%3E_%3ED {K2xqah:'VALUE'} ]->n_to RETURN r" <<<

The problem seems to be at the first character 'R' of 'RELATE'. Did Cypher syntax change between M03 and M07?

So, I am stuck... I could use the old version if it passed the tests. I am afraid that I will need to change the Cypher queries if the syntax changed in the new version.

Could you advice what is the best way to go, please?

Thank you, Chris

P.S. '%3D' in node_name "%3E" is the URL code for '='. I need to support node names with special characters, which seem to cause problems for Cypher. The same for relations names ( in r:%3E_%3ED). The relations attribute key (K2xqah) seems to be even more demanding, so I had to use base36 conversion that uses only ASCII characters and number characters.

share|improve this question
1  
> The problem seems to be at the first character 'R' of 'RELATE'. Did Cypher syntax change between M03 and M07? Turned out - it did. Need to substitute RELATE with CREATE UNIQUE. Chris – user1607452 Aug 17 '12 at 22:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.