Formatting and link tweaks

This commit is contained in:
Alan Bernstein 2017-06-28 16:08:07 -05:00
parent 124fd6a351
commit f70c4e637b
2 changed files with 4 additions and 4 deletions

View file

@ -93,13 +93,13 @@ In order to send protobuf binaries in the request and response, set `Content-Typ
The response doesn't include column attributes by default. To return them, set `columnAttrs` query argument to `true`.
The query is executed for all [slices](data-model#slice) by default. To use specified slices only, set `slices` query argument to a comma-separated list of slice indices.
The query is executed for all [slices](../data-model#slice) by default. To use specified slices only, set `slices` query argument to a comma-separated list of slice indices.
The time quantum can be specified with the `time_granularity`. Valid values match those for the [time-quantum](#/index/<index-name>/time-quantum) endpoint.
The time quantum can be specified with the `time_granularity`. Valid values match those for the `time-quantum` endpoint.
Request:
```
curl localhost:10101/index/user/query?columnAttrs=true \
curl "localhost:10101/index/user/query?columnAttrs=true&slices=0,1" \
-X POST \
-d 'Bitmap(frame="language", id=5)'
```

View file

@ -54,7 +54,7 @@ Attributes are arbitrary key/value pairs that can be associated to both rows or
### Slice
Indexes are sharded into groups of columns called Slices - each Slice contains a fixed number of columns which is the SliceWidth. SliceWidth is a non-configurable constant set to 2^20.
Indexes are sharded into groups of columns called Slices - each Slice contains a fixed number of columns which is the SliceWidth. SliceWidth is a non-configurable constant set to 2<sup>20</sup>.
Columns are sharded on a preset width, and each shard is referred to as a Slice. Slices are operated on in parallel, and they are evenly distributed across a cluster via a consistent hash algorithm.