hi,
Currently we are using low level client in .Net on 7.17.x to perform bulk operation, where we are preparing NDJSON format and call the Bulk method. What will be equivalent of this when we migrate to new .Net client fo ES v9.x? Do we need to start using Transport now for bulk api operation?
We dont have individual models for the index operations and either get json data from external source as request payload or build it on the fly depending on the SQL query columns from data reader.
var result = Client.LowLevel.Bulk<BulkResponse>(IndexName, sbJsonData.ToString());
Thanks!