Amazon web services – s3 storage not aging out
I have an s3 bucket which isn't deleting old versions. The bucket is used to store backups - each backup is two files 30GB and 1GB. We keep backups for 14 days and then have a script which deletes the…
I have an s3 bucket which isn't deleting old versions. The bucket is used to store backups - each backup is two files 30GB and 1GB. We keep backups for 14 days and then have a script which deletes the…
I'm struggling to understand what VPC configurations are necessary to enable AWS Batch Jobs, running in a Fargate compute environment, to retrieve images from ECR. vpc.ts // Create VPC this.vpc = new ec2.Vpc(this, `VPC-${props.modelContext}-${props.stageName}`, { maxAzs: 3, // Maximum number…
Using AWS Firehose to ingest data into an Iceberg table managed by AWS Glue, I'm unable to insert timestamp data. Firehose I'm trying to insert data using the following script: json_data = json.dumps( { "ADF_Record": { "foo": "bar", "baz": "2024-09-04T18:56:15.114"…
I want to use the AWS CLI v2 with zsh command completion. There are instructions here, but they refer to a file aws_zsh_completer.sh which does not exist in the downloaded zip file, nor in /usr/local/aws-cli/v2/current/. Possibly those docs are outdated.…
Is it possible to get aws rds version? I know for Aws rds Aurora version select aurora_version(); aurora_version ---------------- 16.3.0 (1 row) select version(); version ------------------------------------------------------------------------------------------------------------- PostgreSQL 16.3 on aarch64-unknown-linux-gnu, compiled by aarch64-unknown-linux-gnu-gcc (GCC) 9.5.0, 64-bit (1 row) SHOW server_version…
I have a Lambda function that has some data and must send it to a SQS queue. But it seems like the send is not working. There is no error and it seems to gracefully continue execution without any message…
I am currently having an issue with Python packages on AWS Lambda. I have defined a Lambda layer like this: my_layer = _lambda.LayerVersion( self, "MyLayer", code=_lambda.Code.from_asset("layer_code_directory"), compatible_runtimes=[_lambda.Runtime.PYTHON_3_12], description="Lambda Layer for common dependancies" ) The layer is used for common dependencies…
I'm trying to use AWS Bedrock's RAG feature. I created an s3 bucket and put in some CSV files representing tables from a customer database. I created two knowledge bases - one's data source is the whole bucket and the…
I have existing code where Datasource is created using hikari. I am working on adding new functionality where if current rds is down application should switch to secondary rds. In docker compose file I added new image for local testing…
I am new to GitHub actions. I use it to deploy to an AWS account, a lambda application committed to a GitHub repository. Currently, I am using this workflow below so that only a pull request that is merged and…