Vaughn Iverson

Results 412 comments of Vaughn Iverson

Clarification: This package will not access email/pass from the environment for you (as it does with tokens), if you stash such credentials in the environment, then you will need to...

Hi, I'm only somewhat familiar with pm2, but my understanding of such systems is that they load balance _incoming_ requests (such as HTTP connections) among some collection of application instances....

BTW, if you'd like to see a simple worker script that does everything including token based authentication and graceful handling of shutdown signals, check out the playground worker: https://github.com/vsivsi/meteor-job-collection-playground-worker

Observing changes is not necessary, but if you use it you can avoid polling. It decreases latency when the workers aren't being 100% utilized.

Just to add. It is not necessary to create a duplicate file to see this bug, simply renaming an existing file will have the same effect. The commit will not...

Hi, I just wanted to take a second to thank you for your responses here and your work on s3git. Your reference to the chunking lib above introduced me to...

To reproduce the behavior described above. ```sh mkdir s3git_test cd s3git_test s3git init # Create a 4GB file head -c $((4*1024*1024*1024)) /dev/zero > test.bin # Now create a snapshot /usr/bin/time...

Hi @fwessels, thanks for your response! Having spent some time in the code and thinking about this, I'm curious why the "deduped" files need to be as large/complicated as they...

I probably didn't express myself very clearly... When you clone a snapshot, why are deduped files: #### 1) ``` /-----\ /-----\ /-----\ /-----\ /=====\ /=====\ | 0:0 | | 0:1...

To be clear, format 1) would still be used for deduped files in the actual repository (under the root hash key), just not in local clones (when under the original...