-
Notifications
You must be signed in to change notification settings - Fork 71
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
Relationships creation not working #532
Comments
Hi @aissaelouafi, i think this is not a problem related to the Neo4j Streams plugin. That message means that the data involved in the query that you're trying to execute has changed significantly from the previous execution of the same query. So, the query plan in the cache may not be valid anymore and a new one will be generated. You probably need to change some Neo4j params regarding the heap size and the page cache size. Furthermore, you can find more details about query replanning process here. |
Hi @mroiter-larus, Thanks a lot again for your comment. I tried to change the following param : This problem persist since many weeks and I really dont have any message on log file. Many thanks for your precious comments @mroiter-larus. Regards, |
Hi @aissaelouafi, i'll investigate on this case. In the meantime, i've noticed a thing on your streams configuration regarding the message commit. You have enabled the async commit via the Another suggestion regarding the error management. You have set the following params:
but if you don't set Regards, Mauro |
Hello @mroiter-larus, Thanks for you recommendations. I just modified the parameters, the conf file looks like :
I have more and more relationships created with this configuration but I still don't receive all events I send to the kafka topic. I'm subscribed to 4 kafka topics as following :
I suspect a delay related to kafka consumer but that's why I set the param I have another question, It is possible to consume the same kafka topic 2 times, I have the following data :
I want to create the node Regards, |
Hi @mroiter-larus, Did you have time to investigate this case please ? I want to do something like that :
Thanks a lot for your precious help. Regards, |
i was able to replicate the issue. I'm still investigating. I'll keep you posted. Mauro |
Hi @mroiter-larus, I just get this error message in log file :
I think that the issue is related to these parameters. Regards, |
Hi @mroiter-larus, I hope that you are doing well. I have this data :
So I want to create a node called
I don't know if this kind of cypher query is supporter by the kafka plugin or maybe if I have a syntax error on the query because both node and relationships are not created with this query. Do you have some news concerning the kafka delay to consume event ? Thanks a lot for your help. Regards, |
Hello,
I have an issue with the relationship creation apoc :
apoc.create.relationship
I used this cypher query to create the relationship :
I have this data :
The idea is to match the label node based on id, but the relationships are not created even if I check that both labels exists with
parent
andchild
id.I think that the request is not taken into account by the plugin. I can't see any message in logs regarding the query but sometimes when I restart the neo4j server I can see the created relationships.
The total number of nodes in the database is : 736670 nodes
The number of node with
parent
id is : 1 nodeThe number of node with
child
id is : 1 nodeI added this parameters to the
streams.conf
file :I don't understand why the query is not executed, when I tried the request manually I can see that the relationships are well created.
If you have an idea it can be very helpful.
I think it's related to a query plan caching.
Sometimes I can see that the relationship is well created with this message on log file :
Do you have an idea about this behavior ?
Regards,
Aissa
The text was updated successfully, but these errors were encountered: