Error: rejected execution of coordinating operation [coordinating_and_primary_bytes=0, replica_bytes=0, all_bytes=0, coordinating_operation_bytes=130953165, max_coordinating_bytes=107374182]"

Hi, was trying to re-index in elastic. Using the command below:

POST _reindex?wait_for_completion=false&requests_per_second=50
{
  "source": { 
    "index": "prod-application-2025", 
    "size": 200 
  },
  "dest": { 
    "index": "live-prod-application-2025" 
  },
  "script": {
    "lang": "painless",
    "source": """
      def v = ctx._source.get('SubmitFlow');
      if (v != null && !(v instanceof Number)) {
        ctx._source.SubmitFlow = null;
      }
    """
  }
}

and then got the error below:

"error": {
    "type": "es_rejected_execution_exception",
    "reason": "rejected execution of coordinating operation [coordinating_and_primary_bytes=0, replica_bytes=0, all_bytes=0, coordinating_operation_bytes=130953165, max_coordinating_bytes=107374182]"
  }

From the error, it looks like my coordinating operation required ~125 MB, but the limit is ~102 MB,
This is our jvm heap below:
ip name heap.current heap.percent heap.max
10.1.14.159 instance-0000000017 581.8mb 56 1gb
10.1.9.9 tiebreaker-0000000019 209.5mb 51 408mb
10.1.18.63 instance-0000000016 605.3mb 59 1gb

is there any way to resolve the issue? Increase the JVM heaps? Thx!