Check firewall settings for incoming requests.
Regards,
Rao
On 3 Jan 2015 23:34, "Chamila Wijayarathna"
wrote:
> Hello all,
>
> I have a cassandra node at a machine. When I access cqlsh from the same
> machne it works properly.
>
> But when I tried to connect to it's cqlsh using "192.x.x.x" from
Hi All,
I have designed a column family
prodgroup text, prodid int, status int, , PRIMARY KEY ((prodgroup), prodid,
status)
The data model is to cater
- Get list of products from the product group
- get list of products for a given range of ids
- Get details of a specific product
-
Hi All,
I have designed a column family
prodgroup text, prodid int, status int, , PRIMARY KEY ((prodgroup), prodid,
status)
The data model is to cater
- Get list of products from the product group
- get list of products for a given range of ids
- Get details of a specific product
-
.x Documentation"
>> informs that cassandra allows to query on a column when it is indexed.
>>
>> Regards,
>> Seenu.
>>
>> On Mon, Jan 5, 2015 at 5:14 PM, Nagesh wrote:
>>
>>> Hi All,
>>>
>>> I have designed a column family
>&
Sharding is a type of database partitioning. The sweet spot of cassandra is
to supporting fast random reads. This is achieved by grouping data based on
a partition key and replicate to different nodes. The querying should be in
such a way to look up data of one partition at a time.
Grouping data b