ORDER BY in Riak TS
The ORDER BY statement is used with SELECT
to sort results by one or more columns in ascending or descending order. ORDER BY
is useful for operations such as returning the most recent results in a set.
This document shows how to run various queries using ORDER BY
. See the guidelines for more information on limitations and rules for queries in Riak TS.
ORDER BY
uses on-disk query buffer to prevent overload, which adds some overhead and increases the query latency.
You may adjust various parameters in riak.conf depending on how much memory your riak nodes will have, including max_running_fsms
, max_quanta_span
, max_concurrent_queries
. It is also worth noting that max_returned_data_size
is calculated differently for ORDER BY statements; you can read more about that here. All of these settings impact the maximum size of data you can retrieve at one time, and it is important to understand your environmental limitations or you run the risk of an out-of-memory condition.
However, the most effective means of speeding up your ORDER BY
queries is to place the query buffer directory (timeseries_query_buffers_root_path
) on fast storage or in memory-backed /tmp directory.
Overview
The ORDER BY statement sorts results according to the specified column(s) and any optional keywords or clauses used.
ORDER BY
has the following syntax:
ORDER BY column_name [ ASC | DESC ] [ NULLS { FIRST | LAST } ] [, ...]
During an ORDER BY
sort if two rows are equal according to the leftmost column, they are compared according to the next column, and so on.
Options
The following keywords can be appended to ORDER BY
to further sort results:
ASC
Sort results in ascending order. This is the default if no order is specified.
NULLS LAST
is the default when ASC
is specified or implied.
DESC
Sort results in descending order.
NULLS FIRST
is the default when DESC
is specified.
NULLS FIRST
Null values will be sorted before all non-null values.
NULLS LAST
Null values will be sorted after all non-null values.
LIMIT
Only return a specified number of results.
OFFSET
Skip a specified number of results first and then return remaining results.
Before you run SELECT
you must ensure the node issuing the query has adequate memory to receive the response. If the returning rows do not fit into the memory of the requesting node, the node is likely to fail.
Examples
The following table defines a schema for sensor data.
CREATE TABLE SensorData
(
id SINT64 NOT NULL,
time TIMESTAMP NOT NULL,
value DOUBLE,
PRIMARY KEY (
(id, QUANTUM(time, 15, 'm')),
id, time
)
)
Ascending
Sort results between given times, by time, in ascending order:
SELECT id, time, value FROM SensorData WHERE id = 2 AND time > '2016-11-28 06:00:00' AND time < '2016-11-28 06:10:10' ORDER BY time ASC;
Alternatively, because ORDER BY
sorts in ascending by default:
SELECT id, time, value FROM SensorData WHERE id = 2 AND time > '2016-11-28 06:00:00' AND time < '2016-11-28 06:10:10' ORDER BY time;
Descending
Sort results between given times, by time, in descending order:
SELECT id, time, value FROM SensorData WHERE id = 2 AND time > '2016-11-28 06:00:00' AND time < '2016-11-28 06:10:10' ORDER BY time DESC;
Multiple Columns
Sort results by multiple columns:
SELECT id, time, value FROM SensorData WHERE id = 2 AND time > '2016-11-28 06:00:00' AND time < '2016-11-28 06:10:10' ORDER BY value DESC, time ASC LIMIT 5;
Null Values First
Sort results and return null values first:
SELECT id, time, value FROM SensorData WHERE id = 2 AND time > '2016-11-28 06:00:00' AND time < '2016-11-28 06:10:10' ORDER BY time DESC, id ASC, value NULLS FIRST;
Null Values Last
Sort results and return null values last:
SELECT id, time, value FROM SensorData WHERE id = 2 AND time > '2016-11-28 06:00:00' AND time < '2016-11-28 06:10:10' ORDER BY time DESC, id ASC, value NULLS LAST;
Limit Results
Sort results between given times, by time, in ascending order and only return 5 results:
SELECT id, time, value FROM SensorData WHERE id = 2 AND time > '2016-11-28 06:00:00' AND time < '2016-11-28 06:10:10' ORDER BY time ASC LIMIT 5;
Offset Results
Skip first 2 results and return the results after:
SELECT id, time, value FROM SensorData WHERE id = 2 AND time > '2016-11-28 06:00:00' AND time < '2016-11-28 06:10:10' ORDER BY time ASC LIMIT 5 OFFSET 2;