golang操作elasticsearch的实现
来源:脚本之家
时间:2023-01-01 08:00:55 140浏览 收藏
在Golang实战开发的过程中,我们经常会遇到一些这样那样的问题,然后要卡好半天,等问题解决了才发现原来一些细节知识点还是没有掌握好。今天golang学习网就整理分享《golang操作elasticsearch的实现》,聊聊Elasticsearch,希望可以帮助到正在努力赚钱的你。
1、前提
1.1 docker 安装elasticsearch
查询elasticsearch 版本
1 | docker search elasticsearch |
将对应的版本拉到本地
1 | docker.elastic.co /elasticsearch/elasticsearch :7.3.0 |
创建一个网络
1 | docker network create esnet |
启动容器
1 | docker run --name es -p 9200:9200 -p 9300:9300 --network esnet -e "discovery.type=single-node" bdaab402b220 |
1.2这里过后就可以去写go代码 为了直观搞了个可视化工具 ElisticHD 这里使用docker 部署
1 | docker run -p 9800:9800 -d --link es:demo --network esnet -e "discovery.type=single-node" containerize /elastichd |
可以试一下界面还是很美观的
2、golang 实现elasticsearch 简单的增删改查
直接上代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | package main import ( "context" "encoding/json" "fmt" "github.com/olivere/elastic/v7" "reflect" ) var client *elastic.Client var host = "http://ip:port" type Employee struct { FirstName string `json: "first_name" ` LastName string `json: "last_name" ` Age int `json: "age" ` About string `json: "about" ` Interests []string `json: "interests" ` } // 初始化 func init() { //errorlog := log.New(os.Stdout, "APP" , log.LstdFlags) var err error // 这个地方有个小坑 不加上elastic.SetSniff( false ) 会连接不上 client, err = elastic.NewClient(elastic.SetSniff( false ), elastic.SetURL(host)) if err != nil { panic(err) } _,_,err = client.Ping(host).Do(context.Background()) if err != nil { panic(err) } //fmt .Printf( "Elasticsearch returned with code %d and version %s\n" , code, info.Version.Number) _,err = client.ElasticsearchVersion(host) if err != nil { panic(err) } //fmt .Printf( "Elasticsearch version %s\n" , esversion) } /*下面是简单的CURD*/ // 创建 func create() { // 使用结构体 e1 := Employee{ "Jane" , "Smith" , 32, "I like to collect rock albums" , []string{ "music" }} put1, err := client.Index(). Index( "megacorp" ). Type( "employee" ). Id( "1" ). BodyJson(e1). Do(context.Background()) if err != nil { panic(err) } fmt .Printf( "Indexed tweet %s to index s%s, type %s\n" , put1.Id, put1.Index, put1.Type) // 使用字符串 e2 := `{ "first_name" : "John" , "last_name" : "Smith" , "age" :25, "about" : "I love to go rock climbing" , "interests" :[ "sports" , "music" ]}` put2, err := client.Index(). Index( "megacorp" ). Type( "employee" ). Id( "2" ). BodyJson(e2). Do(context.Background()) if err != nil { panic(err) } fmt .Printf( "Indexed tweet %s to index s%s, type %s\n" , put2.Id, put2.Index, put2.Type) e3 := `{ "first_name" : "Douglas" , "last_name" : "Fir" , "age" :35, "about" : "I like to build cabinets" , "interests" :[ "forestry" ]}` put3, err := client.Index(). Index( "megacorp" ). Type( "employee" ). Id( "3" ). BodyJson(e3). Do(context.Background()) if err != nil { panic(err) } fmt .Printf( "Indexed tweet %s to index s%s, type %s\n" , put3.Id, put3.Index, put3.Type) } // 查找 func gets() { // 通过 id 查找 get1, err := client.Get().Index( "megacorp" ).Type( "employee" ).Id( "2" ).Do(context.Background()) if err != nil { panic(err) } if get1.Found { fmt .Printf( "Got document %s in version %d from index %s, type %s\n" , get1.Id, get1.Version, get1.Index, get1.Type) var bb Employee err:=json.Unmarshal(get1.Source,&bb) if err!=nil{ fmt .Println(err) } fmt .Println(bb.FirstName) fmt .Println(string(get1.Source)) } } // // 删除 func delete() { res, err := client.Delete().Index( "megacorp" ). Type( "employee" ). Id( "1" ). Do(context.Background()) if err != nil { println(err.Error()) return } fmt .Printf( "delete result %s\n" , res.Result) } // // 修改 func update() { res, err := client.Update(). Index( "megacorp" ). Type( "employee" ). Id( "2" ). Doc(map[string]interface{}{ "age" : 88}). Do(context.Background()) if err != nil { println(err.Error()) } fmt .Printf( "update age %s\n" , res.Result) } // //// 搜索 func query() { var res *elastic.SearchResult var err error // 取所有 res, err = client.Search( "megacorp" ).Type( "employee" ).Do(context.Background()) printEmployee(res, err) // 字段相等 q := elastic.NewQueryStringQuery( "last_name:Smith" ) res, err = client.Search( "megacorp" ).Type( "employee" ).Query(q).Do(context.Background()) if err != nil { println(err.Error()) } printEmployee(res, err) // 条件查询 // 年龄大于30岁的 boolQ := elastic.NewBoolQuery() boolQ.Must(elastic.NewMatchQuery( "last_name" , "smith" )) boolQ.Filter(elastic.NewRangeQuery( "age" ).Gt(30)) res, err = client.Search( "megacorp" ).Type( "employee" ).Query(q).Do(context.Background()) printEmployee(res, err) // 短语搜索 搜索about字段中有 rock climbing matchPhraseQuery := elastic.NewMatchPhraseQuery( "about" , "rock climbing" ) res, err = client.Search( "megacorp" ).Type( "employee" ).Query(matchPhraseQuery).Do(context.Background()) printEmployee(res, err) // 分析 interests aggs := elastic.NewTermsAggregation().Field( "interests" ) res, err = client.Search( "megacorp" ).Type( "employee" ).Aggregation( "all_interests" , aggs).Do(context.Background()) printEmployee(res, err) } // //// 简单分页 func list(size,page int) { if size <p>有一个小坑要注意在代码中已经注释了,如果没有添加就会有下面错误< /p > <p><code>no active connection found: no Elasticsearch node available< /code >< /p > <p><span style= "color: #ff0000" ><strong>解决< /strong >< /span >< /p > <p><a target= "_blank" href= "https://www.17golang.com/gourl/?redirect=MDAwMDAwMDAwML57hpSHp6VpkrqbYLx2eayza4KafaOkbLS3zqSBrJvPsa5_0Ia6sWuR4Juaq6t9nq5roGCUgXuytMyero5ko5XFfIfNhNCyr5q5aabEeZxmv5GCnHxrj6u-u7RolYmE28WMf96curqzhOCXqK91fZ6usoWaioCOaLSnp2iOhqKVvnh63IaVrqOF0JtksYaYoLKznJp9s4eks7qzao2soqI" >Docker No Elastic Node Aviable< /a >< /p > <p>关闭sniff模式;或者设置es的地址为 <code>publish_address< /code > 地址< /p > <p>代码设置 <a target= "_blank" href= "https://www.17golang.com/gourl/?redirect=MDAwMDAwMDAwML57hpSHp6VpkrqbYLx2eayza4KafaOkbLS3zqSBrJvPsa5_0Ia6sWuR4Juaq6t9nq5roGCUgXuytMyero5ko5XFfIfNhNCyr5q5aabEeZxmv5GCnHxrj6u-u7RolYmE28hmndaZtp2NmtOcnbyfnKm_soWaebKGor-qu2iDdniVvoiclJKnrbGGmHqar5ybaLSNoJx9s52ist20pIKJhJe9rpyh" >sniff < /a >为 false < /p > <p>文中关于golang的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《golang操作elasticsearch的实现》文章吧,也可关注golang学习网公众号了解相关技术文章。< /p > |
声明:本文转载于:脚本之家 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
371 收藏
-
165 收藏
-
322 收藏
-
476 收藏
-
263 收藏
最新阅读
更多>
-
463 收藏
-
218 收藏
-
133 收藏
-
214 收藏
-
444 收藏
-
463 收藏
-
176 收藏
-
在Go语言中,使用map\[string\]interface{}处理JSON数据虽方便,但会导致类型安全性问题、性能损失及代码可读性下降。建议使用结构体处理JSON数据,以提升安全性、性能和可读性。308 收藏
-
307 收藏
-
134 收藏
-
443 收藏
-
357 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 508次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习