OMERO image region Vert.x asynchronous microservice server
412
OMERO image region Vert.x asynchronous microservice server endpoint for OMERO.web.
The microservice server endpoint for OMERO.web relies on the following workflow::
Setup of OMERO.web to use database or Redis backed sessions
Running the microservice endpoint for OMERO.web
Redirecting your OMERO.web installation to use the microservice endpoint
Clone the repository::
git clone [email protected]:glencoesoftware/omero-ms-image-region.git
Run the Gradle build and utilize the artifacts as required::
./gradlew installDist
cd build/install
...
Log in to the OMERO.web instance you would like to develop against with
your web browser and with the developer tools find the sessionid cookie
value. This is the OMERO.web session key.
Run single or multiple thumbnail tests using curl::
curl -H 'Cookie: sessionid=<omero_web_session_key>' \
http://localhost:8080/render_image_region/<image_id>/<z>/<t>/?tile=0,0,0,1024,1024
Run the Gradle Eclipse task::
./gradlew eclipse
Configure your environment::
cp conf.json.example conf.json
Add a new Run Configuration with a main class of io.vertx.core.Starter::
run "com.glencoesoftware.omero.ms.image.region.ImageRegionMicroserviceVerticle" \
-conf "conf.json"
The latest artifacts, built by AppVeyor, can be found here::
The image region microservice server endpoint piggybacks on the OMERO.web Django session. As such it is essential that as a prerequisite to running the server that your OMERO.web instance be configured to use Redis backed sessions. Filesystem backed sessions are not supported.
Configure the application::
cp conf.json.example path/to/conf.json
Start the server::
omero-ms-image-region -conf path/to/conf.json
Logging is provided using the logback library. You can configure logging by
copying the included logback.xml.example, editing as required, and then
specifying the configuration when starting the microservice server::
cp logback.xml.example logback.xml
...
JAVA_OPTS="-Dlogback.configurationFile=/path/to/logback.xml" \
omero-ms-image-region ...
Debugging the logback configuration can be done by providing the additional
-Dlogback.debug=true property.
If you are using systemd you can place an appropriately modified version of
the included omero-ms-image-region.service into your /etc/systemd/system
directory and then execute::
systemctl daemon-reload
systemctl start omero-ms-image-region.service
Running systemctl status omero-ms-image-region.service will then produce
output similar to the following::
# systemctl status omero-ms-image-region.service
● omero-ms-image-region.service - OMERO image region microservice server
Loaded: loaded (/etc/systemd/system/omero-ms-image-region.service; disabled; vendor preset: disabled)
Active: active (running) since Thu 2017-06-01 14:40:53 UTC; 8min ago
Main PID: 9096 (java)
CGroup: /system.slice/omero-ms-image-region.service
└─9096 java -Dlogback.configurationFile=/opt/omero/omero-ms-image-region-0.1.0-SNAPSHOT/logback.xml -classpath /opt/omero/omero-ms-image-region-0.1.0-SNAPSHOT/lib/omero-ms-image-region-0.1.0-SNAPSHOT.jar:/opt/omero/omero-...
Jun 01 14:40:53 demo.glencoesoftware.com systemd[1]: Started OMERO image region microservice server.
Jun 01 14:40:53 demo.glencoesoftware.com systemd[1]: Starting OMERO image region microservice server...
Jun 01 14:40:54 demo.glencoesoftware.com omero-ms-image-region[9096]: Jun 01, 2017 2:40:54 PM io.vertx.core.spi.resolver.ResolverProvider
Jun 01 14:40:54 demo.glencoesoftware.com omero-ms-image-region[9096]: INFO: Using the default address resolver as the dns resolver could not be loaded
Jun 01 14:40:55 demo.glencoesoftware.com omero-ms-image-region[9096]: Jun 01, 2017 2:40:55 PM io.vertx.core.Starter
Jun 01 14:40:55 demo.glencoesoftware.com omero-ms-image-region[9096]: INFO: Succeeded in deploying verticle
What follows is a snippet which can be placed in your nginx configuration, before your default OMERO.web location handler, to redirect both webgateway image region rendering currently used by OMERO.web to the image region microservice server endpoint::
upstream image-region-backend {
server 127.0.0.1:8080 fail_timeout=0 max_fails=0;
}
...
location /webgateway/render_image_region/ {
proxy_pass http://image_region_backend;
}
location /webclient/render_image_region/ {
proxy_pass http://image_region_backend;
}
Using Gradle run the unit tests:
./gradlew test
Content type
Image
Digest
Size
443.9 MB
Last updated
over 9 years ago
docker pull joshmoore/omero-ms-image-region