Hyperledger-Fabric源码分析(orderer-consensus-solo)

从今天开始分析orderer的consensus机制,1.0的时候有solo和kafka两种,都比较简单,1.4里面有etcd,之前看过是raft的实现,正好温习下。这个系列从solo开始吧。

启动

当然了,Orderer启动的时候根据配置来决定用什么共识实现。solo最终会在这里会调起。

func (ch *chain) Start() {
   go ch.main()
}

接受事件

func (ch *chain) Order(env *cb.Envelope, configSeq uint64) error {
   select {
   case ch.sendChan <- &message{
      configSeq: configSeq,
      normalMsg: env,
   }:
   ...
}

这里接受来自四面八方的消息,都在这里排队,等待出包(也就是打包成block)。最终消息都是通知到chain的sendChan通道。

消息处理

if msg.configMsg == nil {
   // NormalMsg
   if msg.configSeq < seq {
      _, err = ch.support.ProcessNormalMsg(msg.normalMsg)
      if err != nil {
         logger.Warningf("Discarding bad normal message: %s", err)
         continue
      }
   }
   batches, pending := ch.support.BlockCutter().Ordered(msg.normalMsg)

   for _, batch := range batches {
      block := ch.support.CreateNextBlock(batch)
      ch.support.WriteBlock(block, nil)
   }
    ...
}

这里消息分两种,一种是NormalMsg,一种是ConfigMsg。

msg.configSeq < seq这个很关键,是比对最新的configblocknum,一致就说明从设置configSeq开始到这里为止,起码没有config的变动,因为前面设置configSeq的时候已经做过有效性校验了,所以这里就不用再做了。但是如果msg.configSeq < seq真的成立,说明中间有configblock写入了账本,导致整个环境变化,前面的过滤不能保证有效,所以这里再做一次。

func CreateStandardChannelFilters(filterSupport channelconfig.Resources) *RuleSet {
   ordererConfig, ok := filterSupport.OrdererConfig()
   if !ok {
      logger.Panicf("Missing orderer config")
   }
   return NewRuleSet([]Rule{
      EmptyRejectRule,
      NewExpirationRejectRule(filterSupport),
      NewSizeFilter(ordererConfig),
      NewSigFilter(policies.ChannelWriters, filterSupport),
   })
}

这是里面过滤器组的定义,有兴趣的可以去看看,这里略过。

出包

batches, pending := ch.support.BlockCutter().Ordered(msg.normalMsg)

batches可以看成是blocks,而pending用来表示里面还有没有等待处理的消息。

这里是消息出包的关键,下面我们进去看看

func (r *receiver) Ordered(msg *cb.Envelope) (messageBatches [][]*cb.Envelope, pending bool) {
   ordererConfig, ok := r.sharedConfigFetcher.OrdererConfig()
   batchSize := ordererConfig.BatchSize()

   messageSizeBytes := messageSizeBytes(msg)
   if messageSizeBytes > batchSize.PreferredMaxBytes {
      // cut pending batch, if it has any messages
      if len(r.pendingBatch) > 0 {
         messageBatch := r.Cut()
         messageBatches = append(messageBatches, messageBatch)
      }
      // create new batch with single message
      messageBatches = append(messageBatches, []*cb.Envelope{msg})
      // Record that this batch took no time to fill
      r.Metrics.BlockFillDuration.With("channel", r.ChannelID).Observe(0)
      return
   }
   messageWillOverflowBatchSizeBytes := r.pendingBatchSizeBytes+messageSizeBytes > batchSize.PreferredMaxBytes

   if messageWillOverflowBatchSizeBytes {
    
      messageBatch := r.Cut()
      r.PendingBatchStartTime = time.Now()
      messageBatches = append(messageBatches, messageBatch)
   }
   r.pendingBatch = append(r.pendingBatch, msg)
   r.pendingBatchSizeBytes += messageSizeBytes
   pending = true

   if uint32(len(r.pendingBatch)) >= batchSize.MaxMessageCount {
      logger.Debugf("Batch size met, cutting batch")
      messageBatch := r.Cut()
      messageBatches = append(messageBatches, messageBatch)
      pending = false
   }

   return
}
Orderer: &OrdererDefaults

    # Orderer Type: The orderer implementation to start
    # Available types are "solo" and "kafka"
    OrdererType: solo

    Addresses:
        - orderer.example.com:7050

    # Batch Timeout: The amount of time to wait before creating a batch
    BatchTimeout: 2s

    # Batch Size: Controls the number of messages batched into a block
    BatchSize:

        # Max Message Count: The maximum number of messages to permit in a batch
        MaxMessageCount: 10

        # Absolute Max Bytes: The absolute maximum number of bytes allowed for
        # the serialized messages in a batch.
        AbsoluteMaxBytes: 99 MB

        # Preferred Max Bytes: The preferred maximum number of bytes allowed for
        # the serialized messages in a batch. A message larger than the preferred
        # max bytes will result in a batch larger than preferred max bytes.
        PreferredMaxBytes: 512 KB
  1. 首先拿到Orderer的batchSize配置
  2. 计算进来的msg的大小足够大,且超过了PreferredMaxBytes
  • 将已有的pending的msg都拿出来出包,然后加上新进的msg单独成包,一起返回
  1. 如果进来的消息大小合适,但跟现有pending的消息加总超过了PreferredMaxBytes
  • 将已有的pending的msg都拿出来出包, 准备返回
  • 将新进的msg加到pending中
  1. 如果pending的消息数超过了MaxMessageCount
  • 将已有的pending的msg都拿出来,返回
for _, batch := range batches {
   block := ch.support.CreateNextBlock(batch)
   ch.support.WriteBlock(block, nil)
}

前面已经说了,batch就是block。代码很简单,就是遍历batch,组装block写到本地账本中。这里专指orderer账本,至于orderer账本里面的block怎么扩散给peer,那会用到orderer的deliver服务,到时我会单独再讲,这里就不扩散了。

switch {
case timer != nil && !pending:
   // Timer is already running but there are no messages pending, stop the timer
   timer = nil
case timer == nil && pending:
   // Timer is not already running and there are messages pending, so start it
   timer = time.After(ch.support.SharedConfig().BatchTimeout())
   logger.Debugf("Just began %s batch timer", ch.support.SharedConfig().BatchTimeout().String())
default:
   // Do nothing when:
   // 1. Timer is already running and there are messages pending
   // 2. Timer is not set and there are no messages pending
}

最后Cut触发的时机当然少不了timer,不然pending消息有可能永远都不能出包。这里很简单,就是如果有消息pending,就开始计时,过了batchtimeout后,触发下面的逻辑

case <-timer:
   //clear the timer
   timer = nil

   batch := ch.support.BlockCutter().Cut()
   if len(batch) == 0 {
      logger.Warningf("Batch timer expired with no pending requests, this might indicate a bug")
      continue
   }
   logger.Debugf("Batch timer expired, creating block")
   block := ch.support.CreateNextBlock(batch)
   ch.support.WriteBlock(block, nil)

很熟悉对不对。整个SOLO到此为止。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,133评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,682评论 3 390
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,784评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,508评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,603评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,607评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,604评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,359评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,805评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,121评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,280评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,959评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,588评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,206评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,442评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,193评论 2 367
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,144评论 2 352

推荐阅读更多精彩内容