Hi,
I am getting OutOfMemoryError following are the JVM sizes
> intx CompilerThreadStackSize                   = 0                                   {pd product}
>     uintx ErgoHeapSizeLimit                         = 0                                   {product}
>     uintx HeapSizePerGCThread                       = 87241520                            {product}
>     uintx InitialHeapSize                          := 260046848                           {product}
>     uintx LargePageHeapSizeThreshold                = 134217728                           {product}
>     uintx MaxHeapSize                              := 4158652416                          {product}
>      intx ThreadStackSize                           = 1024                                {pd product}
>      intx VMThreadStackSize                         = 1024                                {pd product}
I am running logstash with multiple pipeline. I have three logstash conf file. Each will fetch data from mysql database and put in Elasticsearch.
Data is huge its like a 40 millions record for each conf file fetching. let me share my pipelines.yml file.
- pipeline.id: morph_styles
 
path.config: "/home/ubuntu/dev/V4QaShop/logstash/morph_styles.conf"
pipeline.workers: 1
- pipeline.id: demo_morph_styles
 
path.config: "/home/ubuntu/dev/V4QaShop/logstash/demo_morph_styles.conf"
pipeline.workers: 3- pipeline.id: product_detail
 
path.config: "/home/ubuntu/dev/V4QaShop/logstash/products_detail.conf"
queue.type: persisted
every config file schedule to 10 sec but its delay that I can not effort data will be sync in every second. What should I do I need help.
Thanks