- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 cloudformation 模板创建 Amazon RDS 主节点和只读副本集群。
最佳答案
我们可以使用下面的cloudformation模板创建Amazon Aurora RDS。只是我们需要在创建堆栈时传递参数。
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Aurora Db Stack",
"Parameters": {
"EnvironmentName": {
"Description": "The string that will be prefixed to each instance name",
"Type": "String",
"MinLength": "3",
"MaxLength": "6",
"AllowedPattern": "[a-z0-9]*",
"ConstraintDescription": "Environment names must be 3-6 characters and contain only a-z and 0-9."
},
"DbUsername": {
"Description": "App Db Username",
"Type": "String",
"MinLength": "5",
"MaxLength": "15",
"AllowedPattern": "[a-zA-Z][a-zA-Z0-9]*",
"ConstraintDescription": "must begin with a letter and contain only alphanumeric characters."
},
"DbPassword": {
"Description": "App Db Password",
"NoEcho": "true",
"Type": "String",
"MinLength": "15",
"MaxLength": "41",
"AllowedPattern": "[a-zA-Z0-9]*",
"ConstraintDescription": "App Db Password must be 15-41 characters and contain only alpha numeric characters."
},
"DbType": {
"Description": "App Db server RDS instance type",
"Type": "String",
"Default": "db.r3.large",
"AllowedValues": [
"db.r3.large",
"db.r3.xlarge",
"db.r3.2xlarge",
"db.r3.4xlarge",
"db.r3.8xlarge"
],
"ConstraintDescription": "must be a valid RDS instance type."
},
"DBIdentifierNameMaster": {
"Description": "The string that will be prefixed to each instance name",
"Type": "String",
"MinLength": "3",
"MaxLength": "10",
"AllowedPattern": "[a-z0-9]*",
"ConstraintDescription": "Identifier names must be 3-6 characters and contain only a-z and 0-9."
},
"DBIdentifierNameReplica": {
"Description": "The string that will be prefixed to each instance name",
"Type": "String",
"MinLength": "3",
"MaxLength": "10",
"AllowedPattern": "[a-z0-9]*",
"ConstraintDescription": "Identifier names must be 3-10 characters and contain only a-z and 0-9."
},
"Subnets": {
"Type": "CommaDelimitedList",
"Default": "subnet-8ec5b8e6,subnet-1edcc277",
"Description": "The list of SubnetIds where the stack will be launched"
},
"DBSecurityGroupName": {
"Type": "String",
"Description": "Security Group id"
}
},
"Resources": {
"DBSubnetGroup": {
"Type": "AWS::RDS::DBSubnetGroup",
"Properties": {
"DBSubnetGroupDescription": "Dev DB subent groups",
"SubnetIds":
{
"Ref": "Subnets"
},
"Tags": [
{
"Key": "Name",
"Value": {
"Fn::Join": [
"",
[
"PROJECT_NAME-",
{
"Ref": "EnvironmentName"
},
"-db"
]
]
}
}
]
}
},
"DBCluster": {
"Type": "AWS::RDS::DBCluster",
"Properties": {
"Engine": "aurora",
"MasterUsername": {
"Ref": "DbUsername"
},
"MasterUserPassword": {
"Ref": "DbPassword"
},
"DBSubnetGroupName": {
"Ref": "DBSubnetGroup"
},
"VpcSecurityGroupIds": [
{
"Ref": "DBSecurityGroupName"
}
]
}
},
"RDSinstance": {
"Type": "AWS::RDS::DBInstance",
"Properties": {
"DBClusterIdentifier": {
"Ref": "DBCluster"
},
"DBInstanceIdentifier": {
"Ref": "DBIdentifierNameMaster"
},
"DBInstanceClass": {
"Ref": "DbType"
},
"Engine": "aurora",
"DBParameterGroupName": {
"Ref": "DbParameterGroup"
},
"DBSubnetGroupName": {
"Ref": "DBSubnetGroup"
},
"PubliclyAccessible": "true",
"Tags": [
{
"Key": "Name",
"Value": {
"Fn::Join": [
"",
[
"Master Database-",
{
"Ref": "EnvironmentName"
},
"-app-db"
]
]
}
}
]
}
},
"RDSinstance2": {
"Type": "AWS::RDS::DBInstance",
"Properties": {
"DBClusterIdentifier": {
"Ref": "DBCluster"
},
"DBInstanceIdentifier": {
"Ref": "DBIdentifierNameReplica"
},
"DBInstanceClass": {
"Ref": "DbType"
},
"Engine": "aurora",
"DBParameterGroupName": {
"Ref": "DbParameterGroup"
},
"DBSubnetGroupName": {
"Ref": "DBSubnetGroup"
},
"PubliclyAccessible": "true",
"Tags": [
{
"Key": "Name",
"Value": {
"Fn::Join": [
"",
[
"Read Replica Database-",
{
"Ref": "EnvironmentName"
},
"-app-db"
]
]
}
}
]
}
},
"DbParameterGroup": {
"Type": "AWS::RDS::DBParameterGroup",
"Properties": {
"Description": "AppDbParameters",
"Family": "aurora5.6",
"Parameters": {
"log_bin_trust_function_creators": "on",
"explicit_defaults_for_timestamp": "0"
}
}
}
}
}
关于amazon-web-services - 如何使用 cloudformation 模板创建 Amazon RDS aurora 主节点和只读副本集群,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39383724/
有没有办法加快 Amazon Aurora 集群快照的恢复? 我们的数据库现在有 20 兆字节,但执行快照还原需要一个小时。 最佳答案 经典 RDS Mysql 会拍摄 EBS 卷的快照,因此拍摄快照
我正在寻找这个亚马逊页面 - https://aws.amazon.com/rds/aurora/serverless/它有这样的报价: You pay on a per-second basis f
是否可以在 AWS aurora 中编写 CTE?即是否存在 WITH支持? 如果没有,你如何在极光中实现同样的目标? 最佳答案 不,Aurora 目前模仿不支持它的 MySQL 5.6。后端不太灵活
我正在尝试从本地计算机连接到我的数据库,但出现以下错误。 ERROR 2003 (HY000): Can't connect to MySQL server on 'finaltesting2.clu
我正在使用 AWS Aurora serverless 设置一个新数据库,并且需要启用 binlog。我想我已经按原样遵循了文档,但无法使其正常工作。我该如何设置? 按照文档,以下是我尝试启用 bin
今天我在 us-west-2 中为 PostGreSql 创建了 Amazon Aurora Serverless 集群,确保了 VPC 和安全组在 一种方式,它应该是公开可访问的。但我无法使用 Na
我已经看到 DynamoDB 作为 AWS AppSync 数据源的示例,但我想知道是否可以使用 Aurora(特别是 PostgreSQL)?如果是,对于基本示例,解析器会是什么样子?是否有任何资源
我们有一个 AWS Aurora 数据库,位于一个实例上,用于保存我们所有的生产数据。我希望能够在不在我们的生产环境中对这些数据执行分析,因此我想每天将生产数据复制到完全不同实例上的另一个 AWS A
我想在事件 RDS 上启用新的“性能洞察”。 我可以在不期望任何停机时间的情况下做到这一点吗? 谢谢 最佳答案 Performance Insights 确实需要您提及修改的调度规则 [1],这确实表
我有一个SpringBoot应用程序,它使用以下配置与PostgreSQL通信,通过AWS Beanstrik部署:。在我将AWS Aurora证书更新为rds-ca-ecc384-g1之前,一切都很
我们在Aurora集群中使用MySQL我们有 2 个实例 - master 和 slave。我们正在 c3po 连接池之上处理 spring 事务。我们正在使用 mariadb jdbc 驱动程序(版
我们在 AWS ec2 实例(r3.4xlarge 类型)上安装并运行了 mysql 5.5。我们想要迁移到 RDS/Aurora 1- RDS/Aurora 可支持 mysql 5.6 及以上版本。
我的 S3 存储桶中有不同扩展名的文件。我只想加载 CSV 扩展程序。有没有办法在 LOAD FROM S3 命令中指定这一点? 最佳答案 根据文档link ,有一种方法可以指定 PREFIX 并加载
在针对 AWS aurora-mysql 数据库运行的系统中,运行以下(显然极其简化)代码。它是一个高度并发的系统(如果重要的话,用java编写),具有多个线程,多个到数据库的连接。我们遇到的问题是当
我有位于新加坡的 AWS MySQL RDS 实例,我计划将其迁移到 AWS Aurora(孟买)。这个过程大约需要30-40分钟左右。我不想在迁移过程中出现任何停机时间。我的应用程序服务器在 nod
我们正在使用 AWS Aurora 作为数据库运行基于 REST API 的 spring boot 应用程序。我们的应用程序连接到只读的 Aurora MySQL RDS 实例。我们正在对其进行负载
还有其他人遇到这个问题吗? 我已启用 Cloudwatch 日志记录并将发布切换为打开以获取一般日志、审计日志、慢速日志和错误日志,但我从未看到失败登录的条目。 也许 AWS-RDS 对错误日志的过滤
我在生产环境中运行 Aurora MySql Engine 版本 5.6.10a。 5 月 9 日的自动数据库快照大小为 120 GB,该快照大小增加了 27 GB 至 147 GB。我检查过 DB
我有一个在本地运行的 postgres 数据库,我想将其迁移到 AWS Aurora(或 AWS postgres)。 我已经 pg_dump 得到了我想要的数据库,它被压缩了 ~30gb。 我应该如
所以我正在使用 Aurora MYSQL DB,并且我的 AWS Lambda 实例需要执行以下操作。假设一个表有两列:ID 和翻译后的 ID。我可以访问 Lambda 函数,该函数将 ID 作为输入
我是一名优秀的程序员,十分优秀!