Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
1answer
905 views

Django with Pluggable MongoDB Storage troubles

I'm trying to use django, and mongoengine to provide the storage backend only with GridFS. I still have a MySQL database. I'm running into a strange (to me) error when I'm deleting from the django ...
14
votes
1answer
3k views

MongoDB GridFs with C#, how to store files such as images?

I'm developing a web app with mongodb as my back-end. I'd like to have users upload pictures to their profiles like a linked-in profile pic. I'm using an aspx page with MVC2 and I read that GridFs ...
11
votes
4answers
5k views

Is GridFS fast and reliable enough for production?

I develop a new website and I want to use GridFS as storage for all user uploads, because it offers a lot of advantages compared to a normal filesystem storage. Benchmarks with GridFS served by nginx ...
4
votes
3answers
1k views

Sharding GridFS on MongoDB

I'm documenting about the GridFS and the possibility to shard it among different machines. Reading the documentation here, the suggested shard key is chunks.files_id. This key will be linked to the ...
3
votes
1answer
156 views

Nodejs - HTTP Range support / Partial file download

I am creating a music web app that streams MP3s that I have stored in MongoDB(GridFS). My Question: How can I add http range support so that I can start streaming the audio file 1/2 of the way ...
3
votes
1answer
970 views

Can you stream video from GridFS (MongoDB filesystem)?

Can you tell a streaming server such as Ngix to stream videos stored in GridFS? If yes, does it affect perfs?
3
votes
1answer
451 views

How use Gridfs of mongodb with PIL (Python Image Library)

i use mongodb and save file to gridfs now i want edit images from gridfs ... i use this code def thumbnail(file_obj): import StringIO from PIL import Image im = StringIO.StringIO() ...
3
votes
1answer
668 views

Is GridFS faster than usual FS?

I wonder whether storing all the uploaded files in GridFS is faster than storing them on the usual filesystem, e.g. Ext4 (in terms of reading/writing speed and average server load).
3
votes
1answer
605 views

Is Rails 3 removing Metal?

Is Rails 3 removing Metal? I am trying to implement Mongoid, Carrierwave and grid_fs. I have followed guide 1. However, I have read that Rails 3 is removing Metal ( ...
2
votes
1answer
112 views

How can I backup a MongoDB GridFS database the easiest way?

Like the title says, I have a MongoDB GridFS database with a whole range of file types (e.g., text, pdf, xls), and I want to backup this database the easiest way. Replication is not an option. ...
2
votes
1answer
94 views

Using GridFS - Should it be on a separate DB?

I am making a site that has a lot of audio storage, terabytes, and I was wanting to use GridFS for sharding and to be able to easily expand the database across multiple machines. My question is that ...
2
votes
0answers
141 views

pymongo Get an Image Back Out of GridFS

I am playing around with MongoDB and the pymongo API. I can put an image file in to GridFS - seems straight forward: >>> f = open('myimage.jpg', 'r') >>> fs = gridfs.GridFS(db) ...
2
votes
1answer
557 views

How to use GridFS to store images using Node.js and Mongoose

I am new to Node.js. Can anyone provide me an example of how to use GridFS for storing and retrieving binary data, such as images, using Node.js and Mongoose? Do I need to directly access GridFS?
2
votes
0answers
97 views

Padrino + MongoMapper/Joint Troubles

I'm using MongoMapper with Joint on Padrino, and trying to get the upload working. However, I keep getting thrown a NoMethodError "undefined method 'path' for #<Hash:0xa6fbdf0>". It seems ...
2
votes
1answer
688 views

Cannot serialize an object of class ActionDispatch::Http::UploadedFile into BSON

I'm following GridFS with Mongoid and CarrierWave to implement a simple has_many polymorphic relationship and when I attempt to create a new user, with an avatar, through nested attribute assignment, ...
2
votes
1answer
180 views

How can I delete files (in a transaction-like manner) from MongoDB's GridFS using the Mongo console

I need to delete a bunch of files, stored in Mongo's GridFS that are older than a given date. This implies that I'd need to delete from both fs.files and fs.chunks collections. I was thinking of ...
2
votes
1answer
273 views

Indexing 20M of records with python and mongoDB

I would like to mention about my little project, and if I'm on track. I need work with all articles from Medline (http://www.nlm.nih.gov/bsd/licensee/2011_stats/baseline_doc.html). For those are not ...
2
votes
0answers
484 views

How to import a file into Carrierwave

So I have an app using rails 3 and mongodb that serves files. I want to import all of the files into gridfs using a runner process without creating new ObjectId's for the files already in the system. ...
2
votes
2answers
736 views

MongoDB as static files provider?

It's MongoDB a good candidate to serve static files (files, video) as cdn. I searching a solid way to store big amounts of data (>+To) remplacing S3 and managing cache features. Experiences. Thanks. ...
2
votes
2answers
767 views

Best GridFS C# driver?

What is the best realization of GridFS C# driver? What is your experience? Update: When i say "best" - i mean stability. Thank you!!!
2
votes
1answer
612 views

MongoDB GridFS bucket?

I work with MongoDB C# Samus driver. One of constructors of class MongoDB.GridFS.GridFile has parameter "bucket". When i create GridFile in Java like example i cannot set this "bucket". But i can set ...
2
votes
2answers
562 views

Use mongofiles utility to access data inserted with Java GridFS API

I can successfully insert and retrieve data from MongoDB's GridFS in Java. However, when I try to access that data on the command line using mongofiles, I can't find it. The Java insertion code: ...
2
votes
2answers
313 views

GridFS in Ruby: How to upsert?

Does GridFS have an upsert? For example, if i want to save an image with a specified _id, and one with that same _id already exists, i want it to overwrite (update) it. Otherwise, insert it.
2
votes
1answer
601 views

How to stream image object in Sinatra

I had uploaded images to mongoDB using GridFS. I want to retrieve an image from the db and display it in the browser. How to do this with the help of Sinatra and HAML.
1
vote
3answers
125 views

HDFS vs GridFS: When to use which?

HDFS and GridFS are two great technologies for distributed file saving but what are their differences? What type of problems fit better to each?
1
vote
1answer
70 views

create own files_id in mongo GridFs using PHP

for a better distribution of files in a sharded Mongo GridFs I'd like to create my own files_id. How this can be done in Java is described here: ...
1
vote
2answers
62 views

Imagick and GridFS

I have images stored in GridFS for MongoDB. When I pull the image out, I want to resize it and then store it back into the database. I tried this: $image = $grid_collection ->findOne(array('_id' ...
1
vote
1answer
152 views

Read file content from MongoDB using NoRM driver

I'm trying to read the image file stored in a MongoDB, to do that I have following code in my ASP.net MVC 3 projects public FileContentResult ProfileImage(ObjectId id) { using (var db = new ...
1
vote
1answer
101 views

Is there a nodejs module or example of how to make GridFS files accessible with WebDAV?

I have an existing node.js app where users have a library of files that are stored with GridFS. Each user has their own library. I would like to make the library mountable with WebDAV so that a user ...
1
vote
1answer
115 views

GridFS Nginx check if data exist

I use (File System Based) static html files for caching, for some reasons i don like this. I want store cache files (html, images) in database. Now it work like that: if nginx can get cache: ...
1
vote
1answer
43 views

Can't save more than one document in GridFS (with MongoMapper/Joint)

I've written a Padrino application that allows you to upload files. It uses MongoMapper (via Joint) to store these files (images) in GridFS. I am able to store one file with no problems. However, when ...
1
vote
0answers
83 views

How to make nginx-gridfs properly use the result of regex location match

In short, this doesn't work: location ~* /grid/(.+)/ { gridfs filestore field=filename type=string root_collection=storage.$1; } This is using https://github.com/mdirolf/nginx-gridfs ...
1
vote
1answer
138 views

Pipe multiple files into a zip file

I have several files in a GridFS Document Store and what I'd like to do is to pipe this data into a zip file via stdin in NodeJS. So that I will end up with a zip file containing all these files. Now ...
1
vote
2answers
285 views

MongoDB GridFS store multiple sizes of image or use on the fly resizing

In my web app i'm using MongoDB GridFS to store user uploaded images. The rest of the site is managed by MySQL. In a photo table (in mysql) I have three fields for storing the MongoId of the file ...
1
vote
1answer
288 views

GridFS + CarrierWave + nginx unable to get file

In my project I upload audiofiles to GridFS using CarrierWave gem. After uploading file is saved to GridFS properly but in my application I am unable to get it from GridFS with MongoFiles Tool or with ...
1
vote
1answer
434 views

Append data to existing gridfs file

As i can see java mongo driver does not provide capability to get OutputStream from existing gridFS file com.mongodb.gridfs.GridFSFile I have to create GridFSInputFile directly or use ...
1
vote
1answer
414 views

MongoDB GridFS VS Directly disk IO

Use MongoDB GridFS store images and images stored directly on disk What are the advantages?
1
vote
1answer
214 views

mongodb/gridfs java-driver use with utf-8 meta data

I am trying to use GridFS to load a file along with some meta data using the java-driver. (2.5.3) Things work fine as long as the meta-data is in ASCII. But I get an exception - the moment I try ...
1
vote
2answers
673 views

C# MongoDB Driver with GridFS

Can anyone tell me the best way to store multiple images related to a single mongo document? My use-case is that I have a “user” doc in the “profile” collection. This document has metadata about the ...
1
vote
2answers
2k views

How to convert BufferedImage to InputStream?

I am uploading images using servlet. To perform resize operations i am converting InputStream to BufferedImage. Now i want to save it in mongoDB. Since, i am new to mongoDB as far as i know, GridFS ...
1
vote
1answer
624 views

MongoDB's GridFS, Rails 3, X-Sendfile, and ACL's, HOW-TO?

I have a Rails 3 project that does file upload/download, with access rights (User has many Files, and can only read/write his own files). If I store my files on classic filesystem, I can check the ...
1
vote
2answers
760 views

Creating Thumbnails with GridFS + MongoDB + PHP

I'm creating a site where a client who will be selling his photography which he sells a lot of it and will probably get quite a bit of traffic. Probably around 2k-5k uniques a day. I'm using MongoDB ...
1
vote
1answer
400 views

Fast import into MongoDb

I have around 2 million strings with different lengths that I need to compress and put into MongoDb GridFS as files. The strings are currently stored in MS SQL TEXT field of a table. I wrote a sample ...
1
vote
2answers
680 views

mongodb gridfs carrierwave or joint or other?

i want to store all my assets in mongo gridfs. i was trying to get carrierwave setup with mongomapper and gridfs but seems carrierwave supports mongoid now instead. I need to be able to save ...
1
vote
1answer
945 views

rails3, gridfs and mongomapper: how to serve files? send_data?

i am currently developing a rails3 app with mongomapper and file storage in gridfs. after some trying around, i found grip and currently also use it in the app for storing the data. so far, so good - ...
0
votes
1answer
25 views

Embedd Images from MongoDB gridFS into my HTML-Page

I saved some files via MongoDBs gridFS into my database. I know how to retrieve files just with php in my browser: header('Content-type: '.$object->file['filetype']); echo $object->getBytes(); ...
0
votes
0answers
25 views

How to reference GridFSFile with @DbRef annotation (spring data mongodb)

i have a spring @Document object Profile i would like to reference GridFSFile like it : @DbRef private GridFSFile file; the file is writen into another collection type GridFS. I always have a ...
0
votes
0answers
18 views

Nginx-gridfs compiling #error must have a 64bit int type in Mac

running 10.7.2 follow the guide configure than append CFLAGS=-Wno-error to bypass the error, than I got stuck at In file included from /usr/local/src/nginx-gridfs/mongo-c-driver/src/bson.h:24, ...
0
votes
1answer
66 views

What's the best way to store references to a gridFS file in a document?

I'm using MongoDB to store user profiles, and now I want to use GridFS to store a picture for each profile. The two ways I'm comparing linking the two documents are: A) Store a reference to the file ...
0
votes
2answers
111 views

MongoDB gridFS - filename length, indexing, performance

I'm studying gridFS and I have a few questions. 1) gridFS automatically indexing files by generated _id. But most of the time I get files by their filename, so should I create index on 'filename' by ...

1 2