Now lets "kick the tires". We are going to have your microservice serve up a 2 MB file per request.
We will use JMeter as the client and see *roughly* what the microservice can do.
Update Microservice:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package vertxio.demo; | |
import io.vertx.core.AbstractVerticle; | |
public class MyDemo extends AbstractVerticle{ | |
public void start(){ | |
vertx.createHttpServer() | |
.requestHandler( req -> { | |
String file = "C:/temp/dummy.txt"; | |
req.response() | |
.putHeader("content-type", "text/plain") | |
.sendFile(file) | |
.setStatusCode(200) | |
.setStatusMessage("Sent: "+file); | |
}).listen(8080); | |
} | |
} |
Computer: Lenovo Laptop. Windows 7 64-bit. i5-3320M with 8GB ram.
JMETER Parameters:
300 users with a 600 second ramp up time.
JMETER results: (take results with a grain of sand knowing that I ran it in GUI &
graphing mode and didn't turn off other apps. This is just a ballpark to see what it initially yeilds.)
graphing mode and didn't turn off other apps. This is just a ballpark to see what it initially yeilds.)