0
votes
0answers
11 views

Scan Table with Condition on Set Data Type

I am trying to scan the table in column having Set (SS) Data-Type. Following is the Structure of Table: @DynamoDBTable(tableName="ProductCatalog") public class CatalogItem { private Integer id; ...
0
votes
1answer
19 views

How to export data from Amazon DynamoDB into MySQL server

I have no experience dealing with nosql databases such as Amazon AWS DynamoDB. I have some data stored in Amazon AWS DynamoDB. Is it possible to export data from DynamoDB to MySQL Server ? If so, ...
1
vote
0answers
17 views

Using indexes in DynamoDB

I have a number of customers that have a number of "actions" (no more than a couple of hundred of actions per customer). But each "action record" needs an increment update very often (a few updates ...
0
votes
1answer
25 views

DynamoDB Local Secondary Index pro/cons?

I'm utilizing DynamoDB and EMR to create an application that tracks user statistics for a consumer product. I want to be able to do things like find all accounts that had over 20 comments every day ...
-1
votes
1answer
28 views

Which NoSQL solution lets us easily create an analytics product?

Assume we want to build a simple Google Analytics clone, tracking pageviews. We will place javascript on websites that tracks pageviews. Can the javascript dump data directly into the database ...
0
votes
0answers
14 views

How to model SO's Questi0n/Tag relationship in DynamoDB with respect to Uniform Workload?

Background I'm new to DynamoDB/NoSQL. I've been trying to re-learn modeling patterns. To that end, I've been trying to model various examples. I got stuck on modeling a relationship similar to SO's ...
0
votes
0answers
21 views

On-to-many relation in DynamoDB

I want to know what is the best approach to works with one-to-many relations in DynamoDB. Let's assume that I have a 'post' and 'category' tables. The category has 'id' and 'name' columns, the 'post' ...
1
vote
1answer
31 views

Querying DynamoDB with unique hash attributes?

I'm planning to have a User table with UserName as the hash key and a LastLoginDate attribute (among others). I would like to be able to query the table for something like: All users that have not ...
0
votes
0answers
27 views

Inserting None values into DynamoDB using Boto

I'm new to Boto, and I'm trying to use it to insert a Python dictionary into Amazon DynamoDB. I must be missing something, because the "dynamizer" (encoder) does not seem to support None values. ...
0
votes
1answer
47 views

How to do atomic update counter using dynamodb & c#

i am new to dynamodb and trying to write a counter.I am worried about concurrent access to mycounter. Any code samples ? Any strategies ?
1
vote
2answers
136 views

Amazon DynamoDB table design and querying

We are considering DynamoDB for an expectedly large dataset. I come from a strong SQL background so the No-SQL way of thinking is new to me. I have a problem and design, but ran into what appears to ...
2
votes
2answers
188 views

Why using a common hash key with AWS DynamoDB is a bad thing?

I need to have a way to have items ordered by timestamp, so I am considering using a common hash key and unix timestamp as the range key. According to the FAQ: When storing data, Amazon DynamoDB ...
0
votes
3answers
188 views

NoSQL database with querying capability

I have an application that receives request from clients, queues in database table and later processes them. Right now we are using MySQL database table as queue. But we are thinking of moving to ...
0
votes
1answer
70 views

Incrementing DynamoDB number field is not persisted

I have a DynamoDB table with a 'count' Number field. I'm incrementing the field using AttributeAction.ADD. It works, but when I re-run my app it does not increment the existing value, instead it ...
0
votes
1answer
86 views

DynamoDB Model/Keys Advice

I was hoping someone could help me understand how to best design my table(s) for DynamoDb. I'm building an application which is used to track the visits a certain user makes to another user's profile. ...
0
votes
2answers
199 views

Querying DynamoDB dy date

I'm coming from a relational database background and trying to work with amazon's DynamoDB I have a table with a hash key "DataID" and a range "CreatedAt" and a bunch of items in it. I'm trying to ...
0
votes
1answer
55 views

Scan dynamoDB table with restricted read or throughput limit

Does anyone have a sample java code that does a scan operation on dynamoDB table where the scan operation uses only certain percentage of the throughput limit ? Thanks in advance.
1
vote
1answer
123 views

Storing inventory for products in noSQL DynamoDB

I'm building a PHP based ecommerce platform using Amazon's EC2 and DynamoDB, this is my first experience with a noSQL database and I'm having trouble modeling the tables. I've searched high and low ...
0
votes
1answer
119 views

DynamoDB: Querying of non-key values with comparisons

Let's say we have many data tables structured as timestamp(hash) - value pairs, where values could be for example temperatures or other kinds of varied measurement data. To get timestamps of certain ...
1
vote
1answer
227 views

One-to-many in DynamoDB with Java Object Persistence Model

Is possible to create a relationship between two tables using DynamoDB Java Persistence Model? I have the follow relationship of One Post to Many Comments @DynamoDBTable(tableName="Post_MyApp") ...
2
votes
1answer
274 views

Storing time series data in DynamoDB

We are collecting time series events for users and need to be able to query over a time range. An example row might be: { user_id: 100, timestamp: 1352293487, location: "UK", rating:5 } We need to ...
0
votes
1answer
67 views

What are the factors that affect eventual consistency over long-haul networks?

I have looked up quite a few resources on eventual consistency and they all speak about why it is important and about Paxos and Byzantine General problem and stuff like that. What I am more interested ...
1
vote
2answers
371 views

NoSQL: Getting the latest values from tables DynamoDB/Azure Table Storage

I have a little problem that needs some suggestions: Lets say we have a few hundred data tables with a few dozen million rows each. Data tables are timestamp(key) - value Data tables are written ...
7
votes
2answers
367 views

Designing tables in amazon dynamodb

I am new to DynamoDB and I have a big mess of: how my tables should be look like. I have read the posts here: (its recommended for who didn't read it yet) ...
0
votes
0answers
86 views

Can anyone recommend a good NoSQL (specifically DynamoDB) migrations framework in Node.js? [closed]

Anyone know of a good NoSQL migrations framework (or adaptation of a SQL migrations framework) that can be used in node.js? A cursory Google search brings up the following: ...
1
vote
0answers
323 views

Couldn't able to connect to Amazon Dynamo DB, grails

Hi all I have a Amazon DynamoDB with the table name of test. I have a grails controller like this : def ec2Test = { def tableName = new DescribeTableRequest() tableName.setTableName("test") ...
0
votes
0answers
191 views

DynamoDB table vs Hadoop (Elastic Map Reduce) - where to put ID to Name logic

Assume i have a product purchase analytics application. I store product purchase logs on Amazon S3, ingest with Amazon Elastic Map Reduce (HIVE script) and put into an Amazon DynamoDB table for BI ...
1
vote
2answers
491 views

How to quickly build large scale analytics server?

I need to build a analytics server for large scale (seven figures and up) quickly and for the cheap. Piwik would be the easy choice but for what I've gathered so far, Piwik is rather hard to scale ...
1
vote
2answers
117 views

What are some ways to maintain data consistency at the application layer of NoSQL?

My python web application uses DynamoDB as its datastore, but this is probably applicable to other NoSQL tables where index consistency is done at the application layer. I'm de-normalizing data and ...
0
votes
1answer
120 views

Storing items in a DynamoDB table where the key and range key may overlap

I'm looking to store a large collection of photos in a DynamoDB table. Each photo can belong to an an "album" -- in fact, a photo can belong to multiple albums. I'd like to set the data up so I can ...
2
votes
2answers
535 views

What is the best way to check if table exists in DynamoDB?

What is the best way to check if table exists in DynamoDb? I would appreciate it if the code would be in PHP. Either active or not. * Added later as an example to various cases for error code 400 ...
1
vote
1answer
264 views

Is Amazon DynamoDB at all appropriate for small datasets?

I'm currently developing a DynamoDB-backed application that stores customer-related data for a large customer base. It's perfectly adapted for DynamoDB: customer IDs as hash keys partition well. I ...
0
votes
1answer
121 views

Is this the right approach to table creation in DynamoDB?

My understanding of a NoSQL store such as Dynamo or Mongo etc. is that you should be thinking in terms of denormalization and creating tables based around the queries you will be performing. I am ...
0
votes
1answer
220 views

Selecting top N records per group in DynamoDB

Is NoSQL in general, and DynamoDB in particular, well suited to performing greatest-n-per-group type queries, as compared to MySQL?
2
votes
3answers
778 views

How to make a UUID in DynamoDB?

In my db scheme, I need a autoincrement primary key. How I can realize this feature? PS For access to DynamoDB, I use dynode, module for Node.js.
0
votes
1answer
85 views

DynamoDB Conditional Checks on Arrays of Strings

Can I check if part of an element exists in an Array of Strings, or check if multiple elements exist in one query? So: 1) Does an element start with 'aaa:' in the array ['aaa:1', 'bab:0', 'aab:1'] ...
1
vote
0answers
133 views

What is the best approach for showing large results from Amazon DynamoDB?

I have around 150.000 rows of subscribers answers in a table, and I need to provide a way to let a user select a winner. I have all this implemented in MS SQL, but because we're having a bit more ...
0
votes
0answers
86 views

Dealing with deleted data in NoSQL (especially Amazon DynamoDB)

For my question let's assume I have a forum table that holds messages from users, very basic. Let's say a user wants to delete one of his entries, he can do it. If I were designing this table in MySQL ...
1
vote
1answer
123 views

Is it good practice for key-value store “rows” to be of completely different types?

We have a REST API, part of which displays a user's "catalog." A catalog is a list of products along with some overall catalog metadata (e.g. amount of money left). We are at the stage of trying to ...
4
votes
1answer
444 views

Modeling a NoSQL database (DynamoDB) for different sorting queries

I have somewhat of a specific question regarding how to model my DynamoDB tables so that I can handle the necessary queries. My application is centered on the idea of "events." Every event has ...
0
votes
1answer
691 views

DynamoDB Query on multiple hashkeys

I am struggling with how to model a query in DynamoDB. Let's use twitter as an example, the question I want to answer is, for the people I follow show me the 20 most recent tweets. I have 3 Dynamo ...
2
votes
1answer
486 views

batch put_item with DynamoDB in PHP

I'm running into issues sending data to my DynamoDB. I have no idea what the issue is because it appears the program runs correctly, however I don't seem to have any data in my DB. I was able to ...
0
votes
1answer
161 views

Amazon DynamoDB Item Size?

I'm just exploring the whole NoSQL concept. I've been playing around with Amazons DynamoDB and I really like the concept. However that said I am not quite sure how the data should be separated. By ...
0
votes
1answer
279 views

DynamoDb and Azure Table Abstraction layer possible issues?

There have been questions in the past about creating an abstraction layer for NoSQL databases, but they differ so much that it wasn't really possible without missing out on most of the features that ...
3
votes
3answers
1k views

DynamoDB Database Design (Key-Value Store, noSQL)

I'm used to MySQL and now trying to grasp an understanding of how to use key value stores. What I have not seen are good noob like examples of database design and how you would insert and get ...
-1
votes
1answer
888 views

MongoDB vs DynamoDB in Amazon cloud?

DynamoDB is key-value based NoSQL and no maintenance is requires except throughput(read and write) provisioning on each table. Data replication is done automatically behind the scene. I can see very ...
1
vote
1answer
1k views

practical solution for dynamodb's max item length (64k) and no-sql's lack of table joins

First, some background context that I think may be very relevant: I'm proofing dynanodb as a viable solution for an upcoming app. This is a learning experiment to familiarize myself with the dynamodb ...
3
votes
1answer
471 views

tables in dynamoDB that are queriable

I have been trying to implement a post/replies scenario like google+ in dynamoDB as a private project. This is the first time i am trying to implement a nosql table and am trying to wrap my head ...
2
votes
1answer
2k views

How to structure a DynamoDB database to allow queries for trending posts?

I am planning on using the following formula to calculate "trending" posts: Trending Score = (p - 1) / (t + 2)^1.5 p = votes (points) from users. t = time since submission in hours. I am looking ...
0
votes
1answer
412 views

Structure a dynamoDB table to enable ASC or DESC ordered pagination on * items in a table

I want to ORDER_BY by time/date, and paginate through all items in a table. Scan seems designed to paginate through everything, but does not seem to have a "ASC/DESC" equiv. Query has ScanIndexForward ...

1 2