MongoDB is a scalable, high-performance, open source, document-oriented database. It supports a large number of languages and application development platforms.
0
votes
2answers
10 views
Why mongodb only updates the first matching document in the collection?
Consider a collection student contains the following documents.
{name:”Nithin”,age:23}
{name:”Nithin”,age:25}
{name:”Nithin”,age:28}
{name:”Nithin”,age:12}
I want to update all the documents ...
0
votes
1answer
15 views
Having problems when implementing a many-to-many relationship in Mongoid
I'm building a Rails app and I'm having a little bit of trouble when implementing a Team and User many to many relationship, that way an User can be part of multiple teams and a team obviously can ...
-1
votes
0answers
7 views
Parallel insert into MongoDB
What happens, if two clients, working with one MongoDB instance, perform and insert operation at same time without «forceServerObjectId: true». Is it possible to be generated equal ObjectIDs, is there ...
0
votes
0answers
9 views
How to model recurency and hasMany relationship in MongoDB?
In my app there are users. Each user may have many friends (other users). If user A has a friend B then user B has a friend A - always. I will have to query collection of users to get all friends of ...
0
votes
0answers
7 views
how to retrieve data from mongoDb using grails 2.2.2
i am developing my first app in grails 2.2.2 and mongoDb.
But i am stuck in
"How to get data from mongoDb and Display In .gsp page"
0
votes
0answers
9 views
Confused about MonogDB Query (PHP $and)
I have the following code in PHP to connect to my MongoDB instance:
$connection_string = "mongodb://XXXXXXX:XXXXXX@XXXXX:XXX/myDB";
$mongo_or = new Mongo($connection_string);
$db_or = ...
1
vote
0answers
12 views
Is it make sense to wrap mongoose model to own API?
I'm trying to understand is it make sense to make own API for working with Mongoose models?
Let's say we have the simple Mongoose user model:
var UserSchema = new mongoose.Schema({
email: { type: ...
1
vote
1answer
17 views
how to manipulate returned mongo collections / cursors in javascript (meteor.js)?
In working with Meteor.js and Mongo I use the find({some arguments}) and sometimes find({some arguments}).fetch() to return cursors and an array of matching documents respectively.
What is the real ...
0
votes
1answer
12 views
polymorphic association with formtastic and mongo
I'm trying to create a relationship between two models in rails.
I have a Product and an Offer where an Offer belongs to a Product.
class Product
include Mongoid::Document
include ...
1
vote
1answer
22 views
how to use populate and aggregate in same statement?
this is my appointment collection
{ _id: ObjectId("518ee0bc9be1909012000002"), date: ISODate("2013-05-13T22:00:00Z"), patient:ObjectId("518ee0bc9be1909012000002") }
{ _id: ...
0
votes
0answers
11 views
mongodb geospatial subquery in array, how to return the array element nearest to the query?
when I make a query to find the subdocument nearest to the query I make this :
The query :
db.areas.findOne(
{ 'coordinates.geoindex' :
{ $near : [ 2.364022, ...
0
votes
1answer
35 views
How to achieve database abstraction/independence in NoSQL world
We are looking at using MongoDB as our database in our Java Server-side application.
In my earlier project we were using Hibernate to abstract the underlying SQL database, so that we could switch from ...
0
votes
0answers
9 views
MongoDB C++ Driver: GlobalInitializerRegisterer throws “DuplicateKey throwSockExcep”
I am trying to link mongoclient static library with my shared library under 64-bit Ubuntu.
I have installed mongodb c++ client as explained step-by-step here. The (only?) thing I needed to change ...
1
vote
0answers
10 views
Objects returned by Mongoose queries have no attributes
I currently have 3 MongoDB databases to which I connect from a Node.js app using mongoose.createConnection(...). For each db, I define schemas and models for all collections in the db. The problem I ...
0
votes
1answer
36 views
Choosing the right shard key in MongoDB
We are building our first MongoDB and currently we are trying to choose the right shard key.
each document in our main collection contain around 40 voice call related fields and the main field that ...
0
votes
1answer
20 views
MongoDB : Querying collection within a Date Range
I have a collection in my mongodb with records in this format
db.userlogins.find().pretty()
{
"_id" : ObjectId("519bb8c11f30bbf5bcba06f0"),
"userId" : "sai",
"created_at" : ...
0
votes
0answers
16 views
Update MongoDB Document in VB.NET with the C# Driver
I am having problems updating a document in MongoDB using VB.NET & the C# Driver.
I have code returning the document I wish to update but I'm not sure of the syntax to continue
Imports ...
0
votes
1answer
14 views
Is it possible to sum 2 fields in MongoDB using the Aggregation framework?
I have a collection with documents that contain fields type, totalA and totalB
I want to use the aggregation framework in order to group by type - and get the sum of both totalA and totalB together.
...
0
votes
1answer
17 views
Why mongoose.model.create's Callback Isn't Executed from within Express 3.x HTTP Request Handler (connect-mongodb is the cause, actually)
To put the problem stright in code:
expressApp.get('/', function requestHandler(req, res) {
userMongooseModel.create(userPropertiesDict, NEVER_CALLED_CALLBACK);
console.log('This is printed just ...
0
votes
1answer
18 views
Mongo query returns null even though entry is returned by find
In our MongoDb we are implementing the following document structure:
Parent
|-- List<Children>
|-- ChildField1
|-- ChildField2
...
So we ...
0
votes
0answers
21 views
insert documents into mongodb using html code
so, trying to create a web application where I can insert documents put in a text field into my mongo collection. Pretty simple, anyways, I've used code from a few places online and its not working. ...
0
votes
0answers
18 views
use npm packaged mongoose
In order to "modularize" a project, I created several npm packages, but I get an error in two modules that use mongoose.
The first one regroups several operation over the db such connection, ...
0
votes
1answer
24 views
Mongoose Schema - Requiring one to be unique but not both
I want to store an email string and password where only 1 needs to be unique. So someone can use the same email address with 2 different passwords (or 100) and have 100 accounts but all the passwords ...
0
votes
2answers
25 views
How to setup MongoDB
so I have this app.
github app
and this is what i get when I try to run it.
Could not connect to a primary node for replica set <Moped::Cluster nodes=[<Moped::Node ...
0
votes
0answers
26 views
Synchronize mongo databases on different servers
I have next situation. I have two mongodb instances on different servers.
For example
Mongodb instance on server "one" (host1:27017) with database: "test1"
Mongodb instance on server "two" ...
0
votes
2answers
26 views
How to do query on multiple nested data fields in MongoDB
So, what I'm trying to do is query all documents that have a City of 'Paris' and a State of 'France'. I need to do some kind of join, but I haven't been able to figure out how to construct it.
I'm ...
1
vote
1answer
27 views
Mongo Db design (embed vs references) in Trello
When I open https://trello.com/board/board_name/board_id.json, I can see that within a board there are Nested documents of Card, List, Actions etc. Want to know whether three main collections that ...
1
vote
1answer
26 views
Exception occurred processing WSGI script - IOError: failed to write data
I'm trying to save an image at the server side.I recieve it as base64 string so I decode it first and then save it in the database.However this failed, so I checked the server error log and I found ...
0
votes
0answers
22 views
Field mapping from sql table to mongoDB collection
In my application, I want to migrate all the tables from SQL Server to Mongodb collection..
For that I use following code for table migration
private void btn_Migration_Click(object sender, ...
0
votes
0answers
23 views
ElasticSearch architecture and hosting
I am looking to use Elastic Search with MongoDB to support our full text search requirements. I am struggling to find information on the architecture and hosting and would like some help. I am ...
0
votes
1answer
28 views
how to create session in php with mongodb
in node.js i will create mongodb session like this.
app.configure(function()
{
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.bodyParser());
...
0
votes
1answer
15 views
Getting The entire node set is unreachable error when trying to connect to MongoDB with reactivemongo in my play2 application
When working locally I have no problem testing my application by calling:
http://localhost:9000/r/123
method:
def showSurvey(id: String) = Action {
implicit val reader = Review.ReviewReader
...
0
votes
0answers
25 views
Meteorjs method call return undefined even though having callback
i'm playing with meteorjs and had a hard time trying to figure out what exactly happen to the async method i written.
//in methods.js
feedbackTag = new Meteor.Collection('feedbackTag');
...
1
vote
1answer
25 views
Exact synatx of Datetime field in POST
I am trying to send date_time from jQuery post to our server we are using mongoDB as backend and using django_tastypie_mongoengine for posting so far i have tried putting date="2010-11-10T03:07:43" ...
0
votes
0answers
31 views
How to organize mongodb structure in order to avoid the need for joins?
Think of a standard city builder game.
You have cities, each cities have units, each units have gear(equipped) and the city itself has more gear(unequipped, they are in a box somewhere, heh).
A) ...
0
votes
1answer
27 views
Mongoose date format
Currently having an issue retrieving dates from mongoose. This is my schema:
var ActivitySchema = new Schema({
activityName : String
, acitivtyParticipant : String
, activityType : ...
0
votes
2answers
30 views
MongoDB: Embedded Documents vs Multiple Collections
I have to modelize my data in a MongoDB database.
My data are posts and comments, so the approachs I have thought are two:
1 collection of status with the comments embedded in each status
1 ...
0
votes
1answer
24 views
Grails MongoDB doesn't save in afterUpdate
I'm trying to put some of my domain classes into the MongoDB using the mongoDB grails plugin. Some of the classes stays in MySQL. Everything works fine even the saving of domain class instances into ...
0
votes
3answers
37 views
MongoTemplate instance is not created inside spring
I want to try spring integration with MongoDB, For this purpose I did following things. but its not working Some how MongoTemplate instance is not created and throws java.lang.NullPointerException.
...
1
vote
1answer
19 views
ReactiveMongo 0.9: Joda Datetime Implicit Conversion for Macros.handler
I have case class with joda Datetime field:
case DomainPositionData(domain: String, position: Int, change: Option[Int], date:DateTime)
Trying to use macro to generate reader&writer:
implicit ...
0
votes
0answers
24 views
How to get the id (not pk) from mongoengine models?
my models
class Result(Document) :
id = IntField()
turn = IntField()
url = StringField()
the id is not the primary key.
As you know, mongodb will generate a key named '_id'. So I use ...
0
votes
1answer
18 views
TypeError on static method of mongoose model
I'm using node.js along with the MongoDb driver Mongoose 3.6.1. This is my schema definition:
models/user.js
var mongoose = require('mongoose'),
Schema = mongoose.Schema;
var userSchema = new ...
0
votes
2answers
23 views
mongo group query how to keep fields
everybody.
In mongo group query, the result only the key(s) in arguments. how to keep the first document In each of group like mysql query group.
for example:
...
0
votes
0answers
13 views
DateTime objects from MongoDB have unreadable characters in Object Definition
Whenever I fetch data from a MongoDB collection, and one of the fields has a DateTime object, I get this:
object(DateTime�����w )[359]
public 'date' => string '2012-12-12 00:00:00' (length=19)
...
0
votes
2answers
36 views
multiple async mongo request in nodejs
How to write multiple queries in a row?
Like a
Space.findOne({ _id: id }, function(err, space) {
User.findOne({ user_id: userid }, function(err, user) {
res.json({ space: space, user: ...
0
votes
1answer
20 views
can not restore table which was dropped using mongorestore
i do this to test mongorestore utility
the following is my test procedure:
mongo 127.0.0.1/mytest -u alex -p alex
> db.createCollection("test1")
{ "ok" : 1 }
> ...
0
votes
1answer
21 views
Add undefined fields in MongoDB
I have created Mongo model like described here: http://docs.mongodb.org/ecosystem/tutorial/model-data-for-ruby-on-rails/
But it's like creating schema. I need to add fields, that I initially don't ...
0
votes
1answer
39 views
meteor: how to disable default mongodb?
in my meteor project, how can i remove or disable the default mongdodb?
.meteor/local/db/...
it's very large about 500MB! and i want exclude this from my project because use another external db
0
votes
1answer
55 views
How do I setup MongoDB database on Heroku with MongoLab?
I'm using Express.js and MongoLab and I followed the Heroku setup to get MongoDB working in production throwing this code in my app.js.
//Mongo on Heroku Setup
var mongo = require('mongodb');
var ...
0
votes
0answers
25 views
Best way to stream videos from mongoDB gridFS
I have to develop solution to stream videos from gridFS.
What is the most elegant (FASTEST) way to stream videos from mongodb gridFS?
I did some google searching and saw few options:
gridfs-stream
...





