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
3 answers

Making REST requests and parsing REST response in C++?

I'm currently working on a project written completely in C++ and running on ubuntu. My requirement is to make REST based calls to Amazon SimpleDB to store/retrieve data. Even though i know C++, i'm not sure how to proceed. Need some insight from the…
0
votes
1 answer

Hibernate Error While working on SimpleDB Database of Amazon

I am working on a grails application which uses Amazon's SimpleDB. I changed a domain field type from String to boolean and now my application does not start up. We are using jPA plugin for integration. I have not changed the name of the field just…
Nikhil Sharma
  • 2,221
  • 6
  • 25
  • 31
0
votes
0 answers

efficient way to store 100GB dataset

I have 100GB dataset in this format with row format as seen below. cookie,iplong1,iplong2..,iplongN I am currently trying to fit this data into redis as a sorted set data structure. I would also need to set a TTL for each of those IPs. I was…
chidori
  • 1,052
  • 3
  • 12
  • 25
0
votes
1 answer

simpledb: overwrite an item and replace all attributes

How can I overwrite an item and replace all its attributes. For eg., I have an item A, with following attributes ItemA AttrA = ValueA AttrB = ValueB now I want to update ItemA with the following attributes ItemA(Updated) AttrB = ValueB1 AttrC =…
NEHAVERMA8
  • 251
  • 1
  • 8
  • 22
0
votes
1 answer

how to escape and save data to simpledb in node.js

I am using simpldb and am trying to save rahul' mehta in simpledb but it is giving me error below : Code : function htmlEscape(text) { return text.replace(/&/g,'&'). replace(/
XMen
  • 29,384
  • 41
  • 99
  • 151
0
votes
1 answer

AWS SimpleDB where clause 'and' operator behaving unexpectedly

The following simpledb query returns 51 results: select * from logger where time > '2011-07-29 17:45:10.540284+00:00' This query returns 20534 results: select * from logger where time < '2011-07-29 17:50:08.615626' These two queries both return 0…
josh
  • 9,038
  • 8
  • 31
  • 37
0
votes
1 answer

Configuring Celery + AWS SQS to revoke tasks

I am running Celery+Kombu 4.4.6 on AWS SQS and want to revoke and terminate tasks. Reading through documentation and SO posts, the transport needs to allow broadcast messages. SQS does not do broadcast messages and Celery+Kombu needs to use SimpleDB…
David R.
  • 855
  • 8
  • 17
0
votes
2 answers

improve read spead simple db boto

I have a script that reads simpledb domains and writes them to s3. the performance is mediocre at best. Is there a way to increase the read speed? import boto import datetime from xml.dom.minidom import Document from boto.s3.key import Key awsa =…
Chris Hayes
  • 3,876
  • 7
  • 42
  • 72
0
votes
2 answers

SimpleXML Reading Key/Value Pairs

I'm sure something like this will have come up before, but I'm struggling to find what I'm looking for on here at all. I've read previous answers here lots of times, but never asked or answered myself before! I'm using SimpleXML to read a response…
Matthew Higgins
  • 588
  • 1
  • 9
  • 22
0
votes
1 answer

Is there a canonical gem/plugin for a Rails app to use SimpleDb as the backend?

I am thinking of porting a MySQL backed app to SimpleDB. Is there a 'default' choice of which gem or plugin to use for attempting this?
0
votes
2 answers

Test for empty result set in Amazon SimpleDB PHP SDK

I've been playing around with integrating a mobile app with SimpleDB and am having an problem testing a Select response for emptiness. I'm not much of an OO PHP programmer and am getting confused looking through the code. Here's the relevant code…
Stateful
  • 737
  • 2
  • 9
  • 25
0
votes
1 answer

how do i implement regular expression in amazon simpledb

I have data stored in this format in amazon simpledb source code success fa.php 987439aa true ga.php aa84892 false how do i wrtie this type of query in simpledb select * from domain_name where source =…
mark cuve
  • 103
  • 2
  • 5
0
votes
2 answers

does google bigtable and amazon simpleDB support regular expressions?

i am going to store nginx logs in either simpledb or in bigtable. i want to know if simpledb or bigtable support regular expressions query (like in mongodb)
mark cuve
  • 103
  • 2
  • 5
0
votes
2 answers

dynamic multi dimensional array creation in php

It may be simple question ,i am fresh to php,amazon I want to do batch put to my SDB database. I download s php-sdb sdk from amazon and did it successfully. $bPut = $sdb->batch_put_attributes($domineName, array( 'ItemOne' => array( 'Company'…
Jisson
  • 3,566
  • 8
  • 38
  • 71
0
votes
1 answer

Php program fetches data from Amazon-simpleDB

I am developing a mobile application in android,I use amazon's SDB for storing data, Now I want to write a php program which fetches the data from the SDB domines and process it.I am new to php,and AWS.What are the steps/procedures to fetch the…
Jisson
  • 3,566
  • 8
  • 38
  • 71