-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.go
125 lines (112 loc) · 2.49 KB
/
demo.go
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
package main
import (
"bytes"
"context"
"encoding/json"
"fmt"
"github.com/elastic/go-elasticsearch/v6"
"github.com/elastic/go-elasticsearch/v6/esapi"
"os"
"strconv"
)
var c *elasticsearch.Client
func init() {
var err error
config := elasticsearch.Config{}
config.Addresses = []string{"http://172.16.208.78:9200"}
c, err = elasticsearch.NewClient(config)
checkError(err)
//res, err := c.Info()
//defer res.Body.Close()
//fmt.Println(res.String())
}
func checkError(err error) {
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}
func createTable() {
req := esapi.IndicesCreateRequest{
Index: "test_index",
}
res, err := req.Do(context.Background(), c)
checkError(err)
defer res.Body.Close()
fmt.Println(res.String())
}
func deleteTable() {
req := esapi.IndicesDeleteRequest{
Index: []string{"test_index"},
}
res, err := req.Do(context.Background(), c)
checkError(err)
defer res.Body.Close()
fmt.Println(res.String())
}
func insertSingle() {
body := map[string]interface{}{
"num": 0,
"str": "test",
}
jsonBody, _ := json.Marshal(body)
req := esapi.CreateRequest{
Index: "test_index",
DocumentType: "test_type",
DocumentID: "test_1",
Body: bytes.NewReader(jsonBody),
}
res, err := req.Do(context.Background(), c)
checkError(err)
defer res.Body.Close()
fmt.Println(res.String())
}
func insertBatch() {
var bodyBuf bytes.Buffer
for i := 2; i < 10; i++ {
createLine := map[string]interface{}{
"create": map[string]interface{}{
"_index": "test_index",
"_id": "test_" + strconv.Itoa(i),
"_type": "test_type",
},
}
jsonStr, _ := json.Marshal(createLine)
bodyBuf.Write(jsonStr)
bodyBuf.WriteByte('\n')
body := map[string]interface{}{
"num": i % 3,
"str": "test" + strconv.Itoa(i),
}
jsonStr, _ = json.Marshal(body)
bodyBuf.Write(jsonStr)
bodyBuf.WriteByte('\n')
}
req := esapi.BulkRequest{
Body: &bodyBuf,
}
res, err := req.Do(context.Background(), c)
checkError(err)
defer res.Body.Close()
fmt.Println(res.String())
}
func selectBySql() {
query := map[string]interface{}{
"query": "select count(*) as cnt, max(str) as s, num from test_index where num > 1 group by num, str limit 2",
}
jsonBody, _ := json.Marshal(query)
req := esapi.XPackSQLQueryRequest{
Body: bytes.NewReader(jsonBody),
}
res, err := req.Do(context.Background(), c)
checkError(err)
defer res.Body.Close()
fmt.Println(res.String())
}
func main() {
//deleteTable()
//createTable()
//insertSingle()
//insertBatch()
selectBySql()
}