mirror of https://github.com/k3s-io/k3s
244 lines
9.1 KiB
Go
244 lines
9.1 KiB
Go
/*
|
|
Copyright 2016 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"net/url"
|
|
"strconv"
|
|
"sync"
|
|
|
|
"k8s.io/kubernetes/test/images/resource-consumer/common"
|
|
)
|
|
|
|
var port = flag.Int("port", 8080, "Port number.")
|
|
var consumerPort = flag.Int("consumer-port", 8080, "Port number of consumers.")
|
|
var consumerServiceName = flag.String("consumer-service-name", "resource-consumer", "Name of service containing resource consumers.")
|
|
var consumerServiceNamespace = flag.String("consumer-service-namespace", "default", "Namespace of service containing resource consumers.")
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
mgr := newController()
|
|
log.Fatal(http.ListenAndServe(fmt.Sprintf(":%d", *port), mgr))
|
|
}
|
|
|
|
type controller struct {
|
|
responseWriterLock sync.Mutex
|
|
waitGroup sync.WaitGroup
|
|
}
|
|
|
|
func newController() *controller {
|
|
c := &controller{}
|
|
return c
|
|
}
|
|
|
|
func (c *controller) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
|
if req.Method != "POST" {
|
|
http.Error(w, common.BadRequest, http.StatusBadRequest)
|
|
return
|
|
}
|
|
// parsing POST request data and URL data
|
|
if err := req.ParseForm(); err != nil {
|
|
http.Error(w, err.Error(), http.StatusBadRequest)
|
|
return
|
|
}
|
|
// handle consumeCPU
|
|
if req.URL.Path == common.ConsumeCPUAddress {
|
|
c.handleConsumeCPU(w, req.Form)
|
|
return
|
|
}
|
|
// handle consumeMem
|
|
if req.URL.Path == common.ConsumeMemAddress {
|
|
c.handleConsumeMem(w, req.Form)
|
|
return
|
|
}
|
|
// handle bumpMetric
|
|
if req.URL.Path == common.BumpMetricAddress {
|
|
c.handleBumpMetric(w, req.Form)
|
|
return
|
|
}
|
|
http.Error(w, common.UnknownFunction, http.StatusNotFound)
|
|
}
|
|
|
|
func (c *controller) handleConsumeCPU(w http.ResponseWriter, query url.Values) {
|
|
// getting string data for consumeCPU
|
|
durationSecString := query.Get(common.DurationSecQuery)
|
|
millicoresString := query.Get(common.MillicoresQuery)
|
|
requestSizeInMillicoresString := query.Get(common.RequestSizeInMillicoresQuery)
|
|
if durationSecString == "" || millicoresString == "" || requestSizeInMillicoresString == "" {
|
|
http.Error(w, common.NotGivenFunctionArgument, http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
// convert data (strings to ints) for consumeCPU
|
|
durationSec, durationSecError := strconv.Atoi(durationSecString)
|
|
millicores, millicoresError := strconv.Atoi(millicoresString)
|
|
requestSizeInMillicores, requestSizeInMillicoresError := strconv.Atoi(requestSizeInMillicoresString)
|
|
if durationSecError != nil || millicoresError != nil || requestSizeInMillicoresError != nil || requestSizeInMillicores <= 0 {
|
|
http.Error(w, common.IncorrectFunctionArgument, http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
count := millicores / requestSizeInMillicores
|
|
rest := millicores - count*requestSizeInMillicores
|
|
fmt.Fprintf(w, "RC manager: sending %v requests to consume %v millicores each and 1 request to consume %v millicores\n", count, requestSizeInMillicores, rest)
|
|
if count > 0 {
|
|
c.waitGroup.Add(count)
|
|
c.sendConsumeCPURequests(w, count, requestSizeInMillicores, durationSec)
|
|
}
|
|
if rest > 0 {
|
|
c.waitGroup.Add(1)
|
|
go c.sendOneConsumeCPURequest(w, rest, durationSec)
|
|
}
|
|
c.waitGroup.Wait()
|
|
}
|
|
|
|
func (c *controller) handleConsumeMem(w http.ResponseWriter, query url.Values) {
|
|
// getting string data for consumeMem
|
|
durationSecString := query.Get(common.DurationSecQuery)
|
|
megabytesString := query.Get(common.MegabytesQuery)
|
|
requestSizeInMegabytesString := query.Get(common.RequestSizeInMegabytesQuery)
|
|
if durationSecString == "" || megabytesString == "" || requestSizeInMegabytesString == "" {
|
|
http.Error(w, common.NotGivenFunctionArgument, http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
// convert data (strings to ints) for consumeMem
|
|
durationSec, durationSecError := strconv.Atoi(durationSecString)
|
|
megabytes, megabytesError := strconv.Atoi(megabytesString)
|
|
requestSizeInMegabytes, requestSizeInMegabytesError := strconv.Atoi(requestSizeInMegabytesString)
|
|
if durationSecError != nil || megabytesError != nil || requestSizeInMegabytesError != nil || requestSizeInMegabytes <= 0 {
|
|
http.Error(w, common.IncorrectFunctionArgument, http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
count := megabytes / requestSizeInMegabytes
|
|
rest := megabytes - count*requestSizeInMegabytes
|
|
fmt.Fprintf(w, "RC manager: sending %v requests to consume %v MB each and 1 request to consume %v MB\n", count, requestSizeInMegabytes, rest)
|
|
if count > 0 {
|
|
c.waitGroup.Add(count)
|
|
c.sendConsumeMemRequests(w, count, requestSizeInMegabytes, durationSec)
|
|
}
|
|
if rest > 0 {
|
|
c.waitGroup.Add(1)
|
|
go c.sendOneConsumeMemRequest(w, rest, durationSec)
|
|
}
|
|
c.waitGroup.Wait()
|
|
}
|
|
|
|
func (c *controller) handleBumpMetric(w http.ResponseWriter, query url.Values) {
|
|
// getting string data for handleBumpMetric
|
|
metric := query.Get(common.MetricNameQuery)
|
|
deltaString := query.Get(common.DeltaQuery)
|
|
durationSecString := query.Get(common.DurationSecQuery)
|
|
requestSizeCustomMetricString := query.Get(common.RequestSizeCustomMetricQuery)
|
|
if durationSecString == "" || metric == "" || deltaString == "" || requestSizeCustomMetricString == "" {
|
|
http.Error(w, common.NotGivenFunctionArgument, http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
// convert data (strings to ints/floats) for handleBumpMetric
|
|
durationSec, durationSecError := strconv.Atoi(durationSecString)
|
|
delta, deltaError := strconv.Atoi(deltaString)
|
|
requestSizeCustomMetric, requestSizeCustomMetricError := strconv.Atoi(requestSizeCustomMetricString)
|
|
if durationSecError != nil || deltaError != nil || requestSizeCustomMetricError != nil || requestSizeCustomMetric <= 0 {
|
|
http.Error(w, common.IncorrectFunctionArgument, http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
count := delta / requestSizeCustomMetric
|
|
rest := delta - count*requestSizeCustomMetric
|
|
fmt.Fprintf(w, "RC manager: sending %v requests to bump custom metric by %v each and 1 request to bump by %v\n", count, requestSizeCustomMetric, rest)
|
|
if count > 0 {
|
|
c.waitGroup.Add(count)
|
|
c.sendConsumeCustomMetric(w, metric, count, requestSizeCustomMetric, durationSec)
|
|
}
|
|
if rest > 0 {
|
|
c.waitGroup.Add(1)
|
|
go c.sendOneConsumeCustomMetric(w, metric, rest, durationSec)
|
|
}
|
|
c.waitGroup.Wait()
|
|
}
|
|
|
|
func (c *controller) sendConsumeCPURequests(w http.ResponseWriter, requests, millicores, durationSec int) {
|
|
for i := 0; i < requests; i++ {
|
|
go c.sendOneConsumeCPURequest(w, millicores, durationSec)
|
|
}
|
|
}
|
|
|
|
func (c *controller) sendConsumeMemRequests(w http.ResponseWriter, requests, megabytes, durationSec int) {
|
|
for i := 0; i < requests; i++ {
|
|
go c.sendOneConsumeMemRequest(w, megabytes, durationSec)
|
|
}
|
|
}
|
|
|
|
func (c *controller) sendConsumeCustomMetric(w http.ResponseWriter, metric string, requests, delta, durationSec int) {
|
|
for i := 0; i < requests; i++ {
|
|
go c.sendOneConsumeCustomMetric(w, metric, delta, durationSec)
|
|
}
|
|
}
|
|
|
|
func createConsumerURL(suffix string) string {
|
|
return fmt.Sprintf("http://%s.%s.svc.cluster.local:%d%s", *consumerServiceName, *consumerServiceNamespace, *consumerPort, suffix)
|
|
}
|
|
|
|
// sendOneConsumeCPURequest sends POST request for cpu consumption
|
|
func (c *controller) sendOneConsumeCPURequest(w http.ResponseWriter, millicores int, durationSec int) {
|
|
defer c.waitGroup.Done()
|
|
query := createConsumerURL(common.ConsumeCPUAddress)
|
|
_, err := http.PostForm(query, url.Values{common.MillicoresQuery: {strconv.Itoa(millicores)}, common.DurationSecQuery: {strconv.Itoa(durationSec)}})
|
|
c.responseWriterLock.Lock()
|
|
defer c.responseWriterLock.Unlock()
|
|
if err != nil {
|
|
fmt.Fprintf(w, "Failed to connect to consumer: %v\n", err)
|
|
return
|
|
}
|
|
fmt.Fprintf(w, "Consumed %d millicores\n", millicores)
|
|
}
|
|
|
|
// sendOneConsumeMemRequest sends POST request for memory consumption
|
|
func (c *controller) sendOneConsumeMemRequest(w http.ResponseWriter, megabytes int, durationSec int) {
|
|
defer c.waitGroup.Done()
|
|
query := createConsumerURL(common.ConsumeMemAddress)
|
|
_, err := http.PostForm(query, url.Values{common.MegabytesQuery: {strconv.Itoa(megabytes)}, common.DurationSecQuery: {strconv.Itoa(durationSec)}})
|
|
c.responseWriterLock.Lock()
|
|
defer c.responseWriterLock.Unlock()
|
|
if err != nil {
|
|
fmt.Fprintf(w, "Failed to connect to consumer: %v\n", err)
|
|
return
|
|
}
|
|
fmt.Fprintf(w, "Consumed %d megabytes\n", megabytes)
|
|
}
|
|
|
|
// sendOneConsumeCustomMetric sends POST request for custom metric consumption
|
|
func (c *controller) sendOneConsumeCustomMetric(w http.ResponseWriter, customMetricName string, delta int, durationSec int) {
|
|
defer c.waitGroup.Done()
|
|
query := createConsumerURL(common.BumpMetricAddress)
|
|
_, err := http.PostForm(query,
|
|
url.Values{common.MetricNameQuery: {customMetricName}, common.DurationSecQuery: {strconv.Itoa(durationSec)}, common.DeltaQuery: {strconv.Itoa(delta)}})
|
|
c.responseWriterLock.Lock()
|
|
defer c.responseWriterLock.Unlock()
|
|
if err != nil {
|
|
fmt.Fprintf(w, "Failed to connect to consumer: %v\n", err)
|
|
return
|
|
}
|
|
fmt.Fprintf(w, "Bumped metric %s by %d\n", customMetricName, delta)
|
|
}
|