IPFS 探索
比特幣當前是用於存金融交易數據,有leveldb 存關鍵小的交易數據。那麼咱們的文件,譬如一個網站裏面的static file 怎麼辦?node
IPFS(InterPlanetary File System)是一個點對點的分佈式超媒體分發協議,它整合了過去幾年最好的分佈式系統思路,爲全部人提供全球統一的可尋址空間,包括Git、自證實文件系統SFS、BitTorrent和DHT,同時也被認爲是最有可能取代HTTP的新一代互聯網協議。git
先來看看例子:
https://ipfs.io/ipfs/QmYwAPJzv5CZsnA625s3Xf2nemtYgPpHdWEz79ojWnPbdGgithub
啓動:
ifs daemon

http://localhost:5001/webuiweb
peerschrome

耗費網絡的ipfs 節點
瀏覽器
基本操做:
- 添加文件:
- ipfs add file path

- 獲取
- ipfs cat /ipfs/hash
- ipfs cat /ipfs/QmVg7JXmiZy8YRXMKS2VvmXzmPAgRo7KQvajsuVjtGfcB3 > 1.pdf
- web 方式

- wget https://ipfs.io/ipfs/QmciDozPmgVpRKNuuGtvT72o1BExSKE7SWFWczvyMfmM4d

空間問題
- pin
- 那麼刪除呢?
- https://github.com/ipfs/faq/issues/9
- https://discuss.ipfs.io/t/how-can-i-delete-a-file-from-ipfs/1556 https://stackoverflow.com/questions/43118022/how-do-i-unpin-and-remove-all-ipfs-content-from-my-machine
- ipfs pin rm $YOUR_HASH
- ipfs repo gc
- 你只能刪你本地的數據,你關不了別的節點,尤爲是別的節點的pin 數據

GC
GC打出的log ,這裏麪包含其餘的節點的別人的數據,我仍是能在本地看到這些數據,

遞歸形:除了直接的內容訪問外,還有一種特殊的,recursive
服務器
擔憂硬盤爆:網絡
- config 路徑: ~/.ipfs/config
- Datastore.StorageMax 默認10GB 限制max storage
- StorageGCWatermark:90 90%存儲空間使用了的時候觸發GC
由於存儲空間有限,不是每一個人都自願無償的貢獻存儲空間的,因此數據不保證永久存儲,想保證永久,要pin serivce
(https://docs.ipfs.io/guides/concepts/pinning/) ,以免重要的存儲數據被觸發delete 掉。分佈式
進一步瞭解關於pin機制: https://discuss.ipfs.io/t/trying-to-better-understand-the-pinning-concept/754/2
總結:ide
- pin的內容會告訴本身的節點不要進入GC 刪除他
- 對pin的操做控制不一樣步到其餘節點,其餘人的節點愛咋地咋地
- 本身的節點add的,會自動pin (Objects added through ipfs add are pinned recursively by default.)
- 若是都pin了,應該是根據訪問量、陳舊度來決定GC
ipfs vs BitTorrent 幾大區別點
- BT 依賴的是torrent 文件, ipfs 僅經過hash 找到文件
- ipfs 不單單支持文件的下載,往後是一種完善的文件協議
- 參考git支持,經過hash 避免重複數據的存儲,區分不一樣的版本
- 對於web 應用來講,ipfs 是一種cache system
https://medium.com/@kidinamoto/ipfs-vs-bittorrent-9f1c3adb8fcd
https://github.com/ipfs/notes/issues/208
https://github.com/ipfs/faq/issues/17
suck part:
- ipfs add file 後, 後綴都會丟失
- 有時 ,下載很慢 slow / cannot download
- $ wget https://ipfs.io/ipfs/QmYx4BnhnLXeMWF5mKu16fJgUBiVP7ECXh7qcsUZnXiRxc
--2018-10-22 12:15:00-- https://ipfs.io/ipfs/QmYx4BnhnLXeMWF5mKu16fJgUBiVP7ECXh7qcsUZnXiRxc
Resolving ipfs.io (ipfs.io)... 209.94.78.81, 209.94.90.1, 209.94.78.80, ...
Connecting to ipfs.io (ipfs.io)|209.94.78.81|:443... connected.
HTTP request sent, awaiting response...
Read error (Connection timed out) in headers.
Retrying.
--2018-10-22 12:30:01-- (try: 2) https://ipfs.io/ipfs/QmYx4BnhnLXeMWF5mKu16fJgUBiVP7ECXh7qcsUZnXiRxc
Connecting to ipfs.io (ipfs.io)|209.94.78.81|:443... connected.
HTTP request sent, awaiting response...
但 official資源比較快,如:
https://ipfs.io/ipfs/QmYwAPJzv5CZsnA625s3Xf2nemtYgPpHdWEz79ojWnPbdG
- 猜測:可能須要與是否永久存儲的問題相關
- 你關閉了節點daemon 後一段時間(1天以上),再訪問本身的資源,發現不能訪問;啓動回daemon,1分鐘內又能夠訪問了;再緊接着斷開daemon ,disable local cache of chrome ,也仍是能訪問;後續又停了後,又不能訪問了。 — 應該是ipfs.io 幫助cache 了,但沒多少節點真正原意pin 並記錄,可能要不在search,要不就找不到記錄的節點。— 這個部分要深刻看代碼才知道(可能相關訪問頻率、訪問時間的cache 機制在控制)。
- 相對於傳統cdn無權限訪問控制
其餘
注意經過瀏覽器獲取回來仍是通過了ipfs.io 的服務器,背後應該是通過gateway ,而後經過ipfs node 獲取回來
more need to dive into:
- public key usage
- 對於可變內容, 參考:https://docs.ipfs.io/guides/concepts/ipns/
- IPFS 將來要支持Namecoin ,那麼表明傳統DNS、ICANN 在網絡中的工做角色會被幹掉/替換。
- FileCoin 對比
FAQ :
是否add file 就永久存儲:
- content storage not forever , then who decide long persistence --> Filecoin http://www.infoq.com/cn/articles/how-ipfs-is-disrupting-the-web
- IPFS doesn't solve the persistence problem for you, the only way currently to ensure that your files will exist is to pin them on an IPFS node, which means you need pin rights on that node. Run your own node, there are a few services out there that you can pay to pin content, find a node that will volunteer to pin your content, or wait for Filecoin which solves the problem by allowing you to pay Filecoin for persistence.
激勵機制:
- 符合存儲證實的得到token獎勵
- 反欺詐機制(防止只存一段時間就刪):
- 隔斷時間檢查文件是否存在
- 太頻繁---致使消耗資源
- 太少頻率--致使欺詐機率上升
- Ref: http://liyuechun.org/2017/09/18/ipfs-blockchain/