0
votes
1answer
13 views

Difference between timeout and connect_timeout options on Ruby Mongo driver

We need to set a timeout value when connecting to Mongo via Ruby. We're on Mongo 2.2. Should we use :timeout or :connect_timeout? We see code snippets using both options here on SO and elsewhere. ...
0
votes
1answer
42 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 ...
0
votes
2answers
30 views

Rails CSV import not functioning properly

Basically, CSV import doesn't work. Model Code: def self.import(file,admin_id) spreadsheet = open_spreadsheet(file) header = spreadsheet.row(1) (2..spreadsheet.last_row).each do |i| row = ...
0
votes
1answer
17 views

How to group in mongo from ruby

I'm trying to group by 2 fields in my mongo collection from ruby. I've got it working from within the mongo client however can't get the ruby syntax right. My command on the mongo client is ...
0
votes
0answers
28 views

Unexpected Method Call

I'm using mongomapper to store pages in a db, and I index them first. In the index method, I loop through each word, and check to see if it is already in the words hashmap. If not, I add an empty ...
0
votes
2answers
51 views

MongoDB: query array within embedded document

I have the following doc definition (it's ruby) class Block include Mongoid::Document field :index, type: Integer # index 0,1,.. field :codes, type: Array #[A, B, C,... ] embedded_in ...
1
vote
1answer
46 views

Model attribute contains collection of object

I have main model Page, which is container. The page can have some to-do lists, notes, files and discussions. The idea is to have them in special order. Page.last.container # [Todolist_obj, ...
0
votes
1answer
42 views

how to select children documents in mongoid

The specific problem I have three classes set up in a tree Group Owner class: class GroupOwner include Mongoid::Document field :origin_id, type: BSON::ObjectId field :origin_type, type: ...
0
votes
2answers
41 views

accessing mongodb document field names and its values through iteration

Let's say I have a mongodb document in the products collection: { "_id" : ObjectId("51b1eac0311b6dd93a000001"), "name" : "Apple", "price" : "34.45" } products_controller.rb for def show ...
1
vote
2answers
50 views

How do I switch the database used in a Rails application?

I have an application based on the Devise cancan repo. Currently it is using SQLite3 as its database. I was wondering how someone would change the system to something like MongoDB or a SQL database? ...
0
votes
0answers
41 views

Mongoid: filtering an embedded collection by sub-sub-documents multiple fields

I am a beginner in mogo and mongoid. I it possible to filter sub-documents collection by a sub-sub-documents multiple fields ($elemMatch)? I'm trying to make a parametrized scope for an embedded ...
0
votes
0answers
25 views

Pluck multiple and/or nested fields on mongoid

I have the following query db in mongodb that returns exactly what I need: db.collection.find({field1: 2801394}, {name: 1, field2: 1, _id: 1, "field3.2801394": 1}) Note field 3 is a hash, and the ...
1
vote
1answer
44 views

Finding documents containing at least one embedded object missing a given field

Is there an efficient way to find all documents of a Mongo collection that have at least one embedded object missing a given field? I'm trying: Response.where('answers.question_id' => nil) ...
0
votes
0answers
15 views

Mongoid batch insert with complicated schema?

I've been going all over the web looking for a solution to my problem. I' m using Mongoid to write a set of data to MongoDB. I'm trying to do a batch insert with mongoid as follows: class Geonode ...
0
votes
1answer
76 views

how to handle mongodb's E11000 duplicate key error in ruby

Is there any good example of handling mongodb related exceptions in ruby? In this case I have: /home/askar/.rvm/gems/ruby-1.9.3-p429/gems/mongo-1.8.6/lib/mongo/networking.rb:89:in ...
0
votes
2answers
36 views

Can the order of my array be guaranteed to be preserved?

In an application i'm making in Ruby, I store objects in a MongoDB database using MongoMapper. At a certain moment I'm saving a hash with the following structure: {String => { String => ...
0
votes
1answer
45 views

importing simplified XML file into mongodb using crack gem

Here, I'm using mongodb driver for ruby. But after this will work perfect I want to run it as a scheduled task in Ruby on Rails 3 with Mongoid ODB. So for now, I'm experimenting in ruby. I've ...
0
votes
1answer
74 views

error related to ruby 1.9.3 and mongodb driver

I have installed following the tutorial $gem install mongo Successfully installed mongo-1.8.6 1 gem installed Installing ri documentation for mongo-1.8.6... Installing RDoc documentation for ...
0
votes
1answer
33 views

How to sort an array of mongoid documents (array contains different mongoid document types)?

I have two arrays of Mongoid documents, FirstType documents and SecondType documents. Both are embedded in User. user.first_types = [#<FirstType _id: 51a10b4883c336ebef0002a8, created_at: ...
0
votes
0answers
28 views

Can't access mongoDB outside server

I've set up a mongod service on centOS. I've played around with DBs, collections, etc - after connecting using 'localhost', 27017. That said, for some reason I can't connect to it from outside SSH. ...
0
votes
0answers
28 views

Images and thumbnails not being displayed while using rails and mongodb

I am a noob in using ruby on rails. I am trying to create a simple web app that fetches assets stored in mongodb and renders it on web browser. One of the assets is a photo and the other is a ...
1
vote
1answer
48 views

Where is mongoid.yml?

I just installed mongoid. I tried their sample code, it raised a beautiful error with a recommendation "Double check your mongid.yml..." So I went to read their intro at mongoid.org, where they say: ...
0
votes
0answers
23 views

Making RUBY Ocra work for library that requires include module

I have created a ruby executable in windows using OCRA. i am using it for few years now and works well no complains with it. but today when i created and distributed a exe that contain Include module ...
1
vote
1answer
31 views

How to deserialize BSON::Binary back into ruby hash?

I'm using Anemone to store crawled pages into MongoDB. It mostly works, except for accessing the page headers when I retrieve a page from MongoDB. When I call ...
0
votes
1answer
27 views

How to get last N documents with mongoid?

I have found some information to accomplish this in mongoDB, but I need it with mongoid. So I can do something like: User.last(7000).each do .... I'm using: MongoDB shell version: 2.4.3 Mongoid ...
0
votes
1answer
44 views

MongoDB aggregation/unwind/group/project query combination

I have records in a collection of the following format: "_id" : "2013-05-23", "authors_who_sold_books" : [ { "id" : "Charles Dickens", "num_sold" : 1, ...
0
votes
1answer
49 views

How to use Regexp.new() in Ruby to search for Integer value in DB?

I have some code in my controller which functions as a search in the database (mongo) : @job_results = Job.where({:merchant_id => admin,:$or => [ {:job_number => ...
0
votes
1answer
29 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
vote
1answer
51 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
48 views

Rails database name dynamically by user choice in Mongodb

While installing my app , I want to ask question like Name of database? and user will input name they want for database. Database name is inside config/mongoid.yml development: sessions: ...
0
votes
1answer
59 views

Ruby Tweetstream MongoDB Error

I keep getting the following error when running the following ruby script. If anyone can help me fix this it would be greatly appreciated. I've removed any sensitive data such as API keys. Code: ...
0
votes
3answers
47 views

How to do build this mongoDB query (mongomapper)

I have certain documents with a name: String and a version: Integer. What I need is a list of documents of the highest version per name. So I think I need to do the equivalent of group by in sql and ...
1
vote
0answers
65 views

Sidekiq workers use too many mongo connections

I'm running Sidekiq under MRI 1.9.3, and using MongoMapper as my ORM. My Sidekiq workers are frequently dying with the following exception: Mongo::ConnectionTimeoutError: could not obtain ...
0
votes
0answers
41 views

Sinatra + Mongo parallel requests

I'm developing a small script that does some data crunching. If I try to ab -n10 -c1 (benckmark sending requests one after another), the requests take ~750ms. If instead I try -c2 (send requests two ...
0
votes
0answers
105 views

undefined method `[]' for nil:NilClass during assets:precompile rake while deploying with capistrano

I've got capistrano configured so that assets are compiled on production when i run deploy via capistrano. Im using Ruby 1.9.3, Rails 3.2.13 with MongoDb database. Problem exists only during ...
1
vote
1answer
94 views

How to extract Mongoid documents based on a field value in the first or last embedded document?

I wish to find Order documents based on a field in the last embedded Notificationdocument. In the example below I wish to find all pending orders that has one or more embedded notifications, and ...
0
votes
0answers
47 views

mongoimport to remote server with out installing mongo on client

I am trying to do mongoimport to the remote server and have installed mongo on my machine and everything works fine. but if i distribute the application and users do not have mongo installed then it ...
0
votes
1answer
45 views

Did anyone use mongo3 as the gui interface on Mac?I can't run it

When I run mongo3 after running gem install mongo3. I got the problems below F, [2013-05-08T20:35:18.376873 #8487] FATAL -- : undefined method `helpers' for CollectionHelper:Module (NoMethodError) ...
3
votes
3answers
76 views

How would I filter out sub documents?

1) How can I grab all songs with more than 50 likes? The result set should return an array of songs instead of the whole document. 2) How can I return the results of a specific song id instead of the ...
1
vote
1answer
21 views

MongoMapper getting data from a query

I'm trying to return a User with MongoMapper: Here's the user 1.9.3-p194 :004 > User.where(:email => 'redacted@gmail.com').all.count => 1 1.9.3-p194 :005 > User.where(:email => ...
0
votes
1answer
86 views

Modify JSON response of embedded object in rails / mongoid

I am trying to modify the JSON in my controller. I have a projects model that embeds_many images using Mongoid. Here are the models: class Project include Mongoid::Document field :name, type: ...
2
votes
1answer
64 views

Mongoid, calling update_attributes twice to persist change

I have the following models: class Group ... has_many :users, dependent: :delete ... end class User belongs_to :group has_one :invitation, dependent: :destroy, foreign_key: 'to_id' ...
1
vote
0answers
34 views

Ruby Mongodb driver $gt acts as $gte in date conditions, why?

I have a weird situation with $gt and $gte conditions in ruby mongodb driver. So here is code: timeline = timeline_db.find({date: {"$gt" => s_time}, username: { "$in" => followers_array } }, ...
0
votes
2answers
30 views

Create embedded document on object creation in Mongoid

Let's say I have these: class User include Mongoid::Document field :name, type: String field :email, type: String embeds_many :auths attr_protected :name, :email end class Auth include ...
1
vote
2answers
118 views

Full text search using Mongoid

Is there a way to use MongoDB (v 2.4)'s full text search feature via Mongoid? I tried the answer from google group link but kept on getting the following error. In one tab, I started mongod as such: ...
0
votes
1answer
51 views

Changes in code from Mysql to Mongodb in search and find_by

This is my categories controller class CategoriesController < ApplicationController def index @categories = Category.order(:name).where("name like ?", "%#{params[:term]}%") render json: ...
-1
votes
1answer
102 views

ruby inserting hash into mongodb, getting undefined method `has_key?

i am trying to insert hash into mongodb using ruby mongo driver. i get undefined method has_key? error below is the code require 'rubygems' require 'mongo' include Mongo @client = ...
0
votes
0answers
51 views

Changing Search Query from Mysql to MongoDB

This is the query for Mysql database @names = Name.order_by(:name) .where("name like ?", "%#{params[:term]}%") I want to change it to Mongodb Database query since i am using Mongoid. I did this ...
1
vote
1answer
133 views

MongoDB: can't convert from BSON type EOO to Date

I' trying to use aggregation framework (with ruby) and project the date like this: db['requests'].aggregate([ {"$project" => { _id: 0, method: '$method', user: '$user', year: ...
0
votes
1answer
62 views

Mongoid: Order by field and skip N records

I have a collection with the following data: { "_id" : ObjectId("516b969beceaed363a000027"), "user" : "276", "item" : "796", "rating" : 1, } I want to order by user and then within each ...

1 2 3 4 5 16