NoSQL (sometimes expanded to "not only SQL") is a broad class of database management systems that differ from the classic model of the relational database management system (RDBMS) in some significant ways.
0
votes
0answers
7 views
How to connect mongodb and Informix server
I am exploring mongodb , I have written a code to connect mongodb and mysql using kundera
It works fine. But I am having a requirement to connect Informix database and mongodb please let me know how ...
0
votes
0answers
14 views
OpenStack Nova switching to Cassandra — pros and cons?
OpenStack Nova is currently using MySQL (powered by SQLAlchemy) as its db backend. What would be the pros and cons of switching to Cassandra?
0
votes
2answers
55 views
loading a subset of a file using Pig
I am playing with hortonworks sandbox to learn hadoop etc.
I am trying to load a file on a single machine "cluster":
A = LOAD 'googlebooks-eng-all-3gram-20090715-0.csv' using PigStorage('\t')
AS ...
0
votes
0answers
19 views
Find coordinates that are within a boundary/shape collection in MongoDB?
Say I have a collection with different boundary types (circle, rectangles, etc). I know how to query if coordinate is within a circle or rectangle. But what if I want to query if any object in my ...
0
votes
0answers
3 views
Has LevelDB a max-length limit for keys?
Has LevelDB keys a limit for the key length?
I want to save data with url's as key. so this urls can be very very long
i.g. ...
0
votes
1answer
25 views
Using a NoSQL system to store session data
I'm trying to design a stateless and scalable web system. For the 'session' concept, I'm considering using Redis as the warehouse of sessions.
But do you think using a NoSQL system is suitable for ...
0
votes
0answers
30 views
Should I use NoSQL for this scenario? [closed]
which nosql db should be used if I want to write some billions of entries and I have a predefined query on a 64 character field?
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;
...
1
vote
0answers
32 views
MongoDB: Store data from collection additionally as embedded documents in another collection
In MongoDB does it make sense to embed some data of a document from one collection additionally in the documents of another collection?
Let's say I have an application that stores bookmarks that ...
1
vote
0answers
25 views
Advice on MongoDB schema design
I'm currently designing the db schema for an application which will use mongodb and spring-data. I'm quite new to NoSQL databases and struggeling with the following design problem:
The application ...
1
vote
1answer
34 views
SQL vs. NoSQL database for 'tags-heavy' CRM application
I'm building a talent management CRM application and I'm having trouble choosing between a SQL or NoSQL database for my data.
The application will only have a few 'core' entities (Person, Job, ...
0
votes
0answers
16 views
Anyway to do MongoDB Sharding in PHP?
I have started using MongoDB for one of my PHP project. In that database, i am trying to use MongoDB sharding concept. I got the below link and tried,
MongoDB Sharding Example
It is working well. ...
0
votes
0answers
12 views
A no specific query using Mongo DB
I've downloaded a database yesterday consistent of tweets during the games in the confederation cup. And I saved it in the Mongo DB. My data model in the database is like the following json:
{ "_id" ...
1
vote
2answers
22 views
Postgres and partial dates
So I have a table. Every entry in that table has a date associated with it, which has to:
support partial dates: 2nd may 1994, 16:45 GMT+4 and april 2003 are both valid
be comparable: I want to ...
0
votes
0answers
28 views
Unit of maxDistance in Near<T> (MongoDB C# Driver)
What is the unit type for maxDistance argument of the Query<U>.Near<T> method (in MongoDB C# Driver)?
Notes: I have created an index and I have checked that it's a "2d" index:
var keys = ...
2
votes
1answer
26 views
MondoDB C# Driver and Thread Safety
In the documentation for MongoClient, MongoServer, MongoDatabase and MongoCollection<T> I see that it's said that they are thread-safe.
Question: Does that mean I can have (for example) static ...
0
votes
0answers
13 views
Novel idea for NoSQL node mapping based on time based ids?
I'm coding a new NoSQL database, and had what I thought was a novel idea (for me anyways) regarding the hashing mechanism used to locate nodes for a given key.
I'm using object keys that incorporate ...
1
vote
1answer
34 views
Design of reputation engine
Lets imagine a social network where each user can gain reputation from others by, say, delegation. So given A and B initially have a reputation of 1 when A delegates to B then A has 0 and B has 2.
...
-1
votes
0answers
39 views
Storage engine used by NoSql - MongoDB [closed]
I have a question raised in my mind from last few days That what storage engine does MongoDb uses. Like MySql uses InnoDB and MyISAM .
0
votes
1answer
21 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, ...
2
votes
2answers
52 views
which database for java to store data in memory? [closed]
I'm looking for a database which would allow me to store most of the objects in the memory. Basically I want to store in the memory everything except some rarely used data (history of changes, etc).
...
4
votes
2answers
33 views
Is 'column-adding' (schema modification) a key advantage of a NoSQL (mongodb) database over a RDBMS like MySQL [closed]
I recently went to a tech talk sponsored by 10gen on NoSQL/MongoDB. I'm not a DBA superguru or anything, and the speaker made an interesting point intended to illustrate one of the strengths of using ...
0
votes
1answer
27 views
Does the Couchbase REST API support NON-JSON data (binary data)
I am storing c structures to couchbase, I am doing so so that I can read back these structures later and process directly, I am avoiding the steps of
1 )C structure - > JSON while storing
and
2 )JSON ...
0
votes
1answer
16 views
Couchbase- How to query view using the C API - libcouchbase
In couchbase official documentation -
http://www.couchbase.com/docs/couchbase-sdk-c-2.0/api-reference-view.html
There is an example of retrieving data from couchbase using views.
const char path[] ...
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
0answers
16 views
Which database would fit better (perfomance wise) for storing files and related metadata?
I need to store terabytes of binary data (million files or so) with ability to tune read/write access control on per file/per user basis. Also I need metadata to be synced with my binary data in ...
0
votes
0answers
28 views
Should I use MongoDB or Couchbase 2.x for simple between query?
I have about 200k documents like
{ min: 100, max: 200, name1: value1, name2: value2, ...}
I want to find the documents where my input would be a number which should fall within the min/max range.
...
1
vote
1answer
25 views
How to match by 'undefined' value in MongoDB Aggregation Framework?
How can I search for the records filtering in a field that has an undefined value:
db.records.aggregate({
$match: {
myField: "undefined",
}
})
0
votes
1answer
57 views
Comparing data inside table
This is a fairly complex question, so I'll split it up:
CHALLENGE
I have a table with the following structure:
id (INT, UNIQUE)
company (INT) -> links to another table containing companies
...
0
votes
0answers
20 views
Aerospike clrestore2 fails
I have created backup with clbackup2, backup created successfully. But when I try to restore it with clrestore2, it fails with segfault:
# /opt/citrusleaf/bin/clrestore2 -d spike -t 1 -u -v
...
0
votes
1answer
17 views
Composite views in couchbase
I'm new to Couchbase and am struggling to get a composite index to do what I want it to. The use-case is this:
I have a set of "Enumerations" being stored as documents
Each has a "last_updated" ...
0
votes
2answers
49 views
Which approach and database to use in performance-critical solution
I have the following scenario:
Around 70 million of equipments send a signal every 3~5 minutes to
the server sending its id, status (online or offiline), IP, location
(latitude and longitude), ...
-1
votes
0answers
19 views
what are some python database abstraction layer modules for nosql databases? [closed]
I think web2py's gluon Database Abstraction Layer provides a DAL for SQL and NoSQL databases, and I understand Django may have something along those lines as well.
Are there any other viable DALs ...
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 ...
-3
votes
0answers
34 views
choosing the proper fast performance database engine for a CRM app in C# .net [closed]
i am at the end of a 24 hour intensive research, the quest was improving the performance - speed of my new CRM test application , i am building it in c# so i thought about using redis , the question ...
0
votes
1answer
51 views
To what extent is Couchbase a drop in replacement for Memcached
Official couchbase documentation says this in this link - http://www.couchbase.com/docs/couchbase-manual-2.0/couchbase-getting-started-nextsteps.html.
"If you already have an application that uses ...
0
votes
1answer
23 views
Product Catalog - Document Store or Column Family Store
Wondering which technology would do better for a typical product catalog of a webshop. I'm writing my master thesis about nosql in the enterprise environment and focused on document stores for to long ...
2
votes
1answer
42 views
Mongodb remove item from array
I'm trying to remove an element from an array using Java and haven't been successful...
I have a "emailsInApp" collection and inside I have this:
{ "_id" : "750afe", "list" : [ "John@gmail.com", ...
0
votes
0answers
22 views
Couchbase: net.spy.memcached.internal.CheckedOperationTimeoutException
I'm loading local Couchbase instance with application specific json objects.
Relevant code is:
CouchbaseClient getCouchbaseClient()
{
List<URI> uris = new LinkedList<URI>();
...
0
votes
1answer
29 views
can't remove records in mongodb
I'm trying to remove all the records in my mongodb collection. But when I check to see if it is empty all the records are still there.
var database = mongoose.connect('localhost','news');
...
0
votes
0answers
43 views
NoSQL(MongoDB) or SQL(Postgrsql) for storing a tree/graph strucutre
i am in the planing phase of a project and i have the following situation:
I have an Element with a unique ID, a name and additional information.
Each Element can have multiple parents children or ...
0
votes
0answers
76 views
Hadoop setup single node: PriviledgedActionException
I do step by step to setup hadoop here http://hadoop.apache.org/docs/stable/single_node_setup.html
i setup hadoop in redhat with root account
everything ok but when ./start-all and watch log ...
0
votes
1answer
32 views
While Loops Situation
So I have this code:
//Table game_images
$a = 0;
$sql_game_images = mysql_query("SELECT * FROM game_images WHERE ID ='1'");
while($row = mysql_fetch_array( $sql_game_images )) {
$aa = ...
0
votes
1answer
46 views
What are the efficient ways of storing a lot of time series in a database?
I need to store a bunch of time series in a database but I'm concerned about both the size and the processing time.
To reduce size I've already used, in another project, zipped/JSON to store a whole ...
0
votes
1answer
29 views
Unable to write to mongodb
I'm trying to populate my mongo db using node.js. But I'm getting a TypeError saying
' Object # has no method apply
.
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
...
0
votes
1answer
15 views
MongoDB: how to find out how many objects were skipped in query
I'm running MongoDB v.2-4-4-pre- under Linux. I use simple find() operation with "skip" parameter to select some elements from my DB.
Is there any way to find out how many objects were skipped by my ...
-1
votes
2answers
75 views
mongoDB vs mySQL — why one is better than another in some aspects [closed]
I am really new to database and am interested in some high level basic knowledge. I have read this wonderful SO post. I under one is better than another in some cases, but not sure why.
Why is ...
0
votes
1answer
26 views
Doing range queries in Mongoose for Hour / Day / Month/ Year
Trying to figure out how to do this. Basically I want to sort by Hour / Day / Month / Year of my submissions.
Each submission has a created field which contains a Mongoose Date object in the form of ...
0
votes
0answers
28 views
How to save the MapReduce result in MongoDB?
I have two collections: PriceShop(ShopId, Price, DrugId), Drug(DrugId, MaxPrice, MinPrice).
I use map/reduce to find the maxPrice, minPrice of the same drug in the PriceShop Collection, and then use ...
1
vote
1answer
22 views
A complicated MongoDB query (a high level of nesting)
I run MongoDB v.2.4.4-pre- under Linux. There is a collection with elements like this:
{
num: 1,
arr: [
{
a: 'a1',
b: 'b1'
},
{
a: ...

