因此,我一直在尝试使用无服务器后端(即Aurora MySQL)设置BI工具。
结构如下:
这些行的实现:tutorial-link
现在,我正在研究用于将此后端与BI / Analytics工具连接的选项,以实现快速查询和可视化目的。
由于我们的后端是Aurora MySQL Serverless,因此其局限性在于无法像使用预配置的后端那样直接连接到终结点。
如此处所述:https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
在类似的行上,我正在尝试设置一个AWS Direct Connect,它目前处于请求阶段:
无论这是正确的方法,我都需要帮助,如果是,是否有任何有关将Direct Connect与Aurora Serverless结合使用的教程?
另一方面,有没有人成功使用无服务器后端的双向工具。
需要能够在最短的时间内启动并运行,以进行快速推断。然后转到ETL或更复杂的用例。
非常感谢您的协助!
谢谢, Arnab
答案 0 :(得分:1)
解决了这个问题。
需要设置一个企业QuickSight帐户才能连接到专用VPC。常规的QuickSight帐户希望端点可以公开使用。而无服务器端点不是。
限制:https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
先决条件:企业QuickSight帐户,Aurora无服务器群集,并在创建连接时确保您的群集具有活动的容量单位。
Step 1: In QuickSight, choose your profile icon at the top right of the screen, then choose "Manage QuickSight". From the menu at left, choose "Manage VPC connections".
Step 2: Choose "Add VPC connection" to add a new VPC connection.
Step 3: For "VPC connection name", type a unique descriptive name. This name doesn't need to be an actual VPC ID or name.
Step 4: Type the subnet ID for Subnet ID, and type the group ID for Security group ID. Make sure that the subnet and the security group are in the same VPC. Also, make sure you are accessing a VPC that is in the same AWS Region where you are creating Amazon QuickSight analyses. You can't use Amazon QuickSight in one AWS Region to connect to a subnet and security group that are in a different AWS Region.
Important note: Please make sure the Security group you use for the VPC connection has access to the Security group used by your Aurora Serverless cluster and vice versa.
Step 5: Review your choices, then choose "Create".
Step 6: Create a new Aurora Data source
Step 7: For the "Connection Type" option choose your newly created VPC connection from the drop down.
Step 8 Fill out the rest of the details on for the connection and click "Create Data Source".
您现在应该可以选择要在分析中使用的表,或者编写自定义SQL查询来获取数据。
也许将来会帮助某个人。