A simple stateless Vespa application demonstrating general composable request-response processing with Vespa. No content cluster is configured just a stateless Java container. A custom config class is created and used to control the processing component.
Please refer to developing applications for more information.
Check-out, compile and run:
$ git clone https://github.com/vespa-engine/sample-apps.git $ VESPA_SAMPLE_APPS=`pwd`/sample-apps $ cd $VESPA_SAMPLE_APPS/generic-request-processing && mvn clean package $ docker run --detach --name vespa --hostname vespa-container --privileged \ --volume $VESPA_SAMPLE_APPS:/vespa-sample-apps --publish 8080:8080 vespaengine/vespa
Wait for the configserver to start:
$ docker exec vespa bash -c 'curl -s --head http://localhost:19071/ApplicationStatus'
Deploy the application:
$ docker exec vespa bash -c '/opt/vespa/bin/vespa-deploy prepare /vespa-sample-apps/generic-request-processing/target/application.zip && \ /opt/vespa/bin/vespa-deploy activate'
Wait for the application to start:
$ curl -s --head http://localhost:8080/ApplicationStatus
Test the application:
$ curl -s http://localhost:8080/processing/
Shutdown and remove the container:
$ docker rm -f vespa