We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am getting below error; when tried to bulk ingest data.
System.Exception: SemanticError: The maximum number of statements allowed has been exceeded
The text was updated successfully, but these errors were encountered:
That's the error from the nebula server-side your query string exceeded the allowed length. What is your bulk ingest query like?
Plz note, we should use:
INSERT VERTEX t3 (p1), t4(p2) VALUES "1": (111, "hello"), "2": (222, "world"), "3":(333, "foo"), "4":(333, "bar");
Rather than:
INSERT VERTEX t3 (p1), t4(p2) VALUES "1": (111, "hello"); INSERT VERTEX t3 (p1), t4(p2) VALUES "2": (222, "world"); INSERT VERTEX t3 (p1), t4(p2) VALUES "3":(333, "foo"); INSERT VERTEX t3 (p1), t4(p2) VALUES "4":(333, "bar");
Sorry, something went wrong.
@wey-gu thanks for the reply.
We did not see this error with Python library!!!
In any case use UPSERT; how does the above syntax change?
@sunkararp thanks for your question, there is a limit from nebula-server side, not from our client. Please ref nebula document.
No branches or pull requests
I am getting below error; when tried to bulk ingest data.
System.Exception: SemanticError: The maximum number of statements allowed has been exceeded
The text was updated successfully, but these errors were encountered: