This repository was archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathCreateCmd.go
76 lines (62 loc) · 1.56 KB
/
CreateCmd.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
package main
import (
"fmt"
"net/http"
"os"
"time"
"github.com/codegangsta/cli"
)
//CreateCmd sub-command implementation, for now it takes name, memory and number of slaves
//If wait is bool flag is enabled then we will keep polling scheduler/framework until we get a "Created OK" from it.
func CreateCmd(c *cli.Context) {
name := c.String("name")
mem := c.Int("memory")
slaves := c.Int("slaves")
isWait := c.Bool("wait")
file := c.String("file")
if name == "" {
fmt.Printf("Error: Should have a valid name\n")
return
}
if mem < 100 {
mem = 100
}
if slaves < 0 || slaves > 100 {
slaves = 0
}
var fileReader *os.File
var ferr error
if file != "" {
fileReader, ferr = os.Open(file)
if ferr != nil {
fmt.Printf("Error: Unable to open file %s\n", file)
return
}
}
fmt.Printf("Attempting to Create a Redis Instance (%s) with mem=%d slaves=%d\n", name, mem, slaves)
url := fmt.Sprintf("%s/v1/CREATE/%s/%d/1/%d", MrRedisFW, name, mem, slaves)
res, err := http.Post(url, "application/json", fileReader)
if err != nil {
fmt.Printf("Error: Creating the Instance error=%v\n", err)
return
}
if res.StatusCode == http.StatusCreated {
fmt.Printf("Instance Creation accepted..")
if isWait {
cnt := 0
for !IsRunning(name) {
time.Sleep(100 * time.Millisecond)
cnt++
p := cnt % 10
if p == 0 {
fmt.Printf(".")
}
}
fmt.Printf("\nInstance Created.\n")
} else {
fmt.Printf("\nCheck $mrr status -n %s for status\n", name)
}
} else {
fmt.Printf("Error Creating the instance response = %v\n", res)
}
}