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 ...
0
votes
0answers
7 views
Complex Amazon SimpleDB SelectRequest
I am trying to put together a single request (instead of 10 separate ones). I want to pull the attributes for 10 items in which the names are in the int[] questionIDs. I put together the below code ...
0
votes
2answers
23 views
iOS SimpleDB Select by date
Good Day,
I am trying to select an item on SimpleDB using the iOS SDK. The issue is the only way I know how to do it is to use SimpleDBGetAttributesRequest to get the item name, then check the date ...
0
votes
1answer
19 views
php - simpledb - can't get consistent read to work
I'm using AWS SimpleDB for my site, however if I udpate an attribute with something completely different, searching that property with either the new value or the old value are both returning the same ...
0
votes
1answer
54 views
Hadoop Custom Input Format that doesn't use files
I'm just getting started on Hadoop and I'm struggling to figure out how to use other input sources that aren't files, i.e. Read all the rows from AWS SimpleDB, or all records from a REST API on ...
0
votes
1answer
38 views
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 = ...
0
votes
0answers
20 views
SimpleDB appender for looging using log4j
I want to store logs in simpleDB. so, I tried simpleDB appender in my log4j properties.
This is my log4j.properties file.
log4j.rootLogger=INFO, simpledb
...
0
votes
0answers
13 views
Node.js Simpledb driver dependency on aws-lib 0.0.5
I am using Simpledb driver for Node and ran into the '!' issue. (https://github.com/rjrodger/simpledb/issues/12)
This has been fixed in aws-lib 0.0.6 but the simpledb package.json still shows a ...
1
vote
1answer
35 views
Php - How do I use a for loop inside API request
Here is a sample request which works, but the names are hard coded
$client->batchDeleteAttributes(array(
'DomainName' => $domainName,
'Items' => array(
array('Name' => ...
0
votes
1answer
24 views
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 ...
2
votes
2answers
99 views
Java - Create domain in Amazon SimpleDB
I'm working with Amazon SimpleDB and attempting the creation of a DB using the following tutorial . Basically it throws an error i.e. Error occured: java.lang.String cannot be cast to ...
0
votes
0answers
46 views
+50
Amazon SDB Columns VS Rows in Relation to Bandwidth and Delay
We're making an SDB Domain with 3 fields essentially creating a structure similar to a "Many to many" relational table. These fields are:
Employe_ID, Project_ID, Position (quick example).
What are ...
1
vote
1answer
46 views
SimpleDB results into PHP array format
I know variations of this question have been asked and answered before, but I'm a smart guy and after literally weeks of searching off and on, I cannot find what I need. There must be some easy way ...
0
votes
2answers
49 views
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 ...
0
votes
1answer
47 views
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 ...
0
votes
1answer
39 views
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,
...
0
votes
3answers
59 views
How To Access Values In Associative Array Using PHP
I have an array which is the result of a select query using Amazon SimpleDb.
Here is sample data when I print_r($result);
Array ( [0] => Array ( [Name] => 5140ede647e74
...
1
vote
0answers
38 views
boto simpledb doesn't support desc sorts? or I'm confused
It seems to my that python's boto doesn't support DESC sorts. For example:
conn.create_domain('testing')
dom = conn.get_domain('testing')
dom.put_attributes ('hulk', { 'color': 'green', 'strength' ...
0
votes
2answers
89 views
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:
...
0
votes
1answer
55 views
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 ...
1
vote
1answer
51 views
getting all the items of a simpledb domain in typica library 1.7
in typica 1.7 there is no listItemsWithAttributes function in Domain class while this was available in earlier versions. How to get list of items in a Domain using Typica 1.7
0
votes
0answers
33 views
Using Amazon Simple Db causes STUB
Trying to log, all the values into amazon simple db, but its causing a stub error
static String sAccessKey = "myaccesskey";
static String sSecretKey = "mysecretkey";
static BasicAWSCredentials ...
0
votes
1answer
105 views
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:
...
3
votes
1answer
108 views
Migrating from amazon SimpleDB to SQL Server
I've got an interesting problem. I recently started working at a new company that's using Amazon SimpleDB and amazon S3 to do all their storage. Having large domains is killing their performance. ...
1
vote
1answer
104 views
Amazon SimpleDB query through c# not returning any records
I have built an appender that writes Log4Net logs to a SimpleDB table/domain called LogTable. I am now trying to write a windows service which will delete old records from this table. The ...
0
votes
0answers
22 views
How to version scores stored in SimpleDB?
I want to implement scoring system for my game in SimpleDB.
It's pretty simple: user will store highscore for every level of the game online.
The trouble I currently have is data versioning. It is ...
1
vote
1answer
136 views
AWS iOS SDK Delegate Method Not Getting Called
I am using Amazon SimpleDB for select queries, and I am trying to use the AWS AmazonServiceRequestDelegate, here are the delegate methods (I have conformed in .h BTW):
- ...
1
vote
1answer
138 views
SimpleDB item name
I've just started on Amazon SimpleDB (first experience with noSQL), and while setting my first User domain, and adding the first item (with attributes id and name), i wondered what should the item ...
3
votes
1answer
272 views
SimpleDB Select VS DynamoDB Scan
I am making a mobile iOS app. A user can create an account, and upload strings. It will be like twitter, you can follow people, have profile pictures etc. I cannot estimate the user base, but if the ...
1
vote
1answer
173 views
SimpleDB - Location comparative select expression
I have a coordinate, assume any latitude and longitude values.
I have a domain setup on SimpleDB that has many items (simple strings) with attributes of 'Latitude' and 'Longitude'. Now what I want to ...
1
vote
1answer
35 views
can SimpleDB store binary attributes?
can SimpleDB (Amazon AWS) store binary attributes? I'm familiar with the max size of 1024 bytes /attribute. The usecase will be to store compressed strings as attributes and use SimpleDB to do lookups ...
1
vote
1answer
125 views
How to use simpledb appender using Log4j
How to log to amazon simple db using log4j properties
http://code.google.com/p/simpledb-appender/
This site demos how to configure simpledb using slf4j using xml file, but i require the same with ...
0
votes
2answers
102 views
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 ...
0
votes
3answers
134 views
Modeling Ranking (scores) in Non Relational DataBase (NoSQL)
I'm using Google App Engine, so I'm using a Non relational database (NoSQL). My question is:
Which is the best option to modeling a rank (ranking of players) using their scores?
For example, my ...
0
votes
2answers
65 views
How to update Amazon SimpleDB on a schedule [closed]
I am looking for a way to update data in a SimpleDb Domain of mine. I intend on doing a weekly (or faster) data aggregation and computation but I haven't found any useful resources for accomplishing ...
0
votes
1answer
55 views
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 ...
0
votes
0answers
58 views
iPhone Game Leaderboard - is simpleDB the right tool? [closed]
I am creating a iOS game where the user can submit a score to a Leaderboard.
The Leaderboard will be stored on a server & I was looking at Amazons SimpleDB as an option. However, trawling ...
1
vote
1answer
77 views
amazon simpledb attribute naming restrictions?
I want to know if there are any restriction to attribute names in amazons simpledb.
I tried the following attribute name
my.attribute.name
Running the following query
select * from mydomain where ...
0
votes
3answers
75 views
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:...
...
0
votes
1answer
131 views
How to get SimpleDB Query Count with Boto and SDBManager
I would like to query my SimpleDB domain to get the count of records that match a certain criteria. Something that could be done like this:
rs = appsDomain.select("SELECT count(*) FROM %s WHERE ...
0
votes
1answer
130 views
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 ...
2
votes
1answer
98 views
Amazon SimpeDB - apps - data protection
I have been using AWS (Amazon Web services) and in particular simpleDB for a couple of smartphone apps using their iOS/android client libraries.
So far, the data was very benign so I didn't worry too ...
2
votes
2answers
217 views
Using Amazon SimpleDB with Android
I am trying to use Amazon's SimpleDB with an application I am building.
I am having trouble finding a full tutorial on Amazon's site. So I was wondering if anyone could provide a tutorial on this? ...
1
vote
1answer
102 views
Why does a select with consistent read from Amazon SimpleDB yield different results?
I have a domain on SimpleDB and I never delete from it.
I am doing the following query on it.
select count(*) from table_name where last_updated > '2012-09-25';
Though I am setting consistent ...
0
votes
0answers
74 views
Issues with Amazon SimpleDB
I am using Amazon SimpleDB in an application. Once in a while one of the threads of AWS Java library keep consuming high CPU and I have to restart my service. The code is very simple.
...
2
votes
1answer
152 views
File Encryption Strategy (Shared vs Unique Keys)
I am working on an Open Source project Heirloom to manage build artifacts and corresponding metadata in S3 & SimpleDB respectively.
I’d like feedback on different strategies for encrypting build ...
0
votes
1answer
56 views
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 ...
0
votes
1answer
528 views
How do I retrieve data from SimpleDB AWS in iOS SDK and display them?
I'm new to iOS and AWS...
I've been trying to get some way to retrieve data from my SDB on AWS...
First I'd like to connect to the aws then I would like to retrieve everything from somedomain and ...
0
votes
3answers
293 views
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 ...
0
votes
1answer
193 views
Getting list of domain from SimpleDB using PHP
I'm trying to get a list of domains from SimpleDB using PHP and the official Amazon AWS PHP SDK. My code gets something, but it seems to be looping through the wrong stuff.
Here is my code:
<?php
...
0
votes
1answer
111 views
Delete attribute / column from simpledb
I have a simpledb column 'Status' I want to get rid of it. How can I delete it ? I dont see any intuitive way to do so.
Thanks


