Skip to content

Commit b72fb94

Browse files
authored
typo
1 parent 0bda174 commit b72fb94

File tree

1 file changed

+1
-1
lines changed
  • content/en/engines/mergetree-table-engine-family

1 file changed

+1
-1
lines changed

content/en/engines/mergetree-table-engine-family/pick-keys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Practical approach to create an good ORDER BY for a table:
2121
special variants of MergeTree may require special ORDER BY to make the record unique etc.
2222
7. For timeseries it usually make sense to put timestamp as latest column in ORDER BY, it helps with putting the same data near by for better locality. There is only 2 major patterns for timestamps in ORDER BY: (..., toStartOf(Day|Hour|...)(timestamp), ..., timestamp) and (..., timestamp). First one is useful when your often query small part of table partition. (table partitioned by months and your read only 1-4 days 90% of times)
2323

24-
Some examples or good order by
24+
Some examples of good order by
2525
```
2626
ORDER BY (tenantid, site_id, utm_source, clientid, timestamp)
2727
```

0 commit comments

Comments
 (0)