amazon-simpledb

anonymous read with amazon simpledb

↘锁芯ラ 提交于 2019-11-29 11:19:23
I would like to query simpledb directly from the client using javascript. My application is read-heavy and I rather not route the request through my application server. Is it possible to perform a select request without authentication? I could set up an authentication server, but this is rather inelegant as it will just be saying yes to every read request and would introduce another bottleneck/speedbump/point of failure. Do the other cloud db solutions (microsoft, google) have this functionality? This is possible using AWS IAM ( Identity and Access Management ) and a server side " token

Pro's of databases like BigTable, SimpleDB

穿精又带淫゛_ 提交于 2019-11-28 16:52:36
问题 New school datastore paradigms like Google BigTable and Amazon SimpleDB are specifically designed for scalability, among other things. Basically, disallowing joins and denormalization are the ways this is being accomplished. In this topic, however, the consensus seems to be that joins on large tables don't necessarilly have to be too expensive and denormalization is "overrated" to some extent Why, then, do these aforementioned systems disallow joins and force everything together in a single

How to do paging with simpledb?

妖精的绣舞 提交于 2019-11-28 10:03:48
I know how to page forward with SimpleDB data by using NextToken. However, how exactly does one handle previous pages? I'm on .NET, but I don't think that matters. I'm more interested in the general strategy. Mike Culver's An Introduction to Amazon SimpleDB webinar mentions that breadcrumbs are used, but he doesn't implement them in the video. EDIT: The video mentions a sample project which implements backwards paging, but the video ends before the URL for the download can be displayed. The one sample project I found didn't deal with paging. When going to the next page you may be able to

Eventual Consistency

泪湿孤枕 提交于 2019-11-28 05:25:59
I am in the early stages of design of an application that has to be highly available and scalable. I want to use an eventual consistency data model for this for a number of reasons. I know and understand why this is an unpopular architectural choice for many solutions, but it's important in my case. I am looking for real-world advice, best-practices and gotchas to look out for when dealing with distributed / document-style databases. And particularly areas around e-commerce (shopping cart style) apps that traditionally are easier to put together with a relational db. I understand using these

anonymous read with amazon simpledb

狂风中的少年 提交于 2019-11-28 04:46:32
问题 I would like to query simpledb directly from the client using javascript. My application is read-heavy and I rather not route the request through my application server. Is it possible to perform a select request without authentication? I could set up an authentication server, but this is rather inelegant as it will just be saying yes to every read request and would introduce another bottleneck/speedbump/point of failure. Do the other cloud db solutions (microsoft, google) have this

Looping through a SimpleXML object, or turning the whole thing into an array

五迷三道 提交于 2019-11-27 20:39:10
I'm trying to work out how to iterate though a returned SimpleXML object. I'm using a toolkit called Tarzan AWS , which connects to Amazon Web Services (SimpleDB, S3, EC2, etc). I'm specifically using SimpleDB. I can put data into the Amazon SimpleDB service, and I can get it back. I just don't know how to handle the SimpleXML object that is returned. The Tarzan AWS documentation says this: Look at the response to navigate through the headers and body of the response. Note that this is an object, not an array, and that the body is a SimpleXML object. Here's a sample of the returned SimpleXML

How to do paging with simpledb?

…衆ロ難τιáo~ 提交于 2019-11-27 03:23:38
问题 I know how to page forward with SimpleDB data by using NextToken. However, how exactly does one handle previous pages? I'm on .NET, but I don't think that matters. I'm more interested in the general strategy. Mike Culver's An Introduction to Amazon SimpleDB webinar mentions that breadcrumbs are used, but he doesn't implement them in the video. EDIT: The video mentions a sample project which implements backwards paging, but the video ends before the URL for the download can be displayed. The

Eventual Consistency

僤鯓⒐⒋嵵緔 提交于 2019-11-27 00:56:06
问题 I am in the early stages of design of an application that has to be highly available and scalable. I want to use an eventual consistency data model for this for a number of reasons. I know and understand why this is an unpopular architectural choice for many solutions, but it's important in my case. I am looking for real-world advice, best-practices and gotchas to look out for when dealing with distributed / document-style databases. And particularly areas around e-commerce (shopping cart