Questions tagged [aws-pipeline]
44 questions
0
votes
0 answers
Why is AWS Elastic Beanstalk deployment failing randomly?
I have setup AWS Elastic Beanstalk Worker Environment (Load Balanced) and random deployment failure issue. Many times, deployment works well. Sometimes it fails, here's what I found:
When I have multiple instances, deployment fails with error in EB…

Krishna Sunuwar
- 2,915
- 16
- 24
0
votes
1 answer
Updating Tables in AWS Redshift Datawamart
Background:
We use fivetran to ingest data from multiple sources into AWS Redshift. We've got ETL scripts which we run on top of these tables to create other more relevant tables. Furthermore, we've got final views/tables which can be built on top…

AIViz
- 82
- 9
0
votes
0 answers
laravel existing application Laravel.yml to codepipeline
I have a laravel application in local development added to codecommit. I have added AWS Beanstalk to run this application to run,
everything works perfectly fine,
but to connect with the database and other dependencies I don't know how to add the…

maxasela
- 309
- 1
- 3
- 12
0
votes
0 answers
How to correctly run ECS commands via AWS CDK in a pipeline and debug?
we have ECS commands running in our Pipeline to deploy a Drupal 8 website. We have added commands like this to our CDK code. We have about 5 commands like this running in the CDK code. We execute these commands using Lambda.
'use strict';
const AWS…

Dynamdilshan
- 61
- 5
0
votes
0 answers
AWS CDK. CodeCommit repository as source in CodeBuild
I am trying to set a CodeCommit repository as a source for build project in AWS CDK.
So i am trying to do the following:
const codeCommitRepository = codecommit.Repository.fromRepositoryArn(this, "xxx",…

Diana
- 935
- 10
- 31
0
votes
1 answer
CodeDeploy - BeforeInstall ScriptMissing
I'm trying to deploy my spring boot application with AWS CodeDeploy in a EC2 linux machine but the process is stoping in BeforeInstall and throwing the message error: Script does not exist at specified location:…
0
votes
1 answer
How to get Sagemaker Pipeline Step (Tuning Job step) information by Python
I have a Sagemaker pipeline which has few steps - I am interested in the "HPO" step.
HPO represents the Hyperparameter tuning job.
Is there a way to get the list of hyperparameter parameters in this HPO step of the Sagemaker pipeline? I have the…

NDS
- 119
- 13
0
votes
0 answers
AWS CodeDeploy only when a repo has updates and at a scheduled time
I currently have an AWS Code Build Pipeline setup that is executing on a set schedule using AWS Event Bridge.
However, this doesn't check to see if there are actually any pending changes in the connected Repo so it just builds regardless.
Is there…

James Parker
- 2,095
- 3
- 27
- 48
0
votes
1 answer
synchronizing, scheduling and executing Node.js scripts on AWS
Usually, we store our code on github, and then deploy it on AWS lambda.
We are now challenged with a specific Node.js script.
it takes roughly an hour to run, we can't deploy it on a lambda because of that.
it needs to run just once a month.
once…

bvdb
- 22,839
- 10
- 110
- 123
0
votes
0 answers
AWS Codedeploy failing to deploy on EC2 without any error logs
I am deploying a spring boot jar in a EC2 instance from code pipeline using code build and deploy. CodeBuild is working fine and the artifact is getting uploaded in S3.
When the CodeDeploy starts, it will be in process for 2-3 mins and fail in the…

Shrikar Kalagi
- 91
- 1
- 11
0
votes
0 answers
How to remove web server in spring boot application and keep deploying into ecs with health check
I have a spring boot service that send and receive messages only from a kafka topic,
I want to remove the web server (tomcat) since there is no need for it.
The problem is the service is currently deployed on ECS and the end point /actuator/health…

bessam Sahli
- 105
- 7
-1
votes
2 answers
How can we orchestrate and automate data movement and data transformation in AWS sagemaker pipeline
I'm migrating our ML notebooks from Azure Databricks to AWS environment using Sagemaker and Step functions. I have separate notebooks for data processing, feature engineering and ML algorithms which I want to run in a sequence after completion of…

Vishnu
- 1
-1
votes
2 answers
AWS CloudFormation service was unable to place a task because no container instance met all of its requirements
I am trying to create an ECS using a ci/cd pipeline. I have defined TaskDefination and ECSService along with VPC.
The cloudformation created the cluster and got stuck ECSService creation.
I went to the ECSService event, I found the error 'service…

Abdul Waheed
- 63
- 1
- 10
-1
votes
1 answer
AWS stepfunction array job
I want to make one of AWS job as an array job(to execute things parallely), I have list of inputs for the child job in single json file on s3.
I am trying to convert the job into array job by adding array job into defination as follows:
"Array": {
…

Jay Patel
- 49
- 4