Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8357601
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T10:31:50+00:00 2026-06-09T10:31:50+00:00

I want to programmatically examine all the rows in a large cassandra table, and

  • 0

I want to programmatically examine all the rows in a large cassandra table, and was hoping to use CQL. I know I could do this with thrift, getting 10,000 (or so) rows at a time with multiget and handing the last retrieved key into to the next multiget call. But I have looked through all the documentation on CQL select, and there doesn’t seem to be a way to do this. I have resorted to setting the select limit higher and higher, and setting the timeout higher and higher to match it.

Is there an undocumented way to hand in a starting point to CQL select, or do I just need to break down and rewrite my code using the thrift API?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T10:31:51+00:00Added an answer on June 9, 2026 at 10:31 am

    Turns out greater than and less than have a very non-intuitive, but useful, behavior (at least in CQL2, I haven’t check CQL3 yet). It actually compares the tokens not the key values. Here is an example:

    > create table users (KEY varchar PRIMARY KEY, data varchar);
    > insert into users (KEY, 'data') values ('1', 'one');
    > insert into users (KEY, 'data') values ('2', 'two');
    > insert into users (KEY, 'data') values ('3', 'three');
    > insert into users (KEY, 'data') values ('4', 'four');
    > select * from users;
       3 | three
       2 |   two
       1 |   one
       4 |  four
    > select * from users LIMIT 1;
       3 | three
    > select * from users WHERE KEY > '3' LIMIT 1;
       2 |  two
    > select * from users WHERE KEY > '2' LIMIT 1;
       1 |  one
    > select * from users WHERE KEY > '1' LIMIT 1;
       4 | four
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My situation is like this, I want to programmatically take a print screen of
I want to programmatically deselect the currently selected row (or rows) in a JTable.
I want to programmatically find the the foreign keys on a particular InnoDB table
I want to programmatically create a new column in an MS Access table. I've
When I insert a DVD or CD, I want to programmatically know what type
The question about says it all. I want to programmatically tell the default launcher/home
I want to programmatically load the MPEG-4 H264 video format. I want to know
I want to programmatically add references to Visual Studio projects. This is for creating
I want to programmatically know whether a com assembly is either a 32 bit
I have a list definition in my solution, and i want programmatically be able

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.