TCA takes client applications as a natural language description and recommends whether client applications can be containerized. For example, a client can provide the application description as the following.
1. App1: rhel, db2, java, tomcat
TCA takes the following steps to recommend the containerization.
- Assessment: It assesses the application to standardize the inputs to relevant named entities present in our knowledge base. For details on the knowledge base please check the aca_db folder. For example, the inputs in App1 get mapped as the following named entities.
1. App1: rhel: Linux|RedHat Linux, db2: DB2, java: Java, tomcat: Apache Tomcat
- Containerization: First, it recommends whether App1 can be containerized, partially containerized, or kept as it is. Then if App1 is recommended as containerized or partially containerized, TCA generates container images based on DockerHub or Openshift. For example, if a user decides to generate DockerHub related images, then TCA generates the following images.
1. tomcat|https://hub.docker.com/_/tomcat
2. db2|https://hub.docker.com/r/ibmcom/db2
For Openshift, TCA generates the following images.
1. tomcat|https://access.redhat.com/containers/#/registry.access.redhat.com/jboss-webserver-3/webserver31-tomcat8-openshift
2. db2|https://access.redhat.com/containers/#/cp.stg.icr.io/cp/ftm/base/ftm-db2-base
The pipeline ingests raw inputs from clients data and standardizes the data to generate named entities and versions. For standardizing or normalizing raw inputs we use a tf-idf similarity based approach. To find container images we represent images in terms of named entities as well. The normalized representation helps to match legacy applications with container images to suggest the best possible recommendations.
There are two options to run the backend API. One using a shell script.
1. sh run.sh
Two, you can directly run the docker as follows.
1. cd aca_backend_api/
2. docker-compose -f 'docker-compose-api.yml' --env-file ./config.ini up -d --build
If you want to make changes to TCA's Knowledge Base, please follow the instructions below.
1. https://www.sqlite.org/download.html
1. https://docs.anaconda.com/anaconda/install/
1. conda create --name <env-name> python=3.8
2. conda activate <env-name>
1. git clone https://github.com/konveyor/tackle-container-advisor.git
2. cd tackle-container-advisor
1. sh setup.sh
For updating the TCA's Knowledge Base, enter in the aca_db folder. Upload the DB file in a tool such DBeaver. Once you have completed making changes, generate a new .sql file and update the existing .sql file with the new file.
1. sh clean.sh
2. sh setup.sh
Please perform the following steps.
1. db_path = aca_db/<new_db>.db
1. db_path = aca_db/<new_db>.db
1. aca_sql_file="<new_db>.sql"
2. aca_db_file="<new_db>.db"
1. sh setup.sh
1. aca_db_file="aca_kg_ce_1.0.1.db"
Please perform the following changes when you create a new version
-
Anup K. Kalia. Tackle Containerization Advisory for Legacy Applications. (link to the video: https://www.youtube.com/watch?v=VapEooROERw, link to the slides: https://www.slideshare.net/KonveyorIO/tackle-containerization-advisor-tca-for-legacy-applications)
-
Anup K. Kalia, Raghav Batta, Jin Xiao, Mihir Choudhury and Maja Vukovic. ACA: Application Containerization Advisory Framework for Modernizing Legacy Applications. IEEE International Conference on Cloud Computing (Cloud) [Work-in-progress], sept, pages 1--3, 2021.