The core python package for MLSysOps Agents Framework.
Project description
MLSysOps Framework
XMPP Service Configuration
This project uses the XMPP (Extensible Messaging and Presence Protocol) service for communication between agents. The XMPP service is powered by an ejabberd container, which we have set up for easy deployment and automatic configuration.
kubectl create configmap ejaberd-config --from-file=ejabberd.yml -n mlsysops-framework
Prerequisites
Before running the XMPP service, ensure you have the following installed on your system:
How It Works
The XMPP service is managed through a Docker container running ejabberd. We've provided an automatic configuration process that simplifies setup on any host machine.
Setup Instructions
To set up and run the XMPP service, follow these steps:
-
Ensures that you have all the necessary packages installed
Install the libraries of the requirements.txt file
pip install -r requirements.txt -
Set the IP Address of the Host
- Open the .env file in the root directory.
- Set the
IP_SELenvironment variable to the IP address of the host machine where the service will run.
Example
.envfile:IP_SEL=10.96.82.195
-
Configure ejabberd
- After setting the IP address in the
.envfile, run the configuration script to update the ejabberd.yml file with the IP address provided in the.envfile. - This script will automatically configure the XMPP service for you.
Command to run the script:
python config_script.py - After setting the IP address in the
-
Run the XMPP Service
Once the configuration is complete, you can start the XMPP service using Docker Compose.
Run the following command to start up the service:
docker-compose up -dDuring the setup process, an admin user will be automatically registered with a default password. If the process completes successfully, the console output should show the following confirmation message:
User admin@10.96.82.195 successfully registeredThis confirms that the admin user has been correctly registered in the XMPP service.
-
Agent connection test
This repository contains a simple example to test the connection between an agent and an XMPP service using a DummyAgent. The goal is to ensure that the agent can successfully authenticate and communicate with the XMPP server.
-
Ensure that the host machine running the test script has network connectivity to the XMPP server. You can check this by pinging the server:
-
Configure the agent using the following Python code snippet. Please double check that you are using the admin user and the IP address previously configured.
dummy = DummyAgent("admin@10.96.82.195", "1234") -
Run the script, If the connection succeeds, you will see the following message printed in the console:
Hello World! I'm agent admin@10.96.82.195
-
-
Agent registration
To register the agents that will be supported by the XMPP service, you can use the user_reg.py script. This script reads usernames and passwords from the users.txt file and registers the users on the XMPP service.
Once the XMPP service is up and running, simply execute the script to create and register the JIDs (Jabber IDs) that the agents will use for communication.
The format of the users.txt needs to be as follows:
agentid1,password1 agentid2,password2
Following the previous steps, an agent can be instantiated to communicate with any other agent in the framework through the XMPP service
Node Agent
In this use case, the node agent is responsible for gathering telemetry data from the application running on the node. This includes monitoring the application's behavior as well as collecting CPU and memory metrics from the node itself. Using this information, the agent performs a machine learning (ML) model inference to predict the application's future behavior. The prediction results are then sent to the cluster agent, which uses this data to make decisions.
The node agent uses OpenTelemetry (OTEL) to collect performance data from both the node and the application. Additionally, the agent uses OTEL to share the inference results with the cluster agent for further processing.
Configuring the Node Agent Install OpenTelemetry: First, install the OTEL library, which is required for telemetry collection and data exchange.
pip install -r requirements.txt
Set Up OTEL Variables: You need to configure the necessary OTEL environment variables as follows:
TELEMETRY_ENDPOINT="172.25.27.228:4317" to push
LOCAL_OTEL_ENDPOINT="http://172.25.27.228:9999/metrics"
Configure Agent Information, providing the following information in the environment configuration:
NODE_NAME=node
NODE_PASSWORD=1234
CLUSTER_NAME=cluster
EJABBERD_DOMAIN=10.96.82.195
- Node agent name: The name of the agent running on the node.
- Agent password: The password of the node agent.
- Cluster agent name: The cluster agent to which the node agent will be subscribed.
- XMPP domain: The domain of the XMPP service used for communication.
- Note: is worth to say that the jids need to be previously registered as in the previous steps.
Once the environment is set up, you can run the node agent to start collecting telemetry and performing ML inferences.
N_agent.service file is also provide to run the agent script as a daemon in linux systems.
Project status
Testing phase.
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 Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mlsysops-0.0.0.post16080358804.tar.gz.
File metadata
- Download URL: mlsysops-0.0.0.post16080358804.tar.gz
- Upload date:
- Size: 58.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63ca1ed1428fa36a07120fe2b1fb2c8f0dfabb0152307edb07e3b6cc066f2c55
|
|
| MD5 |
2fa8a41ebc2ed75c4cfa6f6bc74e0bd3
|
|
| BLAKE2b-256 |
9a7dd093eab7f7cfc2de2bab02fe7d022fef82c32c8eed667e41686d5206cc56
|
File details
Details for the file mlsysops-0.0.0.post16080358804-py3-none-any.whl.
File metadata
- Download URL: mlsysops-0.0.0.post16080358804-py3-none-any.whl
- Upload date:
- Size: 91.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fec79e2ef180ab8afb19334d26bce046f3af5c8963241a4c68f5979a9267243
|
|
| MD5 |
299bd33ba394875f86d63a955956708a
|
|
| BLAKE2b-256 |
8cf3543e6905437d63dd09d38064c81f824ceb2f3b06afb61add07215341e6cb
|