-
Notifications
You must be signed in to change notification settings - Fork 284
Peer Selection Strategy
heikoheiko edited this page Mar 1, 2015
·
9 revisions
- in a network with
N
participants: messages of sizeS
must be received by all nodes in the network in less thanTmax
seconds and should be received in less thanTavg
seconds. Assuming average bandwidthB
the diameter (worst case) of the network must be less thanDmax
, the average shortest path length should be less thanSPLmax
. There should be no bottlenecks so, therefore the load centrality of every node must be less thanLCmax
- in a network with
N
participants: the network must not split if a fractionF
of the node goes down (due to partial network outages or attacks). Node connectivity must be >NC
.
- in a network with
N
participants, the bandwidth required by each node should be less thanBWmax
. Therefore the maximum number of peers of each node must be less thanPmax
while supporting above requirements.
- in a network with
N
participants: the network must not fail if a fractionF
of nodes with an average elapsed timeTEavg
since their first appearance, conspire to attack the network.
-
closeness centrality
at a node is 1/average distance to all other nodes (higher is better). -
load centrality
of a node is the fraction of all shortest paths that pass through that node (lower is better) -
average shortest path length
of a graph is the average of all shortest paths between any combination of nodes (shorter is better) -
rsd_*
the relative standard deviation of above values is an indicator of the well-formedness (lower is better) -
diameter
of a graph is the longest shortest path (worst case) (shorter is better, should be log(n)) -
node connectivity
of a graph is the minimum number of node that disconnect the graph (network split) when deleted (higher is better)
?