Vaughn Iverson

Results 412 comments of Vaughn Iverson

FYI, here is the sample app. Try uploading however many video files using this app. I've uploaded many hundreds of files (drag and drop) with this code without the types...

Okay, let me know how it goes.

Hmm. It's been over a year since I've looked deeply at this code... Is this happening (the lock renewal loop) when a client aborts a download before it is complete?...

Hi, I don't know anything about ApolloServer. Currently file-collection only supports uploading to the Meteor server hosting the file-collection instance. The backing mongoDB can be anywhere. Built-in authorization is only...

So the main thing to know is that file-collection stores the file *inside* MongoDB using gridFS. That is the only place the files exist. The resumable.js upload chunks map 1:1...

Hi the sample app handles this via a reactive template mechanism: https://github.com/vsivsi/meteor-file-job-sample-app/blob/master/sample.html#L48-L59 When the file/thumbnail is ready to view, the reactive state change drives the DOM to attempt to load...

Can you reproduce this behavior on your setup using the simple sample app? https://github.com/vsivsi/meteor-file-sample-app You should be able to upload images to the DB, and then later reload the page...

Yup! See: https://github.com/vsivsi/meteor-file-sample-app/blob/master/sample.coffee#L164-L169 https://stackoverflow.com/questions/24445404/how-to-prevent-a-client-race-condition-between-meteor-userid-and-subscription

At first glance, this looks like another Meteor + Mongo3.2 issue. I think it is the Meteor Collection connection to the DB that is failing, not the one that file-collection...