-
Notifications
You must be signed in to change notification settings - Fork 708
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
Error when result is large #639
Comments
The data you index is not valid for Elasticsearch, you can not index both plain value or a structured object to the same field. |
I found why. my message field content is as below(it's a string in mysql):
And elasticsearch-jdbc will send below
When elasticsearch received \x22, it is translated as \x22 which mean a double quote, so elasticsearch cannot parse this JSON object. |
When I use sql query to fetch a large table and get large result (about 300,000 rows).
The elasticsearch-jdbc cannot import all to elasticsearch.
I got message below:
Log as below:
Code as below:
The text was updated successfully, but these errors were encountered: