nodetool getstreamthroughput — 스트리밍 처리량 상한 조회

nodetool getstreamthroughput — 스트리밍 처리량 상한 조회

getstreamthroughput 명령은 스트리밍과 전체 SSTable 스트리밍의 처리량 상한을 조회하는 nodetool 명령이에요. 기본 결과는 반올림된 메가비트 단위이며, 정확한 값이 필요하면 -d 옵션을 씁니다.

출처: nodetool getstreamthroughput

본문

이 명령은 시스템의 스트리밍 처리량 상한을 출력해요. 기본값은 반올림된 메가비트(Mbit) 단위로 표시되고, -d 옵션으로 정확한 값을, -m 옵션으로 MiB/s 단위를, -e 옵션으로 전체 SSTable 스트리밍 처리량을 확인할 수 있어요.

원문의 사용법은 다음과 같습니다.

NAME
        nodetool getstreamthroughput - Print the throughput cap for streaming
        and entire SSTable streaming in the system in rounded megabits. For
        precise number, please, use option -d
SYNOPSIS
        nodetool [(-h <host> | --host <host>)] [(-p <port> | --port <port>)]
                [(-pp | --print-port)] [(-pw <password> | --password <password>)]
                [(-pwf <passwordFilePath> | --password-file <passwordFilePath>)]
                [(-u <username> | --username <username>)] getstreamthroughput
                [(-d | --precise-mbit)] [(-e | --entire-sstable-throughput)]
                [(-m | --mib)]
OPTIONS
        -d, --precise-mbit
            Print the throughput cap for streaming in precise Mbits (double)
        -e, --entire-sstable-throughput
            Print entire SSTable streaming throughput in MiB/s
        -h <host>, --host <host>
            Node hostname or ip address
        -m, --mib
            Print the throughput cap for streaming in MiB/s
        -p <port>, --port <port>
            Remote jmx agent port number
        -pp, --print-port
            Operate in 4.0 mode with hosts disambiguated by port number
        -pw <password>, --password <password>
            Remote jmx agent password
        -pwf <passwordFilePath>, --password-file <passwordFilePath>
            Path to the JMX password file
        -u <username>, --username <username>
            Remote jmx agent username

옵션을 하나씩 살펴볼게요.

  • -d, --precise-mbit — 스트리밍 처리량 상한을 정밀한 Mbit(double) 값으로 출력해요.
  • -e, --entire-sstable-throughput — 전체 SSTable 스트리밍 처리량을 MiB/s 단위로 출력해요.
  • -m, --mib — 스트리밍 처리량 상한을 MiB/s 단위로 출력해요.
  • -h <host>, --host <host> — 대상 노드의 호스트명 또는 IP 주소를 지정해요.
  • -p <port>, --port <port> — 원격 JMX 에이전트 포트 번호를 지정해요.
  • -pp, --print-port — 호스트를 포트 번호로 구분하는 4.0 모드로 동작해요.
  • -pw <password>, --password <password> — 원격 JMX 에이전트 비밀번호를 지정해요.
  • -pwf <passwordFilePath>, --password-file <passwordFilePath> — JMX 비밀번호 파일의 경로를 지정해요.
  • -u <username>, --username <username> — 원격 JMX 에이전트 사용자 이름을 지정해요.

더 알아보기