Return-Path: X-Original-To: apmail-cassandra-dev-archive@www.apache.org Delivered-To: apmail-cassandra-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3CCC6D9ED for ; Mon, 18 Mar 2013 14:30:34 +0000 (UTC) Received: (qmail 52051 invoked by uid 500); 18 Mar 2013 14:30:33 -0000 Delivered-To: apmail-cassandra-dev-archive@cassandra.apache.org Received: (qmail 51981 invoked by uid 500); 18 Mar 2013 14:30:32 -0000 Mailing-List: contact dev-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list dev@cassandra.apache.org Received: (qmail 51899 invoked by uid 99); 18 Mar 2013 14:30:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Mar 2013 14:30:32 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of pushkar.prasad@airtightnetworks.net designates 64.78.61.187 as permitted sender) Received: from [64.78.61.187] (HELO mail21.intermedia.net) (64.78.61.187) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Mar 2013 14:30:26 +0000 Received: from airtightnetworks.net (unknown [115.113.149.71]) (Authenticated sender: smtp@airtightnetworks.net) by mail21.intermedia.net (Postfix) with ESMTPA id 9A7FB1B3F for ; Mon, 18 Mar 2013 07:30:04 -0700 (PDT) Received: from ([127.0.0.1]) with MailEnable ESMTP; Mon, 18 Mar 2013 20:04:35 +0530 From: "Pushkar Prasad" To: Subject: Unable to fetch large amount of rows Date: Mon, 18 Mar 2013 19:59:54 +0530 Message-ID: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_00AD_01CE2413.2C4A04B0" X-Mailer: Microsoft Office Outlook 11 Thread-Index: Ac4j5M3MgWnMcHMbQkCyWu+bf/IxeQAACPqw X-MimeOLE: Produced By Microsoft MimeOLE V6.1.7600.16385 X-Virus-Checked: Checked by ClamAV on apache.org ------=_NextPart_000_00AD_01CE2413.2C4A04B0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi, I have following schema: TimeStamp MACAddress Data Transfer Data Rate LocationID PKEY is (TimeStamp, MACAddress). That means partitioning is on TimeStamp, and data is ordered by MACAddress, and stored together physically (let me know if my understanding is wrong). I have 1000 timestamps, and for each timestamp, I have 500K different MACAddress. When I run the following query, I get RPC Timeout exceptions: Select * from db_table where Timestamp='...' >From my understanding, this should give all the rows with just one disk seek, as all the records for a particular timeStamp. This should be very quick, however, clearly, that doesn't seem to be the case. Is there something I am missing here? Your help would be greatly appreciated. Thanks PP ------=_NextPart_000_00AD_01CE2413.2C4A04B0--