Tagged Questions
16
votes
1answer
1k views
How does Amazon RDS backup/snapshot actually work?
I am an Amazon RDS customer and am experiencing daily amazon RDS write latency spikes, corresponding roughly to the backup window. I will also see spikes at the end of a snapshot (case in point: ...
6
votes
3answers
975 views
Are there any less costly alternatives to Amazon's Relational Database Services (RDS)?
I have the following requirement. I have with me a database containing the contact and address details of at least 2000 members of my school alumni organization. We want to store all that information ...
6
votes
1answer
1k views
What are your experiences regarding performance with amazon-rds
Did you try amazon-rds? How is it, performance-wise?
4
votes
1answer
388 views
EC2 - Select load balanced MICRO instances or fewer Small Instances?
I'm building a complicated web analytics application, and I'm wondering what you guys think about this.
Is it better to have 6 or so Micro instances or 2 or 3 Small/Medium Instances of EC2?
Some ...
4
votes
3answers
2k views
Amazon EC2 High Availability Database Architecture
I'm currently spec'ing out a solution running on EC2. Setting up web servers, utilizing S3, Cloud Front, Cloud Watch, etc have been straightforward enough. Using Elastic Load Balancers for HA cross ...
3
votes
0answers
325 views
Is it possible to use Cacti to monitor MySQL on Amazon's RDS?
I noticed that the instructions to setup cacti with mysql mention granting SUPER priveleges:
Create a MySQL user with the SUPER and PROCESS privileges on each server you want to monitor
However, ...
2
votes
1answer
213 views
Benefits of migrating from MySQL to Oracle for Amazon RDS. Worth it?
Amazon recently announced support for Oracle in their RDS product line:
http://aws.amazon.com/rds/oracle/
I was wondering if anyone has used this, or if there would be a compelling reason to migrate ...
2
votes
0answers
150 views
Can Amazon RDS Small do 200 timestamp updates on a primary key per second?
I'm trying to get an idea of how much load a SMALL RDS instance type can handle.
I know this is highly subjective, but given that it's being done on a primary key and a timestamp field is being ...
2
votes
1answer
283 views
How to copy a database using RDS
I have a database instance on RDS with 2 databases on it. Is there a good way using the RDS command line tools to copy the one database to the other? If not, what is the recommended way of doing it?
...
2
votes
2answers
206 views
Are default mysql parameters in RDS sane?
RDS uses the same set of parameters for all instance sizes and they don't seem to be that far from defaults (max_packet_size being too small etc.)
Has anyone looked at them and reviewed them for how ...
2
votes
1answer
521 views
Is it better to have multiple databases vis-a-vis multiple instances on Amazon RDS?
I am planning to deploy my web application (ASP.Net based) on the Amazon EC2 and the persistence on Amazon RDS. I have a 'gut feeling' that at least my session store (again on RDS) should be separate ...
1
vote
0answers
58 views
Table is full in Amazon RDS (MySQL), what can be the root cause?
I'm experiencing a problem with Amazon RDS. MySQL database size is 5Gb. I'm trying to insert new row into the table and I'm getting Table is full error. This is what SHOW TABLE STATUS gives for this ...
1
vote
2answers
154 views
MySQL database limits
We are using a solution with AWS+RDS, and I was wondering what are the absolute Database limits. Limits like
Number of rows in a table.
Number of tables in a database.
Number of databases in an RDS ...
1
vote
1answer
298 views
Is Deterministic MySQL Data Read function allowed in Amazon Web Services?
I tried to create a deterministic, MySQL data read function in my database on a shared hosting in GoDaddy (Linux). But while creating the function I got the following error.
#1419 - You do not have ...
1
vote
1answer
518 views
Trouble connecting Heroku App with Amazon RDS Instance
I'm using Amazon RDS for the first time ever and I've been following the heroku docs to get my app using the RDS instance. So far I've created an instance and I have setup the addon using the format:
...
1
vote
2answers
1k views
Amazon RDS: can databases be setup in replicaton mode?
I am studying the new Amazon RDS product and it seems it can be scaled only vertically (i.e. put a stronger server).
Did anyone see a possibility to configure multiple instances so that one is master ...
0
votes
1answer
58 views
How to modify my.ini parameters of an Amazon RDS instance
While launching a MySQL 5.5 RDS instance, Amazon uses a default parameter group to configure the my.ini parameters, but the console doesn't allow me to modify them. How can I achieve this? (e.g. ...
0
votes
0answers
101 views
How to change max_allowed_packet parameter in MySQL database working on Amazon RDS?
First I changed this value in parameter group, which is used for my database instance
rds-modify-db-parameter-group <name_of_parameter_group> --parameters "name=max_allowed_packet, ...
0
votes
1answer
90 views
Connecting rails app to Amazon RDS server. Works in console, but now page wont load
I am trying to use a RDS database with my rails app since eventually I want to put it on heroku. (Database is about 10gb). I had trouble getting it to connect but it seems to be working. If I go into ...
0
votes
2answers
171 views
RDS Database storage runs out of space
I just upgraded my RDS Storage from 10GB to 20GB and after a couple of days RDS says Storage full again.
Running this query in MySQL workbench against the same DB says the DB size is 43MB
SELECT ...
0
votes
2answers
178 views
Problem with querying in Amazon RDS
Hi i have a python script that connects to an Amazon RDS machine and check for new entries.
my scripts works on the localhost perfectly. But on the RDS it does not detect the new entry. once i cancel ...
0
votes
1answer
144 views
trying to estimate what aws will cost me based upon expected number of queries/inserts
How can I go about determining what the cost of each mysql operation is?
It seems like when using Amazon RDS, they care about number of inputs/outputs, storage size and transfer size (both in and ...
0
votes
1answer
191 views
How to prepare and aftercare data for AWS MapReduce
I am working with Amazons MapReduce Web Service for an university project. In order to use the data for MapReduce, I need to dump them from a relational database (AWS RDS) into S3. After MapReduce ...
0
votes
1answer
323 views
Not able to get the amazon RDS instances using AWS .NET SDK
I'm not able to connect to my database in RDS from local machine....
Here is my code:
Amazon.RDS.AmazonRDSClient client = new Amazon.RDS.AmazonRDSClient(myPublicKey, myPrivateKey);
...