-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Type and property equals, will cause exception: ReplicationShardOperationFailedException #117
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
Comments
You've run into the "gotcha" (#112) where a field name is the same as your type name: try this instead: |
Yea, this is how elasticsearch works... . I have fixed the message to be a bit more descriptive. |
by design, closing. |
tlrx
added a commit
that referenced
this issue
Jun 5, 2015
Adding a S3OutputStream that upload blobs to the S3 Storage service with two modes (single/multipart). When the length of the chunk is lower than buffer_size (default to 5mb), the chunk is uploaded with a single request. Otherwise multiple requests are made, each of buffer_size (except the last one which can be lower than buffer_size). For example, when uploading a blob (say, 1Gb) with chunk_size set for accepting large chunks (chunk_size = 5Gb) and buffer_size set to 100Mb, the blob will be sent into 10 multiple parts, each of ~100Mb. Each part upload may failed independently and will be retried 3 times. Closes #117
rmuir
added a commit
to rmuir/elasticsearch
that referenced
this issue
Nov 8, 2015
Exclude jhighlight dependency, which contains LGPL-only files
mira-t
pushed a commit
to mira-t/elasticsearch
that referenced
this issue
Mar 22, 2017
Claim issue 23650
cbuescher
pushed a commit
to cbuescher/elasticsearch
that referenced
this issue
Oct 2, 2023
We need to run 3 nodes job before 1 node job, since apart from the number of nodes they are identical and night-rally doesn’t think it needs to rebuild.
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
curl -XPUT "http://localhost:9200/cms/blog/1" -d '
{
"blog":55
}
'
"error" : "ReplicationShardOperationFailedException[[cms][0] ]; nested: MapperException[Malformed json, after type is must start with an object]; "
The text was updated successfully, but these errors were encountered: