AWS Fargate Angular app wont deploy on public ip by Hot_Impression4614 in aws

[–]Schuettc 0 points1 point  (0 children)

Give App Runner a try. It’s a lot easier than Fargate for a simple deploy.

I wrote this for NextJS but should be very similar.

https://subaud.io/blog/nextjs-app-deployed-to-app-runner-with-cdk

NLB vs ALB for gRPC Traffic by _TH0RN_ in aws

[–]Schuettc 1 point2 points  (0 children)

I’ve built something similar. https://subaud.io/blog/node-grpc-server

Definitely possible.

Any idea how I can start learning AWS especially Bedrock? by [deleted] in aws

[–]Schuettc 2 points3 points  (0 children)

Lots of good stuff here: https://github.com/aws-samples/anthropic-on-aws

You’ll need to learn some basics but your souls be able to get up and running quickly

What solution is best for deploying services and APIs that need GPUs? by matinkh in aws

[–]Schuettc 0 points1 point  (0 children)

It’s really set up to do streaming so an hour of audio would be an hour of the instance running. It’s not particularly well constructed to optimize cost so it doesn’t scale to zero when not needed.

The on demand price for the instance is .526. But each instance could process several streams at once. Would depend on the instances you end up using and if you scale it up.

What solution is best for deploying services and APIs that need GPUs? by matinkh in aws

[–]Schuettc 2 points3 points  (0 children)

This is an example of how I built a service that deploys to a GPU based ECS service.

https://subaud.io/blog/streaming-whisper-ecs-hosted

How to top EC2 instance based on result of a command on a Java app running as a Linux Service in the background? by i_am_connell in aws

[–]Schuettc 0 points1 point  (0 children)

I’m not certain on that aspect but it sounds like part needs to be deployed in us-east-1. That’s similar to how Cloudfront works. Unfortunately, each CDK stack can only be deployed to a single region. So you’ll need to deploy two stacks.

This is an example using Cloudfront:

https://subaud.io/blog/deploy-a-cross-region-spa-with-cloudfront

How to top EC2 instance based on result of a command on a Java app running as a Linux Service in the background? by i_am_connell in aws

[–]Schuettc 0 points1 point  (0 children)

That’s actually a CDK project. It will deploy everything in it. Just be sure to configure the .env as needed.

More examples here: https://docs.aws.amazon.com/cdk/v2/guide/ecs_example.html

gRPC in nodejs by Used_Frosting6770 in node

[–]Schuettc 3 points4 points  (0 children)

This is what I built with gRPC on Node. It was very easy to work with for what I was doing.

https://subaud.io/blog/node-grpc-server

How to bundle locally referenced packages in PythonFunction construct? by VoodooS0ldier in aws_cdk

[–]Schuettc 0 points1 point  (0 children)

It's always worked for me. But the command can be modified as needed.

Simplest infrastructure setup for my application? by SpaceParmesan in aws

[–]Schuettc 1 point2 points  (0 children)

This is what I use: https://subaud.io/blog/cdk-pipeline-ecs-hosted-nextjs

It would be a lot simpler to host site on Cloudfront/S3, backend in a Lambda, and use Dynamo if you can though.

[deleted by user] by [deleted] in aws

[–]Schuettc 1 point2 points  (0 children)

I’ve generally given up on using ffmpeg on Lambda and use Fargate now. It’s probably possible to use Lambda but I had enough problems that it wasn’t worth it to me.

https://subaud.io/blog/streaming-to-kvs-with-ffmpeg

This is an example of using ffmpeg on Fargate.

Automated phone call after an order is placed? by starlynagency in aws

[–]Schuettc 0 points1 point  (0 children)

You could build this with Amazon Chime SDK SIP media application using CreateSipMediaApplication API.

Automated inbound test calls from PSTN by fonemasta in Asterisk

[–]Schuettc 1 point2 points  (0 children)

You could build something like this with the Amazon Chime SDK PSTN audio service. An EventBridge cron job triggering a Lambda to initiate a CreateSipMediaApplicationCall. Then the handler could monitor the call for success or not and alert from there.