We have over 10000 bad export-policy rules. Currently have a playbook to iterate but taking quite some time. Is there a way to speed up the process?
```- name: Delete export policy rules
netapp.ontap.na_ontap_export_policy_rule:
<<: *login
state: absent
name: default
vserver: "{{ vserver }}"
rule_index: "{{ item }}"
with_sequence: start=11 end=10590```
Configured pipelining but not sure if the API calls will follow that. Also, is ansible.netcommon.persistent connection another option to speed this up?