We have a php service that need to log data very fast(handles 1000 clients per second. with each one writing a record to the log. So 1000 writes per second) and then send that logged data in near realtime to another service. We are using AWS. How would you transfer the data to another amazon service? Should we use a database(sync writing will block the php requests, no?) Should we use something like amazon SQS or any other amazon solution?We have a php service that need to log data ver