gpt4 book ai didi

php - 迁移 cassandra 和 phpcassa

转载 作者:可可西里 更新时间:2023-10-31 23:40:15 24 4
gpt4 key购买 nike

我正在尝试将我的旧版本从 cassandra 1.2.8 迁移到 cassandra 2.1,我使用 phpcassa 0.8,当我迁移 cassandra 时一切正常,除了我无法使用:

$columnFamily->get($key);

我可以完美地写作并做到这一点:

$columnFamily->execute_cql_query($query);

但是如果我尝试使用 get() 读取数据,我会收到以下错误:

Error performing get_slice on 154.65.97.898:9160: exception 'cassandra_UnavailableException' in /var/www-zend/order/library/phpcassa/thrift/Thrift.php:574 

也许有人可以帮助我解决这个错误。

谢谢!

最佳答案

我解决了这个问题:

我刚刚将 consistencyLevel 更改为 ONE,它起作用了,例如:

不起作用:

$consistencyLevel = cassandra_ConsistencyLevel::QUORUM;
$columnFamily->get($key, $columnNames, '', '', false, $limit, null, $consistencyLevel);

工作:

$consistencyLevel = cassandra_ConsistencyLevel::ONE;
$columnFamily->get($key, $columnNames, '', '', false, $limit, null, $consistencyLevel);

我不知道为什么,但 casandra 不允许我使用 consistencyLevel QUORUM 进行 get()。

也许有人可以向我解释一下。

谢谢!

关于php - 迁移 cassandra 和 phpcassa,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26060060/

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