I also figured out where to enter the Amazon cloud and decided to do it in SimpleDB because the relational database is too complicated for logging. I use Java in this case, and there is a ready-made log appender for SimpleDB . I tried google for something similar for .net but did not find :(
So, I recommend SimpleDB on top of RDS.
UPDATE 2010-03-02:
SimpleDB has a length limit of the attribute value of 1024 bytes. Thus, if you get longer log messages, this should be taken care of somehow. One solution is to split the log message into several attributes (for example, columns). There may be 256 pairs of name attributes, which gives us a lot of space.
source
share