I was looking at a new project on Github today which essentially used AWS Lambda functions to runt he back end for a javascript based front end application and it got me thinking about my favorite project, Meteor!
First off, I know quite a lot of thought and effort is being put into implementing a native SQL RDBMS solution to be an option along side Mongo for data. Has any thought been put into using an AWS DynamoDB instance as well? It seems this would be closer to the original server side Mongo/client side miniMongo that we use today but with a hosted data solution. I think the biggest issue would be in using the opslog which wouldn’t be available for DynamoDB but there may be another solutions.
Second, I know Meteor makes extensive use of DDP as opposed to passing data through a RESTful interface. With that said it would still seem that running some of those connections through AWS Lambda functions would not be an insane idea at all. Has this been tried and is there any plan for this sort of functionality in the future? It would be quite interesting!