The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
34 views

Best practices for mongoid relations

I am mapping relations in mongoid, I want to know the best practices for mongoid. Models Customer Service Supplier there are four different services (S1, S2, S3, S4), each service provided by ...
1
vote
1answer
54 views

Iterating over a collection in MongoDB for updates

I'm iterating over a collection (running Moped as Ruby driver) but how to update one field for every document? irb> session = Moped::Session.new(["127.0.0.1:27017"]) irb> session.use :demoapp ...
0
votes
1answer
64 views

update removed from moped::colllection - NoMethodError: undefined method `update' for #<Moped::Collection

I am new to working with mongodb & mongoid.. This is a rails app that was on mongoid 2 at some pont and have since moved to mongoid 3 I am trying to run the migrations, one of which has the ...
0
votes
1answer
94 views

mongoid_fulltext error while rake db:create_indexes… undefined method `db' for #<Moped::Collection

using rails along with mongo-1.8.3, mongoid 3.1.2 i want to combine many string fields and create one full_text index.. but during initial setup i am getting this error my model looks like this:- ...
1
vote
0answers
155 views

Moped::Errors::OperationFailure failed with error "no such cmd

I recently upgraded from mongoid 2.0.2 to mongoid 3 with rails 3.2.12 and ruby 1.9.3 . Following issue comes when save command excutes => @new_node.save Moped::Errors::OperationFailure (The ...
0
votes
0answers
56 views

What does this mongoid error mean (happens on heroku only)?

It seems like some kind of problem with moped and mongoid If I do $any_model.create or $any_model.$some_mongoid_method the same problem happens Again, this is only on production, on heroku see: ...
0
votes
1answer
95 views

Multiple db queries with RABL and Mongoid/Moped

I have a simple app that uses rabl and mongoid 3.1.0, with this action: # index @products = current_shop.products The rabl code looks like this: # index.json.rabl collection @products extends ...
0
votes
1answer
79 views

rake aborted! The operation: “GET MORE”

I am getting the below error when I run the rake task. Can any one help me? Error rake aborted! The operation: "GET MORE" failed with error "cursor 178700246530 not found" ...
0
votes
0answers
83 views

How do I add an admin user to a new Mongoid database created from within Rails?

Use case: I'm running mongodb on an ec2 instance and connecting to it from a heroku rails application using the mongoid 3 gem. I've configured mongo to require authentication and set up the initial ...
0
votes
2answers
212 views

unable to catch ruby exception

Having the following, long running rake batch: class SyncStarredRepo include Mongoid::Document def self.update User.all.map do |user| if user.email != "admin@gitwatcher.com" ...
0
votes
2answers
370 views

Mongoid aggregation $match with Date objects not working?

I have User documents in a collection that have this structure: { "_id" : ObjectId( "4fb54ef46d93b33b21003951" ), "activities" : [ { "id" : ObjectId( "4fd66f9001e7fe9f03000065" ), "type" ...
3
votes
1answer
144 views

Mongoid3/Moped: database=admin command={:ismaster=>1}

I've upgraded my Rails app to 3.2.8 and Mongoid 3/Moped. Everything works fine in development, on my development machine while set to production, and rails c works fine on my production setup as well. ...
1
vote
1answer
415 views

rspec gives error Moped::Errors::ConnectionFailure

When i run tests rspec, i get error 1) Nimba::Storages DropboxStorages returns http success Failure/Error: Unable to find matching line from backtrace Moped::Errors::ConnectionFailure: Could not ...
0
votes
0answers
213 views

Why is Mongoid/Moped throwing Timeout::Error to Airbrake in production Rake tasks?

I'm having a problem on my production installation. I have several scheduled rake tasks that run successfully. However, I've been getting MANY Timeout::Error: execution expired emails from Airbrake. ...
1
vote
1answer
174 views

Moped: Rename mongodb collection

How can one rename a collection, using Mongoid + Moped driver? Is there a Moped implementation of http://docs.mongodb.org/manual/reference/command/renameCollection/?
0
votes
1answer
289 views

How to reset a mongoid 3 database connection

In Mongoid 2.x one could execute Mongoid.database.connection.close to reset a database connection. This specific API is no longer available in Mongoid3, what is the new way to reset a connection? ...
10
votes
1answer
783 views

Heroku & MongoHQ: ActionView::Template::Error (The operation: #<Moped::Protocol::Commands::Authenticate failed with error “auth fails”)

I have a Rails 3 app with MongoID 3 deployed successfully to Heroku (using MongoHQ) -- but then something happened (cannot pinpoint what exactly it was) and the build started crashing on Heroku. So ...
3
votes
2answers
1k views

How to do an upsert / push with mongoid / moped

I'm using Mongoid (v3) to access MongoDB, and want to perform this action: db.sessionlogs.update( {sessionid: '12345'}, /* selection criteria */ {'$push':{rows: "new set of data"}}, /* ...