Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>It's difficult to say much about this without knowing anything about the particulars of the data you are loading. Does MySQL have to update indexes in the table? Is everything already sorted properly? How many columns are there, and are you performing any CPU-intensive operations in your <code>LOAD DATA INFILE</code> statement (e.g. replacing parts of strings)? Is old data deleted after a certain period of time, or should all data be retained for the life span of your application?</p> <p>Having said that, it sounds like a single Micro instance will probably have trouble dealing with this. Importing the data should be OK provided you back up the instance with plenty of EBS storage (maybe in a RAID configuration), but if that single instance will also be responsible for running user queries on such a large data set, that's probably not going to run very smoothly. At best you'll end up with a few seconds' latency for user requests when the import script is running. Depending on your application, that may or may not be acceptable. </p> <p>If you are going to run expensive queries on your data, I can say right now that that is not going to work very well on a single Micro instance :) You could scale up to a larger instance or depending on your needs, you may also want to consider using SimpleDB or a similar NoSQL solution instead (though that would take more code in your import script, because you'll have to do batch puts of at most 25 items per batch). </p> <p>But these are just some general thoughts. And AWS actually provides new users with a free usage tier, which lets you run an EC2 Micro instance continuously for a full year without having to pay a dime, so why not sign up for an account and run your own tests? More details <a href="http://aws.amazon.com/free/" rel="nofollow">here</a>. <a href="http://docs.amazonwebservices.com/AWSEC2/latest/UserGuide/concepts_micro_instances.html" rel="nofollow">Here</a>'s some more general information on how micro instances work and what applications they would be suitable for.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload