0

我正在尝试使用 JMXMeter 来监控 Cassandra 活动连接;但是根据文档,当我运行时,它应该得到如下结果

$>info
#mbean = org.apache.cassandra.db:type=Commitlog
#class name = org.apache.cassandra.db.commitlog.
PeriodicCommitLogExecutorService
# attributes
%0 - ActiveCount (int, r)
%1 - CompletedTasks (long, r)
%2 - PendingTasks (long, r)
#there’s no operations
#there’s no notifications

但是我得到如下

$>info
#mbean = org.apache.cassandra.db:type=Commitlog
#class name = org.apache.cassandra.db.commitlog.CommitLog
# attributes
  %0   - ActiveSegmentNames (java.util.List, r)
  %1   - ArchivingSegmentNames (java.util.List, r)
  %2   - CompletedTasks (long, r)
  %3   - PendingTasks (long, r)
  %4   - TotalCommitlogSize (long, r)
# operations
  %0   - void recover(java.lang.String p1)
#there's no notifications

正如你所注意到的;我没有得到 ActiveCount() 属性,而是得到 ActiveSegmentNames() 和 ArchivingSegmentNames()。我正在寻找监视活动连接的属性。

我正在使用 apache-cassandra-1.2.3。

请帮忙。

谢谢, 迪利普

4

1 回答 1

1

您可以通过仅获取列表的大小来从名称列表中获取计数,但 Commitlog 段计数从未与连接数相关。为此,您需要向操作系统询问有关 Thrift(或本机协议)端口上的 TCP 连接的信息。

于 2013-05-27T19:59:12.637 回答