-
Notifications
You must be signed in to change notification settings - Fork 306
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
add an assert to check returned item count from _bulk #989
Labels
Comments
kares
added a commit
to kares/logstash-output-elasticsearch
that referenced
this issue
Feb 16, 2021
we've seen some weird behavior on ES 7.10.2 where a _bulk request to index 69 documents returned 135 entries this leads to an ugly `NoMethodError: undefined method ``[]' for nil:NilClass` resolves logstash-plugins#989
5 tasks
kares
added a commit
to kares/logstash-output-elasticsearch
that referenced
this issue
Mar 1, 2021
we've seen some weird behavior on ES 7.10.2 where a _bulk request to index 69 documents returned 135 entries this leads to an ugly `NoMethodError: undefined method ``[]' for nil:NilClass` resolves logstash-plugins#989
kares
added a commit
to kares/logstash-output-elasticsearch
that referenced
this issue
Mar 1, 2021
we've seen some weird behavior on ES 7.10.2 where a _bulk request to index 69 documents returned 135 entries this leads to an ugly `NoMethodError: undefined method ``[]' for nil:NilClass` resolves logstash-plugins#989
kares
added a commit
to kares/logstash-output-elasticsearch
that referenced
this issue
Mar 4, 2021
we've seen some weird behavior on ES 7.10.2 where a _bulk request to index 69 documents returned 135 entries this leads to an ugly `NoMethodError: undefined method ``[]' for nil:NilClass` resolves logstash-plugins#989
kares
added a commit
that referenced
this issue
Mar 4, 2021
we've seen some weird behavior on ES 7.10.2 (but also with 7.11.1) where a _bulk request to index 69 documents returned 135 entries this leads to an ugly `NoMethodError: undefined method ``[]' for nil:NilClass` resolves #989
the likely cause from ES: elastic/elasticsearch#60818 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
we've seen some weird behavior on ES 7.10.2 where a _bulk request to index 69 documents returned 135 entries
this than leads to an ugly
NoMethodError: undefined method ``[]' for nil:NilClass
:asserting the returned (
{"took":0,"ingest_took":9,"errors":true,"items":[{"index":{"_index": ...
)json['items']
might be an easy hint to quickly identify the issue.The text was updated successfully, but these errors were encountered: