Hi Amit,

That's correct, there is no "order by" support in the Java API, because
this is an arbitrarily complex operation. Imagine a table with a trillion
rows, and asking for "order by" from a Java client. It would have to either
download and sort the entire table on your client node (which is
infeasible) or would have to somehow ask the servers to perform a huge
shuffle and sort, which isn't something Kudu's designed to do.

The recommendation is:
- if you're just needing to sort small sets of rows, then grab the whole
result set and use a normal Java-based sort (Collections.sort)
- if you're needing to sort a large number of rows, use something like
Impala or Spark SQL to perform the sort.

-Todd

On Wed, Aug 31, 2016 at 8:06 AM, Amit Adhau <amit.ad...@globant.com> wrote:

> Hi Kudu Team,
>
> Using Java Kudu API, we want to sort the data on kudu table based on table
> column, but we have not found any option in API for the same.
> Can you please help us on the same.
>
> --
> Thanks & Regards,
>
> *Amit Adhau* | Data Architect
>
> *GLOBANT* | IND:+91 9821518132
>
> [image: Facebook] <https://www.facebook.com/Globant>
>
> [image: Twitter] <http://www.twitter.com/globant>
>
> [image: Youtube] <http://www.youtube.com/Globant>
>
> [image: Linkedin] <http://www.linkedin.com/company/globant>
>
> [image: Pinterest] <http://pinterest.com/globant/>
>
> [image: Globant] <http://www.globant.com/>
>
> The information contained in this e-mail may be confidential. It has been
> sent for the sole use of the intended recipient(s). If the reader of this
> message is not an intended recipient, you are hereby notified that any
> unauthorized review, use, disclosure, dissemination, distribution or
> copying of this communication, or any of its contents,
> is strictly prohibited. If you have received it by mistake please let us
> know by e-mail immediately and delete it from your system. Many thanks.
>
>
>
> La información contenida en este mensaje puede ser confidencial. Ha sido
> enviada para el uso exclusivo del destinatario(s) previsto. Si el lector de
> este mensaje no fuera el destinatario previsto, por el presente queda Ud.
> notificado que cualquier lectura, uso, publicación, diseminación,
> distribución o copiado de esta comunicación o su contenido está
> estrictamente prohibido. En caso de que Ud. hubiera recibido este mensaje
> por error le agradeceremos notificarnos por e-mail inmediatamente y
> eliminarlo de su sistema. Muchas gracias.
>
>


-- 
Todd Lipcon
Software Engineer, Cloudera

Reply via email to