InterPlanetary File System

XaTuring lebt!
Antworten
Benutzeravatar
Bwana Honolulu
Hausmeistens|Hausmeister|Hausmeisterin
Beiträge: 12200
Registriert: 8. September 2010, 10:10
Disorganisation: Aktion 23, Zimmer523, GEFGAEFHB, ddR, Fractal Cult, EHNIX, The ASSBUTT
Wohnort: leicht verschoben
Pronomen: er/ihm
Kontaktdaten:

InterPlanetary File System

Beitrag von Bwana Honolulu »

Endlich mal was cooles, das aus dem BlockChain-Kack hervorgegangen ist: IPFS, das InterPlanetary File System.
Wikipedia hat geschrieben:InterPlanetary File System (IPFS) is a protocol and eponymous network designed to create a content-addressable, peer-to-peer method of storing and sharing hypermedia in a distributed file system. IPFS was initially designed by Juan Benet, and is now an open-source project developed with help from the community.
Wikipedia hat geschrieben:IPFS is a peer-to-peer distributed file system that seeks to connect all computing devices with the same system of files. In some ways, IPFS is similar to the World Wide Web, but IPFS could be seen as a single BitTorrent swarm, exchanging objects within one Git repository. In other words, IPFS provides a high-throughput, content-addressed block storage model, with content-addressed hyperlinks. This forms a generalized Merkle directed acyclic graph (DAG). IPFS combines a distributed hash table, an incentivized block exchange, and a self-certifying namespace. IPFS has no single point of failure, and nodes do not need to trust each other, except for every node they are connected to. Distributed Content Delivery saves bandwidth and prevents DDoS attacks, which HTTP struggles with.

The filesystem can be accessed in a variety of ways, including via FUSE and over HTTP. A local file can be added to the IPFS filesystem, making it available to the world. Files are identified by their hashes, so it's caching-friendly. They are distributed using a BitTorrent-based protocol. Other users viewing the content aid in serving the content to others on the network. IPFS has a name service called IPNS, a global namespace based on PKI, serves to build trust chains, is compatible with other NSes and can map DNS, .onion, .bit, etc. to IPNS.
Hier lassen sich die Entwickler noch ein wenig über das "Warum" aus, und hier darüber, wie es funktioniert

Ich hatte das ganze auch schon mal auf tumblr, unter anderem mit diesen Videos:
[BBvideo 640,390][/BBvideo]
[BBvideo 640,390][/BBvideo]
[BBvideo 640,390][/BBvideo]
Videos sind schon was älter, seitdem hat sich's vermutlich weiterentwickelt. Hab' die Videos jetzt auch nicht geschaut, aber vielleicht bringen sie ja noch was. ^^
Wenn ich schon der Affe bin, dann will ich der Affe sein, der dem Engel auf's Maul haut. XD
‒✴△♀ ✴ө△ʘ!
Seine Quasarische Sphärizität, der Bwana Honolulu,
Überbefehlshabender des Selbstmordkommandos Ω,
Herrscher über alles, alles andere und wieder nichts,
Urgroßpapapapst und Metagottkaiser in Zimmer523,
Grand Admirakel der berittenen Marinekavallerie zur See,
Reichsminister für Popularpodicifikation,
Hüter des Heiligen Q.
Benutzeravatar
fehlgeleitet
Ausgetreten|Ausgetreten|Ausgetreten
Beiträge: 2774
Registriert: 15. November 2015, 18:04

Re: InterPlanetary File System

Beitrag von fehlgeleitet »

klingt cool, ich schaue es mir an wenn ich meinen literaturberg durchhabe
"Die Lehre vcn Marx ist allmächtig, weil sie wahr ist" (Lenin)

"Ideologiekrtiker setzen alle Hebel in Bewegung, um die Leute davon abzubringen, an eine jüdisch-bolschewistische Weltverschwörung zu glauben; wir derweil arbeiten an eben dieser." (Marlon Grohn)
Benutzeravatar
Bwana Honolulu
Hausmeistens|Hausmeister|Hausmeisterin
Beiträge: 12200
Registriert: 8. September 2010, 10:10
Disorganisation: Aktion 23, Zimmer523, GEFGAEFHB, ddR, Fractal Cult, EHNIX, The ASSBUTT
Wohnort: leicht verschoben
Pronomen: er/ihm
Kontaktdaten:

Re: InterPlanetary File System

Beitrag von Bwana Honolulu »

Gerade mal noch 'n bißchen gesucht bzgl. Vorteilen von IPFS gegenüber BitTorrent:
Mateon1 hat geschrieben:[...]

There are several advantages to using IPFS over torrents, but the main advantage is the fact that there is only a single massive swarm, where anybody can give a block to everybody.

For example, say you're visiting a small website that uses jQuery (or some other popular library). There might be only a couple people who visited that website, but you'll still get the library nearly instantly. Maybe from your neighbor, or maybe you already have jQuery in your IPFS repo.
The net result is, the website loads way quicker than would otherwise be possible.
Mateon1 hat geschrieben:[...] for torrents, there is essentially a separate swarm for every torrent. Two big torrents with only a few small files differing won't share peers as IPFS does, for example.
Also, the way Bittorrent chunks content into blocks doesn't work for all types of content (and isn't designed for deduplication between torrents).
mukka hat geschrieben:[...] ah, I see. So like, if there are 2 DVDs, same video but different language packs, I can download the video from both peers, whereas with torrent I have to download both of the DVDs separately (2 entire copies). This is a pretty cool reason to use IPFS. [...]
flyingzumwalt hat geschrieben:The main distinction I'm aware of is the fact that BitTorrent relies on torrent files, each of which contains a content-addressed manifest of the blocks that make up particular content. This has some ramifications:
  • forces you to choose what is in each torrent file -- ie. do you create one huge torrent file for all of your datasets or do you make a torrent file per-dataset?
  • forces you to track the torrent files themselves with some other tool/system
  • requires you to create metadata about the torrent files
  • does not natively provide a way to identify torrent files themselves using cryptographic hashes
  • does not handle versioning of content
By contrast, IPFS lets you build a DAG of arbitrary size and structure.

Some advantages that occur to me:
  • You can track both the content and the metadata in the IPFS DAG
  • You can add multiple versions of a dataset to IPFS. Each version gets a unique hash and IPFS does its best to avoid storing duplicate blocks
  • You have complete control over which blocks are stored on which IPFS node -- this has huge advantages for distributing storage/backup (see ipfs-cluster)
Also, wichtige Vorteile sind offenbar Deduplikation (identische Daten müsen nur einmal gespeichert werden) und Versionierung. Einfache Adressierbarkeit ist auch besser als bei BitTorrent (mit den Magnet-Links), aber wurde wohl nachträglich implementiert, was von einigen kritisiert wird. Zum Beispiel von jenen, die LBRY entwickelt haben, ein Projekt, das einige ähnliche Ansätze und Anwendungsgebiete wie IPFS hat, allerdings mit Monetarisierung im Hinterkopf:
Der Autor der [url=https://lbry.io/faq/different-ipfs]LBRY FAQ[/url] hat geschrieben:How is LBRY different from IPFS / BitTorrent?

IPFS and BitTorrent are wonderful technologies from which LBRY has drawn a lot of inspiration. However, they both suffer from the same flaws:
  • Lack of discovery. BitTorrent and IPFS provide decentralized ways to access a unique piece of data or information, but they do not provide an overall catalog that lists all of the available data or information to consume.
  • Ugly URLs. BitTorrent only provides access via long, complex magnet URLs. IPFS supports human-friendly naming via IPNS, but this is an after-the-fact hack and does not provide a single, authoritative, user-friendly namespace the way the LBRY does.
  • Lack of monetization. Neither BitTorrent nor IPFS support payments to publishers for the content or data they create and publish to the network*; LBRY does.
  • Incentive problems. BitTorrent and IPFS rely on people being generous with their own resources for data to continue to be available. LBRY creates market incentives for data to be as widespread and available as possible.
*Yes, there are attempts to add this via a layer on top, but LBRY bakes it in.
Das Adressierungsproblem haben ja z.B. auch .onion-Seiten, weil sie nur über 'nen kryptischen Crypto-Hash identifiziert werden, aus dem man nur mit tonnenweise Rechenpower was halbwegs Sinnvolles basteln kann.
Wenn ich schon der Affe bin, dann will ich der Affe sein, der dem Engel auf's Maul haut. XD
‒✴△♀ ✴ө△ʘ!
Seine Quasarische Sphärizität, der Bwana Honolulu,
Überbefehlshabender des Selbstmordkommandos Ω,
Herrscher über alles, alles andere und wieder nichts,
Urgroßpapapapst und Metagottkaiser in Zimmer523,
Grand Admirakel der berittenen Marinekavallerie zur See,
Reichsminister für Popularpodicifikation,
Hüter des Heiligen Q.
Antworten