SequoiaDB giant sequoia database-network traffic

  • The snapshot command can view various network traffic of the current node. The command is as follows:

    db.snapshot(SDB_SNAP_DATABASE);

     

  • Output example

    {
    ……
    "svcNetIn": 546,
    "svcNetOut": 20495,
    "shardNetIn": 9956,
    "shardNetOut": 46310,
    ……
    }
  • svcNetIn, svcNetOut: The network traffic occupied by the node directly connected service. When the network bandwidth pressure is high, you can see the proportion of bandwidth occupied by the direct connection service.

  • shardNetIn, shardNetOut: network traffic occupied by node partition service. When network bandwidth pressure is high, you can see the proportion of bandwidth occupied by partition services.

For more information, please visit the official website of Jushan Database

Guess you like

Origin blog.csdn.net/weixin_48909806/article/details/112847953