Elasticsearch Index throttling info message comes in es 1.3.1 version

Hi All

Used elasticsearch version 1.3.1

now throttling indexing: numMergesInFlight=4, maxNumMerges=3
stop throttling indexing: numMergesInFlight=2, maxNumMerges=3

after info message comes some index failed..

index setting configuration

{
index: {
merge: {
policy: {
max_merged_segment: 5gb,
segments_per_tier: 10,
max_merge_at_once: 10
}
}
}

can anyone help me

Thanks

This means Lucene's segment merges can't keep up.

Try increasing or disabling the store level IO throttling:

Mike McCandless

http://blog.mikemccandless.com

On Thu, Mar 5, 2015 at 5:53 AM, shanmuthu83 shanmuthu83@gmail.com wrote:

Hi All

Used elasticsearch version 1.3.1

now throttling indexing: numMergesInFlight=4, maxNumMerges=3
stop throttling indexing: numMergesInFlight=2, maxNumMerges=3

after info message comes some index failed..

index setting configuration

{
index: {
merge: {
policy: {
max_merged_segment: 5gb,
segments_per_tier: 10,
max_merge_at_once: 10
}
}
}

can anyone help me

Thanks

--
View this message in context:
http://elasticsearch-users.115913.n3.nabble.com/elasticsearch-Index-throttling-info-message-comes-in-es-1-3-1-version-tp4071627.html
Sent from the Elasticsearch Users mailing list archive at Nabble.com.

--
You received this message because you are subscribed to the Google Groups
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/elasticsearch/1425552822674-4071627.post%40n3.nabble.com
.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/CAD7smRfkxg%3D69bPQ9K7CeJTpXy7uyhVW-Raje3pZkYPZeUdrqA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

ok will check let u know

Thanks