Utilities for administration of Neon DIANA
Project description
Neon Diana
Device Independent API for Neon Applications (Diana) is a collection of microservices that provide various functionality to NeonAI systems. All services are implemented as standalone Docker containers that are connected to a RabbitMQ server. This repository contains the files required to launch a Neon API server.
Install the Diana utilities Python package with: pip install neon-diana-utils
Automated Configuration
The diana
entrypoint is available to handle automated setup and some common administration tasks. You can see get detailed
help via diana --help
. A standard configuration is described here:
Configuring Default Backend Services
A Diana backend can be configured automatically with diana configure-backend
. A standard example is included here, but
a description of config options is available via: diana configure-backend --help
.
diana configure-backend -d -u administrator -p password ~/neon_diana
-d
specifies that default backend services will be configured-u
specifies the MQ useradministrator
for admin portal access-p
specifies the passwordpassword
for theadministrator
user~/neon_diana
specifies the output path for configuration files
Providing Backend Service Credentials
Many backend services rely on configured credentials for authentication. Before running a configured backend, ngi_auth_vars.yml
must be defined with the appropriate credentials. A more complete example can be seen in the Configuration section.
~/neon_diana/ngi_auth_vars.yml
emails:
mail: neon@neon.ai
pass:
host: smtp.gmail.com
port: '465'
api_services:
wolfram_alpha:
api_key: ""
alpha_vantage:
api_key: ""
open_weather_map:
api_key: ""
- The
emails
config should reference a smtp email account used inneon_email_proxy
- The
api_services
config should reference services used inneon_api_proxy
Running Configured Backend Services
After a backend is configured, it can be started with diana start-backend
. A standard example is included here, but
a description of config options is available via: diana start-backend --help
.
diana start-backend ~/neon_diana
~/neon_diana
specifies the path to backend configuration
Stopping a Running Backend
After a backend is started, it can be stopped with diana stop-backend
. A standard example is included here, but
a description of config options is available via: diana stop-backend --help
.
diana stop-backend ~/neon_diana
~/neon_diana
specifies the path to backend configuration
Manual Configuration
Running Services
Docker Compose is used to facilitate starting up separate services that comprise Diana.
The example below assumes that configuration is populated in ~/docker_config
and that metrics should be saved to
~/docker_metrics
. These paths are arbitrary and can be changed to any location that is accessible by the user running
docker. Details of what should be present in NEON_CONFIG_PATH
can be found in the Configuration
section below.
export NEON_CONFIG_PATH="/home/${USER}/diana_config/"
export NEON_METRIC_PATH="/home/${USER}/diana_metrics/"
docker login ghcr.io
docker-compose up -d
If you prefer not to run all services, you may specify which services to run with docker-compose up
.
docker-compose up -d neon_rabbitmq neon_api_proxy neon_metrics_service
Initial Configuration
neon_diana_utils
contains convenience utilities, including for automated initial configuration of RabbitMQ. If you
have a clean RabbitMQ container, you can use create_default_mq_server
to configure an admin account and all parameters
required for running Neon Diana. Make sure the neon_rabbitmq
container is running before running this utility. After
RabbitMQ Configuration is complete, you can start the remaining containers
ex:
export NEON_CONFIG_PATH="/home/${USER}/diana_config/"
# Modify neon-diana-backend/setup_default_server.py with desired username and password
python neon-diana-backend/setup_default_server.py
Configuration
All containers containing an MQ module will expect mq_config.json
to be mounted to NEON_CONFIG_PATH
(usually /config
in the containers).
neon_api_proxy
,neon_brands_service
, andneon_email_proxy
will expect/config/ngi_auth_vars.yml
to specify any account credentialsneon_metrics_service
will output metrics files to/metrics
.neon_rabbitmq
will expect/config/rabbitmq.conf
to specify a path to the configuration.json
file to load.
Example configuration file structure:
$NEON_CONFIG_DIR
├── mq_config.json
├── ngi_auth_vars.yml
├── rabbitmq.conf
└── rabbit_mq_config.json
mq_config.json
(passwords redacted)
{
"server": "neon_rabbitmq",
"users": {
"test": {
"user": "test_user",
"password": ""
},
"neon_api_connector": {
"user": "neon_api",
"password": ""
},
"neon_coupon_connector": {
"user": "neon_coupons",
"password": ""
},
"neon_email_proxy": {
"user": "neon_email",
"password": ""
},
"neon_metrics_connector": {
"user": "neon_metrics",
"password": ""
},
"neon_script_parser_service": {
"user": "neon_script_parser",
"password": ""
}
}
}
ngi_auth_vars.yml
(passwords redacted)
track_my_brands:
user: admintr1_drup1
password:
host: trackmybrands.com
database: admintr1_drup1
emails:
mail: neon@neon.ai
pass:
host: smtp.gmail.com
port: '465'
api_services:
wolfram_alpha:
api_key: ""
alpha_vantage:
api_key: ""
open_weather_map:
api_key: ""
rabbitmq.conf
load_definitions = /config/rabbit_mq_config.json
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for neon_diana_utils-0.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 236cd9aecfeb94d59e4a2af2e016d95c139d1ca5ee36cbc1a3cf28775dcd1ae8 |
|
MD5 | c879710f2ae68f1b92bfcaf5b28085df |
|
BLAKE2b-256 | e92feedc47c5ce3c6f927200e1240655bd4ddf8a392d4409cd2fdeb658a4623a |