Percona XtraDB Cluster Operator without ProxySQL

ProxySQL does not support the LOAD DATA INFILE syntax.

Ignoring the security issues, I believe it’s still the fastest way to bulk load data into MySQL. As the MySQL Reference Manual suggests:

It is possible with the operator to set size:0 on the ProxySQL section to not spawn any ProxySQL pods. It is also possible to use the service exposed by PXC to connect directly and bypass ProxySQL. Using this method our application’s batch job successfully completes.

Could I please ask what the recommendation would be (other than migrating away from LOAD DATA INFILE, given that it may be removed/replaced in a future version of MySQL)? Options as I can see it are:
[LIST]
[]Do not use ProxySQL. Other than not getting any of ProxySQL’s features, does this impede PXC / the operator’s behaviour?
[
]Connect directly to a PXC instance exposed by the service only for code that needs LOAD DATA INFILE. Is this pattern discouraged?
[/LIST]
Thanks,
Martin