I'm trying to index my documents and expect them to have unique Ids, for doing that I'm using pipeline processor in order to remove the Id field from my model.
However, Id always stored as 0 in elastic side.
I noticed that my Index request is using PUT request which is probably indicates why Id not auto generated.
My question is how can I order NEST client to use POST http method instead of PUT?