golang 작업 Elasticsearch

2215 단어 go
여기 Elasticsearch의 데이터는 오픈 소스 라이브러리인 amazonriver (https://github.com/hellobike/amazonriver)postgresql 데이터베이스에 있는 데이터를 동기화하여 golang의elastic (https://github.com/olivere/elastic) 라이브러리 작업
데모는 다음과 같습니다.
package main

import (
	"fmt"
	"context"
	"github.com/olivere/elastic"
	"encoding/json"
)

type Map map[string]interface{}

func (m Map) SetVal(key string, val interface{}) {
	if val == nil {
		delete(m, key)
	} else {
		m[key] = val
	}
}

func (m Map) GetVal(key string) interface{}  {
	value, ok := m[key]
	if !ok {
		return nil
	} else {
		return value
	}
}

func EsGet()  {
	Client, err := elastic.NewClient(elastic.SetURL("http://127.0.0.1:9200"))
	if err != nil {
		fmt.Println(" es")
		return
	}

	//  id  
	get, err := Client.Get().Index("product_index").Id("19523").Do(context.Background())
	if err != nil {
		fmt.Println(" ", err)
		return
	}
	//  
	query := elastic.NewMatchQuery("title", " ")
	mi, err := Client.Search().Index("product_index").Query(query).From(0).Size(10).Do(context.Background())
	if err != nil {
		return
	}
	source := get.Source
	for _, h := range mi.Hits.Hits {
		var dict db.Map
		err = json.Unmarshal(h.Source, &dict)
		if err != nil {
			fmt.Println("MatchQuery  ", err)
			return
		}
		fmt.Println(dict.GetVal("title"))
	}
	var data Map
	err = json.Unmarshal(source, &data)
	if err != nil {
		return
	}
	fmt.Println("data", data.GetVal("title"))
	fmt.Println(string(source))
	// must   sql  and  ,terms   in  
	boolQuery := elastic.NewBoolQuery()
	boolQuery.Must(elastic.NewTermQuery("buyer_id", 1), elastic.NewTermsQuery("type", 100,400))
	orderResp, err := Client.Search().Index("order_index").Sort("tid", false).Query(boolQuery).From(0).Size(10).Do(context.Background())
	if err != nil {
		fmt.Println(" ", err)
		return
	}
	for _, o := range orderResp.Hits.Hits {
		var order db.Order
		err = json.Unmarshal(o.Source, &order)
		if err != nil {
			fmt.Println("eeee", err)
		}
	}
	fmt.Println("  ", len(orderResp.Hits.Hits))

func main()  {
	EsGet()
}

좋은 웹페이지 즐겨찾기