Questions tagged [mongohq]

Compose (formerly MongoHQ) is a Database-as-a-Service (DBaaS) platform for securely hosting and managing databases instances including MongoDB.

Compose (formerly MongoHQ) is a Database-as-a-Service (DBaaS) platform for securely hosting and managing databases instances including MongoDB.

More information:

148 questions
1
vote
1 answer

Central_logger integration with Heroku Rails app

I am trying to setup central_logger (https://github.com/customink/central_logger) to my heroku app. Can someone please point me to a tutorial or lay out steps on how I can achieve this? The readme is quite clear but doesn't say anything about heroku…
Satyam
  • 645
  • 2
  • 7
  • 20
1
vote
1 answer

Connect to mongohq in a Cocoa application

I am trying to connect to a mongohq database from a Cocoa application, but I really don't know there to start. I googled for it but it does not seem to be something useful online. Do you know if there is a simple way to do it? Obviously no one will…
Donovan
  • 6,002
  • 5
  • 41
  • 55
1
vote
0 answers

Mongoid error in Padrino when attempting to connect from Heroku to MongoHQ

I keep getting an Mongoid::Errors::InvalidDatabase - Database should be a Mongo::DB, not NilClass from a padrino app that I've got working on dev locally but which refuses to connect to MongoHQ. I've using padrino 0.9.23 and Mongoid 2.0.0. Stumped…
Daryl
  • 11
  • 2
1
vote
1 answer

Map reduce on mongodb returns recursive result

I have a collection of real estates and I run map reduce on mongodb to calculate some basic statistic. Everything works fine locally, but when I run task on mongohq I get back recursive result. Let me simplify things a bit, instead of real reduce…
rodic
  • 445
  • 4
  • 10
1
vote
0 answers

Connect from linux terminal to mongodb in Monghq (compose.io)

I'm triying to connect from my linux terminal (Linux Mint 17) to a remote mongodb database in mongohq. I try using this command: mongo arrow.mongohq.com:port/cac-test –u userhere -p passwordhere But isn't work. I just got this message: connecting…
Carlos Orellana
  • 185
  • 1
  • 2
  • 8
1
vote
0 answers

Is there any benefit to installing Heroku addon for MongoHQ/Compose?

I use Heroku to host my node.js api. I use MongoHQ (now Compose) for my database. I had gone directly to MongoHQ and setup an account quite sometime ago and I've just setup my mongoose connection directly to my MongoHQ/Compose account. Is there any…
nwkeeley
  • 1,397
  • 5
  • 18
  • 28
1
vote
0 answers

Meteor MongoHQ issue

I'm getting Error: Could not locate any valid servers in initial seed list when I try to connect to MongoHQ (compose.io). I'm running Release 0.6.6.2 of meteor. I tried to update to the latest version but I'm told This project is at the latest…
David Hay
  • 11
  • 1
1
vote
1 answer

Finding MongoDB Document by ID

I'm using Node.js and MongoDB with my database hosted on MongoHQ (Now compose.io). I have a general understanding document IDs are converted to hex strings but I can't figure out how to retrieve a document using its ID. My document has the ID _id:…
Alex H Hadik
  • 774
  • 2
  • 7
  • 16
1
vote
1 answer

Is it possible to connect MongoHq in Google App Engine?

I'm trying to deploy a simple test app to Google App Engine. It's written in clojure and use mongodb(MongoHq) internally. Though it works well in my local machine, it doesn't work in Google App Engine, internal server error occurred. I use monger to…
ntalbs
  • 28,700
  • 8
  • 66
  • 83
1
vote
1 answer

Setting Query Parameter on MongoHQ beta API

I'm using the beta api on MongoHQ.com to query a database I set up earlier this week. I can retrieve the list of databases on my account, the collections in each database and the documents in each collection using the basic URLs. However, when I try…
Joseph McCarthy
  • 897
  • 2
  • 19
  • 41
1
vote
0 answers

MongoHQ API: where is the _apikey/account secrete key?

According the MongoHQ's document "[I] will pass your key as a params named _apikey for authentication." But I could not find my api key, all I could find, after clicking my account's name on the right corner, is Account API Token. Are they the same…
fuiiii
  • 1,359
  • 3
  • 17
  • 33
1
vote
1 answer

ObjCMongoDB authentication

I'm very new to use ObjCMongoDB; I need to connect to a mongoDB from inside my application so I'm trying to integrate ObjCMongoDB.framework into my project. I've read the wiki and I didn't find any reference on connecting to a DB with username and…
1
vote
1 answer

what is the default value of MONGOHQ_URL in mongo db (used in angularjs)

I was referring to how angular js connects to mongo db. So while setting the url and port for the 'db' object, I found code like below: var path = require('path'), rootPath = path.normalize(__dirname + '/../..'); module.exports = { root:…
sabari
  • 2,595
  • 5
  • 28
  • 44
1
vote
2 answers

Connect to MongoHQ with node.js app on cloud9

I need some help connecting my node.js app (that I am editing in cloud9) to my database at MongoHQ. So far I have succesfully connected to the database via the terminal and was able to do a few commands: use drywall; db.admingroups.insert({ _id:…
user2539369
1
vote
1 answer

insert and query an OrderedDict in MongoHQ

After successfully inserting an OrderedDict object in to MongoHQ, i try to query the same OrderedDictionary by the collection.find_one() command of PyMongo. This fails, the order of the keys are lost. The dictonary becomes an ordinary dictonary. My…
user1337
  • 13
  • 3