How to build indexes?

2013-07-04 Thread Tony Anecito
Hi All, I updated a table with a secondary index. I discovered using CLI describe that the index was not built. How do I build an index after I have altered an existing table with data? I looked at nodetool and cli and saw no command that had the word build index associated with it. And most o

Re: How to build indexes?

2013-07-05 Thread Sylvain Lebresne
Creating a secondary index will trigger the build of that index automatically. However, that built is done asynchronously and can take some time if you have lots of existing data to index. To know when that building is done, you can check the nodes log for an entry looking like "Index build of co

Re: How to build indexes?

2013-07-05 Thread Tony Anecito
to Sent: Friday, July 5, 2013 3:12 AM Subject: Re: How to build indexes? Creating a secondary index will trigger the build of that index automatically. However, that built is done asynchronously and can take some time if you have lots of existing data to index. To know when that building is

Re: How to build indexes?

2013-07-05 Thread Tony Anecito
12 AM Subject: Re: How to build indexes? Creating a secondary index will trigger the build of that index automatically. However, that built is done asynchronously and can take some time if you have lots of existing data to index. To know when that building is done, you can check the nodes log