ipfs / newsletter

Prepare and store the IPFS Newsletter
MIT License
44 stars 18 forks source link

Collection for IPFS Weekly 7 (March 7th--March 14th) #27

Closed RichardLitt closed 8 years ago

bergie commented 8 years ago

https://github.com/the-grid/jsjob-ethereum is an experiment at creating a computational market on top of Ethereum. Computational jobs are run in a JavaScript sandbox, and both input data, the algorithm to run, and the produced results are shared over IPFS.

bergie commented 8 years ago

https://github.com/c-base/ipfs-ringpin is a set of tools for setting up an IPFS "file pinning ring" between multiple parties. Can be used for example for hackerspaces to provide redundancy by pinning each other's files.

ghost commented 8 years ago

I don't have anything good for the weekly right now -- would have to put lipstick on the pig :)

daviddias commented 8 years ago
whyrusleeping commented 8 years ago

A nasty bug in our networking code was fixed this week. An issue in yamux (our primary stream multiplexer) would cause code to hang when opening a new stream if there were too many in flight stream opens. As a result of this, large file transfers (ipfs refs -r, ipfs get, and so on) would hang.

IPFS 0.4.0 is now very close to shipping, we ran @dignifiedquire's randor tool quite extensively and are more confident in the repo operations that have changed since 0.3.11. The release now has a somewhat short checklist of things that are blocking the official release.

As a small side project, I started benchmarking each of our possible datastore implementations with ds-bench. The results will help us improve the performance of our storage moving forward. On that same topic, I started an experiment in new and exciting datastores and wrote a datastore implementation that can be backed by a sql database. I then spun up a postgresql database (from docker) and ran the benchmarks against it, without any sort of tuning the initial performance metrics showed that it was around three time as fast as our current on-disk datastore. (Note: the metrics are simply testing the performance of writing random 256k binary blobs to each datastore).

daviddias commented 8 years ago

IPLD discussion https://www.youtube.com/watch?v=QVfL0VrvBww

haadcode commented 8 years ago

Orbit is back in active development and going through a major code base overhaul. It now uses orbit-db as it's database layer.

orbit-db is a KV-store and Event Log on top of IPFS which allows developers to use IPFS as a database. Last week orbit-db got big performance and stability improvements and is now using CRDTs for eventual consistency.