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?

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ