Difference between revisions of "Edge++: Deployment"

From Datonis
Jump to: navigation, search
(Created page with "== TITLE 1 == == TITLE 2 == == TITLE 3 == == FAQs for runnning Edge++ on Ubuntu VM using Oracle VirtualBox == === Oracle VirtualBox related FAQS === * For starting virtual...")
 
(Edge++ Deployment on Rails setup)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
== TITLE 1 ==
+
== Edge++ Deployment on Rails setup ==
 +
The configuration Github repository can be found here [https://github.com/Altizon/edge_plus_plus <nowiki>[1]</nowiki>] This repository is a bunch of shell scripts that will help you orchestrate dockerized environment. This environment is served using docker-compose.
  
== TITLE 2 ==
+
For booting setup we have to do ./boot.sh and to bring it down ./shutdown.sh
  
== TITLE 3 ==
+
==== Configuration: ====
 +
Couple of fields to be set up in .env file.
 +
* LICENSE_KEY: License key of account on boarded on Datonis
 +
* NUMBER_OF_INPUT_QUEUES: Degree of parallelism at which we want to process our event stream.
 +
Basic building blocks of the architecture in terms of dockers are as follows:
 +
{| class="wikitable"
 +
!Name
 +
!Docker Image
 +
!Purpose
 +
|-
 +
|redis
 +
|redis:6.0.3-buster
 +
|Redis server
 +
|-
 +
|mongo
 +
|mongo:4.2.7-bionic
 +
|MongoDB for master data caching
 +
|-
 +
|factory-server
 +
|altizon/factory
 +
|Factory Server to provide operator screens using FaasInfra
 +
|-
 +
|sidekiq
 +
|altizon/factory
 +
|Sidekiq running asynchronous tasks
 +
|-
 +
|factory-rake
 +
|altizon/factory
 +
|There will be N no of instances of this kind listening to their respective input queues.
 +
|-
 +
|factory-function-cache
 +
|altizon/factory
 +
|Function Task schedular to start master data caching like account and user preferences to local MongoDB from production
 +
|-
 +
|update_number_of_queues
 +
|altizon/factory
 +
|Updating __number_of_input_queues__ in Redis on boot
 +
|-
 +
|wget_call
 +
|altizon/factory
 +
|Calling first API request to server initiating asset compilation
 +
|}
 +
 
 +
=== Data Persistance ===
 +
* The data being saved in MongoDB is a volume mounted on docker. Hence, it is safe to assume that your data will persist in MongoDB across boots of Edge++.
 +
* For Redis we use Redis Persistance to ensure Redis maintains its state across boots. We use .aof files for saving our state.
  
 
== FAQs for runnning Edge++ on Ubuntu VM using Oracle VirtualBox ==
 
== FAQs for runnning Edge++ on Ubuntu VM using Oracle VirtualBox ==

Latest revision as of 11:21, 12 June 2020

Edge++ Deployment on Rails setup

The configuration Github repository can be found here [1] This repository is a bunch of shell scripts that will help you orchestrate dockerized environment. This environment is served using docker-compose.

For booting setup we have to do ./boot.sh and to bring it down ./shutdown.sh

Configuration:

Couple of fields to be set up in .env file.

  • LICENSE_KEY: License key of account on boarded on Datonis
  • NUMBER_OF_INPUT_QUEUES: Degree of parallelism at which we want to process our event stream.

Basic building blocks of the architecture in terms of dockers are as follows:

Name Docker Image Purpose
redis redis:6.0.3-buster Redis server
mongo mongo:4.2.7-bionic MongoDB for master data caching
factory-server altizon/factory Factory Server to provide operator screens using FaasInfra
sidekiq altizon/factory Sidekiq running asynchronous tasks
factory-rake altizon/factory There will be N no of instances of this kind listening to their respective input queues.
factory-function-cache altizon/factory Function Task schedular to start master data caching like account and user preferences to local MongoDB from production
update_number_of_queues altizon/factory Updating __number_of_input_queues__ in Redis on boot
wget_call altizon/factory Calling first API request to server initiating asset compilation

Data Persistance

  • The data being saved in MongoDB is a volume mounted on docker. Hence, it is safe to assume that your data will persist in MongoDB across boots of Edge++.
  • For Redis we use Redis Persistance to ensure Redis maintains its state across boots. We use .aof files for saving our state.

FAQs for runnning Edge++ on Ubuntu VM using Oracle VirtualBox

Oracle VirtualBox related FAQS