1. By Running below python script in code component found that datagaps utilities is missing
import pkg_resources installed_packages = pkg_resources.working_set installed_packages_list = sorted(["%s==%s" % (i.key, i.version) for i in installed_packages]) for m in installed_packages_list: print(m)
Please find the below screenshot for output, datagaps-utilities is missing here
2. got the bootstrapscript(customscript.sh) log from s3 bucket s3://<bucket-name>/logs/customscript_master.log and found that datagaps-utilities not installed. We can get the log file from s3 using below cli command
aws s3 cp s3://<bucket-name>/logs/customscript_master.log .
3. checked and found that url is incorrect and we have replaced with below url
https://datagaps.s3.amazonaws.com/dataops-suite/release/datagaps_utilities-0.3.2-py3-none-any.whl
4. Datagaps-Utilities was installed and working fine after changing the url.