Openvswitch ‘;ovs dpctl显示’;命令意味着什么?

Openvswitch ‘;ovs dpctl显示’;命令意味着什么?,openvswitch,Openvswitch,当我执行“ovs dpctl show”命令时,我得到: $ ovs-dpctl show system@ovs-system: lookups: hit:37994604 missed:218759 lost:0 flows: 5 masks: hit:39862430 total:5 hit/pkt:1.04 port 0: ovs-system (internal) port 1: vbr0 (internal) port 2: gre_sy

当我执行“ovs dpctl show”命令时,我得到:

$ ovs-dpctl show
system@ovs-system:
    lookups: hit:37994604 missed:218759 lost:0
    flows: 5
    masks: hit:39862430 total:5 hit/pkt:1.04
    port 0: ovs-system (internal)
    port 1: vbr0 (internal)
    port 2: gre_sys (gre)
    port 3: net2
我找到了一些解释:

[-s | --statistics] show [dp...]
              Prints a summary of configured datapaths, including their  data‐
              path  numbers  and  a  list of ports connected to each datapath.
              (The local port is identified as port 0.)  If -s or --statistics
              is specified, then packet and byte counters are also printed for
              each port.

              The datapath numbers consists of flow stats and mega  flow  mask
              stats.

              The  "lookups"  row  displays three stats related to flow lookup
              triggered by processing incoming packets in the datapath.  "hit"
              displays number of packets matches existing flows. "missed" dis‐
              plays the number of packets not matching any existing  flow  and
              require  user space processing.  "lost" displays number of pack‐
              ets destined for user space process but subsequently dropped be‐
              fore  reaching  userspace. The sum of "hit" and "miss" equals to
              the total number of packets datapath processed.

              The "flows" row displays the number of flows in datapath.

              The "masks" row displays the mega flow mask stats. This  row  is
              omitted  for datapath not implementing mega flow. "hit" displays
              the total number of masks visited for matching incoming packets.
              "total" displays number of masks in the datapath. "hit/pkt" dis‐
              plays the average number of masks visited per packet; the  ratio
              between "hit" and total number of packets processed by the data‐
              path.

              If one or more datapaths  are  specified,  information  on  only
              those  datapaths  are  displayed.  Otherwise, ovs-dpctl displays
              information about all configured datapaths.
我的问题是:

  • 传入数据包的总数等于(lookups.hit)+ 查找,错过了吗
  • 如果传入数据包的总数等于 (lookups.hit+lookups.missed),为什么掩码的值是多少?hit:39862430 大于(查找。命中:37994604+查找。未命中:218759)
  • 为什么masks.hit/pkt比率大于1?合理的价格是多少 什么时间间隔内的值
  • 传入数据包的总数等于(lookups.hit)+ 查找,错过了吗
  • 对。(加上lookups.lost,只不过我看到对你来说是零。)

  • 如果传入数据包的总数等于 (lookups.hit+lookups.missed),为什么掩码的值是多少?hit:39862430 大于(查找。命中:37994604+查找。未命中:218759)
  • masks.hit是对执行的哈希表查找数 处理所有已处理的数据包。给定的数据包可能 需要最多个掩码。总查找次数

  • 为什么masks.hit/pkt比率大于1?合理的价格是多少 什么时间间隔内的值
  • 比率不能小于1.00,因为这意味着 处理一个数据包甚至不需要一次查找。比率 1.04非常好,因为它意味着大多数数据包都是用 只有一个查找。比率越高,情况越糟

    本·普法夫(blp@ovn.org)

  • 传入数据包的总数等于(lookups.hit)+ 查找,错过了吗
  • 对。(加上lookups.lost,只不过我看到对你来说是零。)

  • 如果传入数据包的总数等于 (lookups.hit+lookups.missed),为什么掩码的值是多少?hit:39862430 大于(查找。命中:37994604+查找。未命中:218759)
  • masks.hit是对执行的哈希表查找数 处理所有已处理的数据包。给定的数据包可能 需要最多个掩码。总查找次数

  • 为什么masks.hit/pkt比率大于1?合理的价格是多少 什么时间间隔内的值
  • 比率不能小于1.00,因为这意味着 处理一个数据包甚至不需要一次查找。比率 1.04非常好,因为它意味着大多数数据包都是用 只有一个查找。比率越高,情况越糟

    本·普法夫(blp@ovn.org)