Skip to content
This repository was archived by the owner on Aug 23, 2023. It is now read-only.

Commit

Permalink
table format typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Dieterbe committed Dec 10, 2018
1 parent 050907f commit 90a28cf
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions store/cassandra/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,25 +42,25 @@ func GetTable(ttl uint32, windowFactor int, nameFormat string) Table {
* generated with: https://gist.github.com/replay/69ad7cfd523edfa552cd12851fa74c58
*
* +------------------------+---------------+---------------------+----------+
* | TTL hours | table_name | window_size (hours) | sstables |
* | TTL hours | table_name | window_size (hours) | sstables |
* +------------------------+---------------+---------------------+----------+
* | 0 <= hours < 1 | metrics_0 | 1 | 0 - 2 |
* | 1 <= hours < 2 | metrics_1 | 1 | 1 - 3 |
* | 2 <= hours < 4 | metrics_2 | 1 | 2 - 5 |
* | 4 <= hours < 8 | metrics_4 | 1 | 4 - 9 |
* | 8 <= hours < 16 | metrics_8 | 1 | 8 - 17 |
* | 16 <= hours < 32 | metrics_16 | 1 | 16 - 33 |
* | 32 <= hours < 64 | metrics_32 | 2 | 16 - 33 |
* | 64 <= hours < 128 | metrics_64 | 4 | 16 - 33 |
* | 128 <= hours < 256 | metrics_128 | 7 | 19 - 38 |
* | 256 <= hours < 512 | metrics_256 | 13 | 20 - 41 |
* | 512 <= hours < 1024 | metrics_512 | 26 | 20 - 41 |
* | 1024 <= hours < 2048 | metrics_1024 | 52 | 20 - 41 |
* | 2048 <= hours < 4096 | metrics_2048 | 103 | 20 - 41 |
* | 4096 <= hours < 8192 | metrics_4096 | 205 | 20 - 41 |
* | 8192 <= hours < 16384 | metrics_8192 | 410 | 20 - 41 |
* | 16384 <= hours < 32768 | metrics_16384 | 820 | 20 - 41 |
* | 32768 <= hours < 65536 | metrics_32768 | 1639 | 20 - 41 |
* | 0 <= hours < 1 | metric_0 | 1 | 0 - 2 |
* | 1 <= hours < 2 | metric_1 | 1 | 1 - 3 |
* | 2 <= hours < 4 | metric_2 | 1 | 2 - 5 |
* | 4 <= hours < 8 | metric_4 | 1 | 4 - 9 |
* | 8 <= hours < 16 | metric_8 | 1 | 8 - 17 |
* | 16 <= hours < 32 | metric_16 | 1 | 16 - 33 |
* | 32 <= hours < 64 | metric_32 | 2 | 16 - 33 |
* | 64 <= hours < 128 | metric_64 | 4 | 16 - 33 |
* | 128 <= hours < 256 | metric_128 | 7 | 19 - 38 |
* | 256 <= hours < 512 | metric_256 | 13 | 20 - 41 |
* | 512 <= hours < 1024 | metric_512 | 26 | 20 - 41 |
* | 1024 <= hours < 2048 | metric_1024 | 52 | 20 - 41 |
* | 2048 <= hours < 4096 | metric_2048 | 103 | 20 - 41 |
* | 4096 <= hours < 8192 | metric_4096 | 205 | 20 - 41 |
* | 8192 <= hours < 16384 | metric_8192 | 410 | 20 - 41 |
* | 16384 <= hours < 32768 | metric_16384 | 820 | 20 - 41 |
* | 32768 <= hours < 65536 | metric_32768 | 1639 | 20 - 41 |
* +------------------------+---------------+---------------------+----------+
*/

Expand Down

0 comments on commit 90a28cf

Please sign in to comment.