RDS Proxy needed for Aurora Global Serverless v2?

0

I am using a cross-region global Aurora Serverless v2 cluster for my PostgreSQL database.

Now it could be, that there are multiple connections from multiple services to it.

My question is now, whether we do need an RDS Proxy for this kind of cluster or whether this is not necessary here?

1 回答
-1

Given recent announcement (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html) you could leverage data api for Aurora serverless v2 without need to use rds proxy

profile picture
专家
已回答 4 个月前
  • Many thanks for your input. That sounds very helpful. Currently, my Python backend uses async calls to the database. Hence, it would look like something

    from sqlalchemy.ext.asyncio import create_async_engine
    
    engine = create_async_engine("postgresql+asyncpg://user:password@host/db?ssl=require", echo=False, future=True)
    

    Can I use the same setup for the data API or would I have to do it differently?

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则