Internal error processing get_slice
-----------------------------------
Key: CASSANDRA-1346
URL: https://issues.apache.org/jira/browse/CASSANDRA-1346
Project: Cassandra
Issue Type: Bug
Components: Core
Affects Versions: 0.6.3
Environment: Linux
cat /etc/issue: Debian GNU/Linux 5.0
uname -a: Linux server.hp 2.6.26-2-amd64 #1 SMP Sun Jun 20 20:16:30 UTC 2010
x86_64 GNU/Linux
Reporter: Sasha1024
I get the "Internal error processing get_slice" error.
Here are parameters of get_slice call:
{code}
string(8) "Torrents"
string(40) "e6c797bdcea982877f74cd41f257427bbe31b189"
object(cassandra_ColumnParent)#1709 (2) {
["column_family"]=>
string(7) "Scrapes"
["super_column"]=>
NULL
}
object(cassandra_SlicePredicate)#1710 (2) {
["column_names"]=>
NULL
["slice_range"]=>
object(cassandra_SliceRange)#1711 (4) {
["start"]=>
string(0) ""
["finish"]=>
string(0) ""
["reversed"]=>
bool(false)
["count"]=>
int(100000)
}
}
int(1)
{code}
Here is excerpt from storage-conf.xml:
{code}
<Keyspace Name="Torrents">
<!--...-->
<ColumnFamily Name="Scrapes" ColumnType="Super" CompareWith="BytesType"
CompareSubcolumnsWith="BytesType" />
<!--...-->
<ReplicaPlacementStrategy>org.apache.cassandra.locator.RackUnawareStrategy</ReplicaPlacementStrategy>
<ReplicationFactor>1</ReplicationFactor>
<EndPointSnitch>org.apache.cassandra.locator.EndPointSnitch</EndPointSnitch>
</Keyspace>
{code}
Here is var_dump of exception:
{code}
TApplicationException Object
(
[message:protected] => Internal error processing get_slice
[string:Exception:private] =>
[code:protected] => 6
[file:protected] =>
/home/team/TORRENTS_SE/include/Tools/phpcassa/thrift/packages/cassandra/Cassandra.php
[line:protected] => 206
[trace:Exception:private] => Array
(
[0] => Array
(
[file] =>
/home/team/TORRENTS_SE/include/Tools/phpcassa/thrift/packages/cassandra/Cassandra.php
[line] => 169
[function] => recv_get_slice
[class] => CassandraClient
[type] => ->
[args] => Array
(
)
)
[1] => Array
(
[file] =>
/home/team/TORRENTS_SE/include/Tools/CassandraTools.php
[line] => 99
[function] => get_slice
[class] => CassandraClient
[type] => ->
[args] => Array
(
[0] => Torrents
[1] => e6c797bdcea982877f74cd41f257427bbe31b189
[2] => cassandra_ColumnParent Object
(
[column_family] => Scrapes
[super_column] =>
)
[3] => cassandra_SlicePredicate Object
(
[column_names] =>
[slice_range] => cassandra_SliceRange Object
(
[start] =>
[finish] =>
[reversed] =>
[count] => 100000
)
)
[4] => 1
)
)
[2] => Array
(
[file] =>
/home/team/TORRENTS_SE/data/bin/cassandra-to-sphinx.php
[line] => 10
[function] => GetColumns
[class] => CassandraTools
[type] => ::
[args] => Array
(
[0] => Array
(
[ColumnFamily] => Scrapes
[RowKey] =>
e6c797bdcea982877f74cd41f257427bbe31b189
)
[1] => Array
(
[count] => 100000
)
)
)
)
[previous:Exception:private] =>
)
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.