P2P system: GNUTELLA
P2P system: GNUTELLA
GNUTELLA是第一个经论证的分布式的peer-to-peer system.
Napster的一个重大问题是涉及到间接侵权,所以GNUTELLA消除the servers altogether然后使用client来search and retrieve,所以client也充当了servers,所以Gnutella的client也叫做servents(由server和client拼接而成)
neighbors意味着这个peer知道它们的IP地址与port number,能够给它们发送message(如TCP).
在peers中创造了一个叫做an overlay graph的graph,之所以称这个图为an overlay graph是因为it's a graph that is overlaid on top of the internet
图中的每条边实质上是底层的internet的internet path,但是考虑到overlay,在underlying internet中的actual path与之不相关,只要这些peers能够talk with each other.
怎么找到指定的文件
五种主要的message type:
query message: 包含着keywords的查询
queryHit: 对query的回应
Ping:为了保证the list of neighbors是最新的,使用ping和pong message
Pont: 为了保证the list of neighbors是最新的,使用ping和pong message
Push: 用于file transfer
以上我们讨论的message的所有的fields除了IP address之外都是使用小端存储
the header for all five kinds of message in GNUTELLA
Descriptor ID: 最开始的16bytes是IDS of this transaction,这个ID号在系统中是唯一的(可以使用IP地址+端口号+递增的序列号来创建).这个Descriptor ID很有用,因为intermediate nodes使用它来识别message that only belong to this particular search不会和其它的search相混淆
payload desciptor: the kind of message
TTL: time to live.当一个message由一个peer传给它的neighbor时,TTL减1,当TTL减到0时,这个message不能再被传输。TTL被设置成为一个有限的数,这样message就不会circulate around the overlay graph forever.The initial TTL is usually set to 7和10之间
Hops: the number of hops that the message has to transmitted to. The hops每传输一次就增加一次。为什么我们在有TTL时还需要Hops呢,这是因为第个peer初始的TTL值可能不一样(一些peer可能initial TTL是7,一些peer可能initial TTL是10).无论怎样,大多数的protocol不会真正的使用hops这个field,它们大多数rely on TTL field
Payload length: message type 不同则length可能不同,length是由the kind of message来决定的.它的作用是你可以根据它来找到message的end
上面Payload部分里面的格式
如果你连了一条100MBps的线路,你可能会说I need peers that are at least 100MBps or at least 10 MBps
查询是怎么send out的
each of immidiate neighbor收到这个search message时,先会查找自己的local files是否有符合查询条件的文件。同时它们flood out the query message to its immidate neighboring peers(刚从它那儿收到query message的那个peer除外).peer怎么知道这个message是刚刚发送过来的呢? 是根据descriptor ID,descriptor ID在传输过程中是保持不变的。当TTL减少到0时,message不再进行传输。
每个peer forward 同样的message only once.是怎么做到的呢?是通过keep track of the recent query message that it has forward以及使用descriptor id to find out whether the income message is 重复的message(duplicated message)
当符合查询条件时,发送QueryHit
Num.hits: the number of files that match
QueryHit怎么返回给query的peer
queryHits are reverse routed.每个peer都保存着最近接收到的query message,它同样保存着这个query message是从哪儿传过来的.所以当这个peer创建了a queryHit message或者接收到了a queryHit message,it send a queryHit message back to the peer from which it received corresponding query message from
如何避免重复的传输信息
因为peers的结构可能在传输的过程中发生的改变,这时你可能会收到的收到你之前没有遇到过的message,这是drop这些message,虽然会对发出query的peer要返回的结果有一些影响,但是这种情况少见,且影响也不大。
当query peer接收到back时的反应
request peer发送get message.
range是指定下载的文件的范围,如当你指定range在0-512Byte之间时,文件下载到512byte时,这个下载进程就会中断。你进行第二次下载时可以指定range从512byte开始,这样第二次下载就不会从头开始下载文件,而是从上次中断的地方开始下载。
responder peer 接收到get message后,发送包含请求文件的http消息。
firewall阻止消息进来,但是不会阻止至少大多数消息传出去,但是它不会阻止some kind of message from coming in
如果responder is behind a firewall,则上图中的那个HTTP get message不会传给responder,那么怎么进行file transfer呢?这时就用到了push message
request peer首先发送http message给respond peer,当失败后,它猜想respond peer is behind firewall, 然后它发送push message,这个push message根据queryHit message的path,把这个path进行逆转(along the reverse QueryHit path),当respond peer接收到这个push message后,它创建一条outgoing TCP connection
Push message
fileindex: 这样就不会使用the entire file name
ip_address和port是发送push message 的request peer的,这样respond peer就可以建立outgoing TCP connection
Dealing with firewall
Ping and Pong message
Ping message像query message一样用flood out来传播消息(也使用TTL,但是TTL一般来说比query message要小)
Num. files shared 和 Num. KB shared用来给pinging peer去选择neighbors which have more data and more files to share
Summary
different peers have different number of neighbors.
Gnutella被发现符合power law 分布: the probability that the number of neighbors you have is L-k
Problems
最初版本的Gnutella有如上几个问题(已经得到解决)
Ping/Pong traffic的问题: multiplex(当收到几条ping或者pong时,使用一条ping/pong发送出去),使用cache来缓存将几条ping/pong一起发送
Repeated searches with same keywords(如针对比较热门的歌曲): cache queryHit messages,如果你接收到相同的query时,你可以发送之前保存在cache里面的queryHit message而不是继续forward the query message
一些peers没有足够的带宽: 使用central server to act as proxy for such peers.或者使用FastTrack System(利用一些powerful nodes或powerful appliance in the system)
以上的两个问题是所有的peer-to-peer system都存在的问题
Large number of freeloaders: 这个是人性问题,不是技术问题,技术无法解决
Flooding causes excessive traffic: 学术上解决这个问题带来了Structured Peer-to-peer systems,第一个Structured Peer-to-peer system 来自于学术叫做Chord system
P2P system: GNUTELLA的更多相关文章
- P2P system: Napster
Napster structure client machines之所以叫peers是因为对于server来说这些machines是平等对待的 当你upload一首歌曲如PennyLane.mp3时, ...
- P2P system: Introduction
P2P system : peer-to-peer system 一些流行的P2P system: Napster, Gnutella 我们为什么研究P2P system 大型的分布式系统有成千上万个 ...
- P2P system: Chord
DHT= Distributed Hash Table store the objects(files) at nodes (hosts, machines) in a cluster. The cl ...
- P2P system: FastTrack and BitTorrent
FastTrack FastTrack来源于Gnutella,是Gnutella 和 Napster的杂交体 有些node承担了更重要的责任,这些nodes称为supernodes,因为这些改进,它比 ...
- P2P system:How Chord tackles failures
若有peer failures 怎么办 接上面的例子,如果N32 fail掉了,但是N80的finger table还没有更新,这样query到了N16,它找不到N32,只有N80,这样query就会 ...
- P2P/WSN信任建模与仿真平台
1.ART Testbed 该平台是基于多代理的信任仿真平台,官网的介绍如下: The Agent Reputation and Trust (ART) Testbed initiative has ...
- Windows软件在Linux上的等价/替代/模仿软件列表 (抄一个)
Last update: 16.07.2003, 31.01.2005, 27.05.2005 您可在以下网站发现本列表最新版:http://www.linuxrsp.ru/win-lin-soft/ ...
- Smart internet of things services
A method and apparatus enable Internet of Things (IoT) services based on a SMART IoT architecture by ...
- HDU 3269 P2P File Sharing System(模拟)(2009 Asia Ningbo Regional Contest)
Problem Description Peer-to-peer(P2P) computing technology has been widely used on the Internet to e ...
随机推荐
- Django 之验证和授权
一.验证和授权概述 Django有一个内置的授权系统.他用来处理用户.分组.权限以及基于cookie的会话系统.Django的授权系统包括验证和授权两个部分.验证是验证这个用户是否是他声称的人(比如用 ...
- JAVA操作word方法
jacob,功能非常强大,能操作word,excel和pdf.下载地址是:http://sourceforge.net/projects/jacob-project/ 1.新建一个文档 Dispat ...
- 使用Docker-Compose编排发布.Net Core+Redis应用两个镜像到Docker
对于刚刚完成的Alipay支的Demo, 我想要把它部署到Docker中去, 下面我来演示相关步骤. 创建配置文件 配置文件的重中之重是Dockerfile, 他的内容如下: # 第一部分是编译并发布 ...
- 【坑】SpringMvc 处理JSON 乱码
文章目录 前言 方法 前言 在使用 springMvc 的时候,如果向前台返回 JSON 数据,JSON 中的中文会乱码: 即使你在配置了全局的信息编码拦截器,也无济于事: 原因大抵是,JSON 的内 ...
- php数组与数据栈相关函数
php数组可以用栈的角度来操作,这其中包含了如下函数,array_pop(),array_push,array_shift(),array_unshift(). array_pop()函数 将数组的最 ...
- PAT(B) 1037 在霍格沃茨找零钱(Java)
题目链接:1037 在霍格沃茨找零钱 (20 point(s)) 题目描述 如果你是哈利·波特迷,你会知道魔法世界有它自己的货币系统 -- 就如海格告诉哈利的:"十七个银西可(Sickle) ...
- SAS学习笔记56 ODS ESCAPECHAR
这种内嵌格式独立于style型和table型,它既可以结合二者使用,也可以独立使用.它主要通过下列语句的格式形式来进行调用: ODS ESCAPECHAR ‘^’; 上述符号’^’表示触发条件,如果碰 ...
- 在论坛中出现的比较难的sql问题:32(row_number函数+子查询 sql循环取差值)
原文:在论坛中出现的比较难的sql问题:32(row_number函数+子查询 sql循环取差值) 所以,觉得有必要记录下来,这样以后再次碰到这类问题,也能从中获取解答的思路. sql循环取差值,该怎 ...
- win10+pyspark+pycharm+anaconda单机环境搭建
一.工具准备 1. jdk1.8 2. scala 3. anaconda3 4. spark-2.3.1-bin-hadoop2.7 5. hadoop-2.8.3 6. winutils 7. p ...
- SVM-支持向量机总结
一.SVM简介 (一)Support Vector Machine 支持向量机(SVM:Support Vector Machine)是机器学习中常见的一种分类算法. 线性分类器,也可以叫做感知机,其 ...