-
Notifications
You must be signed in to change notification settings - Fork 14
/
indices_cmd.go
732 lines (634 loc) · 17.3 KB
/
indices_cmd.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
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
package main
import (
ctx "context"
"encoding/json"
"errors"
"fmt"
"strconv"
"strings"
"github.com/Sirupsen/logrus"
"github.com/codegangsta/cli"
"github.com/olivere/elastic"
)
var indicesCommand = cli.Command{
Name: "indices",
Aliases: []string{"i"},
Usage: "Elastic indices operation cmd.",
Subcommands: []cli.Command{
// indices cat
indicesCatCommand,
// indices list
indicesListCommand,
// indices cat shards
indicesCatShardsCommand,
// indices open
indicesOpenCommand,
// indices close
indicesCloseCommand,
// indices delete
indicesDeleteCommand,
// indices settings
indicesSettingsCommand,
// indices template
indicesTemplateCommand,
// indices cat aliases
indicesCatAliasesCommand,
},
}
//cat alias
var indicesCatAliasesCommand = cli.Command{
Name: "alias",
Usage: "cat indices alias list from elastic cluster.",
ArgsUsage: `[-i "alias* or alias1,alias2"]`,
Description: `Display the cat indices of elastic cluster.`,
Flags: []cli.Flag{
cli.StringFlag{
Name: "format",
Value: "text",
Usage: "set the format of output('text' (default),or 'json')",
},
cli.StringFlag{
Name: "alias",
Value: "",
Usage: "set alias for query(alias1,alias2).",
},
},
Action: func(context *cli.Context) error {
return indicesCatAliasCmd(context)
},
}
func indicesCatAliasCmd(context *cli.Context) error {
client, err := NewElasticClient(context)
if err != nil {
return err
}
defer client.Stop()
ctx := ctx.Background()
aliasService := client.CatAliasService()
aliases := context.String("alias")
if aliases != "" {
aliaesarray := strings.Split(aliases, ",")
if len(aliaesarray) > 0 {
aliasService.Alias(aliaesarray...)
}
}
res, err := aliasService.Do(ctx)
if err != nil {
return err
}
format := context.String("format")
switch format {
case "text":
printAliasesList(res)
case "json":
jsonStr, err := json.Marshal(res)
if err != nil {
return err
}
fmt.Println(jsonPrettyPrint(string(jsonStr)))
default:
return fmt.Errorf("unknows format %q", format)
}
return nil
}
// aliases alias index filter routing.index routing.search
func printAliasesList(CatAliasResponse *elastic.CatAliasResponse) error {
if CatAliasResponse == nil {
return nil
}
display := NewTableDisplay()
display.AddRow([]string{"alias", "index", "filter", "routingIndex", "routingSearch"})
for _, indiceInfo := range CatAliasResponse.Aliases {
display.AddRow([]string{
indiceInfo.Alias,
indiceInfo.Index,
indiceInfo.Filter,
indiceInfo.Routingindex,
indiceInfo.Routingsearch})
}
display.Flush()
return nil
}
// cat
var indicesCatCommand = cli.Command{
Name: "cat",
Usage: "cat indices list from elastic cluster.",
ArgsUsage: `[-i "indices* or index1,index2"]`,
Description: `Display the cat indices of elastic cluster.`,
Flags: []cli.Flag{
cli.StringFlag{
Name: "format",
Value: "text",
Usage: "set the format of output('text' (default), or 'json').",
},
cli.StringFlag{
Name: "indices, i",
Value: "",
Usage: "set indices for query (index1,index2).",
},
},
Action: func(context *cli.Context) error {
return indicesCatCmd(context)
},
}
func indicesCatCmd(context *cli.Context) error {
// Create a client and connect to addr.
client, err := NewElasticClient(context)
if err != nil {
return err
}
defer client.Stop()
// Starting with elastic.v5, you must pass a context to execute each service
ctx := ctx.Background()
catService := client.CatIndicesService()
indices := context.String("indices")
if indices != "" {
iarray := strings.Split(indices, ",")
if len(iarray) > 0 {
catService.Index(iarray...)
}
}
res, err := catService.Do(ctx)
if err != nil {
return err
}
format := context.String("format")
switch format {
case "text":
printIndicesList(res)
case "json":
jsonStr, err := json.Marshal(res)
if err != nil {
return err
}
fmt.Println(jsonPrettyPrint(string(jsonStr)))
default:
return fmt.Errorf("unknown format %q", context.String("format"))
}
return nil
}
// health status index pri rep docs.count docs.deleted store.size pri.store.size
func printIndicesList(indicesInfoResponse *elastic.CatIndicesResponse) error {
if indicesInfoResponse == nil {
return nil
}
display := NewTableDisplay()
display.AddRow([]string{"health", "status", "index", "uuid", "pri", "rep", " count", "deleted", "size", "storeSize"})
for _, indice := range indicesInfoResponse.Indices {
display.AddRow([]string{
indice.Health,
indice.Status,
indice.Index,
indice.UUID,
indice.Pri,
indice.Rep,
indice.Count,
indice.Deleted,
indice.Size,
indice.StoreSize})
}
display.Flush()
return nil
}
// shards
var indicesCatShardsCommand = cli.Command{
Name: "shards",
Aliases: []string{"s"},
Usage: "Display the cat shards of elastic cluster.",
ArgsUsage: `[-i "indices* or index1,index2"]`,
Description: `get cat shards from elastic cluster.`,
Flags: []cli.Flag{
cli.StringFlag{
Name: "format",
Value: "text",
Usage: "set the format of output('text' (default), or 'json').",
},
cli.StringFlag{
Name: "indices, i",
Value: "",
Usage: "set indices for query (index1,index2).",
},
},
Action: func(context *cli.Context) error {
return indicesCatShardsCmd(context)
},
}
func indicesCatShardsCmd(context *cli.Context) error {
// Create a client and connect to addr.
client, err := NewElasticClient(context)
if err != nil {
return err
}
defer client.Stop()
// Starting with elastic.v5, you must pass a context to execute each service
ctx := ctx.Background()
catService := client.CatShardsService()
indices := context.String("indices")
if indices != "" {
iarray := strings.Split(indices, ",")
if len(iarray) > 0 {
catService.Index(iarray...)
}
}
res, err := catService.Do(ctx)
if err != nil {
return err
}
format := context.String("format")
switch format {
case "text":
printShardsList(res)
case "json":
jsonStr, err := json.Marshal(res)
if err != nil {
return err
}
fmt.Println(jsonPrettyPrint(string(jsonStr)))
default:
return fmt.Errorf("unknown format %q", context.String("format"))
}
return nil
}
// index shard prirep state docs store ip node
func printShardsList(shardsInfoResponse *elastic.CatShardsResponse) error {
if shardsInfoResponse == nil {
return nil
}
display := NewTableDisplay()
display.AddRow([]string{"index", "shard", "prirep", "state", "docs", "store", "ip", "node"})
for _, shard := range shardsInfoResponse.Shards {
display.AddRow([]string{
shard.Index,
shard.Shard,
shard.Prirep,
shard.State,
shard.Docs,
shard.Store,
shard.Ip,
shard.Node})
}
display.Flush()
return nil
}
// list
var indicesListCommand = cli.Command{
Name: "list",
Usage: "Display the indices list of elastic cluster.",
Description: `get indices list from elastic cluster.`,
Action: func(context *cli.Context) error {
return indicesListCmd(context)
},
}
func indicesListCmd(context *cli.Context) error {
// Create a client and connect to addr.
client, err := NewElasticClient(context)
if err != nil {
return err
}
defer client.Stop()
// Starting with elastic.v5, you must pass a context to execute each service
//ctx := ctx.Background()
res, err := client.IndexNames()
if err != nil {
return err
}
jsonStr, err := json.Marshal(res)
if err != nil {
return err
}
fmt.Println(jsonPrettyPrint(string(jsonStr)))
return nil
}
// open indicesName
var indicesOpenCommand = cli.Command{
Name: "open",
Usage: "The command open the elasticsearch indices.",
ArgsUsage: `indicesName`,
Description: `open the elasticsearch indices.`,
Action: func(context *cli.Context) error {
if context.NArg() != 1 {
fmt.Printf("Incorrect Usage.\n\n")
cli.ShowCommandHelp(context, "open")
logrus.Fatalf("Must provide indicesName for open command!")
}
return indicesOpenCmd(context)
},
}
func indicesOpenCmd(context *cli.Context) error {
var indicesName string
if indicesName = context.Args().Get(0); indicesName == "" {
return errors.New("please check indicesName for open command")
}
// Create a client and connect to addr.
client, err := NewElasticClient(context)
if err != nil {
return err
}
defer client.Stop()
// Starting with elastic.v5, you must pass a context to execute each service
ctx := ctx.Background()
res, err := client.OpenIndex(indicesName).Do(ctx)
if err != nil {
return err
}
jsonStr, err := json.Marshal(res)
if err != nil {
return err
}
fmt.Println(jsonPrettyPrint(string(jsonStr)))
return nil
}
// close indicesName
var indicesCloseCommand = cli.Command{
Name: "close",
Usage: "Close the elasticsearch indices.",
ArgsUsage: `indicesName`,
Description: `The command close the elasticsearch indices.`,
Action: func(context *cli.Context) error {
if context.NArg() != 1 {
fmt.Printf("Incorrect Usage.\n\n")
cli.ShowCommandHelp(context, "close")
logrus.Fatalf("Must provide indicesName for close command!")
}
return indicesCloseCmd(context)
},
}
func indicesCloseCmd(context *cli.Context) error {
var indicesName string
if indicesName = context.Args().Get(0); indicesName == "" {
return errors.New("please check indicesName for close command")
}
// Create a client and connect to addr.
client, err := NewElasticClient(context)
if err != nil {
return err
}
defer client.Stop()
// Starting with elastic.v5, you must pass a context to execute each service
ctx := ctx.Background()
res, err := client.CloseIndex(indicesName).Do(ctx)
if err != nil {
return err
}
jsonStr, err := json.Marshal(res)
if err != nil {
return err
}
fmt.Println(jsonPrettyPrint(string(jsonStr)))
return nil
}
// delete indicesName
var indicesDeleteCommand = cli.Command{
Name: "delete",
Usage: "Delete the elasticsearch indices.",
Aliases: []string{"del"},
ArgsUsage: `index1,index2`,
Description: `The command delete the elasticsearch indices.`,
Flags: []cli.Flag{
cli.BoolFlag{
Name: "yes, y",
Usage: "Answer delete indices conform.",
},
},
Action: func(context *cli.Context) error {
if context.NArg() != 1 {
fmt.Printf("Incorrect Usage.\n\n")
cli.ShowCommandHelp(context, "delete")
logrus.Fatalf("Must provide indicesName for delete command!")
}
return indicesDeleteCmd(context)
},
}
func indicesDeleteCmd(context *cli.Context) error {
var indicesName string
if indicesName = context.Args().Get(0); indicesName == "" {
return errors.New("please check indicesName for delete command")
}
indicesList := strings.Split(indicesName, ",")
// Create a client and connect to addr.
client, err := NewElasticClient(context)
if err != nil {
return err
}
defer client.Stop()
// Starting with elastic.v5, you must pass a context to execute each service
ctx := ctx.Background()
fmt.Println(sgrBoldBlue("[Attention] Delete below indices? type (yes) to conform delete."))
if !context.Bool("yes") {
YesOrDie(strings.Join(indicesList, " "))
}
res, err := client.DeleteIndex(indicesList...).Do(ctx)
if err != nil {
return err
}
jsonStr, err := json.Marshal(res)
if err != nil {
return err
}
fmt.Println(jsonPrettyPrint(string(jsonStr)))
return nil
}
// settings indicesName
var indicesSettingsCommand = cli.Command{
Name: "settings",
Usage: "Get settings of the elasticsearch indices.",
Aliases: []string{"set"},
ArgsUsage: `index1,index2`,
Description: `The command get settings of the elasticsearch indices.`,
Flags: []cli.Flag{
cli.BoolFlag{
Name: "get, g",
Usage: "get the settings of indices(index1,index2).",
},
cli.StringFlag{
Name: "set, s",
Value: "",
Usage: "set the settings of indices(index1,index2): -s '{settings_json}'.",
},
cli.StringFlag{
Name: "replicas, r",
Value: "",
Usage: "set the number_of_replicas of indices(index1,index2): -r num.",
},
},
Action: func(context *cli.Context) error {
if context.NArg() != 1 {
fmt.Printf("Incorrect Usage.\n\n")
cli.ShowCommandHelp(context, "settings")
logrus.Fatalf("Must provide indicesName for settings command!")
}
return indicesSettingsCmd(context)
},
}
func indicesSettingsCmd(context *cli.Context) error {
var indicesName string
if indicesName = context.Args().Get(0); indicesName == "" {
return errors.New("please check indicesName for settings command")
}
indicesList := strings.Split(indicesName, ",")
// Create a client and connect to addr.
client, err := NewElasticClient(context)
if err != nil {
return err
}
defer client.Stop()
// Starting with elastic.v5, you must pass a context to execute each service
ctx := ctx.Background()
if context.Bool("get") {
indexGetSetting := client.IndexGetSettings(indicesList...)
res, err := indexGetSetting.FlatSettings(true).Do(ctx)
if err != nil {
return err
}
jsonStr, err := json.Marshal(res)
if err != nil {
return err
}
fmt.Println(jsonPrettyPrint(string(jsonStr)))
} else if str := context.String("set"); str != "" {
str = strings.Trim(str, " ")
if !isJSON(str) {
return fmt.Errorf("'%s' is not a json string", str)
}
indexPutSetting := client.IndexPutSettings(indicesList...)
res, err := indexPutSetting.BodyJson(str).Do(ctx)
if err != nil {
return err
}
jsonStr, err := json.Marshal(res)
if err != nil {
return err
}
fmt.Println(jsonPrettyPrint(string(jsonStr)))
} else if str := context.String("replicas"); str != "" {
if num, err := strconv.Atoi(str); err != nil || num < 0 {
return fmt.Errorf("Invalid replicas num: %s", str)
}
jsonStr := fmt.Sprintf("{\"index.number_of_replicas\": \"%s\"}", str)
if !isJSON(jsonStr) {
return fmt.Errorf("'%s' is not a json string", jsonStr)
}
indexPutSetting := client.IndexPutSettings(indicesList...)
res, err := indexPutSetting.BodyJson(jsonStr).Do(ctx)
if err != nil {
return err
}
jsonRes, err := json.Marshal(res)
if err != nil {
return err
}
fmt.Println(jsonPrettyPrint(string(jsonRes)))
} else {
cli.ShowCommandHelp(context, "settings")
return fmt.Errorf("indices settings must provide -g or -s parameters")
}
return nil
}
// template
var indicesTemplateCommand = cli.Command{
Name: "template",
Usage: "Get template of the elasticsearch indices.",
Aliases: []string{"tpl"},
ArgsUsage: `tpl1,tpl2`,
Description: `The command get template of the elasticsearch indices.`,
Flags: []cli.Flag{
cli.BoolFlag{
Name: "get, g",
Usage: "get the template of templates(tpl1,tpl2).",
},
cli.StringFlag{
Name: "set, s",
Value: "",
Usage: "set the template of templates(tpl1,tpl2): -s '{settings_json}'.",
},
cli.StringFlag{
Name: "replicas, r",
Value: "",
Usage: "set the number_of_replicas of template(tpl1,tpl2): -r num.",
},
},
Action: func(context *cli.Context) error {
if context.NArg() != 1 {
fmt.Printf("Incorrect Usage.\n\n")
cli.ShowCommandHelp(context, "template")
logrus.Fatalf("Must provide templateName for template command!")
}
return indicesTemplateCmd(context)
},
}
func indicesTemplateCmd(context *cli.Context) error {
var templatesName string
if templatesName = context.Args().Get(0); templatesName == "" {
return errors.New("please check templatesName for template command")
}
templatesList := strings.Split(templatesName, ",")
// Create a client and connect to addr.
client, err := NewElasticClient(context)
if err != nil {
return err
}
defer client.Stop()
// Starting with elastic.v5, you must pass a context to execute each service
ctx := ctx.Background()
if context.Bool("get") {
indexGetTemplate := client.IndexGetTemplate(templatesList...)
res, err := indexGetTemplate.FlatSettings(true).Do(ctx)
if err != nil {
return err
}
jsonStr, err := json.Marshal(res)
if err != nil {
return err
}
fmt.Println(jsonPrettyPrint(string(jsonStr)))
} else if str := context.String("set"); str != "" {
str = strings.Trim(str, " ")
if !isJSON(str) {
return fmt.Errorf("'%s' is not a json string", str)
}
indexPutTemplate := client.IndexPutTemplate(templatesList[0])
res, err := indexPutTemplate.BodyJson(str).Do(ctx)
if err != nil {
return err
}
jsonStr, err := json.Marshal(res)
if err != nil {
return err
}
fmt.Println(jsonPrettyPrint(string(jsonStr)))
} else if str := context.String("replicas"); str != "" {
if num, err := strconv.Atoi(str); err != nil || num < 0 {
return fmt.Errorf("Invalid replicas num: %s", str)
}
indexGetTemplate := client.IndexGetTemplate(templatesList[0])
res, err := indexGetTemplate.FlatSettings(true).Do(ctx)
if err != nil {
return err
}
jsonStr, err := json.Marshal(res)
if err != nil {
return err
}
out := map[string]interface{}{}
json.Unmarshal([]byte(jsonStr), &out)
fmt.Println(out)
// jsonStr := fmt.Sprintf("{\"index.number_of_replicas\": \"%s\"}", str)
// if !isJSON(jsonStr) {
// return fmt.Errorf("'%s' is not a json string", jsonStr)
// }
// indexPutTemplate := client.IndexPutTemplate(templatesList[0])
// res, err := indexPutTemplate.BodyJson(jsonStr).Do(ctx)
// if err != nil {
// return err
// }
// jsonRes, err := json.Marshal(res)
// if err != nil {
// return err
// }
// fmt.Println(jsonPrettyPrint(string(jsonRes)))
} else {
cli.ShowCommandHelp(context, "template")
return fmt.Errorf("indices template must provide -g or -s parameters")
}
return nil
}