ElasticSearch & attachment type (NEST C#)
I'm trying to index a pdf document with elasticsearch/NEST. The file is indexed but search results returns with 0 hits. I need the search result to return only the document Id and the highlight result (without the base64 content) Here is the code: I'll appreciate any help here, Thanks, class Program { static void Main(string[] args) { // create es client string index = "myindex"; var settings = new ConnectionSettings("localhost", 9200) .SetDefaultIndex(index); var es = new ElasticClient(settings); // delete index if any es.DeleteIndex(index); // index document string path = "test.pdf"; var doc