24 KiB
+++ title = "Query Language" weight = 6 nav = [ "Conventions", "Arguments and Types", "Write Operations", "Read Operations", ] +++
Query Language
Overview
This section will provide a detailed reference and examples for the Pilosa Query Language (PQL). All PQL queries operate on a single index and are passed to Pilosa through the /index/INDEX_NAME/query endpoint. You may pass multiple PQL queries in a single request by simply concatenating the queries together - a space is not needed. The results format is always:
{"results":[...]}
There will be one item in the results array for each PQL query in the request. The type of each item in the array will depend on the type of query - each query in the reference below lists its result type.
Conventions
- Angle Brackets
<>denote required arguments - Square Brackets
[]denote optional arguments - UPPER_CASE denotes a descriptor that will need to be filled in with a concrete value (e.g.
ATTR_NAME,STRING)
Examples
Before running any of the example queries below, follow the instructions in the Getting Started section to set up an index and fields, and to populate them with some data.
The examples just show the PQL quer(ies) needed - to run the query Set(10, stargazer=1) against a server using curl, you would:
curl localhost:10101/index/repository/query \
-X POST \
-d 'Set(10, stargazer=1)'
{"results":[true]}
Arguments and Types
fieldThe field specifies on which Pilosa field the query will operate. Valid field names are lower case strings; they start with an alphanumeric character, and contain only alphanumeric characters and_-. They must be 64 characters or less in length.TIMESTAMPThis is a timestamp in the following formatYYYY-MM-DDTHH:MM(e.g. 2006-01-02T15:04)UINTAn unsigned integer (e.g. 42839)BOOLA boolean value,trueorfalseATTR_NAMEMust be a valid identifier[A-Za-z][A-Za-z0-9._-]*ATTR_VALUECan be a string, float, integer, or bool.CALLAny queryROW_CALLAny query which returns a row, such asRow,Union,Difference,Xor,Intersect,Not[]ATTR_VALUEDenotes an array ofATTR_VALUEs. (e.g.["a", "b", "c"])
Write Operations
Set
Spec:
Set(<COLUMN>, <FIELD>=<ROW>, [TIMESTAMP])
Description:
Set assigns a value of 1 to a bit in the binary matrix, thus associating the given row (the <ROW> value) in the given field with the given column.
While using "Set" in PQL is a convenient way to get familiar with Pilosa, it's almost always better to use the import functionality in the Go, Java, and Python clients to ingest lots of data.
Result Type: boolean
A return value of true indicates that the bit was changed to 1.
A return value of false indicates that the bit was already set to 1 and nothing changed.
Examples:
Set the bit at row 1, column 10:
Set(10, stargazer=1)
{"results":[true]}
This sets a bit in the stargazer field, representing that the user with id=1 has starred the repository with id=10.
Set also supports providing a timestamp. To write the date that a user starred a repository:
Set(10, stargazer=1, 2016-01-01T00:00)
{"results":[true]}
Set multiple bits in a single request:
Set(10, stargazer=1) Set(20, stargazer=1) Set(10, stargazer=2) Set(30, stargazer=2)
{"results":[false,true,true,true]}
Set the field "pullrequests" to integer value 2 at column 10:
Set(10, pullrequests=2)
{"results":[true]}
SetRowAttrs
Spec:
SetRowAttrs(<FIELD>, <ROW>,
<ATTR_NAME=ATTR_VALUE>,
[ATTR_NAME=ATTR_VALUE ...])
Description:
SetRowAttrs associates arbitrary key/value pairs with a row in a field. Setting a value of null, without quotes, deletes an attribute.
Result Type: null
SetRowAttrs queries always return null upon success.
Examples:
Set attributes username and active on row 10:
SetRowAttrs(stargazer, 10, username="mrpi", active=true)
{"results":[null]}
Set username value and active status for user 10. These are arbitrary key/value pairs which have no meaning to Pilosa. You can see the attributes you've set on a row with a Row query like so Row(stargazer=10).
Delete attribute username on row 10:
SetRowAttrs(stargazer, 10, username=null)
{"results":[null]}
SetColumnAttrs
Spec:
SetColumnAttrs(<COLUMN>,
<ATTR_NAME=ATTR_VALUE>,
[ATTR_NAME=ATTR_VALUE ...])
Description:
SetColumnAttrs associates arbitrary key/value pairs with a column in an index.
Result Type: null
SetColumnAttrs queries always return null upon success. Setting a value of null, without quotes, deletes an attribute.
Examples:
Set attributes stars, url, and active on column 10:
SetColumnAttrs(10, stars=123, url="http://projects.pilosa.com/10", active=true)
{"results":[null]}
Set url value and active status for project 10. These are arbitrary key/value pairs which have no meaning to Pilosa.
ColumnAttrs can be requested by adding the URL parameter columnAttrs=true to a query. For example:
curl localhost:10101/index/repository/query?columnAttrs=true -XPOST -d 'Row(stargazer=1) Row(stargazer=2)'
{
"results":[
{"attrs":{},"cols":[10,20]},
{"attrs":{},"cols":[10,30]}
],
"columnAttrs":[
{"id":10,"attrs":{"active":true,"stars":123,"url":"http://projects.pilosa.com/10"}},
{"id":20,"attrs":{"active":false,"stars":456,"url":"http://projects.pilosa.com/30"}}
]
}
In this example, ColumnAttrs have been set on columns 10 and 20, but not column 30. The relevant attributes are all returned in a single columnAttrs list. See the query index section for more information.
Delete the url attribute on column 10:
SetColumnAttrs(10, url=null)
{"results":[null]}
Clear
Spec:
Clear(<COLUMN>, <FIELD>=<ROW>)
Description:
Clear assigns a value of 0 to a bit in the binary matrix, thus disassociating the given row in the given field from the given column.
Note that clearing a column on a time field will remove all data for that column.
Result Type: boolean
A return value of true indicates that the bit was toggled from 1 to 0.
A return value of false indicates that the bit was already set to 0 and nothing changed.
Examples:
Clear the bit at row 1 and column 10 in the stargazer field:
Clear(10, stargazer=1)
{"results":[true]}
This represents removing the relationship between the user with id=1 and the repository with id=10.
ClearRow
Spec:
ClearRow(<FIELD>=<ROW>)
Description:
ClearRow sets all bits to 0 in a given row of the binary matrix, thus disassociating the given row in the given field from all columns.
Result Type: boolean
A return value of true indicates that at least one column was toggled from 1 to 0.
A return value of false indicates that all bits in the row were already 0 and nothing changed.
Examples:
Clear all bit in row 1 in the stargazer field:
ClearRow(stargazer=1)
{"results":[true]}
This represents removing the relationship between the user with id=1 and all repositories.
Store
Spec:
Store(<ROW_CALL>, <FIELD>=<ROW>)
Description:
Store writes the results of <ROW_CALL> to the specified row. If the row already exists, it will be replaced. The destination field must be of field type set.
Result Type: boolean
Upon success, this method always returns true. A future version of Pilosa may use this boolean result to indicate whether or not the data in the destination row was changed by the Store call.
Examples:
Store the contents of stargazer row 1 into stargazer row 2:
Store(Row(stargazer=1), stargazer=2)
{"results":[true]}
Store the results of the intersection of stargazer rows 10 and 11 into stargazer row 20.
Store(Intersect(Row(stargazer=10), Row(stargazer=11)), stargazer=20)
{"results":[true]}
Read Operations
Row
Spec:
Row(<FIELD>=<ROW>)
Description:
Row retrieves the indices of all the columns in a row. It also retrieves any attributes set on that row.
Result Type: object with attrs and columns.
e.g. {"attrs":{"username":"mrpi","active":true},"columns":[10, 20]}
Examples:
Query all columns with a bit set in row 1 of the field stargazer (repositories that are starred by user 1):
Row(stargazer=1)
{"attrs":{"username":"mrpi","active":true},"columns":[10, 20]}
- attrs are the attributes for user 1
- columns are the repositories which user 1 has starred.
Row (Range)
Spec:
Row(<FIELD>=<ROW>, from=<TIMESTAMP>, to=<TIMESTAMP>)
Description:
Similar to Row, but only returns bits which were set with timestamps between the given from (inclusive) and to (exclusive) timestamps. Both from and to parameters are optional. The default for to timestamp is current time + 1 day. If a later end timestamp is required, specify it explicitly.
Result Type: object with attrs and bits
Examples:
Query all columns with a bit set in row 1 of a field (repositories that a user has starred), within a date range:
Row(stargazer=1, from='2010-01-01T00:00', to='2017-03-02T03:00')
{{"attrs":{},"columns":[10]}
This example assumes timestamps have been set on some bits.
- columns are repositories which were starred by user 1 in the time range 2010-01-01 to 2017-03-02.
Row (BSI)
Spec:
Row([<COMPARISON_VALUE> <COMPARISON_OPERATOR>] <FIELD> <COMPARISON_OPERATOR> <COMPARISON_VALUE>)
Description:
The Row query is overloaded to work on integer values as well as timestamp values.
Returns bits that are true for the comparison operator.
Result Type: object with attrs and columns
Examples:
In our source data, commitactivity was counted over the last year.
The following greater-than Row query returns all columns with a field value greater than 100 (repositories having more than 100 commits):
Row(commitactivity > 100)
{{"attrs":{},"columns":[10]}
- columns are repositories which had at least 100 commits in the last year.
BSI range queries support the following operators:
| Operator | Name | Value |
|---|---|---|
> |
greater-than, GT | integer |
< |
less-than, LT | integer |
<= |
less-than-or-equal-to, LTE | integer |
>= |
greater-than-or-equal-to, GTE | integer |
== |
equal-to, EQ | integer |
!= |
not-equal-to, NEQ | integer or null |
<, and <= can be chained together to represent a bounded interval. For example:
Row(50 < commitactivity < 150)
{{"attrs":{},"columns":[10]}
As of Pilosa 1.0, the "between" syntax Row(frame=stats, commitactivity >< [50, 150]) is no longer supported.
Union
Spec:
Union([ROW_CALL ...])
Description:
Union performs a logical OR on the results of all ROW_CALL queries passed to it.
Result Type: object with attrs and bits
attrs will always be empty
Examples:
Query columns with a bit set in either of two rows (repositories that are starred by either of two users):
Union(Row(stargazer=1), Row(stargazer=2))
{"attrs":{},"columns":[10, 20, 30]}
- columns are repositories that were starred by user 1 OR user 2
Intersect
Spec:
Intersect(<ROW_CALL>, [ROW_CALL ...])
Description:
Intersect performs a logical AND on the results of all ROW_CALL queries passed to it.
Result Type: object with attrs and columns
attrs will always be empty
Examples:
Query columns with a bit set in both of two rows (repositories that are starred by both of two users):
Intersect(Row(stargazer=1), Row(stargazer=2))
{"attrs":{},"columns":[10]}
- columns are repositories that were starred by user 1 AND user 2
Difference
Spec:
Difference(<ROW_CALL>, [ROW_CALL ...])
Description:
Difference returns all of the bits from the first ROW_CALL argument passed to it, without the bits from each subsequent ROW_CALL.
Result Type: object with attrs and columns
attrs will always be empty
Examples:
Query columns with a bit set in one row and not another (repositories that are starred by one user and not another):
Difference(Row(stargazer=1), Row(stargazer=2))
{"results":[{"attrs":{},"columns":[20]}]}
- columns are repositories that were starred by user 1 BUT NOT user 2
Query for the opposite difference:
Difference(Row(stargazer=2), Row(stargazer=1))
{"attrs":{},"columns":[30]}
- columns are repositories that were starred by user 2 BUT NOT user 1
Xor
Spec:
Xor(<ROW_CALL>, [ROW_CALL ...])
Description:
Xor performs a logical XOR on the results of each ROW_CALL query passed to it.
Result Type: object with attrs and columns
attrs will always be empty
Examples:
Query columns with a bit set in exactly one of two rows (repositories that are starred by only one of two users):
Xor(Row(stargazer=2), Row(stargazer=1))
{"results":[{"attrs":{},"columns":[20,30]}]}
- columns are repositories that were starred by user 1 XOR user 2 (user 1 or user 2, but not both)
Not
Spec:
Not(<ROW_CALL>)
Description:
Not returns the inverse of all of the bits from the ROW_CALL argument. The Not query requires that trackExistence has been enabled on the Index.
Result Type: object with attrs and columns
attrs will always be empty
Examples:
Query existing columns that do not have a bit set in the given row.
Not(Row(stargazer=1))
{"results":[{"attrs":{},"columns":[30]}]}
- columns are repositories that were not starred by user 1
Count
Spec:
Count(<ROW_CALL>)
Description:
Returns the number of set bits in the ROW_CALL passed in.
Result Type: int
Examples:
Query the number of bits set in a row (the number of repositories a user has starred):
Count(Row(stargazer=1))
{"results":[1]}
- Result is the number of repositories that user 1 has starred.
TopN
Spec:
TopN(<FIELD>, [ROW_CALL], [n=UINT],
[attrName=<ATTR_NAME>, attrValues=<[]ATTR_VALUE>])
Description:
Return the id and count of the top n rows (by count of bits) in the field.
The attrName and attrValues arguments work together to only return rows which
have the attribute specified by attrName with one of the values specified in
attrValues.
Result Type: array of key/count objects
Caveats:
- Performing a TopN() query on a field with cache type ranked will return the top rows sorted by count in descending order.
- Fields with cache type lru will maintain an LRU (Least Recently Used replacement policy) cache, thus a TopN query on this type of field will return rows sorted in order of most recently set bit.
- The field's cache size determines the number of sorted rows to maintain in the cache for purposes of TopN queries. There is a tradeoff between performance and accuracy; increasing the cache size will improve accuracy of results at the cost of performance.
- Once full, the cache will truncate the set of rows according to the field option CacheSize. Rows that straddle the limit and have the same count will be truncated in no particular order.
- The TopN query's attribute filter is applied to the existing sorted cache of rows. Rows that fall outside of the sorted cache range, even if they would normally pass the filter, are ignored.
See field creation for more information about the cache.
Examples:
Basic TopN query:
TopN(stargazer)
{"results":[[{"id":1240,"count":102},{"id":4734,"count":100},{"id":12709,"count":93},...]]}
idis a row ID (user ID)countis a count of columns (repositories)- Results are the number of bits set in the corresponding row (repositories that each user starred) in descending order for all rows (users) in the stargazer field. For example user 1240 starred 102 repositories, user 4734 starred 100 repositories, user 12709 starred 93 repository.
Limit the number of results:
TopN(stargazer, n=2)
{"results":[[{"id":1240,"count":102},{"id":4734,"count":100}]]}
- Results are the top two rows (users) sorted by number of bits set (repositories they've starred) in descending order.
Filter based on an existing row:
TopN(stargazer, Row(language=1), n=2)
{"results":[[{"id":1240,"count":35},{"id":7508,"count":32}]]}
- Results are the top two users (rows) sorted by the number of bits set in the intersection with row 1 of the language field (repositories that they've starred which are written in language 1).
Filter based on attributes:
TopN(stargazer, n=2, attrName=active, attrValues=[true])
{"results":[[{"id":10,"count":1},{"id":13,"count":1}]]}
- Results are the top two users (rows) which have the "active" attribute set to "true", sorted by the number of bits set (repositories that they've starred).
Min
Spec:
Min([ROW_CALL], field=<FIELD>)
Description:
Returns the minimum value of all BSI integer values in this field. If the optional Row call is supplied, only columns with set bits are considered, otherwise all columns are considered.
Result Type: object with the min and count of columns containing the min value.
Examples:
Query the minimum value of a field (minimum size of all repositories):
Min(field="diskusage")
{"value":4,"count":2}
- Result is the smallest value (repository size in kilobytes, here), plus the count of columns with that value.
Max
Spec:
Max([ROW_CALL], field=<FIELD>)
Description:
Returns the maximum value of all BSI integer values in this field. If the optional Row call is supplied, only columns with set bits are considered, otherwise all columns are considered.
Result Type: object with the max and count of columns containing the max value.
Examples:
Query the maximum value of a field (maximum size of all repositories):
Max(field="diskusage")
{"value":88,"count":13}
- Result is the largest value (repository size in kilobytes, here), plus the count of columns with that value.
Sum
Spec:
Sum([ROW_CALL], field=<FIELD>)
Description:
Returns the count and computed sum of all BSI integer values in the field. If the optional Row call is supplied, columns with set bits are summed, otherwise the sum is across all columns.
Result Type: object with the computed sum and count of the values in the integer field.
Examples:
Query the size of all repositories.
Sum(field="diskusage")
{"value":10,"count":3}
- Result is the sum of all values (total size of all repositories in kilobytes, here), plus the count of columns.
Other Operations
Options
Spec:
Options(<CALL>, columnAttrs=<BOOL>, excludeColumns=<BOOL>, excludeRowAttrs=<BOOL>, shards=[UINT ...])
Description:
Modifies the given query as follows:
columnAttrs: Include column attributes in the result (Default:false).excludeColumns: Exclude column IDs from the result (Default:false).excludeRowAttrs: Exclude row attributes from the result (Default:false).shards: Run the query using only the data from the given shards. By default, the entire data set (i.e. data from all shards) is used.
Result Type: Same result type as <CALL>.
Examples:
Return column attributes:
Options(Row(f1=10), columnAttrs=true)
{"attrs":{},"columns":[100]}],"columnAttrs":[{"id":100,"attrs":{"foo":"bar"}}
Run the query against shards 0 and 2 only:
Options(Row(f1=10), shards=[0, 2])
{"attrs":{},"columns":[100, 2097152]}
Spec:
Rows(<FIELD>, previous=<UINT|STRING>, limit=<UINT>, column=<UINT|STRING>)
Description:
Rows returns a list of row IDs in the given field which have at least one bit set. The field argument is mandatory, the others are optional.
If previous is given, rows prior to and including the specified row ID or
key will not be returned. If column is given, only rows which have a set bit
in the given column will be returned. previous or column must be strings if
and only if the field or index respectively is using key translation. If limit
is given, the number of rowIDs returned will be less than or equal to
limit. The combination of limit and previous allows for paging over large
result sets. Results are always ordered, so setting previous as the last
result of the previous request will start from the next available row.
Result Type: Object with "rows" or "keys" and an array of integers or strings respectively.
Examples:
Without keys:
Rows(blah)
{"rows":[1,9,39]}
With keys:
Rows(blahk)
{"rows":null,"keys":["haha","zaaa","traa"]}
Spec:
GroupBy(<RowsCall>, [RowsCall...], limit=<UINT>, filter=<CALL>)
Description:
GroupBy returns the count of the intersection of every combination of rows
taking one row each from the specified Rows calls. It returns only those
combinations for which the count is greater than 0.
The optional filter argument takes any type of Row query (e.g. Row, Union,
Intersect, etc.) which will be intersected with each result prior to returning
the count. This is analagous to a WHERE clause applied to a relational GROUP BY
query.
The optional limit argument limits the number of results returned. The results
are ordered, so as long as the data isn't changing, the same query will return
the same result set.
Paging through results is supported by passing the previous argument to each
of the Rows calls in the GroupBy. Take the last result from your previous
GroupBy query, and pass each row ID in that result as the previous argument
to each of the respective Rows queries in your next GroupBy query.
Result Type: Array of "groups". Each group is an object with a group key and a count key. The count is an integer, and the group is an array of objects which specify the field and row for each row that was intersected to get that result.
Examples:
A single Rows query.
GroupBy(Rows(blah))
[{"group":[{"field":"blah","rowID":1}],"count":1},
{"group":[{"field":"blah","rowID":9}],"count":1},
{"group":[{"field":"blah","rowID":39}],"count":1}]
With two Rows queries - one with IDs and one with keys.
GroupBy(Rows(blah), Rows(blahk), limit=7)
[{"group":[{"field":"blah","rowID":1},{"field":"blahk","rowKey":"haha"}],"count":1},
{"group":[{"field":"blah","rowID":1},{"field":"blahk","rowKey":"zaaa"}],"count":1},
{"group":[{"field":"blah","rowID":1},{"field":"blahk","rowKey":"traa"}],"count":1},
{"group":[{"field":"blah","rowID":9},{"field":"blahk","rowKey":"haha"}],"count":1},
{"group":[{"field":"blah","rowID":9},{"field":"blahk","rowKey":"zaaa"}],"count":1},
{"group":[{"field":"blah","rowID":9},{"field":"blahk","rowKey":"traa"}],"count":1},
{"group":[{"field":"blah","rowID":39},{"field":"blahk","rowKey":"haha"}],"count":1}]
Getting the rest of the results from the previous example (paging).
GroupBy(Rows(blah, previous=39), Rows(blahk, previous="haha"), limit=7)
[{"group":[{"field":"blah","rowID":39},{"field":"blahk","rowKey":"zaaa"}],"count":1},
{"group":[{"field":"blah","rowID":39},{"field":"blahk","rowKey":"traa"}],"count":1}]