gpt4 book ai didi

cassandra - 无法使用bin/cassandra启动Cassandra数据库

转载 作者:行者123 更新时间:2023-12-03 11:40:16 25 4
gpt4 key购买 nike

我有带cassandra 1.1.3(安装了tarball)的Ubuntu 12.04,当我尝试启动cassandra时,得到以下信息:

user@ubuntu:~/apache-cassandra-1.1.3/bin$ sudo ./cassandra -f
xss = -ea -javaagent:./../lib/jamm-0.2.5.jar -XX:+UseThreadPriorities -XX:ThreadPriorityPolicy=42 -Xms4G -Xmx4G -Xmn800M -XX: +HeapDumpOnOutOfMemoryError -Xss128k
user@ubuntu:~/apache-cassandra-1.1.3/bin$

根据cassandra文档,输出看起来不符合预期:
The service should start in the foreground and log gratuitously to 
standard-out. Assuming you don't see messages with scary words like
"error", or "fatal", or anything that looks like a Java stack trace,
then chances are you've succeeded.

那么,有什么问题呢?

最佳答案

该问题可能是由使用OpenJDK引起的,如Cassandra错误报告中所述,但是请在此处查看注释,以了解在Sun / Oracle和其他JVM上出现此问题的情况:

  • https://issues.apache.org/jira/browse/CASSANDRA-2441

  • 如果无法安装Oracle JVM,请尝试在 conf/cassandra-env.sh配置脚本中更改 堆栈大小。在第185行附近查找以下部分,并将 -Xss180k更改为更高的值。
    if [ "`uname`" = "Linux" ] ; then
    # reduce the per-thread stack size to minimize the impact of Thrift
    # thread-per-client. (Best practice is for client connections to
    # be pooled anyway.) Only do so on Linux where it is known to be
    # supported.
    # u34 and greater need 180k
    JVM_OPTS="$JVM_OPTS -Xss180k"
    fi
    echo "xss = $JVM_OPTS"

    在Rackspace和Amazon的Ubuntu服务器上测试安装时,我已成功使用280k。

    根据以下评论中的报告,我要么建议以 -Xss200k开头,以20k的增量增加堆栈大小,直到Cassandra正确启动。请注意,也可以删除此选项并使用每个线程的默认堆栈大小,但是请注意,这将对内存消耗产生影响。

    关于cassandra - 无法使用bin/cassandra启动Cassandra数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11901421/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com