MongoDB is a scalable, high-performance, open source, document-oriented database. It supports a large number of languages and application development platforms.

learn more… | top users | synonyms (2) | mongodb jobs

3
votes
1answer
45 views

How to delete the data when the project is deploy?

I just build the chat application on the meteor and and deploy it by meteor deploy appname. Now I want to delete the data present in the application. As we know meteor support Mongo database, I tried ...
1
vote
1answer
23 views

MongoDB double $group aggregation

I have several documents that looks like this: { "_id" : ObjectId("50b59cd75bed76f46522c34e"), "player_id" : 0, "league_id" : 2, "results" : [ { ...
0
votes
1answer
57 views

Should I use MongoDB for website email marketing?

I have just researched Mongo DB & see that it has many advantages. I’m working in a web project providing email marketing service. In the previous email marketing script I used (ActiveCampaign), ...
-1
votes
0answers
32 views

Mongo Replica Set Configuration Error [closed]

I've installed Mongo2.4.4 by RPM 64 bit On Master : I am getting this error rs.initiate() { "info2" : "no configuration explicitly specified -- making one", "me" : ...
0
votes
0answers
34 views

How to use/enable LINQ combined with custom serializer? (MONGODB C#)

I have a few entities that have custom serializers. public class EntitySerializer : BsonBaseSerializer, IBsonIdProvider { public override object Deserialize(MongoDB.Bson.IO.BsonReader bsonReader, ...
0
votes
0answers
22 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 ...
2
votes
1answer
28 views

Mongodb balancer move failed: chunk too big to move. But it's not

I found in mongos logs: [Balancer] balancer move failed: { chunkTooBig: true, estimatedChunkSize: 33972400, ok: 0.0, errmsg: "chunk too big to move" } from: rs2 to: rs3 chunk: min: { h: ...
0
votes
0answers
3 views

Preloading Doctrine ODM referenced documents

I'm using Doctrine ODM (MongoDB) and I have something like the following Attendee document Answer document each Answer references one Attendee. (one-to-many relation) I do something like the ...
0
votes
1answer
24 views

how to extract data from mongo collection for data warehouse use

My company starts to use mongo and we are starting to think about what is the best way to extract data from mongodb and send it to our data warehouse. My question focus around the extract part of the ...
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
27 views

Get value format JSON on Mongodb and Symfony 2

I have a field ‘preferences’ in my Document, and datas like this: {"visibility":"true","create":"2013-06-15 15:09:51","update":1371301791} {"visibility":"false","create":"2013-06-15 ...
1
vote
3answers
36 views

update query for Mongodb in yii

How can I update based on _id in mongodb for YII? What I tried is $model= new MongoUrls(); $criteria = new EMongoCriteria; $criteria->userid('==', $userid); ...
0
votes
1answer
30 views

How to overcome the limitations with mongoDB aggregation framework

The aggregation framework on MongoDB has certain limitations as per this link. I want to remove the restrictions 2, 3. I really do not care what the resulting set's size is. I have a lot of RAM and ...
0
votes
1answer
20 views

How to use bsondump in windows

How to use bsondump and its command in windows. when i am running bsondump foo.bson > foo.json error: 'bsondump' is not recognized as an internal or external command, operable program or batch file. ...
0
votes
0answers
15 views

PHP mongodb installation issue

I have issues in PHP-Mongodb Linux installation. After following the below steps, I am not able to access webpages instead it's getting downloaded. 1) Installed MongoDB PHP driver sudo pecl ...
1
vote
0answers
22 views

Indexing $or queries on the same field in MongoDB

Why does the query: { $or: [ {tags: {$in: ['foo']}}, {tags: {$nin: ['bar']}} ] } NOT use an index on tags?
0
votes
0answers
51 views

Java Driver throws null pointer on cursor.hasNext()

Java Driver throws null pointer exception on cursor.hasNext() _collection = db.getCollection("users"); DBCursor cursor = _collection.find(); System.out.println( "cursor len " + cursor.size() ); ...
-2
votes
0answers
40 views

Can't update document [closed]

One particular document will not update, while this same query updates any other _id which I query: Category.findOneAndUpdate( {_id : req.params.id}, {parent : req.body.parent}, ...
0
votes
1answer
43 views

Rails 3: converting large arrays to JSON takes nearly 5 seconds?

assuming we're interpreting this new relic trace correctly, it seems that 4.75s is spent converting large arrays to JSON strings. is this possible? we're not using ruby enterprise edition but ruby ...
1
vote
0answers
25 views

Schema design in MongoDB — to replicate data or not

I have a Share collection which stores a document for every time a user has shared a Link in my application. The schema looks like this: { "userId": String "linkId": String, "dateCreated": Date ...
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
1answer
15 views

Rails Mongoid select where key/value pair in array

so I have a collection Groups that looks like this [ { \"_id\": \"51bdff3968c7c4dd30000003\", \"members\": [ { \"id\": \"51bdedef68c7c4bc7c000001\", ...
2
votes
0answers
34 views

Uninitialized constant in Ruby on Rails demo app

I'm new in RoR, so,i'm following a demo app with the addition that i'm using mongo, after create the new project, that just modeles an user with name and email, like this: rails generate scaffold ...
1
vote
0answers
26 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 ...
0
votes
0answers
20 views

Node.js cluster and socket.io with mongodb as store

I've got a problem to set up clustered node.js / socket.io app, with socket.io store, based not on Redis but on MongoDB. I need to mention that my app uses Mongo to store data. So I don't want to ...
0
votes
1answer
20 views

Mongoid w/ Rails, attr_accessible --> “No method found”

Generated Rails App w/out Active Record Added appropriate gems for Mongoid (Mongodb & Mongoid) Generated the mongoid.yml file in config/ with rails support Created a friend model and user ...
0
votes
0answers
14 views

Is there a way to run arbitrary command in MongoVUE

I was looking for a way to execute an arbitrary command in MongoVUE: db.collection.runCommand(..), but was not able to find anything. I am using the latest (at the time of asking) version 1.6.1.0. ...
0
votes
1answer
21 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
13 views

Group by accumulating to list via map reduce in MongoDb

Hello I am trying to do something, that is pretty close to group function, but via Map Reduce. I want to take all the items, perform calculation on each, and then group by key. I want the result to be ...
0
votes
0answers
13 views

How to design domain object for mongodb product collection

The mongodb save product data like this: {_id:ObjectId("xxxx"), name:"Hi-Fi Earbuds", type:"Headphone", attrs:{color:"silver", freq_low:20, freq_hi:22000, weight:0.5} } ...
1
vote
1answer
22 views

How to use the “LIKE” statement in mongodb cakephp

I am using ICHIKAWAY's mongodb driver for cakephp. One thing that I don't really get is how to perform a "LIKE" statement in cakephp using MONGODB. I tried this statement: $users = ...
0
votes
0answers
25 views

Does indexes on dynamic nested keys works in mongodb?

Having the following query in PHP: $where = array( "subs.{$pid}.opt" => $subsType, "partner.{$pid}.lts" => array( '$exists' => true ) ); So, in my case a ...
1
vote
2answers
18 views

Mongo db log disabling

I dont want mongodb to log anything in mongod.log . Please let me know how to suppress the same as it is growing in size and occupy lot of space. I have tried with mongo.conf file but it looks there ...
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" ...
0
votes
2answers
40 views

How works regex in MongoDB?

I have collection like: { "city" : "ACMARE", "state" : "AL", "_id" : "001" } How aggregate this collection by City using regexp? For example: cities which name starts with letter from D to H? I ...
0
votes
1answer
12 views

MongoDB Monitoring Service Authentication

I have a sharded cluster of mongodb, 2 shards, each shard is a 3 server replica set. all servers are in a aws-vpc and with keyFile without auth option, only the mongos server have an ip and external ...
0
votes
2answers
22 views

Rails - Where MongoDB (Mongoid) stores db and logs?

I am new to MongoDB and Mongoid and I am using Debian testing(jessie/sid). When I open /etc/mongodb.conf there is no information about where Mongoid stores db and logs. It just mentions ...
0
votes
0answers
29 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
28 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
2answers
29 views

How will get part data of collections' MongoDB?

Can someone to explain about selecting part of collection? I have as a nested structure as example: { some_list : [ { 'name': 'Alexander', 'tasks': [ ...
0
votes
2answers
51 views

GORM get/find resource by ID using MongoDB in Grails

Grails makes it easy to get a domain object by ID (handy for building a REST API). A controller to retrive a resource can be as simple as: MetricController.groovy import grails.converters.JSON ...
0
votes
1answer
59 views

Play ReactiveMongo - exception when trying to find one document

I've started using Play and the Play-ReactiveMongo plugin and testing for a 404 response on a GET "document by id" scenario. Unfortunately instead of Play returning a 404 NotFound response I get this ...
0
votes
1answer
42 views

Mongo/DataNucleus/JPA with embedded type query gives: Cannot find type of (part of) … since symbol has no type; implicit variable?

I am trying this JPA query "SELECT ml FROM MediaLibrary ml WHERE ml.media.id = :id" and I get this error message: "Cannot find type of (part of) ml.media.id since symbol has no type; implicit ...
2
votes
1answer
32 views

Is there a difference between generating mongoId on application level or leaving it to mongo?

In all my previous applications I was generating ObjectID on the application side and provided it to Mongo for inserts. On the other hand there is nothing wrong with leaving it and allowing Mongo to ...
1
vote
1answer
19 views

Can you automatically retrieve a foreign document in your mongodb model using c#?

I would like to setup my mongo db poco models so that they automatically retreive their foreign documents, similarly to how its handled by EF and nhibernate. This is the solution that I have come up ...
0
votes
0answers
15 views

Compilation error on MongoDB Casbah for Scala

I am wrting an update query on Scala and Cashbah. When I write this... val query = MongoDBObject({"_id" -> uri.toString}) val update: DBObject = $set("uDate" -> new DateTime) ++ ...
0
votes
0answers
31 views

Mongodb unique sparse index

I have created a sparse and unique index on my mongodb collection. var Account = new Schema({ email: { type: String, index: {unique: true, sparse: true} }, ...
0
votes
0answers
15 views

Mongo showing on php info but MongoClient not working?

I'm using a Mac and I've installed the Mongo Driver for PHP (5.3.1, my version). It shows up on php info but when I use it in my PHP script it wont work. Here is what my PHP info shows: MongoDB ...
0
votes
0answers
12 views

Gridfs in mongodb

Recently we integrated the Gridfs in mongodb for storing images. For my requirement, previously we have used NFS for getting or storing an images in directory. its getting more slow down for an ...
0
votes
1answer
36 views

How aggregate in mongoDB by _id consists of two element(in Java)?

MongoDB looks like: { "_id" : ObjectId("503d5024ff9038cdbfcc9da4"), "employee" : 61, "department" : "Sales", "amount" : 77, "type" : "airfare" } In mongoDB console I can aggregate by ...

1 2 3 4 5 351