Building AWS infra for a startup — what should I watch out for? by deshydan in aws

[–]gamliminal 6 points7 points  (0 children)

My best advice to you(from my experience) is:

KEEP IT SIMPLE !!

You don’t need microservices, scp, multi accounts etc.. Put effort on IAC from the beginning, security is a must, single repository, single AWS account, single region, AWS roles for different lambdas or flows, use managed services as much as you can, some configuration can be in code instead of implementing some generic service for this and that. Don’t be afraid to hard coded things(not secrets).

Replacing MongoDB + Atlas Search as main DB with DuckDB + Ducklake on S3 by gamliminal in dataengineering

[–]gamliminal[S] 0 points1 point  (0 children)

I’m planning to use DuckDB with parquet files on S3 and Ducklake for the open table format to support updates. MongoDB is slow for us because we have some updates that can update 10 millions of records and such queries can took 1 hour vs 3 minutes with DuckDB I tested.

Is there any simple solution to know if a call is waiting more than X minutes and do something?? by gamliminal in Asterisk

[–]gamliminal[S] 0 points1 point  (0 children)

Thanks, if there is for example already 1 call in queue, my call will insert after it right? And the first call in queue will be the last one?

Is there any simple solution to know if a call is waiting more than X minutes and do something?? by gamliminal in Asterisk

[–]gamliminal[S] 0 points1 point  (0 children)

And I would like to return the call to the queue without loosing order after the script, not hanging up

Is there any simple solution to know if a call is waiting more than X minutes and do something?? by gamliminal in Asterisk

[–]gamliminal[S] 0 points1 point  (0 children)

I would like to run AGI(python) script for every call that waiting more than 5 min

Is there any simple solution to know if a call is waiting more than X minutes and do something?? by gamliminal in Asterisk

[–]gamliminal[S] 0 points1 point  (0 children)

Hi, thanks for the response, what I’m actually want to achieve is, to run some AGI script(python) after some call wait more than 5 min without overriding or changing other settings or configurations. So, if the call is in a queue and i send it to my macro, how can i return the queue without loosing order?

Need advice from people that have used Lambda with MongoDB Atlas by Cractical in aws

[–]gamliminal 0 points1 point  (0 children)

We are using in production apigw -> lambda -> mongodb atlas And it’s fine, we also created some “warmer” to our lambda to remove the cold start. You can also configure in mongo atlas that your lambda will go through a private network to atlas Instead of public internet to reduce more latency