簡體   English   中英

如何在Elastic Search中插入數據

[英]How to Insert data in Elastic Search

在我的dotnet核心項目中,我需要在彈性搜索中插入數據。 我正在使用波紋管代碼進行插入。

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()
      );
}

執行以上代碼后,我使用波紋管網址檢查插入的數據

localhost:9200/emp

我得到以下輸出。

{"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"}}}}

我看不到我的任何數據。 這有什么問題。

localhost:9200/emp返回索引“ emp”的設置和映射。 對於內容,請嘗試localhost:9200/emp/_search

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM