Install and Upgrade Extensions
You can see which extensions have been installed on Altair AI Hub on the page Management -> Extensions.
From AI Hub Server, extensions are synchronized automatically to each Job Agent, but not to Scoring Agents. See more information about synchronization of resources for Job Agents in the proper documentation section.
In addition, you can view available Operators by going to the page Management -> Operators.
You may want to install some Marketplace extensions to extend the pool of available Operators during Server execution inside the Scoring Agent or the Job Agents. Here are a few extensions which are frequently used and very useful:
Bundled/pre-installed extensions will get automatically upgraded when you upgrade your Server and Job Agent containers. See the upgrade instructions for more details.
Copy the extension to AI Hub Server container
When using a single machine deployment and either docker-compose
or our cloud images, follow these steps to install or upgrade your extensions:
- Download the extension JAR file from the Marketplace and copy it to your host machine by using e.g.
scp
- Open a secure terminal to your host machine
- Retrieve the container ID of your AI Hub Backend container by issuing
docker ps
. Note the ID of the container which runs therapidminer-aihub
image. - Copy the extension JAR file to the AI Hub Backend container by issuing
docker cp <path/to/extension.jar> <containerID>:/aihub/home/resources/extensions/
- Restart Server by issuing
docker-compose restart aihub-backend
. The extension will be synced automatically to all Job Agents.