I am trying to deploy ETL pipeline on AWS, Pipeline architecture consist of step function to manage the whole pipeline, it consists of 10 parallel (independent) Fargate (pipeline) invoked using map in step function and a Lambda (Error Notifier),
I have used python 3.7 as base image to build my docker image, pipeline is successfully deployed, but it sometimes randomly fails with container exit code 139.
After further research, I found out that it is sigsegv error (same as error code 11 of linux kernel), related invalid memory access
I am not sure how to rectify this error