-1
votes
1answer
30 views

Deciding between mysql or nosql and their benifits [closed]

So I am a bit new to using databases on a large scale(especially relation databases). My primary concern here is that I hear allot of talk between nosql and mysql. What should really be considered ...
0
votes
3answers
38 views

Looking for an alternative to SQL for my storage backend

I have data with the following format : { String id; // unique int info1; // better if data are sorted by this value boolean info2; // not important, can even be skipped (by using ...
0
votes
0answers
30 views

Why query for indexed fields is indexOnly = false

I have collection users with default index _id. I make this query: db.users.find({ }, { "_id" : 1 }).limit(50); Or this query: db.users.find({ "_id" : NumberLong("382748936301357196") }, { "_id" ...
0
votes
0answers
25 views

Can't SQL(mysql) handle the TB'S of data? [closed]

I am in confusion to choose either SQL of nosql. I love MySQL, but in many cases it is not sufficient as per the requirements. If I deploy the system which will handle the TB's of data on MySQL ...
0
votes
0answers
32 views

NOSQL GetByKey & Order

Now my architecture is based on Berkeley DB but doesn't perform well and it's not easy to clusterize. I'm looking for a NOSQL database to store key/value data clusterizable and with best performance ...
0
votes
1answer
102 views

MongoDB heavy read,relatively low writes, small operations performance

I am building an app where I will have schema-less objects. So it makes sense to use mongoDB rather than mysql since mysql will involve multiple tables lookups to assemble an object. I expect my ...
0
votes
1answer
99 views

the way mongodb optimized for aggregation and querying

I'm using MongoDB in my project for statistical and data analysis things. My goal is design data to have best performance and scaleability. Let's assume I have several shops and a list of unique ...
0
votes
0answers
73 views

Appropriate nosql db for heavy writes

I'm looking for appropriate nosql datastore that is able to manage heavy writes (hundreds of thousands per second). Input data are small JSON documents, eg. {x:55, y:31, z:15} On the other side, I ...
0
votes
1answer
43 views

HttpSession store in db for performance reason

Suppose that we have a performance-oriented applications works in cluster. It contains a lot of users.It known that the session is replicated poorly so application can be badly scalable.Of course the ...
0
votes
1answer
63 views

Is Transaction Script an antipattern with NoSQL databases also?

http://martinfowler.com/articles/dblogic.html Using the terminology of the above article, the Transaction Script pattern of coding is clearly an antipattern when dealing with SQL databases. Is the ...
0
votes
1answer
119 views

How to model daily deltas in MongoDB

I have some stock price data I want to model in MongoDB. Logically each stock price has a date, stock name, and price associated with it. One of the main aims of the application is to model the daily ...
2
votes
1answer
36 views

htable put and get timeout in java api

Is it possible to specify the timeout while doing gets and puts using the java API (the default behavior seems to block forever...especially when our hbase is slow and heavily loaded)
2
votes
1answer
80 views

Query Profiler for Couchbase

I have recently started experimenting with Couchbase 2.0. What would be a good way to measure time taken by operations like inserts, aggregation etc. in couchbase? Is there a profiler available? One ...
1
vote
0answers
128 views

membase(couchbase) stats(cbstats) show 70% of get_misses

I am using couchbase 1.8.1. This is the output cbstats command ubuntu@ip-10-128-117-9:~$ /MEMBASEDATA/opt/couchbase/bin/cbstats localhost:11210 all | egrep "hit|miss" cas_hits: ...
4
votes
2answers
172 views

How to automatically kill slow MongoDB queries?

Is there a way that I can protect my app against slow queries in MongoDB? My application has tons of possibilities of filters and I'm monitoring all these queries but at the same time I don't want to ...
1
vote
3answers
137 views

Rails3: Should I switch to NoSQL? A lot of calculations, a lot of data for user-matching

I'm at a stage of my project where I'm thinking about moving to NoSQL for performance reasons. I will definitely have tables with millions of rows, so NoSQL might be useful. But my problem is I'm ...
0
votes
0answers
104 views

Cassandra performance slow down with counter column

I have a cluster (4 node ) and a node have 16 core and 24 gb ram: 192.168.23.114 datacenter1 rack1 Up Normal 44.48 GB 25.00% 192.168.23.115 datacenter1 rack1 ...
-3
votes
2answers
145 views

Should I really use NoSQL?

I have some reports which combines data from 3 different servers creates json and shows it to users . When there are thousands of records it impossible to process it over web and it times out . I am ...
0
votes
2answers
61 views

NoSQL for concurrent reads/writes [closed]

After getting some performance issues for an application using a MySQL database, I'm thinking of using NoSQL solutions. My architecture is as follows: One application receives messages from the ...
0
votes
0answers
97 views

mysql with no join performance comparable to nosql? [closed]

If I was using MySQL in a way that didn't require joins (lets day primary key for id and blob for rest of data) but did require transactions, would performance be equal to NoSQL databases? Redis is ...
2
votes
1answer
115 views

Overhead and (in)efficiency of NoSQL databases?

I have a question about NoSQL type databases, in particular MongoDB, but it applies in general to most key-value or document based storages. Some of the selling points of NoSQL are speed and ...
2
votes
2answers
178 views

Using MySQL or NoSQL database [closed]

I'm going to start a large web application, the app will be powered by PHP (YiiFramework), and I wish to build before launching the app a strong and high scalability architecture able to handle huge ...
1
vote
1answer
313 views

Comparing huge amounts of binary data quickly

I have a database consisting of a large number of images (several million) and content-signatures for those images (generated by libpuzzle) which I need to compare. I've run a bunch of different ...
0
votes
1answer
76 views

Insert/find/update operator performance?

def test_find_update(): db = Connection() db.drop_collection("test") db.test.insert({"x":1,"y":2}) start = time.time() for i in range(1,10000): y = db.test.find_one() ...
1
vote
1answer
144 views

what is best no sql db for user profile management

I need to manage user profiles. The number of user profiles could be very big (500 millions profiles) The system requirements is update those profiles (maybe once a day, a week, or by request), and ...
5
votes
3answers
1k views

Any detailed and specific reasons for Why MongoDB is much faster than SQL DBs?

Ok, there are questions about Why Is MongoDB So Fast I appreciate those answers, however, they are quite general. Yes, I know: MongoDB is document-based, then why being document-based can lead to ...
0
votes
1answer
188 views

Which noSQL DB is suitable for fast querying of variable multiple fields?

I have DB of 1B users, each user has multiple properties. For example: {userid : 1, emails : {xx@xx.com, yy@yy.com, zz@zz.com}, countries : {Italy, France, USA}, food : {pasta}} Each property can ...
7
votes
1answer
182 views

Too many indexes in RavenDB

Is there a formula/estimation/feeling that shows us what is the optimum number of indexes in a RavenDB database according to number of document kinds, number of fields per document and number of ...
4
votes
1answer
213 views

RavenDB Read Performance

(Maybe I am doing something wrong but) I am getting awful read performance from RavenDB! This is my document: public class Location { public Guid Id { get; set; } public string Description { ...
0
votes
1answer
106 views

Most efficient way to store real time sentiment data

I am planning on creating an app to store twitter sentiment in a database for specific topics. I don't need to store the tweets, just the sentiment of the topic. I can use either a SQL or noSQL DB. ...
0
votes
1answer
220 views

BerkeleyDB JE random access time increases non-linearly

I am testing BerkeleyDB Java Edition to understand whether I can use it in my project. I've created very simple program which works with object of class com.sleepycat.je.Database: writes N records ...
7
votes
2answers
580 views

Low-latency Key-Value Store for SSD

We are working on a SSD-backed key-value solution with the following properties: Throughput: 10000 TPS; 50/50 puts/gets; Latency: 1ms average, 99.9th percentile 10ms Data volume: ~1 billion ...
1
vote
2answers
1k views

Evaluating mongo DB performance

I have a collection in a mongoDB on which I have set user preferences. I have a very large number of objects in one particular collection, and user can follow a key in the collection. For example: ...
2
votes
1answer
482 views

Geographic queries in NoSQL

Our team is currently working on some killer ios location app that we fear "explode" in a good way, so we want to put effort thinking about scalability and Availability. After we read that draw ...
2
votes
4answers
98 views

which db to go for tiny data requirements

I need some help choosing databases for my application. My web application will basically consist of a main table. lets call it the "User" table. it will have the user info like name, id, password, ...
1
vote
1answer
243 views

Which NoSQL … again :), but a different use case

Suggestions for a NoSQL datastore so that we can push data and generate real time Qlikview reports easily? Easily means: 1. Qlikview support for reads (MongoDB connector available, otherwise maybe ...
4
votes
5answers
217 views

large amount of inserts per seconds causing massive CPU load

I have a PHP script that in every run, inserts a new row to a Mysql db (with a relative small amount of data..) I have more than 20 requests per second, and this is causing my CPU scream for help.. ...
4
votes
4answers
540 views

MongoDB performance with growing data structure

Let's say we are designing a new system and have decided to use MongoDB as the primary database. The data schema is very similar to a blog with [growing] comments. In the book "MongoDB Developers", ...
2
votes
1answer
641 views

MongoDB vs SQL Server for storing recursive trees of data

I'm currently specing out a project that stored threaded comment trees. For those of you unfamiliar with what I'm talking about I'll explain, basically every comment has a parent comment, rather than ...
2
votes
2answers
2k views

NoSQL db performance testing

Let's assume you've got a nosql database - redis, cassandra, mongodb. And you need to check the overall performance for this database - various platforms, operation systems, even programming languages ...
3
votes
0answers
77 views

how to design cassandra (or another nosql) scheme? [closed]

We are about to move a project on apache cassandra from test to pilot and as a rdbms team, we were propably missing something. Basic rules (or lessons learned): be sure you have big or almost no ...
5
votes
2answers
2k views

Low write performance of Cassandra

I am new to NoSQL and Cassandra. I am experimenting with settings to acheive an in memory cache only solution. I am processing by reading line by line from a 100000 lines file and using Hector to ...
1
vote
2answers
124 views

What's the best performance SQL database for data storage on CentOS 246MB RAM, Apache and PHP? [closed]

What's the best performance SQL database for data storage on CentOS 246MB RAM, Apache and PHP, json_encode() with using less RAM as possible? Maybe some NoSQL database, UnQL? On right now I use ...
-1
votes
1answer
96 views

Searching for a solution of high load access logging for PHP

I'm searching for a high accessing logging solution. My "table" has this structure: | ID | Hits | LastUsed ______________________________________ | XYNAME | 34566534 | LastUsedTimeHere ...
2
votes
1answer
162 views

What DBMS would fit this requirements best? (Big, Simple Structue, Massive Write / Fast Read, Java) [closed]

I need a database that can store a massive amount of simple structured data and make it available relatively fast. The use-case is quite simple, so I will explain it in a few words to make things ...
0
votes
0answers
39 views

In modern days, is it possible to store a huge database into memory? [closed]

One of my friends is attracted by nosql. He said, if we store everything into memory, then we don't need so much scalability. He said nowaday memory is very cheap, you can easily pile up 1 TB memory, ...
5
votes
2answers
749 views

How to avoid data loss on server failure with MongoDB on a single machine?

I have read that mongoDB don't write data to disk right away, it does this periodically. Any thoughts on how to deal with this?
1
vote
3answers
408 views

Does using NoSQL make sense for a non-distributed system? (trying to understand eventual consistency)

I have been reading and learning about NoSQL and MongoDB, CouchDB, etc, for the last two days, but I still can't tell if this is the right kind of storage for me. What worries me is the eventual ...
1
vote
1answer
170 views

Best highperf database for simple read/write (no update) scenario

I'm interested in opinions on what database system to select for this project where I basically need to persist a constant stream of messages at potentially high speed. There's basically four types of ...
1
vote
2answers
165 views

MongoDB: Speed of field (“inside record”) search in comporation with speed of search in “global scope”

My question may be not very good formulated because I haven't worked with MongoDB yet, so I'd want to know one thing. I have an object (record/document/anything else) in my database - in global ...

1 2