blob: 610c8ed5f071ba5d44ad2336f2e0d9614a633d09 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.openwhisk
import java.nio.charset.StandardCharsets
import org.apache.openwhisk.extension.whisk.OpenWhiskProtocolBuilder
import org.apache.openwhisk.extension.whisk.Predef._
import io.gatling.core.Predef._
import io.gatling.core.session.Expression
import io.gatling.core.structure.ScenarioBuilder
import io.gatling.core.util.ClasspathPackagedResource
import scala.concurrent.duration._
class ColdBlockingInvokeSimulation extends Simulation {
// Specify parameters for the run
val host = sys.env("OPENWHISK_HOST")
val users: Int = sys.env("USERS").toInt
val codeSize: Int = sys.env.getOrElse("CODE_SIZE", "0").toInt
val seconds: FiniteDuration = sys.env.getOrElse("SECONDS", "10").toInt.seconds
val actionsPerUser: Int = sys.env.getOrElse("ACTIONS_PER_USER", "5").toInt
// Specify thresholds
val requestsPerSec: Int = sys.env("REQUESTS_PER_SEC").toInt
val minimalRequestsPerSec: Int = sys.env.getOrElse("MIN_REQUESTS_PER_SEC", requestsPerSec.toString).toInt
val maxErrorsAllowed: Int = sys.env.getOrElse("MAX_ERRORS_ALLOWED", "0").toInt
val maxErrorsAllowedPercentage: Double = sys.env.getOrElse("MAX_ERRORS_ALLOWED_PERCENTAGE", "0.1").toDouble
// Generate the OpenWhiskProtocol
val openWhiskProtocol: OpenWhiskProtocolBuilder = openWhisk.apiHost(host)
val feeder = csv("data/users.csv").queue
// Define scenario
val test: ScenarioBuilder = scenario("Invoke one action blocking")
.feed(feeder)
.doIf(true) {
// This assignment assures to use the same user within this block. Otherwise create, invoke and delete would
// use other users.
val uuid: Expression[String] = "${uuid}"
val key: Expression[String] = "${key}"
val actionsPerUser = 5
val actionName: String = "action-${i}"
// Each user uses the given amount of actions
repeat(actionsPerUser, "i") {
exec(
openWhisk("Create action")
.authenticate(uuid, key)
.action(actionName)
.create(actionCode))
}.rendezVous(users)
// Execute all actions for the given amount of time.
.during(seconds) {
// Cycle through the actions of this user, to not invoke the same action directly one after each other.
// Otherwise there is the possiblity, that it is warm.
repeat(actionsPerUser, "i") {
exec(openWhisk("Invoke action").authenticate(uuid, key).action(actionName).invoke())
}
}
.rendezVous(users)
.repeat(actionsPerUser, "i") {
exec(openWhisk("Delete action").authenticate(uuid, key).action(actionName).delete())
}
}
private def actionCode = {
val code = ClasspathPackagedResource("nodeJSAction.js", getClass.getResource("/data/nodeJSAction.js"))
.string(StandardCharsets.UTF_8)
//Pad the code with empty space to increase the stored code size
if (codeSize > 0) code + " " * codeSize else code
}
setUp(test.inject(atOnceUsers(users)))
.protocols(openWhiskProtocol)
// One failure will make the build yellow
.assertions(details("Invoke action").requestsPerSec.gt(minimalRequestsPerSec))
.assertions(details("Invoke action").requestsPerSec.gt(requestsPerSec))
// Mark the build yellow, if there are failed requests. And red if both conditions fail.
.assertions(details("Invoke action").failedRequests.count.lte(maxErrorsAllowed))
.assertions(details("Invoke action").failedRequests.percent.lte(maxErrorsAllowedPercentage))
}