Couchbase群集中节点之间的RAM使用不均

时间:2019-03-04 07:38:47

标签: memory couchbase ram

couchbase-server-community         4.0.0-4051-1

我们有一个由21个节点组成的Couchbase集群,大约有150个客户端盒连接到该集群。我看到有些机器的RAM使用率为91%,而另一些机器的RAM使用率仅为66%,有没有办法确保RAM的分布式使用更多。 /opt/couchbase/bin/memcached占用了所有框中的大多数RAM,以下是两个极端框中的两个RAM使用示例:

具有较少内存使用量的框:

USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
999       4345 62.5 61.9 36074956 33934188 ?   Ssl  Feb01 27737:28 /opt/couchbase/bin/memcached -C /opt/couchbase/var/lib/couchbase/config/memcached.json
999       4216 52.8  2.4 1840896 1314404 ?     Ssl  Feb01 23450:08 /opt/couchbase/lib/erlang/erts-5.10.4.0.0.1/bin/beam.smp -A 16 -sbt u -P 327680 -K true -swt low -MMmcs 30 -e102400 -- -root /opt/couchbase/lib/erlang -progname erl -- -home /opt/couchbase -- -smp enable -setcookie nocookie -kernel inet_dist_listen_min 21100 inet_dist_listen_max 21299 error_logger false -sasl sasl_error_logger false -nouser -run child_erlang child_start ns_bootstrap -- -smp enable -couch_ini /opt/couchbase/etc/couchdb/default.ini /opt/couchbase/etc/couchdb/default.d/capi.ini /opt/couchbase/etc/couchdb/default.d/geocouch.ini /opt/couchbase/etc/couchdb/local.ini
999       9920  1.1  0.1 595164 105572 ?       Sl   Feb01 500:35 /opt/couchbase/bin/indexer -vbuckets=1024 -cluster=127.0.0.1:8091 -adminPort=9100 -scanPort=9101 -httpPort=9102 -streamInitPort=9103 -streamCatchupPort=9104 -streamMaintPort=9105 -storageDir=/storage/1/couchbase/index/@2i

具有高内存使用率的框:

USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
999      20812 71.1 85.0 48014804 46535824 ?   Ssl   2017 568761:06 /opt/couchbase/bin/memcached -C /opt/couchbase/var/lib/couchbase/config/memcached.json
999      20690 52.8  5.2 3564552 2863852 ?     Ssl   2017 422691:18 /opt/couchbase/lib/erlang/erts-5.10.4.0.0.1/bin/beam.smp -A 16 -sbt u -P 327680 -K true -swt low -MMmcs 30 -e102400 -- -root /opt/couchbase/lib/erlang -progname erl -- -home /opt/couchbase -- -smp enable -setcookie nocookie -kernel inet_dist_listen_min 21100 inet_dist_listen_max 21299 error_logger false -sasl sasl_error_logger false -nouser -run child_erlang child_start ns_bootstrap -- -smp enable -couch_ini /opt/couchbase/etc/couchdb/default.ini /opt/couchbase/etc/couchdb/default.d/capi.ini /opt/couchbase/etc/couchdb/default.d/geocouch.ini /opt/couchbase/etc/couchdb/local.ini
999      21421  0.8  0.4 2914624 242084 ?      Sl    2017 6439:31 /opt/couchbase/bin/cbq-engine --datastore=http://127.0.0.1:8091 --http=:8093 --configstore=http://127.0.0.1:8091 --enterprise=false
999      21395  4.0  0.4 1063508 223060 ?      Sl    2017 32088:04 /opt/couchbase/bin/projector -kvaddrs=127.0.0.1:11210 -adminport=:9999 127.0.0.1:8091

enter image description here

1 个答案:

答案 0 :(得分:1)

乍一看,对我来说似乎还是可以的。不知道您正在运行哪种工作负载就很难分辨。 Memcached是内存缓存。

也许具有更多可用内存的节点最近处理了当前正在缓存的更多内存消耗工作负载。

也许消耗更多内存的节点只运行了更长的时间(memcached将对象永久保留在内存中,直到它们没有达到内存配额而被逐出为止)。

也许您的150个客户端无法充分利用您的21个群集节点(为什么每7,14个客户端1个节点?)