GridFS is a specification for storing large files in MongoDB. All of the mongodb.org supported drivers implement the GridFS spec.

learn more… | top users | synonyms

0
votes
0answers
16 views

Lithium PHP GridFS image read failures

In trying to fetch images from a MongoDB GridFS collection using the 1.3.4 driver and the Lithium PHP framework, I'm getting broken images. I am having trouble pinpointing when this started happening, ...
0
votes
0answers
30 views

Best way to stream videos from mongoDB gridFS

I have to develop solution to stream videos from gridFS. What is the most elegant (FASTEST) way to stream videos from mongodb gridFS? I did some google searching and saw few options: gridfs-stream ...
1
vote
1answer
34 views

MongoDB - Maximum file size using GridFS

I am wondering what is the maximum file size if someone wants to store a file using the GridFS? I can't find any information so any help would be appreciated.
0
votes
0answers
25 views

Binary files in Gridfs-Mongo DB to be stored in local drive in python 2.7

I have stored some attachments into GridFS mongo using the Put command in Gridfs. x12 = 'c:\test\' + str10 attachment.SaveAsFile(x12) with open(x12, 'rb') as content_file: content = ...
0
votes
1answer
61 views

Store file in Mongo's GridFS with ExpressJS after upload

I have started building a REST api using expressJS. I am new to node so please bear with me. I want to be able to let users upload a file directly to Mongo's GridFS using a post to the /upload route. ...
1
vote
0answers
37 views

Retrieving images from GridFS using django-tastypie-mongoengine

I have a project in Django, and I'm using mongoengine to save images into a Mongo database using GridFSStorage. All ok so far, but the problem is... when trying to retrieve the images via http ...
0
votes
1answer
80 views

Binding to MongoDB service from Grails application deployed on Cloudfoundry

I'm currently writing a Grails app using Grails 2.2.2 and MySQL, and have been deploying it to Cloudfoundry. Until recently I've just used a single MySQL datasource for my domain, which Cloudfoundry ...
1
vote
2answers
43 views

Memory limit avoiding In MongoGridFSFile::getBytes PHP

Suppose my server has 4GB of ram and i uploaded a file having size 5GB. How can i download that file using gridfs. Following site states that http://www.php.net/manual/en/mongogridfsfile.getbytes.php ...
0
votes
1answer
57 views

Ensure file insertion finished with GridFS - MongoDB Java API

I have a REST service to upload images and this is the main code in charge of the registration in mongodb: public String writeFiles(InputStream inputStream, String fileName, String contentType) ...
0
votes
1answer
22 views

pymongo - How to create/query by indices in GridFS

In my case I need to ensure the uniqueness of files via SHA1 (stored as the filename) db = pymongo.MongoClient('localhost', 27017).test gfs = gridfs.GridFS(db) # How may I create a unique index in ...
0
votes
1answer
64 views

How can I manage the disk size of a GridFS MongoDB database?

I have a GridFS MongoDB database that I need to manage the size of. It has been running very well since it was created, but I have never really looked at its disk size until now. Judging by this ...
1
vote
3answers
82 views

Why Can't I set the id on GridFS using an id from a related mongo document

My app is using node 0.10.1, express 3.1.1, mongoose 3.6.4, mongo 2.4.1 and gridfs-stream 0.4.0. I have set up mongoose and gridfs-stream with a share connection as follows: /************* app.js ...
0
votes
0answers
57 views

How to retrieve only names of stored files in GridFS and give the User a chance to download

I have stored files like images, zip files and pdf using GridFS, MongoDB and Doctrine in Zend2. And I was able to retrieve stored images using following : public function viewAction() { $id = ...
1
vote
1answer
43 views

MongoDB Schema with Image field

I want to create a schema like the following in MongoDB with image field, { _id: {}, camera_id: ObjectId(), image: {}, hour: ts_of_hour, day: ts_of_day } I want to use GridFs ...
0
votes
0answers
23 views

How to use Devise authorization in custom middleware

I have middleware for serving files from mongodb #serve_gridfs_file.rb class ServeGridfsFile def initialize(app) @app = app end def call(env) if env["PATH_INFO"] =~ /^\/grid\/(.+)$/ ...
0
votes
2answers
117 views

Storing posted file to MongoDB GridFS, using ExpressJS and Node

I'm attempting to process file posted to an Express site by placing it into MongoDB's gridfs system, using the native driver. The problem I'm experiencing is that the request's chunks have all been ...
0
votes
0answers
59 views

What are the unique features of MongoDB GridFS? What are it's typical use cases? [closed]

I am a newbie to MongoDB and I am trying to understand why one should choose mongodb gridfs for storing images/videos over others like amazon s3 or what are the typical scenario's in which one would ...
1
vote
2answers
90 views

Mongodb base64 image vs gridfs

I'm using mongodb and I want to store some thumbnails in my server. What's best? Using GridFS or converting those images to base64 and store them directly inside a document.
0
votes
0answers
80 views

View images on jsp using gridfs

I have an Image object that is stored in mongoDB and retrieved using gridFS to a servlet. We have a problem viewing this Image on jsp using <img src="PATH"> , because we don't know how to get ...
2
votes
0answers
404 views

Read file with node.js, mongoose, gridfs-stream

I am using mongoose and gridfs-stream to store and read files from mongodb. I am following the example here: https://github.com/aheckmann/gridfs-stream Writing files into db is working fine but I ...
0
votes
1answer
184 views

Replace an existing GridFS file with new content using Spring Data MongoDB

I have some data in MongoDB GridFS. I am using the Spring Data GridFsOperations class to do my GridFS read/writes. I have a requirement to replace the content of an existing GridFS file i.e. the _id ...
0
votes
1answer
41 views

GridFS: Cursor positioning works only one time after “seek”

I am positioning the cursor within a file with GridStore.seek (GridStore.IO_SEEK_CUR) but it works only one time. With the next read and all forthcoming read's and seek's the cursor is not positioned ...
0
votes
1answer
193 views

Querying mongodb gridfs file data

hi i am a newbie to gridfs and am able to insert a file and view the file in gridfs using the query below mongofiles -d myfiles put hi.txt db.fs.files.findOne({'filename':'hi.txt'}); I need to ...
1
vote
2answers
115 views

Non-ASCII Characters Not Displayed When Reading From GridFS

I am uploading files (of different content types) using Apache fileupload API as follows: FileItemFactory factory = getFileItemFactory(request.getContentLength()); ServletFileUpload uploader = new ...
0
votes
0answers
294 views

Node.js Socket.io MongoDB update a database on a remote pc

What I'd like to achieve: have a main server running node.js and socket.io that runs a "chat-like" webpage, like this chat example. On this server I'll also have a mongo database where I store ...
0
votes
3answers
190 views

MongoDB as file storage

i'm trying to find the best solution to create scalable storage for big files. File size can vary from 1-2 megabytes and up to 500-600 gigabytes. I have found some information about Hadoop and it's ...
0
votes
2answers
90 views

Is MongoDB's GridFS Chunking Just for Binary Data? What about Huge K/V Documents?

I have documents that exceed 16MB. These documents are comprised of many key/value pairs and their containing subdocuments (dicts) and arrays (lists), which may be nested several levels deep. If I ...
2
votes
0answers
137 views

One big GridFS collection in MongoDB or many smaller?

We're using MongoDB for storing video data before and after conversion. Encoding of one file results of six or more smaller files (several quality grades and different formats). Both input and output ...
0
votes
0answers
240 views

iPhone uploading binary file to Node.js server (Using express, mongoDB, and mongoose)

sorry, very new to Node.js here. I am having trouble getting my head around a good strategy to upload files from an iphone client into a node.js server and storing it on the server side. For now, I ...
2
votes
1answer
177 views

mongoDB as a file storage for Grails application

I've recently came across a need to store a higher amount of files in my application and because PaaS platform used to host the application provides mongo, I've would like to use it. However because ...
1
vote
0answers
149 views

Why does sending files from GridFS via MVC4 take so much time?

I want to send images stored in MongoDB using GridFS via a MVC4 Web app to the browser via my LAN environment, but it take ~500ms until the image is sent to the browser. Google Chrome network ...
0
votes
0answers
135 views

Rails store millions of small images. GridFs?

I need to store millions of small images 0,1kb-8Mb. I heard about gridfs but I can read in docu "For documents in a MongoDB collection, you should always use GridFS for storing files larger than 16 ...
0
votes
0answers
42 views

How to serve file from gridfs in django development environment?

I need to serve file from GridFS in my django + mongoengine project. Is there any out of the box solution?
0
votes
1answer
75 views

MapReduce on gridfs file with mongodb

I want to store bson documents in gridfs because they grow rapidly over 16MB. But i also have to do some mapreduce analytics on them. Is that possible or do i have to split the document in multiple ...
1
vote
0answers
103 views

store image with GridFS in MongoDB C API

I'm trying to find resources and examples on how to use GridFS in MongoDB with the C CPI. I specifically need the C API and not the C++ or C#. I can't seem to find any examples on the C version. I ...
1
vote
1answer
110 views

Serving GridFS files with pyramid

I am wondering what is the best and possibly easiest way to serve files from GridFS using Pyramid. I use nginx as a proxy server (for ssl) and waitress as my application server. The file types I need ...
0
votes
1answer
81 views

GridFS file retrieval strategy

I have been looking at GridFS to store images and other files. It has some really nice features but we have to retrieve and store files at some temporary location to render html which costs us cpu ...
1
vote
2answers
227 views

I want the benefits of GridFS but mainly storing files under 16MB

I need to create a storage system for files that will mostly be under 16MB but I want the benefits of GridFS like versioning, custom metadata, easy backup (with mongodump), etc. I'd say maybe 10% of ...
1
vote
0answers
123 views

Mongodb GridFS having trouble downloading .ppt and .doc files?

I have this function in my controller to download files that i am storing in my mongodb grid: function download_presentation($ext,$store_filename) { $grid = ...
0
votes
1answer
186 views

MongoDB GridFS driver in NodeJS overwrites files with the same name

I have the following code (removed error checking to keep it concise) which uses the node-mongodb-native. var mongo = require('mongodb').MongoClient; var grid = require('mongodb').GridStore; var url ...
0
votes
1answer
182 views

How to move file from GridStore (GridFS) to File System for download?

I have some files in GridFS and I want to download them to the browser. It is my understanding that I need to take the file from GridFS and move it to the server's file system in order to send it to ...
0
votes
1answer
53 views

Delete file on mongoDb gridFs results in “0”, even if it is there

is there anything obvious I'm doing wrong with this code? $result = $this->_grid->remove( $someQueryWithOneResult, array('safe' => true, 'justOne' => true) ); if ($result['n'] === 0) ...
0
votes
2answers
298 views

Storing a file in mongodb using node.js

Hi i need to store a file in mongodb using node.js, the file is placed in my desktop i will have to store it in my mongodb database.I came across something called gridfs but am not sure how to proceed ...
2
votes
1answer
354 views

Suggestions on using NoSQL DB as FileStorage, and Pros & Cons

We are evaluating our options for alternatives to the static file storage (which is hosted among multiple geographic location). We are on Microsoft.NET platform (C#, ASP.NET, WEB API, SQL SERVER) We ...
1
vote
2answers
159 views

Why gridfs get isn't working on file id (ObjectId) only by filename

I'm using nodejs mongodb mongoose and gridfs. when I try to get a file by it's filname everthing is working great by if i want to get it by id i get Error: The file you wish to read does not exist. I ...
0
votes
1answer
113 views

Store Stream in GridFS using Node.js

I'd like to store a Stream in a GridFS. However it doesn't work as expected (i.e. no console log). var mongo = require("mongodb"); var db = ... db.open(function (err, db) { var stream = ... ...
0
votes
1answer
204 views

How to save via mongodb shell a file served by GridFS in a mongoengine/Django FileField

I have a file saved on GridFS, via mongofiles $ mongofiles -d dba put file.txt connected to: 127.0.0.1 added file: { _id: ObjectId('50c0a48f8d1d53325a7d7b01'), filename: "file.txt", chunkSize: ...
2
votes
0answers
202 views

CarrierWave/Mongoid: Copy File from one record to another

We have the following Models: Template Document Both have a CarrierWave Uploader mounted with which I can attach files to a record. The files are stored in MongoDB's GridFS. That works fine. The ...
2
votes
2answers
268 views

How to upload file and save it directly to MongoDB using GridFS

I have a Sinatra application hosted on heroku and I'm trying to enable file uploading. I know heroku doesn't allow saving to the file system so I'm trying to save the image to MongoDB using GridFS ...
0
votes
1answer
291 views

Show image saved into mongodb gridfs with node.js

I am saving images of my aplication into gridfs. The problem becomes when I need to show the image. I don't know how can i do it. I'm using node.js, geddy framework and mongodb. this.show = function ...

1 2 3 4 5