Questions tagged [amazon-simpledb]

Highly available schema-less attribute database that is part of the Amazon Web Services offering. Enables storage and retrieval of named items consisting of one or more key/value string pairs organized into domains. Item retrieval is done either by item name gets or through a sql-like language. Pay for what you use model with no minimum fees or startup costs.

Amazon SimpleDB is a highly available schema-less attribute database that is part of the Amazon Web Services offering. Enables storage and retrieval of named items consisting of one or more key/value string pairs organized into domains. Item retrieval is done either by item name gets or through a sql-like language. Pay for what you use model with no minimum fees or startup costs.

References

390 questions
0
votes
1 answer

AWS SimpleDB contains value

I am trying to make a db query (AWS simpleDB) and want only things to return if they contain the @ symbol somewhere in the email field. I am starting like this select * from `myDomain` where email = _____ I just can't figure out what to put in that…
user821863
  • 479
  • 5
  • 15
0
votes
1 answer

Error in installing SimpleDB::Class

I try to install SimpleDB::Class from cpan as sudo cpan SimpleDB::Class. it needs a dependency Memcached::libmemcached. so i try to install it, but it have the following errors. CCLD clients/memstat CC tests/atomsmasher.o CCLD …
Viuu -a
  • 108
  • 1
  • 12
0
votes
2 answers

python - simpledb - how to shard/chunk a big string into several <1kb values?

I've been reading up on SimpleDB and one downfall (for me) is the 1kb max per attribute limit. I do a lot of RSS feed processing and I was hoping to store feed data in SimpleDB (articles) and from what I've read the best way to do this is to shard…
Joe
  • 1,762
  • 9
  • 43
  • 60
0
votes
1 answer

Signature error using Amazon Web Services SDK For PHP only when inserting encrypted data

I keep getting signature errors using the AWS SDK for PHP, but it only happens I'm inserting encrypted data into SimpleDb. For example, if I comment out $userkey = "test", then I get errors, but if I leave it in, there are no errors.
0
votes
1 answer

How To Do Conditional Put for SimpleDB Using AWS SDK For PHP Version 2

I have the following code which inputs new items into a domain for SimpleDB. I am using AWS SDK For PHP Version 2. $client->putAttributes(array( 'DomainName' => $domainName, 'ItemName' => $uniqueid, 'Attributes' => array( …
fun_programming
  • 228
  • 4
  • 15
0
votes
2 answers

How to replace attribute values in Node.js Simpledb using putItem

I have a node application saving data to Amazon SimpleDb to store name/value pairs data using the rjrodger/simpledb node driver (https://github.com/rjrodger/simpledb) . I call putItem as below: sdb.putItem('mySimpleDbTable','Record_0001', { …
Ram Iyer
  • 1,404
  • 2
  • 20
  • 27
0
votes
1 answer

Amazon SimpleDB – atomicity & queues - make 2 puts in an atomic way?

We have a couple of smartphone apps that rely on Amazon SimpleDB and s3. The architecture is typically very simple, the data not sensitive, there are not too many users per app, the apps query Amazon directly (as opposed to have our own server in…
0
votes
1 answer

AWS celery and database

I am writing a webapp thats runs on AWS. My app requires users to upload their pdf files. I will convert them into Images using the "convert" utility in linux. Here is my setup on Ubuntu 12.04: Django Celery Django Celery Boto I am using…
0
votes
2 answers

Can I use associations when using Ruby on Rails w/Amazon SimpleDB?

For a new project my company is considering using Amazon SimpleDB to simplify data storage. The app is a simplistic web dashboard that will be created using Ruby on Rails. What I'm wondering, though, is if I can still use associations like…
Wayne Molina
  • 19,158
  • 26
  • 98
  • 163
0
votes
2 answers

Amazon SimpleDB Web Page Application

I am a new developer to the AWS cloud. I am writing an Android App that interfaces with the SimpleDB. I have found many references and have successfully interfaced my app with the SimpleDB using the AWS SDK and using the anonymous TVM - works…
0
votes
1 answer

How to efficiently query for an user "Items" in a data base? (amazon SimpleDB)

Sorry if this has been asked before, I couldn't think of how to formulate the question. I have a database (specifically in amazon SimpleDB) in where I use 2 domains. Domain 1 has a list of users with some general information. Domain 2 is a list of…
Pochi
  • 13,391
  • 3
  • 64
  • 104
0
votes
3 answers

Having Attributes of an Item in SimpleDB to be sorted

I am trying to display a SimpleDB query and noticed that the order of the attributes are not always the same per query. For example, one query result might look like: Item URL:.... Date:... then another query might look like this: Item …
Dan
  • 8,263
  • 16
  • 51
  • 53
0
votes
1 answer

AWS iOS SDK simpleDB item count

i just started out working on a project using Amazon Web Services SimpleDB. in one method i am trying to figure out how many items a domain already contains by using a select query. The code looks like this: AmazonSimpleDBClient *dbClienet =…
0
votes
1 answer

advice on appropriate database for click logging reporting

I am about to build a service that logs clicks and transactions from an e-commerce website. I expect to log millions of clicks every month. I will use this to run reports to evaluate marketing efforts and site usage (similar to Google Analytics*).…
0
votes
3 answers

Getting data from SimpleDB using PHP

How do I get data out of SimpleDB? All I wanted to do was put data in and then get data out. It looks like the data is not easy to get out and in the end will require computing power to extract by looping etc. Am I correct? Here is my code to…
andrebruton
  • 2,268
  • 4
  • 29
  • 36
1 2 3
25
26