Skip to content
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

Type and property equals, will cause exception: ReplicationShardOperationFailedException #117

Closed
hz opened this issue Apr 6, 2010 · 3 comments

Comments

@hz
Copy link

hz commented Apr 6, 2010

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]; "

@clintongormley
Copy link

You've run into the "gotcha" (#112) where a field name is the same as your type name:
http://www.elasticsearch.com/docs/elasticsearch/rest_api/index/#Automatic_for_the_Index

try this instead:
curl -XPUT "http://localhost:9200/cms/blog/1" -d '
{ "blog": { "blog":55 } }'

@kimchy
Copy link
Member

kimchy commented Apr 7, 2010

Yea, this is how elasticsearch works... . I have fixed the message to be a bit more descriptive.

@kimchy
Copy link
Member

kimchy commented May 28, 2010

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
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
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants