Documentation for configuring Shuffle. Most information is related to onprem and hybrid versions of Shuffle.
With Shuffle being Open Sourced, there is a need for a place to read about configuration. There are quite a few options, and this article aims to delve into those.
Shuffle is based on Docker and is started using docker-compose with configuration items in a .env file. .env has the configuration items to be used for default environment changes, database locations, port forwarding, github locations and more.
Check out the installation guide, however if you're on linux:
System requirements may be found further down in the Servers section.
git clone https://github.com/shuffle/Shuffle
cd Shuffle
docker-compose up -d
From version v1.1 onwards, we will use ghcr.io/shuffle/* registry instead of ghcr.io/frikky/*
As long as you use Docker, updating Shuffle is pretty straight forward. To make sure you're as secure and up to date as possible, do this as much as you please. To use a specific version of Shuffle, check out specific version. We recommend always sticking to the "latest" tag, and if you want experimental changes, use the "nightly" tag.
While being in the main repository, here is how to update Shuffle:
docker-compose down
git pull
docker pull frikky/shuffle:app_sdk # Force update the App SDK
docker-compose pull
docker-compose up -d
PS: This will NOT update your apps, meaning they may be outdated. To update your apps, go to /apps and click both buttons in the top right corner (reload apps locally & Download from Github)
To use a specific version of Shuffle, you'll need to manually edit the Docker-Compose.yml file to reflect the version - usually for the frontend and backend, but sometimes also the other containers. You can see all our released versions here. We recommend keeping the same version for the frontend and backend, and not to keep them separate, as seen in the image below.
Shuffle is by default configured to be easy to start using. This means we've had to make some tradeoffs which can be enabled/disabled to make it easier to use the first time. This part outlines a lot of what's necessary to make Shuffle's security, availability and scalability better.
Here are the things we'll dive into
When setting up Shuffle for production, we always recommend using a minimum of two servers (VMs). This is because you don't want your executions to clog the webserver, which again clogs the executions (orborus). You can put Orborus on multiple servers with different environments to ensure better availability, or talk to us about Kubernetes/Swarm. These are MINIMUM requirements, and we recommend adding more.
Basic network overview below. Architecture.
- Shuffle backend starts a backend listener on port 5001 (default)
- Orborus POLLS for Jobs. Orborus needs access to port 5001 on backend (default)
- Orborus creates a worker for each job.
- The Worker runs the workflow and sends the payload back to the backend on port 5001 (default)
Webserver The webserver is where your users and our API is. Opensearch is RAM heavy as we're doing A LOT of caching to ensure scalability.
Orborus Runs all workflows and may be CPU heavy, along with Memory heavy when running at scale with gigabytes of data flowing through. If you do a lot of file transfers, deal with large API payloads, or memory analysis, make sure to add RAM accordingly. No persistent storage necessary.
These are the Docker configurations for the two different servers described above. To use them, put the information in files called docker-compose.yml on each respective server, to start the containers.
PS: The data below is based on this docker-compose file
Orborus Below is the Orborus configuration. make sure to change "BASE_URL" in the environment to match the external Shuffle backend URL. It can be modified to reduce or increase load, to add proxies, and much more. See environment variables for all options.
PS: Replace SHUFFLE-BACKEND with the IP of Shuffle backend in the specification below. Using Hostname MAY cause issues in certain environments. PPS: By default, the environments (executions) are NOT authenticated.
version: '3'
services:
orborus:
#build: ./functions/onprem/orborus
image: ghcr.io/shuffle/shuffle-orborus:latest
container_name: shuffle-orborus
hostname: shuffle-orborus
networks:
- shuffle
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- BASE_URL=http://SHUFFLE-BACKEND:5001
- SHUFFLE_APP_SDK_VERSION=1.3.1
- SHUFFLE_WORKER_VERSION=latest
- ORG_ID=Shuffle
- ENVIRONMENT_NAME=Shuffle
- DOCKER_API_VERSION=1.40
- SHUFFLE_BASE_IMAGE_NAME=shuffle
- SHUFFLE_BASE_IMAGE_REGISTRY=ghcr.io
- SHUFFLE_BASE_IMAGE_TAG_SUFFIX="-1.0.0"
- CLEANUP=true
- SHUFFLE_ORBORUS_EXECUTION_TIMEOUT=600
- SHUFFLE_STATS_DISABLED=true
restart: unless-stopped
networks:
shuffle:
driver: bridge
Webserver The webserver should run the Frontend, Backend and Database. Make sure THIS .env file exists in the same folder. Further, make sure that Opensearch the right access:
sudo sysctl -w vm.max_map_count=262144 # https://www.elastic.co/guide/en/elasticsearch/reference/current/vm-max-map-count.html
sudo chown 1000:1000 -R shuffle-database # Requires for Opensearch
docker-compose.yml:
version: '3'
services:
frontend:
image: ghcr.io/shuffle/shuffle-frontend:latest
container_name: shuffle-frontend
hostname: shuffle-frontend
ports:
- "${FRONTEND_PORT}:80"
- "${FRONTEND_PORT_HTTPS}:443"
networks:
- shuffle
environment:
- BACKEND_HOSTNAME=${BACKEND_HOSTNAME}
restart: unless-stopped
depends_on:
- backend
backend:
image: ghcr.io/shuffle/shuffle-backend:latest
container_name: shuffle-backend
hostname: ${BACKEND_HOSTNAME}
# Here for debugging:
ports:
- "${BACKEND_PORT}:5001"
networks:
- shuffle
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${SHUFFLE_APP_HOTLOAD_LOCATION}:/shuffle-apps
- ${SHUFFLE_FILE_LOCATION}:/shuffle-files
#- ${SHUFFLE_OPENSEARCH_CERTIFICATE_FILE}:/shuffle-files/es_certificate
env_file: .env
environment:
- SHUFFLE_APP_HOTLOAD_FOLDER=/shuffle-apps
- SHUFFLE_FILE_LOCATION=/shuffle-files
restart: unless-stopped
depends_on:
- opensearch
opensearch:
image: opensearchproject/opensearch:2.5.0
hostname: shuffle-opensearch
container_name: shuffle-opensearch
environment:
- bootstrap.memory_lock=true
- "OPENSEARCH_JAVA_OPTS=-Xms4096m -Xmx4096m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
- cluster.routing.allocation.disk.threshold_enabled=false
- cluster.name=shuffle-cluster
- node.name=shuffle-opensearch
- discovery.seed_hosts=shuffle-opensearch
- cluster.initial_master_nodes=shuffle-opensearch
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536 # maximum number of open files for the OpenSearch user, set to at least 65536 on modern systems
hard: 65536
volumes:
- ${DB_LOCATION}:/usr/share/opensearch/data:rw
networks:
- shuffle
restart: unless-stopped
networks:
shuffle:
driver: bridge
Orborus can run in Docker-swarm mode, and in early 2023, with Kubernetes. This makes the workflow executions A LOT faster, use less resources, making it more scalable both on a single, as well as across multiple servers. Since September 2024, this has been open sourced, and can be achieved with changing environment variables in the "Orborus" container for Shuffle. Click here for Kubernetes details.
PS: This is only available on the nightly version of Shuffle until Shuffle 2.0 is released.
Let's begin with setting up Docker, Docker Compose, and creating a Docker Swarm network with two manager nodes involves several steps. Below is a step-by-step guide to achieve this:
Step 1: Install Docker
Install Docker on both machines by following the official Docker installation guide for your operating system. Docker Installation Guide: https://docs.docker.com/get-docker/
Step 2: Install Docker Compose
Install Docker Compose on both machines by following the official Docker Compose installation guide. Docker Compose Installation Guide: https://docs.docker.com/compose/install/
Step 3: Configure Orborus Environment Variables:
1. Add and change the following environment variables for Orborus in the docker-compose.yml file. BASE_URL
is the external URL of the server you're running Shuffle on (the one you visit Shuffle with in your browser):
# Required:
## Free since Shuffle 2.0.0-beta
- SHUFFLE_SWARM_CONFIG=run
## Ensures apps are not halting due to memory overloads
- SHUFFLE_LOGS_DISABLED=true
## Your Shuffle URL NEEDS to be replaced by the backend's public IP. Otherwise Docker DNS: https://dockerlabs.collabnix.com/intermediate/networking/Configuring_DNS.html
- BASE_URL=http://YOUR-BACKEND-URL:3001
## Worker image choice
- SHUFFLE_WORKER_IMAGE=ghcr.io/shuffle/shuffle-worker:nightly
## Optional configuration:
SHUFFLE_AUTO_IMAGE_DOWNLOAD=false # This should be set to false IF images are already downloaded
SHUFFLE_WORKER_SERVER_URL=http://shuffle-workers # Internal Docker Worker URL (don't modify if not necessary)
SHUFFLE_SWARM_NETWORK_NAME=shuffle_swarm_executions # If you want a special network name in the executions
SHUFFLE_SCALE_REPLICAS=1 # The amount of worker container replicas PER NODE (since 1.2.0)
SHUFFLE_APP_REPLICAS=1 # The amount of app container replicas PER NODE (since 1.2.1)
SHUFFLE_MAX_SWARM_NODES=1 # The max amount of swarm nodes shuffle can use (since 1.3.2)
SHUFFLE_SKIPSSL_VERIFY=true # Stops Shuffle's internal services from validating TLS/SSL certificates. Good to use if BASE_URL is a domain.
To make swarm work, Please make sure that these ports are open on all your machines (to at least, both of these machines internally): 2377, 7946 and 4789
It is recommended to make sure that these ports are ONLY open internally just to be sure that everything is secure.
docker swarm init
docker-compose down
docker-compose up -d
docker swarm join-token manager # copy the command given
PS: In certain scenarios you may need extra configurations, e.g. for network MTU's, docker download locations, proxies etc. See more in the production readiness section.
Again, Make sure docker works here. Then paste the output from the above last command. It adds the network in the docker swarm network as a manager (It is required to orchestrate the app containers).
It should look something like this:
docker swarm join --token SWMTKN-1-{token} {internal IP}:2377
Run the following command to get logs from Orborus:
docker logs -f shuffle-orborus
And to check if services have started:
docker service ls
If the list is empty, or you see any of the "replicas" have 0/1, then something is wrong. In case of any swarm issues, contact us at support@shuffler.io or contact your account representative.
If you get EOFs or timeouts for workers in machine B, look here.
Shuffle has a few toggles that makes it straight up faster, but which removes a lot of the checks that are being done during your first tries of Shuffle.
Backend:
# Set the encryption key to ensure all app authentication is being encrypted. If this is NOT defined, we do not encrypt your apps. If this is defined, all authentications - both old and new will start using this key.
# Do NOT lose this key if specified, as that means you will need to reset all keys.
SHUFFLE_ENCRYPTION_MODIFIER=YOUR KEY HERE
# **PS: Encryption is available from Shuffle backend version >=0.9.17.**
# **PPS: There's a [known bug](https://github.com/frikky/Shuffle/issues/528) with Proxies and git**
# Set up distributed memcaching. See "Distributed Caching" for more.
SHUFFLE_MEMCACHED=<IP>:PORT
Orborus:
# Cleans up all containers after they're done. Necessary to help Docker scale. Default=false
CLEANUP=true
# Cleans up any containers related to Shuffle that have been up for more than 600 seconds.
SHUFFLE_ORBORUS_EXECUTION_TIMEOUT=600
# Decides the max amount of workflows to concurrenly run. Defaults to 10.
# Example math: 10 workflows * WITH 10 apps / second = 110 containers per second.
# We recommend starting with 10 and going higher as need be.
SHUFFLE_ORBORUS_EXECUTION_CONCURRENCY=10
# Configures a HTTP proxy to use when talking to the Shuffle Backend
HTTP_PROXY=
# Configures a HTTPS proxy when speaking to the Shuffle Backend
HTTPs_PROXY=
# Decides if the Worker should use the same proxy as Orborus (HTTP_PROXY). Default=true
SHUFFLE_PASS_WORKER_PROXY=true
# Decides if the Apps should use the same proxy as Orborus (HTTP_PROXY). Default=false
SHUFFLE_PASS_WORKER_PROXY=true
### PAID: The environment variables below only work when you've acquired a paid license of Shuffle (not required, but VERY useful when scaling Shuffle):
SHUFFLE_WORKER_IMAGE=ghcr.io/shuffle/shuffle-worker-scale:latest
SHUFFLE_SWARM_NETWORK_NAME=shuffle_swarm_executions
SHUFFLE_SCALE_REPLICAS=1
SHUFFLE_SWARM_CONFIG=run
# Set up distributed caching for Orborus & Worker(s). See "Distributed Caching" for more.
SHUFFLE_MEMCACHED=<IP>:PORT
Once you have a Scalable version of Shuffle, using Docker swarm, it becomes important for data to flow correctly throughout the platform. In version 1.1 of Shuffle, we introduce distributed caching in the form of Memcached. Memcached helps reduce the load on the database, as well as to ensure all executions are handled adequately. These services are supported:
To make use of Memcached, you have to start a memcached service locally on a host Shuffle can access, before configuring each service to use it with a single environment variable. The default port is 11211. Here is a quickstart that reserves 1024 Mb of memory:
docker run --name shuffle-cache -p 11211:11211 -d memcached -m 1024
PS: This requires swap limit capabilities on the Docker host. More about running it in Docker here
Once this is up, it will be listening on port 11211. From here, you may set up the SHUFFLE_MEMCACHED
environment variable on the previously mentioned services. We recommend starting with the backend. Here's an example that fits into your docker-compose file:
services:
image: ghcr.io/shuffle/shuffle-backend:latest
environment:
- SHUFFLE_MEMCACHED=10.0.0.1:11211
...
...
You can additionally add this do your docker compose with the following setting:
memcached:
image: memcached:latest
container_name: shuffle-cache
hostname: shuffle-cache
mem_limit: 1024m
environment:
- MEMCACHED_MEMORY=1024
- MEMCACHED_MAX_CONNECTIONS=2500
ports:
- 11211:11211
If you need help with this, please contact us.
In a production system within a high-criticality environment concerning requirements and security, it is crucial that all our tools possess the property of High Availability or, at least, Disaster Recovery.
The following architecture illustrates how Shuffle should be deployed in its On-Premise free mode to achieve at least Disaster Recovery, which ensures that even if one node of the system fails, there will be no loss of information. In the worst case scenario, if it was a critical node, it should be able to resume operation promptly.
The first step to ensure this is to distribute the database in a way that guarantees the property that even if one node fails, there will be no data loss.
The second point to consider is that for Workflows to continue running even if one Orborus node goes down, there should be another node of the same type to ensure this.
In this manner, we can ensure that, in the worst case, the backend+frontend may experience negative consequences due to being in a Docker container. However, its automatic restart can be configured, and in any case, bringing this node back into operation is swift.
The resulting architecture that emerges after applying these properties is as follows:
To implement this, follow these steps:
Define in all your nodes the list of hostnames in /etc/hosts so all the machines can do the necessary IP resolutions when they have a hostname.
Configure an OpenSearch database cluster. For this step, it is recommended to follow the official documentation https://opensearch.org/docs/latest/tuning-your-cluster/index/. Anyways to achieve this in a easy way you just need to change this settings in each opensearch node and reload the service:
cluster.name -> Set its new value to "shuffle-cluster".
node.name -> Set its new value to the hostname of the current node.
network.host -> Set its new value to the IP of your node(you need to be able to ping this IP from each one of the opensearch nodes and also from the backend+frontend one).
discovery.seed_hosts -> Set its new value to a list that contains each one of the hostnames of the OpenSearch nodes for example like this: ['opensearchReplica0', 'opensearchReplica1', 'opensearchReplica2']
cluster.initial_cluster_manager_nodes -> All the nodes should be able to be masters so as done before use that list of hostnames like: ['opensearchReplica0', 'opensearchReplica1', 'opensearchReplica2']
version: '3'
services:
frontend:
image: ghcr.io/shuffle/shuffle-frontend:latest
container_name: shuffle-frontend
hostname: shuffle-frontend
ports:
- "${FRONTEND_PORT}:80"
- "${FRONTEND_PORT_HTTPS}:443"
networks:
- shuffle
environment:
- BACKEND_HOSTNAME=${BACKEND_HOSTNAME}
restart: unless-stopped
depends_on:
- backend
backend:
image: ghcr.io/shuffle/shuffle-backend:latest
container_name: shuffle-backend
hostname: ${BACKEND_HOSTNAME}
# Here for debugging:
ports:
- "${BACKEND_PORT}:5001"
networks:
- shuffle
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${SHUFFLE_APP_HOTLOAD_LOCATION}:/shuffle-apps
- ${SHUFFLE_FILE_LOCATION}:/shuffle-files
#- ${SHUFFLE_OPENSEARCH_CERTIFICATE_FILE}:/shuffle-files/es_certificate
env_file: .env
environment:
- SHUFFLE_APP_HOTLOAD_FOLDER=/shuffle-apps
- SHUFFLE_FILE_LOCATION=/shuffle-files
restart: unless-stopped
networks:
shuffle:
driver: bridge
Also for this step you need to change the value of a variable inside the .env so it looks like this:SHUFFLE_OPENSEARCH_URL=SHUFFLE_OPENSEARCH_URL=https://192.168.0.30:9200,https://192.168.0.31:9200,https://192.168.0.32:9200
. Each one of that IPs is the corresponding one to each opensearch node.
version: '3'
services:
orborus:
#build: ./functions/onprem/orborus
image: ghcr.io/shuffle/shuffle-orborus:latest
container_name: shuffle-orborus
hostname: shuffle-orborus
networks:
- shuffle
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- BASE_URL=http://192.168.0.49:5001
- SHUFFLE_APP_SDK_VERSION=1.1.0
- SHUFFLE_WORKER_VERSION=latest
- ORG_ID=Shuffle
- ENVIRONMENT_NAME=Shuffle
- DOCKER_API_VERSION=1.40
- SHUFFLE_BASE_IMAGE_NAME=frikky
- SHUFFLE_BASE_IMAGE_REGISTRY=ghcr.io
- SHUFFLE_BASE_IMAGE_TAG_SUFFIX="-1.0.0"
- CLEANUP=true
- SHUFFLE_ORBORUS_EXECUTION_TIMEOUT=600
restart: unless-stopped
networks:
shuffle:
driver: bridge
You need to change the value of the environment BASE_URL
of this Dockerfile, so it aims to the IP of your Shuffle frontend+backend node.
Shuffle use with Kubernetes is now possible due to help from our contributors. You can read more about how it works on our Github page, which includes extensive helm charts and configuration possibilities.
Due to Kubernetes not being capable of building Shuffle Apps directly, an additional container for building them is available.
To configure Kubernetes, you need to specify a single environment variable for Orborus: RUNNING_MODE. By setting the environment variable RUNNING_MODE=kubernetes, execution should work as expected!
To scale Shuffle in Kubernetes, use the following environment variables in the Orborus container:
SHUFFLE_SCALE_REPLICAS=3 # HPA coming soon. This is for static scaling.
SHUFFLE_WORKER_IMAGE=ghcr.io/shuffle/shuffle-worker-scale:nightly
IS_KUBERNETES=true
SHUFFLE_SWARM_CONFIG=run
SHUFFLE_MEMCACHED=shuffle-memcached:11211 # this depends on your setup.
Proxies are another requirement to many enterprises, hence it's an important feature to support. There are two places where proxies can be implemented:
PS: Orborus settings are also set for the Worker
To configure these, there are two options:
To DISABLE proxy for internal Shuffle traffic, add the following environment variable to Orborus (origin):
- SHUFFLE_INTERNAL_HTTP_PROXY=noproxy
- SHUFFLE_INTERNAL_HTTPS_PROXY=noproxy
Follow this guide from Docker: https://docs.docker.com/network/proxy/
To set up proxies in individual containers, open docker-compose.yml and add the following lines with your proxy settings (http://my-proxy.com:8080 in my case).
PS: Make sure to use uppercase letters, and not lowercase (HTTP_PROXY, NOT http_proxy)
All you'll need to do is allow orborus to have access to the backend OR frontend of Shuffle.
As of November 2023, we added another way to configure a difference between these two:
This is in order to make it possible to have the an internal proxy different from those apps use for external services. These environment variables should be added to the "Orborus" container.
HTTP_PROXY=<external proxy> # used by default for everything
SHUFFLE_INTERNAL_HTTP_PROXY=<internal proxy> # Overrides HTTP_PROXY, making internal services in Shuffle use this proxy instead of HTTP_PROXY.
PS: This is in beta. Reach out to support@shuffler.io if you have any trouble with this.
HTTPS is enabled by default on port 3443 with a self-signed certificate for localhost. If you would like to change this, the only way (currently) is to add configure and rebuild the frontend. If you don't have HTTPS enabled, check updating shuffle to get the latest configuration. Another workaround is to set up an Nginx reverse proxy you can control yourself. See further down for more details
After setting this up, make sure to change the BASE_URL for Orborus to talk to your new HTTPS url if you want encrypted traffic everywhere.
Default Routing: Orborus -> Backend:5001.
New Routing: Orborus -> Nginx -> Frontend -> Backend.
The New Routing steps are automatic as long as you update the BASE_URL to point to your new reverse proxy URL.
Necessary info for the truststore to create TLS/SSL certificates:
If you want to change this, edit ./frontend/Dockerfile and ./frontend/nginx.conf.
After changing certificates, you can rebuild the entire frontend by running (./frontend)
./run.sh --latest
Make sure that the output image is the same in your docker-compose.yml file. This should work seemlessly for you next.
As of November 2023, it's now possible to mount folders into apps. This is in order for you to have better control of what Shuffle Apps can do, with the main reason being to manage certificates.
To mount in certificates, add the following environment variable to the "Orborus" container, but change the source and destination folder. The item BEFORE the colon (:) is the source folder on your machine, with the one AFTER the colon (:) being for the destination folder in the app itself.
If you want more folders mounted, add them with a comma.
SHUFFLE_VOLUME_BINDS="/etc/ssl/certs:/usr/local/share/ca-certificates,srcfolder2:dstfolder2"
PS: This is in beta. Reach out to support@shuffler.io if you have any trouble with this.
If you intend to use Nginx as a Reverse Proxy, the main steps are below. Here is a basic single-server architecture for it. The Docker version is further down.
location / {
proxy_pass SHUFFLE FRONTENDIP;
proxy_buffering off;
proxy_http_version 1.1;
proxy_connect_timeout 900;
proxy_send_timeout 900;
proxy_read_timeout 900;
send_timeout 900;
proxy_ssl_verify off;
}
systemctl restart nginx
nginx-proxy:
image: nginx:latest
container_name: shuffle-nginx-proxy
networks:
- shuffle
ports:
- "80:80"
volumes:
- ./nginx-conf:/etc/nginx/conf.d
- ./certs:/etc/nginx/certs
restart: always
nginx-conf
with the following (you may add additional Nginx configuration to this):server {
listen 443 ssl;
server_name yourdomain.com;
ssl_certificate /etc/nginx/certs/cert.crt;
ssl_certificate_key /etc/nginx/certs/cert.key;
location / {
proxy_pass http://shuffle-frontend:80;
proxy_buffering off;
proxy_http_version 1.1;
proxy_connect_timeout 900;
proxy_send_timeout 900;
proxy_read_timeout 900;
send_timeout 900;
proxy_ssl_verify off;
}
}
cert.crt
and cert.key
.docker-compose down; docker-compose up -d
By default, certificates are not being verified when outbound traffic goes from Shuffle. This is due to the massive use of self-signed certificates when using internal services. If you want to accept your Certificate Authority for all requests, there are a few ways to do this:
$ dockerd --tlscacert=/path/to/custom-ca-cert.pem
As this may require advanced Docker understanding, reach out to ask us about it: support@shuffler.io
Shuffle supports IPv6 in Docker by default, but your docker engine may not. IPv6 can be enabled in Docker by adding it to the /etc/docker/daemon.json file on the host as per this article by Docker:
https://docs.docker.com/config/daemon/ipv6/
In most enterprise environments, Shuffle will be behind multiple firewalls, proxies and other networking equipment. If this is the case, below are the requirements to make Shuffle work anywhere. The most common issue has to do with downloads from Alpine linux during runtime.
PS: If external connections are blocked, you may further have issues running Apps. Read more about manual image transfers here.
Open the Docker-compose.yml file in the Shuffle directory. Find the OpenSearch container section and either comment out or remove the details. Save your modifications to the file.
Now open the .env file and change the below value in the .env from false to true for Elasticsearch database enable.
Find the part in the .env file that defines database configurations. Update the Elasticsearch host configuration using your Elasticsearch IP address.
These URL's are used to get Shuffle up and running. Whitelisting them for the Shuffle services should make all processes work seamlessly.
PS: We do intend to make this JUST https://shuffler.io in the future.
# Can be closed after install with working Workflows
shuffler.io # Initial setup & future app/workflow sync
github.com # Downloading apps, workflows and documentation
pkg-containers.githubusercontent.com # Downloads from Github Container registry (ghcr.io)
raw.githubusercontent.com # Downloads our Documentation raw from github (https://github.com/shuffle/shuffle-docs)
# Should stay open
dl-cdn.alpinelinux.org # Used for building apps in realtime
registry.hub.docker.com # Downloads apps if they don't exist locally
ghcr.io # Github Docker registry
auth.docker.io # Dockerhub authentication
registry-1.docker.io # Dockerhub registry (for apps)
production.cloudflare.docker.com # Protects of DockerHub
When using Shuffle in the cloud (*.shuffler.io), the incoming IP to your services by default will be be from our cloud functions, if you are not using Hybrid Environments. The range is not static, and may wary based on region. Here's a list (mostly IPv6 as of 2023):
Default (London): 2600:1900:2000:2a:400::0 -> 2600:1900:2000:2a:400::ffff
Euroean Union (eu): TBA
United States (us): TBA
Canada (ca): TBA
India (in): TBA
If you want direct access with ANY app in your on-premises environment, we recommend setting up a new environment on a server in the same network. Steps to set this up:
Environment page:
Architecture connecting from cloud to onprem (hybrid):
The main proxy issues may arise with the "Backend", along with 3the "Orborus" container, which runs workflows. This has to do with how this server can contact the backend (Orborus), along with how apps can be downloaded (Worker), down to how apps engage with external systems (Apps).
Environment variables to be sent to the Orborus container:
# Configures a HTTP proxy to use when talking to the Shuffle Backend
HTTP_PROXY=
# Configures a HTTPS proxy when speaking to the Shuffle Backend
HTTPs_PROXY=
# Decides if the Worker should use the same proxy as Orborus (HTTP_PROXY). Default=true
SHUFFLE_PASS_WORKER_PROXY=true
# Decides if the Apps should use the same proxy as Orborus (HTTP_PROXY). Default=false
SHUFFLE_PASS_WORKER_PROXY=true
Environment variables for the Backend container:
# A proxy to be used if Opensearch / Elasticsearch (database) is behind a proxy.
SHUFFLE_OPENSEARCH_PROXY
# Configures a HTTP proxy for external downloads
HTTP_PROXY=
# Configures a HTTPS proxy for external downloads
HTTPs_PROXY=
In certain cases you may not have access to download or build images at all. If that's the case, you'll need to manually transfer them to the appropriate server. If the image to transfer is an app, it should be moved to the "Orborus" server. Otherwise; backend server.
# 1. Download the image you want. Go to [hub.docker.com](https://hub.docker.com/r/frikky/shuffle/tags?page=1&ordering=last_updated) and find the image. Download with docker pull. E.g. for Shuffle-tools:
docker pull frikky/shuffle:shuffle-tools_1.1.0
# 2. Save the image to a file to be transferred.
docker save frikky/shuffle:shuffle-tools_1.1.0 > shuffle_tools.tar
# 3. Transfer the file to a remote server
scp shuffle_tools.tar username@<server>:/path/to/destination/shuffle_tools.tar
# 4. Log into the remote server and find the repository
ssh username@<server>
cd /path/to/destination #same path as above
# 5. Load the file!
docker load shuffle_tools.tar
## All done!
# Transfer between 2 remote hosts:
#scp -3 centos@10.0.0.1:/home/user/wazuh.tar centos@10.0.0.2:/home/user/wazuh.tar
This procedure will help you export what you need to run Shuffle on a no internet host.
Both machines has Docker and Docker Compose installed already
Your host machine already needs the images on it to make them exportable
Shuffle need a few base images to work:
docker pull ghcr.io/frikky/shuffle-backend & docker pull ghcr.io/frikky/shuffle-frontend & docker pull ghcr.io/frikky/shuffle-orborus & docker pull frikky/shuffle:app_sdk & docker pull ghcr.io/frikky/shuffle-worker & docker pull opensearchproject/opensearch:2.5.0 & docker pull registry.hub.docker.com/frikky/shuffle:shuffle-subflow_1.0.0
Be careful with the versioning for opensearch, all other are going to use the tag "latest". You will also need to download and transfer ALL the apps you want to use. These can be discovered as such:
docker images | grep -i shuffle
mkdir shuffle-export & cd shuffle-export
docker save ghcr.io/frikky/shuffle-backend > backend.tar
docker save ghcr.io/frikky/shuffle-frontend > frontend.tar
docker save ghcr.io/frikky/shuffle-orborus > orborus.tar
docker save frikky/shuffle:app_sdk > app_sdk.tar
docker save ghcr.io/frikky/shuffle-worker:latest > worker.tar
docker save opensearchproject/opensearch:2.5.0 > opensearch.tar
docker save registry.hub.docker.com/frikky/shuffle:shuffle-subflow_1.0.0 > sublow.tar
git pull https://github.com/Shuffle/python-apps.git
wget https://raw.githubusercontent.com/Shuffle/Shuffle/master/.env
wget https://raw.githubusercontent.com/Shuffle/Shuffle/master/docker-compose.yml
cd .. & tar cvf shuffle-export.tar.gz shuffle-export
Use scp, usb key, ..., to copy the previous archive to the machine. More about manual transfers here
Import docker images to host without internet
tar xvf shuffle-export.tar.gz & cd shuffle-export
find -type f -name "*.tar" -exec docker load --input "{}" \;
Deploy Shuffle without Internet
Create folders to add the python apps
mkdir shuffle-apps
cp -a python-apps/ * shuffle-apps/
Now, you just need to configure and install Shuffler like in normal procedure
Uptime monitoring of Shuffle can be done by periodically polling the API for userinfo located at /api/v1/getinfo. This is an API that connects to our database, and which will be stuck if we any platform issues occur, whether in your local instance or in our Cloud instance on https://shuffler.io.
Shuffle has and will not have any planned downtime for services on https://shuffler.io, and have built our architecture around being able to upgrade and roll back without any downtime at all. If this occurs in the future for our Cloud platform, we will make sure to notify any active users. We plan to launch a status monitor for our services in 2022.
Basic monitoring can be done with a curl request + sendmail + cronjob as seen in this blogpost with the curl command below. Your personal API key can be found on https://shuffler.io/settings or in the same location (/settings) in your local instance.
curl https://shuffler.io/api/v1/getinfo -H "Authorization: Bearer apikey"
To modify the database location, change "DB_LOCATION" in .env (root dir) to your new location.
PS: workflowqueue-* is based on the environment used for execution.
With the change from 0.8 to 0.9 we're changing databases from Google's Datastore to Opensearch. This has to be done due to unforeseen errors with Datastore, including issues with scale, search and debugging. The next section will detail how you can go about migrating from 0.8.X to 0.9.0 without losing access to your workflows, apps, organizations, triggers, users etc.
Indexes not being migrated:
workflowqueue
Before you start: If you have data of the same kind in the same index within Opensearch, these will be overwritten. Example: you have the user "admin" in the index "users" within Opensearch and Datastore; this will be overwritten with the version that's in Datastore.
Requirements:
Set it to false; SHUFFLE_ELASTIC=false
In order to run the migration, we have to run both databases at once, connected to Shuffle. This means to run both containers at the same time in the Docker-compose file like the image below, before restarting.
docker-compose down
## EDIT FILE
docker-compose pull
docker-compose up # PS: Notice that we don't add -d here. This to make it easier to follow the logs. It's ok as we'll stop the instance later.
Now that you have both databases set up, we need to find the API-key.
1. http://localhost:3000/settings # You may need to log in
2. Copy the API-key
3. Go to next step
We'll now run a curl command that starts the migration. It shouldn't take more than a few seconds, max a few minutes at scale.
PS: This is NOT a destructive action. It just reads data from one place and moves it to the other. The server will restart after it has finished.
Change the part that says "APIKEY" to your actual API key from the previous step.
curl -XPOST -v localhost:5001/api/v1/migrate_database -H 'Authorization: Bearer APIKEY'
Let's reverse step 1 by choosing elastic as main database
- 1. Open .env
- 2. Scroll down and look for "SHUFFLE_ELASTIC"
- 3. Set it to false; SHUFFLE_ELASTIC=true
Got any issue? Ask on discord or Contact us.
Shuffle runs using Docker in every step, from the frontend to the workers and apps. For certain systems however, it requires manual configuration of the version of Docker you're running. This has a self-correcting feature to it within Orborus > v0.8.98, but before then you'll have to manually correct for it.
Error getting containers: Error response from daemon: client version 1.40 is too new. Maximum supported API version is 1.35
To fix this issue, we need to set the version from 1.40 down to 1.35 in the Shuffle environment. This can be done by opening the docker-compose.yml file, then changing environment variable "DOCKER_API_VERSION" from 1.40 to 1.35 for the "orborus" service as seen below, then restarting Shuffle.
As Shuffle has a lot of individual parts, debugging can be quite tricky. To get started, here's a list of the different parts, with the latter three being modular / location independent.
Type | Container name | Technology | Note |
---|---|---|---|
Frontend | shuffle-frontend | ReactJS | Cytoscape graphs & Material design |
Backend | shuffle-backend | Golang | Rest API that connects all the different parts |
Database | shuffle-database | Google Datastore | Has all non-volatile information. Will probably move to elastic or similar. |
Orborus | shuffle-orborus | Golang | Runs workers in a specific environment to connect locations. Defaults to the environment "Shuffle" onprem. |
Worker | worker-id | Golang | Deploys Apps to run Actions defined in a workflow |
app sdk | appname_appversion_id | Python | Used by Apps to talk to the backend |
worker-8a666e4f-e544-440e-bf0f-4220e7cc9e25 |
Execution debugging might be the most notable issue you might explain. This is because there are a ton of reasons that it might crash. Before going into techniques to find what's going on, you'll need to understand what exactly happens when you click the big execution button.
Frontend click -> Backend verifies and deploys executions -> (based on environments) orborus deploys a new worker -> worker finds actions to execute -> your app is executed.
As previously stated, a lot can go wrong. Here's the most common issues:
This part is mean to describe how to go about finding the issue you're having with executions. In most cases, you should start from the top of the list previously described in the following way:
Find out what environment your action(s) are running under by clicking the App and seeing "Environment" dropdown. In this case (and default) is "Shuffle". Environments can be specified / changed under the path /admin
Check if the workflow executed at all by finding the execution line in the shuffle-backend container. Take note that it mentions environment "Shuffle", as found in the previous step.
docker logs -f shuffle-backend
Check if shuffle-orborus is running
docker ps # Check if shuffle-orborus is running
Find whether it was deployed or not
docker logs -f shuffle-orborus # Get logs from shuffle-orborus
Check environment of running shuffle-orborus container.
docker inspect shuffle-orborus | grep -i "ENV"
Expected env result where "Shuffle" corresponds to the environment
Find logs from a docker container
docker logs -f CONTAINER_ID
As can be seen in the image above, is shows the exact execution order it takes. It starts by finding the parents, before executing the child process after it's finished. Take note of the specific apps being executed as well. It says "Time to execute \<app_id> with app \<app_name:app_version>. This indicates the app THAT WILL be executed. The following lines saying "Container \<container_id> is the container created with this app.
Get the app logs
docker logs -f CONTAINER_ID # The CONTAINER_ID found in the previous worker logs
As you will notice, app logs can be quite verbose (optional in a later build). In essence, if you see "RUNNING NORMAL EXECUTION" in the end, there's a 99.9% chance that it worked, otherwise some issue might have occurred.
Please notify me if you need help debugging app executions ASAP, as I've done a lot of it, but it's more tricky than the other steps.
We currently don't have a Docker Registry for Shuffle, meaning you need some minor configuration to get Orborus running remotely with the right containers. This only applies to containers not on dockerhub, as we automatically push PYTHON containers there when updated (not OpenAPI)
Here's an example of how to handle this with two different servers and Docker
ssh user@10.0.0.1
docker save frikky/shuffle:wazuh_api_rest_1.0.0 > wazuh.tar
exit
scp -3 centos@10.0.0.1:/home/user/wazuh.tar centos@10.0.0.2:/home/user/wazuh.tar
ssh user@10.0.0.2
docker load wazuh.tar
For now, the docker socket is required to run Shuffle. Whether you run with Kubernetes or another clustering technology, Shuffle WILL need access to ContainerD, which is what the docker socket provides. If this is against internal policies and you want a single point of contact for controlling permissions, please have a look at docker socket proxy farther down.
Usage of the socket:
API's in use
In certain scenarios or environments, you may find the docker socket to not have the right permissions, or running the socket directly on your software to be against internal policies. To solve this problem, we've built support for the docker socket proxy, which will give the containers the same permissions, but without the socket being directly mounted in the same container. Another good reason to use the docker socket proxy is to control the docker permissions required.
To use the docker socket proxy, add the following to your docker-compose.yml as a service. This will lauch it together with the rest:
docker-socket-proxy:
image: tecnativa/docker-socket-proxy
privileged: true
environment:
- SERVICES=1
- TASKS=1
- NETWORKS=1
- NODES=1
- BUILD=1
- IMAGES=1
- GRPC=1
- CONTAINERS=1
- PLUGINS=1
- SYSTEM=1
- VOLUMES=1
- INFO=1
- DISTRIBUTION=1
- POST=1
- AUTH=1
- SECRETS=1
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- shuffle
When done, remove the "/var/run/docker.sock" volume from the backend and orborus services in the docker-compose. To enable the docker rerouting, add this environment variable to both of them
- DOCKER_HOST=tcp://docker-socket-proxy:2375
This will route all docker traffic through the docker-socket-proxy giving you granular access to each API.
There are multiple things to check in the Shuffle server to ensure that the health of server is in a good state:
For this, the scripts have been prepared with the alerting mechanism which will check if everything is proper or not.
This script will determine whether or not the disc space is more than 75% full. If so, an alert will be sent to your Webhook URL. Replace the script's
#!/bin/sh
df -H | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $5 " " $1 }' | grep -v overlay | while read output;
do
#echo $output
usep=$(echo $output | awk '{ print $1}' | cut -d '%' -f1 )
partition=$(echo $output | awk '{ print $2 }' )
if [ $usep -ge 75 ]; then
curl -X POST -H 'Content-type: application/json' --data '{"Alert":"Almost out of disk space","Server":"Local-Lab Shuffle Server"}' <Webhook-URL>
fi
done
This script will determine whether or not the memory utilization is more than 70%. If so, an alert will be sent to your Webhook URL. Replace the script's
#check server health
STATUS="$(curl http://172.17.14.102:3001/api/v1/_ah/health)"
if [ "${STATUS}" = "OK" ]; then
:
else
curl -X POST -H 'Content-type: application/json' --data '{"Alert":"There is a problem with this server(172.17.14.102), status is not OK"}' <Webhook-URL>
exit 1
fi
This script will determine whether or not the Elasticsearch service is running or not. If not so, an alert will be sent to your Webhook URL. Replace the script’s
#check server health
STATUS="$(curl <Elasticsearch-IP>)"
if [ "${STATUS}" = "OK" ]; then
:
else
curl -X POST -H 'Content-type: application/json' --data '{"Alert":"There is a problem with this server(172.17.14.102), status is not OK"}' <Webhook-URL>
exit 1
fi
~
You can set a cron job to execute the scripts on every 15 minutes and the whole process can be automated.
*/15 * * * * bash /root/diskspacecheck.sh
*/15 * * * * bash /root/healthchech.sh
*/15 * * * * bash /root/memorycheck.sh
Our main goal is to provide stable support for docker. But a lot of members from our community run podman (Especially because RHEL 8 uses it). We have tested Shuffle with podman and it works for most parts. While it's not our main focus, The way to run Shuffle with podman is nearly the same.
You can do it like this:
sed -E "s/(.*)=['\"]?([^'\"]*)['\"]?/\1=\2/" .env -i
In shuffle-backend, comment back in the volume: /var/run/docker.sock:/var/run/docker.sock And in environments, Comment back out: # DOCKER_HOST=tcp://docker-socket-proxy:2375
So that the shuffle-backend service block ends up looking like this:
backend:
image: ghcr.io/shuffle/shuffle-backend:latest
container_name: shuffle-backend
hostname: ${BACKEND_HOSTNAME}
# Here for debugging:
ports:
- "${BACKEND_PORT}:5001"
networks:
- shuffle
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${SHUFFLE_APP_HOTLOAD_LOCATION}:/shuffle-apps:z
- ${SHUFFLE_FILE_LOCATION}:/shuffle-files:z
env_file: .env
environment:
#- DOCKER_HOST=tcp://docker-socket-proxy:2375 # we commented this out
- SHUFFLE_APP_HOTLOAD_FOLDER=/shuffle-apps
- SHUFFLE_FILE_LOCATION=/shuffle-files
sudo podman-compose -f docker-compose.yml pull
sudo podman-compose -f docker-compose.yml up