简体   繁体   中英

How to Insert data in Elastic Search

In my dotnet core project i need to insert data in elastic search. I am using bellow code for insert.

List<Patient> employeeData = null;
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create("http://localhost:5001/api/Employee/GetAll");
request.Method = "GET";
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
{
      Stream dataStream = response.GetResponseStream();
      StreamReader reader = new StreamReader(dataStream);
      var data= reader.ReadToEnd();
      reader.Close();
      dataStream.Close();
      employeeData = JsonConvert.DeserializeObject<List<Employee>>(data);
}
  var lst = employeeData;
  int count = 0;
  foreach (var obj in lst)
  {
         count ++;
         this.client.Index(obj, i => i
         .Index("employee")
         .Type("myEmployee")
         .Id(count)
          // .Refresh()
      );
}

After Execute the above code i am using bellow url for check the inserted data

localhost:9200/emp

I am getting following output.

{"emp":{"aliases":{},"mappings":{"myEmpl":{"properties":{"firstName":{"type":"text","fields":{"keyword":{"type":"keyword","ignore_above":256}}},"gEmailId":{"type":"text","fields":{"keyword":{"type":"keyword","ignore_above":256}}},"gMobile":{"type":"text","fields":{"keyword":{"type":"keyword","ignore_above":256}}},"wmployeeID":{"type":"long"},"registrationNo":{"type":"text","fields":{"keyword":{"type":"keyword","ignore_above":256}}}}}},"settings":{"index":{"creation_date":"1547020635852","number_of_shards":"5","number_of_replicas":"1","uuid":"6kle4jzMQDSICnPsmATbDw","version":{"created":"6050499"},"provided_name":"emp"}}}}

I am not able to see any of my data. What is the problem in this.

localhost:9200/emp returns the settings and mappings for index 'emp'. For the content, try localhost:9200/emp/_search .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM