Importing and updating data in Elasticsearch

前端 未结 3 607
暗喜
暗喜 2020-12-14 09:07

We have an existing search function that involves data across multiple tables in SQL Server. This causes a heavy load on our DB, so I\'m trying to find a better way to searc

3条回答
  •  生来不讨喜
    2020-12-14 09:34

    Have you tried changing the config to this:

    filter {
      csv {
        columns => ["_id","postal_code","address_1","city","state_code"]
        separator => "|"
      }
    }
    

    By naming property_id as _id it should get used during indexing.

提交回复
热议问题