Skip to content

Latest commit

 

History

History
 
 

http-api-using-request-handlers-and-processors

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Vespa sample applications - Building a HTTP API using request handlers and processors

Please refer to building a HTTP API using request handlers and processors for more information.

Executable example

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/http-api-using-request-handlers-and-processors && 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/http-api-using-request-handlers-and-processors/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/demo?terms=1%202%203%204'

Shutdown and remove the container:

$ docker rm -f vespa