0
votes
1answer
10 views

mongodb , node.js, combbo, deploying on heroku, mongod

I am new to mongodb and node.js. I have a simple node.js app that in order to run I have to run the command mongod to make sure mongodb is running. locally this works fine. now I am moving to ...
0
votes
0answers
19 views

Grails app using mongo not starting on heroku

I am trying to deploy my Grails app on heroku but the deployments keep failing whilst wiring up my mongo beans. The deployment method I am using is heroku deploy:war. I have the MONGOLAB_URI set ...
0
votes
1answer
39 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
1answer
21 views

Using $where to query dates in MongoDB behaving differently in different environments

I'm using $where to query objects by month and date using code like the following to get UserInfo collections with a Birthdate of May 7: db.UserInfo.find( function() { var d = new ...
1
vote
3answers
56 views

Getting error while foreman start in Node.js

getting following message if I try to start foreman. I am not sure what should I do further to solve. I guess its express related error but still any help to solve this error will be really really ...
0
votes
1answer
46 views

Getting error while running command heroku ps:scale worker=1 error

I tried a lot but not able to find the reason for this. Need help. Following is what I am writing after deploying my first node app in Heroku and my DB is at MongoLab heroku ps:scale worker=1 It ...
0
votes
2answers
57 views

What is Procfile? and Web and Worker

Is it necessary to give 'worker' information in Procfile? If yes then what it is actually - couldn't find nice article regarding this. I hope you guys might have idea. I have already added web: node ...
0
votes
1answer
23 views

How to split an app's data per domain instead of per app instance?

Let's say you build a simple blog system. Instead of having to publish this blog system across 3 different Heroku dynos which would be expensive for something so simple (requiring at least 2 dynos ...
0
votes
1answer
65 views

“'django_mongodb_engine' isn't an available database backend” when pushing to Heroku

I have a Django app that successfully ran on Heroku and uses mongodb engine. All of a sudden, I can not push it anymore. It does not seem to recognize the django_mongodb_engine module anymore. I even ...
0
votes
0answers
53 views

MongoCollection::aggregate() is undefined in Heroku PHP using MongoHQ

I'm getting the following error when using MongoDB's aggregate() function in a PHP code. This code perfectly works on my local setup which is running MongoDB 2.2.3 PHP Fatal error: Call to undefined ...
0
votes
0answers
75 views

Connecting to MongoDB running on Windows Azure from Node app on Heroku

I have created a node app that uses a mongodb database, but I dont know how to connect to a database that is running on a virtual machine. Because I am poor, I decided to put my mongodb database on a ...
0
votes
0answers
110 views

node.js and mongodb - Error: failed to connect to [ds057900.mongolab.com:57900]

I have an app on Heroku and Mongolab. I use node.js nad mongoose. Heroku often logs that my memory consumption is over their limit and part of it is swapped to hard-drive. From time to time I have ...
0
votes
2answers
66 views

flask mongoengine connect through uri

Hi I have a small flask application which I am deploying to heroku. My local configuration looks like this: from flask import Flask from flask.ext.mongoengine import MongoEngine app = ...
-1
votes
1answer
218 views

Node.JS + SQL Server + MongoDB + Redis on cloud [closed]

My typical requirement is I want NodeJS application which interacts with SQL Server, MongoDb and redis on cloud. Since this application will be using legacy database I cannot replace SQL Server. ...
0
votes
1answer
81 views

Mongo::OperationFailure - need to login when using from_uri

My goal is to connect with my heroku/mongolab database but I keep getting this error: Mongo::OperationFailure at /mongotest/a/b : need to login file: networking.rb location: send_message_with_gle ...
0
votes
0answers
39 views

Heroku: MongoDB Won't Start With Properly Configured with MONGOHQ_URL

I'm doing a virgin install of a rails app that uses Locomotive CMS. I've run through the configuration, including configuring mongoid.yml as follows: production: uri: <%= ENV['MONGOHQ_URL'] ...
0
votes
0answers
154 views

Heroku + Node.js + MongoLab DB on Azure + Mongoose

I wrote a simple REST service which returns an item from a MongoDB which has the specified id. When I first deploy the app to Heroku it works great. I can call the REST service multiple times with ...
13
votes
1answer
405 views

Rails, Mongoid & Unicorn config for Heroku

I am using Mongoid 3, with Rails 3.2.9 and Unicorn for production. Would like to setup a before_fork & after_fork for the connection to mongodb, found the following code for active record: ...
0
votes
0answers
86 views

Connect to mongodb on heroku using native drivers in express node

On my local machine i connect to mongoDb "tasksdb" database this way: var server = new Server('localhost', 27017, {auto_reconnect: true, }); db = new Db('tasksdb', server); db.open(function(err, db) ...
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
2answers
162 views

PHP Heroku App Deployment using Mongo

I have a PHP app hosted on Heroku using Mongo backend. I have followed the instructions on https://gist.github.com/pedro/1288447. In my php.ini in my root folder I have extension_dir = ...
0
votes
1answer
73 views

“Mongod” works, but running “rails console” results in “Failed to connect to a master node at 127.0.0.1:9100 (Mongo::ConnectionFailure)”

I have a problem with MongoDB. For a start, when running mongod, and then mongo (in another teminal window), I get: MongoDB shell version: 2.2.2 connecting to: test > > However. When I ...
0
votes
1answer
123 views

Concurrency with Heroku web dynos + Node js + Mongo HQ

I am developping a web app on heroku. Most of requests on my server are database operations. How many concurrent requests can be treated by 1 web dyno + 1 Mongo HQ replicaSet ? How to increase this ...
0
votes
1answer
217 views

Connecting to mongoHQ with mongojs on heroku

I am trying to connect to mongoHQ from my node.js app. Here is the code I am using: var databaseUrl = "mongodb://fishcuss:MyPassword@alex.mongohq.com:10015/app9759558" var collections = ["users"] ...
0
votes
1answer
227 views

Background processing on a nodejs, mongodb and heroku stack

I'm writing a simple image upload site as a learning project. It's written in nodejs, with mongodb and deployed onto Heroku cedar. I'd like to implement a node script that runs say, once an hour, ...
3
votes
1answer
763 views

Free mongo db hosting with Heroku?

I am trying to deploy my app which uses mongo db to Heroku and it seems that i need to use some hosting service like MongoHQ or MongoLab for hosting Mongo DB. Are there any free mongo db hosting ...
1
vote
1answer
301 views

How to consume Twitter Streaming API using Heroku and MongoLab?

I'm looking to use the Twitter Streaming API to scrape all tweets for a few keywords and store them in a database. I would rather not run the workflow locally so I had been looking at ways to use the ...
0
votes
1answer
153 views

Mongoid connection pool on heroku

I have an application deployed on heroku. Sometimes background process raises the following error: "The task failed because of an error: could not obtain connection within 5.0 seconds. The max pool ...
1
vote
2answers
127 views

How do I locally test a node.js + mongodb app that works in Heroku?

I know how to run a regular node.js app locally, using foreman, but when my app is linked to a MongoHQ database in Heroku, the connection is part of the heroku environment. Is there a way I can test ...
1
vote
1answer
348 views

Heroku bundler ignores bson

I'm trying to deploy on heroku a rails app that uses mongodb with mongoid. Everything works great locally, but when I deploy it (the heroku server starts fine), I get an error that the 'bson' gem ...
0
votes
0answers
63 views

Update MongoDB JSON using Heroku Scheduler

I'm looking to use the Heroku Scheduler to insert a new blank day into the JSON and having trouble finding clear documentation for a noob. I have the following code in a 'sayHello' file inside a ...
0
votes
1answer
218 views

Odd exception with mongoid at Heroku

There is an error at heroku I keep getting. It's a Sinatra app which uses Mongoid. Although I have a Rails app hosted there as well, it doesn't cause any error despite the fact that they have exactly ...
1
vote
1answer
116 views

connect Spring roo project to database(mongo)

I am new too roo and trying to create a simple app to push to heroku. I have the app up and working on my localhost with a mongo DB running on the localhost as well. I added a mongo DB to the app in ...
1
vote
2answers
183 views

Implementing a directory provider for hibernate search using MongoDB

I would like to use this solution for my site on Heroku so I can index using the MongoDB does anyone know of a good tutorial or book that gives an in depth example of how to do this? Googling didn't ...
1
vote
2answers
442 views

Unable to connect to mongohq at heroku using shell

I installed mongohq:sandbox at Heroku. When I want to connect to mongo, it occurs an error: mongo linus.mongohq.com:10123/app10575123 -u my_user -p pwd123 MongoDB shell version: 2.2.2 connecting to: ...
1
vote
1answer
130 views

Simple Webservice with JSON / Heroku / MongoDB

I want to create a simple webservice that can accept JSON Data and store that data. I have about 50 users so the dataload will never be really high. I think I would be ok with one dyno, which is the ...
1
vote
1answer
36 views

documents remove themselves unexpectedly mongoid rails

I don't really know how to describe why it happens, or how to reproduce it. I have a method that downloads some data from an external site, and saves it to a document. If i look for the document later ...
1
vote
1answer
240 views

Two Spaces Automatically Converted to &nbsp (Heroku, Mongodb)

I've been trying to build a disussion website, using the Telescope engine. Installing on Heroku with a MongoHQ plugin is a piece of cake, but I've found problem that I can't replicate on my machine ...
1
vote
0answers
664 views

Fatal database error on Heroku dev

I have a Django app (music streaming service) running on a free hosting account on Heroku with a Postgres database with one web dyno. Yesterday I wrote a script that uploads mp3 files to Heroku, ...
3
votes
2answers
239 views

Why is it taking so long for Meteor to load my data on Heroku?

I am using Meteor on Heroku (free tier) with MongoHQ. My app is very simple right now, it loads 3-4 entries from a Collection, but when I deploy it to Heroku, I am seeing ridiculous load times (1-2 ...
0
votes
1answer
136 views

Unable to connect to MongoHQ using Node.js + Expressjs

I've recently been trying to learn both Node.js and Mongo. I set up an account on Heroku, got a simple Node.js app running correctly and then took a dive into Mongo. I added on MongoHQ, but since then ...
0
votes
1answer
183 views

heroku: rake db:migrate fails with mongoDB

running heroku run rake db:migrate and getting the error: Running `rake db:migrate` attached to terminal... up, run.9259 DEPRECATION WARNING: railtie_name is deprecated and has no effect. (called ...
0
votes
1answer
96 views

How i can connect to MongoDB on heroku

Here is my mongoDB created on heroku.And below is my mongoid.yml setting for production.Everything is fine on local. production: sessions: default: uri: <%= ...
4
votes
2answers
646 views

Mongoid fails on ruby 1.9.3

So I'm playing around with mongo stuffs. Created a new heroku app, added a mongolab option to it, but every mongoid method fails. I googled around, and it looks like this issue was common with ruby ...
0
votes
1answer
153 views

Web App Built With Rails, Node, MongoDB, and Heroku [closed]

So I'm thinking of developing a chess web-app as a little side project- think chess.com but way smaller. I want to build the game and the game server with javascript, node.js and maple.js, while ...
0
votes
1answer
200 views

MongoDB: Assertion 15934 Error

I am using Heroku as my deployment and trying to dump my local MongoDB then mongorestore it but I get an error that simply I can't get: assertion: 15934 JSON object size didn't match file size I ...
2
votes
2answers
808 views

Deploying Meteor and MongoDB to Heroku

I am attempting to deploy my project to Heroku following a particular guide (http://bytesofpi.com/post/20898722298/pushing-your-meteor-project-to-heroku) One of the steps states that var mongo_url ...
1
vote
1answer
595 views

Heroku + mongoose connection error: no primary server found in set

I have a mongodb replica set on mongolab. I'm using nodejs + mongoose. When I'm trying to connect from my local machine everything goes ok. But after deployment to heroku something wrong happens ...
0
votes
1answer
371 views

Heroku: Storing local MongoDB to MongoLab

It might be a dead simple question yet I still wanted to ask. I've created a Node.js application and deployed it on Heroku. I've also set up the database connection without having any trouble as well. ...
2
votes
1answer
820 views

Heroku MongoHQ add-on and PyMongo — OperationFailure: database error: unauthorized

I'm having trouble with the MongoHQ Heroku addon. Locally my app works and the os variable is present and well-formed on Heroku. However, when I attempt to access the db it throws an error: ...

1 2 3