0
votes
0answers
38 views

Data modelling in Cassandra

I am trying out Cassandra and looking at ways to model our data in it. I have described our data store requirements along with my thoughts on how to model in Cassandra. Please let me know whether this ...
1
vote
2answers
63 views

Casandra datamodel

I try to build a backend for quiz game statistics : I want to know recognition percent for each image globally and recognition percent of images by country. Currently datamodel is : TABLE results ...
0
votes
0answers
168 views

Geo location based application database model

Hi I am building Geo location based application integrated with 4square and facebook. I need to store the data based on the location. Can you please suggest best way to solve this problem. I am ...
1
vote
1answer
218 views

Sample data models for Cassandra?

I found the great DatabaseAnswers site with sample SQL data models for a lot of common use cases. (CRM, e-commerce, popular websites, etc.) The models aren't the richest or most well-architected, ...
1
vote
0answers
287 views

mongodb time series data modeling

Newbe question on how to query MongoDB. I want to take multiple objects received throughout each day and aggregate them together into a single day record. The document structure will eventually ...
0
votes
0answers
110 views

PHP/Database like/dislike and other actions

I am building a PHP class which should be able to handle various actions, for example: Like/dislike Favorite Page views And so on. Now say user wants to like something, what i need to do is: ...
0
votes
3answers
129 views

Cassandra, storing various events about item

I need to store these types of events for let's say uploaded song: Views Likes Dislikes Comments Favorites Downloads And there might be even more. To store information about song itself I am ...
0
votes
1answer
41 views

Cassandra data model improvment

So i came across this issue, and i just can't figure out what to do, so say i'm keeping these user actions: Likes Comments Shares Uploads And so on, list goes to around 20 actions, now the best ...
1
vote
1answer
204 views

Why many refer to Cassandra as a Column oriented database?

Reading several papers and documents on internet, I found many contradictory informations about the Cassandra data model. There are many which identify it as a column oriented database, other as a ...
1
vote
1answer
231 views

How to model Cassandra's super column family using Riak?

We are investigating on choosing a nosql database for our web service. We have tried Cassandra and successful model our original MySQL data using Cassandra column family and super column family. It's ...
3
votes
1answer
294 views

how many rows in a column family in Cassandra can effect performance?

I work in a massive weblog processing project with apache Cassandra , but i wonder that if i have too many rows in a columnfamily . Will This make my query slower ?? in my data , we have about 100 ...
1
vote
1answer
187 views

Cassandra data model for linear spatial data

I am relatively new to cassandra and its data model. I have a large set of data that are described by locations on chromosomes (chromosome:start-end) where we have 24 chromosomes and start and end ...
1
vote
2answers
132 views

How to query data in Cassndra or Riak where the value is a collection?

How can I query the data in cassandra OR riak if the value of a key in the object is a List example=> Genre[Key] : Pop, rock [Values] I want to list all songs with the genre rock and so on. ...
1
vote
2answers
110 views

cassandra highscore

If I want to have only the queries for: 1. Username, Xp, OtherUserData 2. User with the N-th highest Xp How would I have to do the data structure and query. For 1. I would have a structure similar ...
2
votes
1answer
340 views

Super column vs serialization vs 2 lookups in Cassandra

We have: users, each of which has events, each of which has several properties (time, type etc.). Our basic use case is to fetch all events of a given user in a given time-span. We've been ...
2
votes
1answer
205 views

MySQL Data Model to Cassandra Help?

I'm trying to move a RDBMS model over to Cassandra, and having a hard time creating the schema. Here is my data model: CREATE TABLE Domain ( ID INT NOT NULL PRIMARY KEY, DomainName ...
2
votes
2answers
797 views

Developing a Cassandra “schema” for unique-id-less data

I'm attempting to create a Cassandra schema for stock price data. Each records has the following fields: stock symbol date open price close price As you can see there is no single field that can ...
2
votes
2answers
702 views

Data modeling in Cassandra

I'm building a data base where some users can put tag in others data. Something like Last.fm. How can I implement a DB in cassandra for this application. The Tag must be associate with the user and ...
2
votes
2answers
983 views

Querying a Cassandra column family for rows that have not been updated in X days

I'm moving an existing MySQL based application over to Cassandra. So far finding the equivalent Cassandra data model has been quite easy, but I've stumbled on the following problem for which I'd ...
9
votes
1answer
2k views

Suggest Cassandra data model for an existing schema

I hope there's someone who can help me suggest a suitable data model to be implemented using nosql database Apache Cassandra. More of than I need it to work under high loads and large amounts of data. ...
5
votes
2answers
1k views

Are there any data modeling exercises for Cassandra like Retwis for Redis?

I'm trying to learn how to map the entities/actors/objects/things in my application for storage in Cassandra. There was a great tutorial for Redis on modeling Twitter data and typical access patterns ...