Hi,
We are using Azure Cosmos DB BulkExecutor library for Java to insert documents in bulks to cosmos DB.
we use direct mode and all works ok.
we wanted to add some security constraints to our application so we added a Vnet and blocked the option to connect to cosmos from all networks to only
from the Vnet.
we added a private endpoint to the cosmos and got the error: "Direct mode https protocol is not currently supported with PrivateLink. Please use Direct mode TCP protocol".
The BulkExecutor library does not have the option of Direct mode TCP, so we tried Gateway mode and it worked.
The recommended way to work with Bulk insert for better performance is to work in direct mode,
Is there a workaround to solve this issue?
Will BulkExecutor library support Direct mode TCP in some point?
Thanks,
Liav