@warkolm we're really stuck here, the GC is not stopping collection. Just keeps doing collection without stopping.
Why is this happening?
[2021-09-24T10:22:45,659][WARN ][o.e.h.AbstractHttpServerTransport] [web1.example.com] handling request [null][HEAD][/_alias/example-amasty_product_1][Netty4HttpChannel{localAddress=/127.0.0.1:9200, remoteAddress=/127.0.0.1:43032}] took [6056ms] which is above the warn threshold of [5000ms]
[2021-09-24T10:23:03,076][INFO ][o.e.i.b.HierarchyCircuitBreakerService] [web1.example.com] GC did not bring memory usage down, before [43895040240], after [43963860472], allocations [1], duration [17422]
[2021-09-24T10:23:03,077][WARN ][o.e.h.AbstractHttpServerTransport] [web1.example.com] handling request [null][HEAD][/_alias/example-amasty_product_1][Netty4HttpChannel{localAddress=/127.0.0.1:9200, remoteAddress=/127.0.0.1:43106}] took [5961ms] which is above the warn threshold of [5000ms]
[2021-09-24T10:23:14,988][WARN ][o.e.h.AbstractHttpServerTransport] [web1.example.com] handling request [null][HEAD][/_alias/example-amasty_product_1][Netty4HttpChannel{localAddress=/127.0.0.1:9200, remoteAddress=/127.0.0.1:43130}] took [29336ms] which is above the warn threshold of [5000ms]
[2021-09-24T10:23:14,988][WARN ][o.e.h.AbstractHttpServerTransport] [web1.example.com] handling request [null][HEAD][/_alias/example-amasty_product_1][Netty4HttpChannel{localAddress=/127.0.0.1:9200, remoteAddress=/127.0.0.1:43192}] took [17873ms] which is above the warn threshold of [5000ms]
[2021-09-24T10:23:08,668][WARN ][o.e.h.AbstractHttpServerTransport] [web1.example.com] handling request [null][HEAD][/_alias/example-amasty_product_1][Netty4HttpChannel{localAddress=/127.0.0.1:9200, remoteAddress=/127.0.0.1:43144}] took [5592ms] which is above the warn threshold of [5000ms]
[2021-09-24T10:23:20,820][INFO ][o.e.i.b.HierarchyCircuitBreakerService] [web1.example.com] attempting to trigger G1GC due to high heap usage [43947457024]
[2021-09-24T10:23:26,343][INFO ][o.e.i.b.HierarchyCircuitBreakerService] [web1.example.com] GC did not bring memory usage down, before [43947457024], after [43955971096], allocations [0], duration [5523]
[2021-09-24T10:23:26,343][WARN ][o.e.h.AbstractHttpServerTransport] [web1.example.com] handling request [null][HEAD][/][Netty4HttpChannel{localAddress=/127.0.0.1:9200, remoteAddress=/127.0.0.1:43192}] took [5832ms] which is above the warn threshold of [5000ms]
[2021-09-24T10:23:32,199][WARN ][o.e.h.AbstractHttpServerTransport] [web1.example.com] handling request [null][HEAD][/_alias/example-amasty_product_1][Netty4HttpChannel{localAddress=/127.0.0.1:9200, remoteAddress=/127.0.0.1:43130}] took [11379ms] which is above the warn threshold of [5000ms]
[2021-09-24T10:23:32,199][INFO ][o.e.m.j.JvmGcMonitorService] [web1.example.com] [gc][old][378][53] duration [46.3s], collections [8]/[40.6s], total [46.3s]/[5m], memory [40.8gb]->[40.9gb]/[41gb], all_pools {[young] [0b]->[0b]/[0b]}{[old] [40.8gb]->[40.9gb]/[41gb]}{[survivor] [0b]->[0b]/[0b]}
[2021-09-24T10:23:44,596][WARN ][o.e.h.AbstractHttpServerTransport] [web1.example.com] handling request [null][HEAD][/][Netty4HttpChannel{localAddress=/127.0.0.1:9200, remoteAddress=/127.0.0.1:43464}] took [6382ms] which is above the warn threshold of [5000ms]
[2021-09-24T10:23:44,596][WARN ][o.e.h.AbstractHttpServerTransport] [web1.example.com] handling request [null][HEAD][/][Netty4HttpChannel{localAddress=/127.0.0.1:9200, remoteAddress=/127.0.0.1:43484}] took [6382ms] which is above the warn threshold of [5000ms]
[2021-09-24T10:23:50,548][WARN ][o.e.m.j.JvmGcMonitorService] [web1.example.com] [gc][378] overhead, spent [46.5s] collecting in the last [40.6s]
[2021-09-24T10:23:50,548][WARN ][o.e.h.AbstractHttpServerTransport] [web1.example.com] handling request [null][HEAD][/][Netty4HttpChannel{localAddress=/127.0.0.1:9200, remoteAddress=/127.0.0.1:43432}] took [12396ms] which is above the warn threshold of [5000ms]
[2021-09-24T10:23:56,531][INFO ][o.e.i.b.HierarchyCircuitBreakerService] [web1.example.com] attempting to trigger G1GC due to high heap usage [43976739808]
[2021-09-24T10:24:37,882][WARN ][o.e.h.AbstractHttpServerTransport] [web1.example.com] handling request [null][HEAD][/_alias/example-amasty_product_1][Netty4HttpChannel{localAddress=/127.0.0.1:9200, remoteAddress=/127.0.0.1:43192}] took [71539ms] which is above the warn threshold of [5000ms]
Is there a way to clean out garbage collection? Or stop it?
I have even tried:
curl -X PUT "localhost:9200/_cluster/settings?pretty" -H 'Content-Type: application/json' -d'
{
"transient": {
"cluster.routing.allocation.disk.watermark.low": "1000gb",
"cluster.routing.allocation.disk.watermark.high": "600gb",
"cluster.routing.allocation.disk.watermark.flood_stage": "400gb",
"cluster.info.update.interval": "1m"
}
}
'
This did not help.