Let's deploy the server with the configuration made above. The successful server deployment will give the port number and host of the server:
DeployKonduitServing.deploy(newVertxOptions(),// Default vertx optionsnewDeploymentOptions(),// Default deployment options inferenceConfiguration,// Inference configuration with logging step handler -> { // this block will be called when server finishes the deploymentif (handler.succeeded()) { // If the server is sucessfully running// Getting the result of the deploymentInferenceDeploymentResult inferenceDeploymentResult =handler.result();int runnningPort =inferenceDeploymentResult.getActualPort();String deploymentId =inferenceDeploymentResult.getDeploymentId();System.out.format("The server is running on port %s with deployment id of %s%n", runnningPort, deploymentId);try {String result =Unirest.post(String.format("http://localhost:%s/predict", runnningPort)).header("Content-Type","application/json").header("Accept","application/json").body(newJSONObject().put("input_key","input_value")).asString().getBody();System.out.format("Result from server : %s%n", result);System.exit(0); } catch (UnirestException e) {e.printStackTrace();System.exit(1); } } else { // If the server failed to runSystem.out.println(handler.cause().getMessage());System.exit(1); } });
You'll be able to see the output similar to this once the server successfully deployed:
The server is running on port 37663 with deployment id of 59d5d475-be83-4348-8983-4d3e7328e71d
Result from server : {
"input_key" : "input_value"
}
Process finished with exit code 0