- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据我的研究,我发现 只有使用 CLI 从现有快照创建 Aurora 集群和实例的方法是按照以下步骤操作:
1) 从现有集群创建快照
2) 从快照启动集群
3) 将实例添加到集群中
因此,我使用最新的 AWS CLI 版本运行的命令如下(以及输出):
aws rds create-db-cluster-snapshot \
--db-cluster-snapshot-identifier analytics-replica-db \
--db-cluster-identifier prodcluster
{
"DBClusterSnapshot": {
"Engine": "aurora",
"SnapshotCreateTime": "2017-07-24T15:08:12.836Z",
"VpcId": "vpc-ID",
"DBClusterIdentifier": "cluster_name",
"DBClusterSnapshotArn": "arn:aws:rds:eu-west-1:aws_account:cluster-snapshot:analytics-replica-db",
"MasterUsername": "db_username",
"LicenseModel": "aurora",
"Status": "creating",
"PercentProgress": 0,
"DBClusterSnapshotIdentifier": "analytics-replica-db",
"IAMDatabaseAuthenticationEnabled": false,
"ClusterCreateTime": "2016-04-14T11:10:02.413Z",
"StorageEncrypted": false,
"AllocatedStorage": 1,
"EngineVersion": "5.6.10a",
"SnapshotType": "manual",
"AvailabilityZones": [
"eu-west-1a",
"eu-west-1b",
"eu-west-1c"
],
"Port": 0
}
}
aws rds restore-db-cluster-from-snapshot \
--db-cluster-identifier analytics-replica-cluster \
--snapshot-identifier analytics-replica-db \
--engine aurora \
--port 3306 \
--db-subnet-group-name this_is_a_subnet_group \
--database-name this_is_the_database_name_equal_to_original_cluster_db \
--vpc-security-group-ids this_is_a_random_security_group \
--no-enable-iam-database-authentication
{
"DBCluster": {
"MasterUsername": "this_is_the_same_username_as_the_one_on_original_db",
"ReaderEndpoint": "this_is_the_new_RDS_endpoint_of_cluster",
"ReadReplicaIdentifiers": [],
"VpcSecurityGroups": [
{
"Status": "active",
"VpcSecurityGroupId": "this_is_that_security_group"
}
],
"HostedZoneId": "Z29XKXDKYMONMX",
"Status": "creating",
"MultiAZ": false,
"PreferredBackupWindow": "23:50-00:20",
"DBSubnetGroup": "this_is_a_subnet_group",
"AllocatedStorage": 1,
"BackupRetentionPeriod": 10,
"PreferredMaintenanceWindow": "fri:03:34-fri:04:04",
"Engine": "aurora",
"Endpoint": "this_is_the_new_RDS_endpoint_of_reader",
"AssociatedRoles": [],
"IAMDatabaseAuthenticationEnabled": false,
"ClusterCreateTime": "2017-07-24T15:11:07.003Z",
"EngineVersion": "5.6.10a",
"DBClusterIdentifier": "analytics-replica-cluster",
"DbClusterResourceId": "cluster-resource_id",
"DBClusterMembers": [],
"DBClusterArn": "arn:aws:rds:eu-west-1:aws_account:cluster:analytics-replica-cluster",
"StorageEncrypted": false,
"DatabaseName": "this_is_the_database_name_equal_to_original_cluster_db",
"DBClusterParameterGroup": "default.aurora5.6",
"AvailabilityZones": [
"eu-west-1a",
"eu-west-1b",
"eu-west-1c"
],
"Port": 3306
}
}
aws rds create-db-instance \
--db-name this_is_the_database_name_equal_to_original_cluster_db \
--db-instance-identifier analytics-replica-instance \
--db-instance-class "db.r3.large" \
--publicly-accessible \
--no-enable-iam-database-authentication \
--db-cluster-identifier analytics-replica-cluster \
--engine aurora
An error occurred (InvalidParameterCombination) when calling the CreateDBInstance operation: The requested DB Instance will be a member of a DB Cluster. Set database name for the DB Cluster.
最佳答案
对于面临相同问题的任何人,当您向 Aurora 集群添加新实例时,某些选项不可用。
这个错误一开始很棘手,但很容易理解。最后一部分,Set database name for the DB Cluster.
表示真正的问题,大多数情况下,您需要删除该属性。
另一个例子 An error occurred (InvalidParameterCombination) when calling the CreateDBInstance operation: The requested DB Instance will be a member of a DB Cluster. Set backup retention period for the DB Cluster.
您需要删除 --backup-retention-period
关于amazon-web-services - AWS-CLI : Create RDS Aurora DB instance into existing cluster created from snapshot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45284516/
有没有办法加快 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 作为输入
我是一名优秀的程序员,十分优秀!