Skip to content

abriggs-usgs/WQP-WQX-Services

 
 

Repository files navigation

Water-Quality-Portal

Build Status

Water Quality Portal data streaming service.

Development

This is a Spring Boot project. All of the normal caveats relating to a Spring Boot application apply.

Dependencies

This application retrieves information from a PostgreSQL database. Docker images for both automated testing (ci) and manual testing (demo) are available at https://hub.docker.com/r/usgswma/wqp_db.

Some of the query parameters are validated using the CODES_SERVICE. (They are identified with the @Lookup annotation in the FilterParameters class.) This can be run locally as a Docker container available by following the instructions at https://github.com/NWQMC/qw_portal_services.

Environment Variables

This application has numerous environment variables to define the actual runtime environment. They can be defined in multiple locations depending on how you choose to run the application.

  • Docker Compose: The substitution variables in docker-compose.yml should be defined in a .env file located in the project's root directory. The remaining variables need to be defined in .env files in the secrets/app/ and secrets/common/ directories. Samples of the later are included in the project.

  • Command line or IDE: The variables found in the secrets/ samples should be placed into a single application.yml file located in the project's root directory. An addition application-it.yml file is also required in the same location to run unit tests via an IDE. It requires the WQP_DB_URL, WQP_DB_DATA_OWNER_USERNAME, WQP_DB_DATA_OWNER_PASSWORD, WQP_DB_READ_ONLY_USERNAME, and WQP_DB_READ_ONLY_PASSWORD values.

  • Maven test execution: The pom contains all of the enviroment variable definitions needed. They are all generic values suitable for the automated testing and should not be used in any actual shared environments. mvn test will run just the unit tests, mvn verify will additionally run tests against the database. Running the tests in this way is completely self contained and no setup or local database is needed.

Definitions

  • APPLICATION_DATA_DIRECTORY - The Docker container location for application specific secrets and configuration.
  • CODES_SERVICE_URL - URL of the service used to validate some of the query parameters. Be sure to include '/codes' suffix.
  • CODES_TIMEOUT_MILLI - The timeout in milliseconds for calls to the codes service. This value is intentionally low as we want to fail fast if the codes service is not available. It is especially important when siting behind a WAF which breaks connections after (two minutes of) dead air.
  • COMMON_DATA_DIRECTORY - The Docker container location for system shared secrets and configuration.
  • KML_STYLE_URL - URI of the styles WQP uses in KML output.
  • LOCAL_NETWORK_NAME - The name of the local Docker Network you have created for using these images/containers.
  • MAX_RESULT_ROWS - The maximum number of result rows for queries requesting sorted or xml output.
  • NLDI_TIMEOUT_MILLI - The timeout in milliseconds for calls to the NLDI service. This value is intentionally low as we want to fail fast if the NLDI service is not available. It is especially important when siting behind a WAF which breaks connections after (two minutes of) dead air.
  • ROOT_LOG_LEVEL - Logging level for the Java application.
  • SERVER_CONTEXT_PATH - URL context for the application.
  • SERVER_PORT - Port on which the application is run. Typically 8080 when running in a container. Can be any open port when using other run methods.
  • SITE_URL_BASE - Several downloads contain URI's for related information. This variable is used to construct that URI.
  • SWAGGER_DISPLAY_HOST - The public facing host name of this service. Used to enable Swagger's try it out functionality.
  • SWAGGER_DISPLAY_PATH - The public facing path (context) of this service. Used to enable Swagger's try it out functionality.
  • SWAGGER_DISPLAY_PROTOCOL - The public facing communications protocol of this service. Used to enable Swagger's try it out functionality.
  • SWAGGER_SERVICES_LOOKUPS_URL - Base URL for the codes service. Used to locate the Swagger information for the codes service.
  • SWAGGER_SERVICES_CORE_URL - Base URL for this service. Used to locate the Swagger information for this service.
  • WQP_DB_DATA_OWNER_USERNAME - Role which will own the database objects. Only needed for automated testing.
  • WQP_DB_DATA_OWNER_PASSWORD - Password for the DATA_OWNER role. Only needed for automated testing.
  • WQP_DB_HOST - Host name of the PosgreSQL Database.
  • WQP_DB_NAME - Name of the PostgreSQL Database used by the application.
  • WQP_DB_PORT - Port the PostgreSQL Database is listening on.
  • WQP_DB_READ_ONLY_USERNAME - The limited privilege role used by applications to access this schema.
  • WQP_DB_READ_ONLY_PASSWORD - Password for the READ_ONLY_USER role.
  • WQP_DB_URL - URL of the automated test database. See pom.xml for the format. Only needed for automated testing.
  • WQP_SERVICES_IPV4 - The IP address for the Docker container.
  • WQP_SERVICES_PORT - The localhost port on which to expose the Docker container.

Docker

Included is a Docker Compose script to create a container including this project.

Docker Network

A named Docker Network is required for local running of the container. Creating this network allows you to run all of the WQP locally in individual containers without having to maintain a massive Docker Compose script encompassing all of the required pieces. (It is also possible to run portions of the system locally against remote services.) The name of this network is provided by the LOCAL_NETWORK_NAME environment variable. The following is a sample command for creating your own local network. In this example the name is wqp and the ip addresses will be 172.25.0.x

docker network create --subnet=172.25.0.0/16 wqp

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 99.7%
  • Other 0.3%