Which version of Elasticsearch are you using?
I'm using open-search, I'm really motivated to move away from open-search and create an independent cluster, do you recommend it?
What is the average size of the documents you are updating?
It's hard to say because I have millions of documents in the cluster, in this case where the circuit_breaker occurred the document size was 3.57 KB. I have some documents bigger than this, but i dont think the average are "too big".
Are you using nested documents or parent-child relationships?
Yes, nested I always use, parent-child never.
In this case where the circuit_breaker error occurred, the document contained neither nested nor parent-child.
Are you updating using bulk requests? If so, how large are the bulk requests and how many concurrent requests are you sending?
Good question, yes in my system we have several bulk requests, I also wouldn't know how big these requests are and how many are occurring at the same time. I will try to collect this information.
What is the size and specification of the nodes in the cluster?
I obtained more information from the cluster, as shown in the image above.
Despite my limited experience with Elastic, I truly believe that the reason the cluster are triggering so many circuit_breaker requests has more to do with how I'm using Elastic than with my cluster's configuration, which I think is "normal/good."
I think the biggest problem is that Elastic is the single source of truth for my entire system. I don't think Elastic is designed for that. This means I have thousands of read/write operations occurring simultaneously. Do you agree with this?
I really appreciate your attention.