Skip to content

Common implicit build dependencies for the IDSS Engine Project

License

Notifications You must be signed in to change notification settings

NOAA-GSL/idss-engine-commons

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IDSS Engine Commons

Pytest Lint with pylint

Coverage

Coverage Report
FileStmtsMissCoverMissing
idsse/common
   init.py00100% 
   aws_utils.py9177 92%
   config.py6955 93%
   json_message.py2411 96%
   log_util.py4133 93%
   path_builder.py1281010 92%
   publish_confirm.py1962121 89%
   rabbitmq_utils.py1061515 86%
   utils.py1221010 92%
   validate_schema.py400100% 
idsse/common/sci
   init.py00100% 
   geo_image.py2361717 93%
   grid_proj.py9511 99%
   netcdf_io.py480100% 
   utils.py100100% 
   vectaster.py1901717 91%
TOTAL139610792% 

Overview

The idss-engine-commons project is responsible for defining all implicit common dependencies that are used by the apps that make up the IDSS Engine Project distributed system. This repository should be used to house elements that are common across multiple projects to encourage reuse.

Twelve-Factors

The complete twelve-factors methodologies that the IDSS Engine Project adheres to can be found in the umbrella idss-engine repository. The subset of the twelve factors that follows are specifics to this app only.

Logging

To support some standardization and best practices for IDSS Engine, developers should following the logging guide found here

Build, Release, and Run

The subsections below outline how to build the common images within this project. All microservices built with Docker are done within the idss-engine/build directory.

Recommended Tags development :dev stable release :release ie. :alder targeted environment :aws

Python Base Image (Basic)


Any python based microservice within IDSS Engine should use the following image as its base

Build

From the IDSS Engine project root directory idss-engine/build/<env>/<arch>/:

$ docker-compose build python_base

Image Name idsse/commons/python-base:<tag>

Python Base Image (Scientific)


Any python based microservice within IDSS Engine that requires python scientific packages (numpy, netcdf, etc) should use the following image as its base. This base image also includes common python utilities that other services can utilize. For specifics on what these utilities are, see the README within the idsse_commons directory.

Build

From the IDSS Engine project root directory idss-engine/build/<env>/<arch>/:

$ docker-compose build python_base_sci

Image Name idsse/commons/python-base-sci:<tag>

RabbitMQ Server


The IDSS Engine can be deployed with Docker and/or Kubernetes. If developers are deploying locally with Docker, they can create their own RabbitMQ service as follows:

Developer Note if deploying in a kubernetes cluster, it is not necessary to build this image as it will be done via a Helm Chart

Build

From the IDSS Engine project root directory idss-engine/build/<env>/<arch>/:

$ docker-compose build rabbit_mq

Development Image Name idss.engine.commons.rabbitmq.server:<tag>

Packaged/Deployed Image Name idsse/commons/rabbitmq:<tag>

Couchdb Server


The IDSS Engine can be deployed with Docker and/or Kubernetes. If developers are deploying locally with Docker, they can create their own RabbitMQ service as follows:

Developer Note if deploying in a kubernetes cluster, it is not necessary to build this image as it will be done via a Helm Chart

Build

From the IDSS Engine project root directory idss-engine/build/<env>/<arch>/:

$ docker-compose build couch_db

Development Image Name idss.engine.commons.couchbase.server:<tag>

Packaged/Deployed Image Name idsse/commons/couchdb:<tag>

Running IDSS Engine

See the Build, Release, Run section within the umbrella project documentation: [idss-engine](https://github.com/NOAA-GSL/idss-engine/blob/main/README.md#running-idss-engine)