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

0
votes
1answer
30 views

find by Object Id in Jongo

I know this question is incredibly basic... I'm sorry in advance. I can't do a 'find by ID' for Mongo using Jongo. I tried Iterator<MongoTest> all = ...
1
vote
1answer
33 views

how best to use two databases in cakephp 2.3?

Good morning everyone, I have a question, I am using two databases in an application that I am creating in cakephp 2.3. A mysql database, which typically configured, and another database nosql ...
0
votes
0answers
26 views

Very Small Data But Huge Database File Size On MongoDB

I have very small database: > db.stats(); { "db" : "oyun", "collections" : 29, "objects" : 2557, "avgObjSize" : 355.83418068048496, "dataSize" : 909868, "storageSize" : ...
0
votes
1answer
49 views

MapReduce trouble with counting

I've got a problem, I have data in mongodb which looks like this: {"miejscowosci_str":"OneCity", "wojewodztwo":"FirstRegionName", "ZIP-Code" : "...", ...} {"miejscowosci_str":"TwoCity", ...
-2
votes
1answer
24 views

Create generic service class in java for reading the collection from mongodb [closed]

Everyone, I want to create a service class(a very generic) in java which will accept all the required parameters for reading a collection from MongoDb. and return JSON string as result.
0
votes
3answers
27 views

perl arrays in postgresql insert statement

I think i have a logical problem in my code. I have a mongodb with template,value,row,column. For example $record->{template} it's T1 and $record->{column} 1 and $record->{row} i have some dates ...
1
vote
2answers
51 views

TypeError: ObjectId('') is not JSON serializable

My response back from MongoDB after querying an aggregated function on document using Python, It returns valid response and i can print it but can not return it. Error: TypeError: ...
0
votes
2answers
20 views

mongodb: arithemtic operations in .find()

how can I find records where retirement subtract age is less than 10 db.users.insert({ user_id: "bcd001", age: 56, retirement: 65, status: "A" })
4
votes
1answer
29 views

How to query two collection in mongoose on nodeJs?

hi am new to nodeJs i have to query a table from the result of the query, i have to query another table. i tried the code as follows but it returns only null. action(function getpositions(req){ ...
0
votes
1answer
43 views

Securely storing passwords on MongoDB + Python

I have a MongoDB running on Heroku, and I need to store full credentials for a 3rd party API, including password, username, security token, etc. What is the best way to protect the data? Would ...
0
votes
0answers
16 views

OverwriteModelError: Cannot overwrite `category` model once compiled

error C:\nodejs\node.exe app.js Express server listening on port 81 POST /39 200 1225ms - 3b D:\node.js\node_modules\mongodb\lib\mongodb\connection\server.js:565 throw err; ^ ...
0
votes
0answers
27 views

Grails: multiple mongo-datasrouces (servers)?

I'd like my Grails application to work with two database-servers. One is on localhost:27017 and the other one is remote. I access my remote database over an SSH tunnel in localhost:27018. I initialize ...
0
votes
1answer
43 views

How do I parse DBObject to case class object using subset2?

Does anyone know how to parse DBObject to case class object using subset2 ? Super concise documentation doesn't help me :( Consider following case class case class MenuItem(id : Int, name: String, ...
0
votes
2answers
49 views

MongoDB fast deletion best approach

My application currently use MySQL. In order to support very fast deletion, I organize my data in partitions, according to timestamp. Then when data becomes obsolete, I just drop the whole partition. ...
1
vote
0answers
34 views

Computing simple moving average using Map Reduce in MongoDB

I stumbled upon this article: http://blog.cloudera.com/blog/2011/04/simple-moving-average-secondary-sort-and-mapreduce-part-3/ which mentions how to calculate moving average using Hadoop. Please ...
1
vote
1answer
46 views

mongodb $maxScan didn't equals limit

This is my first question on stack overflow, I am so happy and await your answers. My question is: When I use MongoDB Query Selectors, I want limit results. But $maxScan is not work as I want. ...
0
votes
1answer
16 views

connecting databases using Mongoose.js createConnection()

I have two mongo databases that I am connecting with using mongoose.createConnection(); I'm keeping an dbIndex.js file were the connection is made and the conn.model('model', schema) is initialized. ...
1
vote
0answers
21 views

Any official MongoDb session state provider available for C# .NET

I am just looking for session state provider for .net with MongoDb, actually i do not find any official Nuget packages, or better reliable production quality one. Please advice if we have any ...
0
votes
0answers
19 views

Mongoose, mongodb and Appcelerator titanium app

I have writing this mobile app using appcelerator titanium. And using MongoDB (through REST API) which is embedded in MongoLab. I was wondering if i can use Mongoose to connect to mongodb either the ...
0
votes
2answers
40 views

setting up mongodb replica sets

I am a newbie to mongo db and looking to set up a replica set. I am confused though as how I can achieve this. I want to have a primary, secondary and arbiter of 3 different machines, each running ...
0
votes
1answer
33 views

Clone database in Mongodb between hosts using node driver

There are clone and copydb commands available in mongo shell, how to reach them in mongo node native driver(mongodb)? That's what I have tried: I discovered the db.command available in node native ...
0
votes
1answer
31 views

Mongo Collection Name too long: ns name too long, max size is 128 mongo

While create a mongo collection, the name is 123 char long. Mongo throws this error(ns name too long, max size is 128 mongo) when I try to create the collection. It has nothing to do with indexing. If ...
0
votes
1answer
37 views

MongoDB Many to Many with extra attribute

Since I'm new to MongoDB, I've got a lot of questions regarding schema design. I'd like to transform my relational schema to a MongoDB-Schema for learning reasons and want to profit from the schema as ...
0
votes
1answer
14 views

Can I create a tailable cursor for a query in mongo?

Using mongo and mongoose in node, I can create a stream from a capped collection like this: @stream = Post.find().tailable().stream() But can I do it with a query like this as well?: @stream = ...
0
votes
3answers
36 views

SyntaxError: Unexpected token for at Object.Function (<anonymous>) node.js

I'm using Express, EJS and mongoose for a website learning exercise. Here is my index.js module: blog_model = require('./connection').blog_model; /* * GET home page. */ exports.index = ...
0
votes
1answer
36 views

How can I convert a json string to bson in the MongoDB console?

Every example I see uses some kind of driver (how to do it in C#/java/etc.) There's the tojson function but there isn't a tobson one. How can I convert a json string to bson object in the MongoDB ...
0
votes
1answer
43 views

MongoDB bulk insert failing for array of strings

Given the following array: arr = ["{'myId': 'myVal1'}","{'myId': 'myVal2'}"] I can insert the items one by one, e.g. db.collection.insert(arr[0]) But it fails when I try to insert the whole ...
0
votes
2answers
28 views

Node.js, mongodb returning a string representation of a function, not the output

I am new to the world of mongodb and node.js . I have a project in which I put the mongodb code in a routes, and I require it in my server.js. now in that module I have one method that will return ...
2
votes
0answers
19 views

How can I find which value caused a bson.errors.InvalidStringData

I have a system that reads data from various sources and stores them in MongoDB. The data I receive is already properly encoded in utf-8 or in unicode. Documents are loosely related and vary greatly ...
0
votes
1answer
20 views

Unable to fetch record with least timestamp using PHP

In my mongo database > sessions collection, every record has a fb_id and ts (timestamp). I want to fetch the least timestamp for a particular fb_id. The following query worked successfully in mongoDB ...
1
vote
1answer
42 views

How to list all MongoDB databases in Node.js?

I've tried to find a solution to this question in: http://mongodb.github.io/node-mongodb-native/ However, I could not find a solution to listing all available MongoDB databases from a Node.js app.
0
votes
0answers
41 views

d3 + Mongodb: is cube right? Is anything better? [closed]

I'm looking for the same solution requested in: Best analytics/data visualization library for MongoDB That is: if I want to feed d3 visualizations with data from mongoDB, is cube the right thing to ...
0
votes
1answer
28 views

Spring Data mongodb: how to add credentials when running a replica set

I'm running MongoDB 2.2. I can add credentials to access my single instance MongoDB like this: <bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate"> ...
0
votes
1answer
33 views

Mongodb find() method freezes over Nodejs

I'm starting webapps development with Node, so I'm quite new with this technology. I've done several examples and managed to make it run. However, now I'm trying to use Mongodb but I'm not able to ...
0
votes
1answer
36 views

How can I get my app to connect to mongo db?

I installed mongodb via homebrew and and running into some problems trying to connect to the database. When I type in mongod in the terminal to start the server, everything appears to be working ...
5
votes
2answers
50 views

MongoDB PHP header data timeout

My development team is having trouble accessing a remote MongoDB database from their local development environments. The remote Ubuntu development server is running the newest v2.4.3 of MongoDB and ...
0
votes
0answers
21 views

How many level can mongodb append sub-documents dynamicaly?

It seems that i can go further than one subdocument if i want to add it dynamicaly, here is the code: db.users.update({"pup.cmn.id":id}, {"$addToSet":{"pup.cmn":{"abus":email}}}) this give error: ...
0
votes
0answers
15 views

run MongoDB MapReduce periodically

Anybody knows how can I run mapreduce in mongodb every one hour or one day? I know I can do it in my application or with the OS, but I'm looking for something inside the mongodb shell. Thanks!
2
votes
2answers
53 views

Is it a bad practice to use the “.” symbol in Mongodb collection name?

I have a quite big web application. The application is split in multiple modules. Each modules can create multiple collections in the Mongodb database. Since each modules can create collections, ...
0
votes
2answers
56 views

Getting specific user data from Meteor Presence

With Meteor Presence, I can return the userId's of the usetrs that are online but. I would like to see how to get back the user object. Meteor.publish('userPresence', function() { return ...
0
votes
1answer
56 views

Meteor.js, MongoDB retreiving HTML for use in Template

I'm new to Meteor.js and MongoDB so this question might have an obvious solution that I am missing but so far my searches have turned up nothing. My first Meteor project is a very bare-bones blog. ...
1
vote
3answers
38 views

Mongojs callback not returning

I am using mongojs to update data in a mongodb collection. The program reads a file line by line and for each line it makes an update in the mongodb database. The update is working fine but the ...
1
vote
1answer
31 views

Is there a combiner phase in Mongo DB's map reduce framework

Is there any thing similar to Combiner (as in Hadoop Map Reduce) in Mongo DB's map reduce framework. We're trying out the map reduce framework in Mongo DB cluster, and there are several rows for a key ...
0
votes
1answer
27 views

Searching string with special characters in MongoDB document

I want to search values having special characters such as " $ / . @ > " in a document. Lets consider, I've myKey with values like "test$australia", "test$austria", "test$belgium", "green.africa". ...
1
vote
1answer
20 views

MongoDB: how to select an empty-key subdocument?

Ahoy! I'm having a very funny issue with MongoDB and, possibly more in general, with JSON. Basically, I accidentally created some MongoDB documents whose subdocuments contain an empty key, e.g. (I ...
1
vote
1answer
31 views

How to retrieve array value from mongoDB

I have a data in mongoDB "EMP_ID" : "1000", "EMP_NAME" : "JIM", "DEPARTMENT" : [ { "DEPARTMENT_ID" : 1, "CONTACTS" : [ { "MOBILE" : 102, "PHONE" : "1", } ] } ...
0
votes
0answers
14 views

How to select all records where related collection is empty with Mongoid

I'm still getting the hang of MongoDB and Mongoid and have hit this snag. Let's say I have a User that has_and_belongs_to_many items and of course an Item that has_and_belongs_to_many users. I'd ...
0
votes
1answer
30 views

Aggregation framework for MongoDB

I have following schema: Customer ID Location Name Time of Visit The above stores the information of all customer's visit at various locations. I would like to know if there's a way to write an ...
0
votes
1answer
30 views

Element 'timestamp' does not match any field or property of class (Log4Mongo deserialization)

I am building an web app and use Log4Mongo to store the app logs into "Logs" collection in Mongo database. Here is the MongoDBAppender in web.config <appender name="MongoDBAppender" ...
0
votes
1answer
28 views

Locating a specific record in an aggregation of a Mongo DB collection

I am working on a reporting project that deal with monthly orders We have orders coming into MongoDB in the below format order:{ _id: 123456789012123456789012, items:[ {code:'ITEM1', ...

1 2 3 4 5 333