mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-21 09:34:40 +00:00
Cleaned up the output files. #7572
This commit is contained in:
parent
ec5e7093b6
commit
ac282bd50a
@ -119,7 +119,7 @@ var _ = Describe("Density", func() {
|
|||||||
It(name, func() {
|
It(name, func() {
|
||||||
totalPods := itArg.podsPerMinion * minionCount
|
totalPods := itArg.podsPerMinion * minionCount
|
||||||
RCName = "density" + strconv.Itoa(totalPods) + "-" + uuid
|
RCName = "density" + strconv.Itoa(totalPods) + "-" + uuid
|
||||||
fileHndl, err := os.Create(fmt.Sprintf("%s/pod_states.txt", uuid))
|
fileHndl, err := os.Create(fmt.Sprintf("%s/pod_states.csv", uuid))
|
||||||
expectNoError(err)
|
expectNoError(err)
|
||||||
defer fileHndl.Close()
|
defer fileHndl.Close()
|
||||||
|
|
||||||
@ -150,7 +150,6 @@ var _ = Describe("Density", func() {
|
|||||||
expectNoError(RunRC(c, RCName, ns, "gcr.io/google_containers/pause:go", totalPods, fileHndl))
|
expectNoError(RunRC(c, RCName, ns, "gcr.io/google_containers/pause:go", totalPods, fileHndl))
|
||||||
e2eStartupTime := time.Now().Sub(startTime)
|
e2eStartupTime := time.Now().Sub(startTime)
|
||||||
Logf("E2E startup time for %d pods: %v", totalPods, e2eStartupTime)
|
Logf("E2E startup time for %d pods: %v", totalPods, e2eStartupTime)
|
||||||
fmt.Fprintf(fileHndl, "E2E startup time for %d pods: %v\n", totalPods, e2eStartupTime)
|
|
||||||
|
|
||||||
By("Waiting for all events to be recorded")
|
By("Waiting for all events to be recorded")
|
||||||
last := -1
|
last := -1
|
||||||
|
@ -22,6 +22,7 @@ import (
|
|||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"math"
|
"math"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@ -97,7 +98,7 @@ func (fq *FifoQueue) Push(elem interface{}) {
|
|||||||
func (fq *FifoQueue) Pop() QueueItem {
|
func (fq *FifoQueue) Pop() QueueItem {
|
||||||
fq.mutex.Lock()
|
fq.mutex.Lock()
|
||||||
var val QueueItem
|
var val QueueItem
|
||||||
if len(fq.list) >= fq.pos {
|
if len(fq.list)-1 >= fq.pos {
|
||||||
val = fq.list[fq.pos]
|
val = fq.list[fq.pos]
|
||||||
fq.pos++
|
fq.pos++
|
||||||
}
|
}
|
||||||
@ -114,7 +115,7 @@ func (fq *FifoQueue) First() QueueItem {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (fq *FifoQueue) Last() QueueItem {
|
func (fq *FifoQueue) Last() QueueItem {
|
||||||
return fq.list[len(fq.list)]
|
return fq.list[len(fq.list)-1]
|
||||||
}
|
}
|
||||||
|
|
||||||
func (fq *FifoQueue) Reset() {
|
func (fq *FifoQueue) Reset() {
|
||||||
@ -592,14 +593,11 @@ func RunRC(c *client.Client, name string, ns, image string, replicas int, podSta
|
|||||||
failCount := 5
|
failCount := 5
|
||||||
for same < failCount && current < replicas {
|
for same < failCount && current < replicas {
|
||||||
time.Sleep(2 * time.Second)
|
time.Sleep(2 * time.Second)
|
||||||
for item := podLists.Pop(); podLists.Len() > 0 && current < replicas; item = podLists.Pop() {
|
for podLists.Len() > 0 && current < replicas {
|
||||||
|
item := podLists.Pop()
|
||||||
pods := item.value.([]api.Pod)
|
pods := item.value.([]api.Pod)
|
||||||
current = len(pods)
|
current = len(pods)
|
||||||
msg := fmt.Sprintf("Controller %s: Found %d pods out of %d", name, current, replicas)
|
Logf("Controller %s: Found %d pods out of %d", name, current, replicas)
|
||||||
Logf(msg)
|
|
||||||
if podStatusFile != nil {
|
|
||||||
fmt.Fprintf(podStatusFile, "%s: %s\n", item.createTime, msg)
|
|
||||||
}
|
|
||||||
if last < current {
|
if last < current {
|
||||||
same = 0
|
same = 0
|
||||||
} else if last == current {
|
} else if last == current {
|
||||||
@ -618,11 +616,7 @@ func RunRC(c *client.Client, name string, ns, image string, replicas int, podSta
|
|||||||
if current != replicas {
|
if current != replicas {
|
||||||
return fmt.Errorf("Controller %s: Only found %d replicas out of %d", name, current, replicas)
|
return fmt.Errorf("Controller %s: Only found %d replicas out of %d", name, current, replicas)
|
||||||
}
|
}
|
||||||
msg := fmt.Sprintf("Controller %s in ns %s: Found %d pods out of %d", name, ns, current, replicas)
|
Logf("Controller %s in ns %s: Found %d pods out of %d", name, ns, current, replicas)
|
||||||
Logf(msg)
|
|
||||||
if podStatusFile != nil {
|
|
||||||
fmt.Fprintf(podStatusFile, "%s: %s\n", time.Now().String(), msg)
|
|
||||||
}
|
|
||||||
|
|
||||||
By(fmt.Sprintf("Waiting for all %d replicas to be running with a max container failures of %d", replicas, maxContainerFailures))
|
By(fmt.Sprintf("Waiting for all %d replicas to be running with a max container failures of %d", replicas, maxContainerFailures))
|
||||||
same = 0
|
same = 0
|
||||||
@ -634,7 +628,8 @@ func RunRC(c *client.Client, name string, ns, image string, replicas int, podSta
|
|||||||
foundAllPods := false
|
foundAllPods := false
|
||||||
for same < failCount && current < replicas {
|
for same < failCount && current < replicas {
|
||||||
time.Sleep(2 * time.Second)
|
time.Sleep(2 * time.Second)
|
||||||
for item := podLists.Pop(); podLists.Len() > 0 && current < replicas; item = podLists.Pop() {
|
for podLists.Len() > 0 && current < replicas {
|
||||||
|
item := podLists.Pop()
|
||||||
current = 0
|
current = 0
|
||||||
waiting := 0
|
waiting := 0
|
||||||
pending := 0
|
pending := 0
|
||||||
@ -660,10 +655,9 @@ func RunRC(c *client.Client, name string, ns, image string, replicas int, podSta
|
|||||||
unknown++
|
unknown++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
msg := fmt.Sprintf("Pod States: %d running, %d pending, %d waiting, %d inactive, %d unknown ", current, pending, waiting, inactive, unknown)
|
Logf("Pod States: %d running, %d pending, %d waiting, %d inactive, %d unknown ", current, pending, waiting, inactive, unknown)
|
||||||
Logf(msg)
|
|
||||||
if podStatusFile != nil {
|
if podStatusFile != nil {
|
||||||
fmt.Fprintf(podStatusFile, "%s: %s\n", item.createTime, msg)
|
fmt.Fprintf(podStatusFile, "%s, %d, running, %d, pending, %d, waiting, %d, inactive, %d, unknown\n", item.createTime, current, pending, waiting, inactive, unknown)
|
||||||
}
|
}
|
||||||
|
|
||||||
if foundAllPods && len(currentPods) != len(oldPods) {
|
if foundAllPods && len(currentPods) != len(oldPods) {
|
||||||
@ -1033,7 +1027,9 @@ func getMetrics(c *client.Client) (string, error) {
|
|||||||
func getDebugInfo(c *client.Client) (map[string]string, error) {
|
func getDebugInfo(c *client.Client) (map[string]string, error) {
|
||||||
data := make(map[string]string)
|
data := make(map[string]string)
|
||||||
for _, key := range []string{"block", "goroutine", "heap", "threadcreate"} {
|
for _, key := range []string{"block", "goroutine", "heap", "threadcreate"} {
|
||||||
body, err := c.Get().AbsPath(fmt.Sprintf("/debug/pprof/%s", key)).DoRaw()
|
resp, err := http.Get(c.Get().AbsPath(fmt.Sprintf("debug/pprof/%s", key)).URL().String() + "?debug=2")
|
||||||
|
body, err := ioutil.ReadAll(resp.Body)
|
||||||
|
resp.Body.Close()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
Logf("Warning: Error trying to fetch %s debug data: %v", key, err)
|
Logf("Warning: Error trying to fetch %s debug data: %v", key, err)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user