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

Commit 90a28cf

Browse files
committed
table format typo
1 parent 050907f commit 90a28cf

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

store/cassandra/table.go

+18-18
Original file line numberDiff line numberDiff line change
@@ -42,25 +42,25 @@ func GetTable(ttl uint32, windowFactor int, nameFormat string) Table {
4242
* generated with: https://gist.github.com/replay/69ad7cfd523edfa552cd12851fa74c58
4343
*
4444
* +------------------------+---------------+---------------------+----------+
45-
* | TTL hours | table_name | window_size (hours) | sstables |
45+
* | TTL hours | table_name | window_size (hours) | sstables |
4646
* +------------------------+---------------+---------------------+----------+
47-
* | 0 <= hours < 1 | metrics_0 | 1 | 0 - 2 |
48-
* | 1 <= hours < 2 | metrics_1 | 1 | 1 - 3 |
49-
* | 2 <= hours < 4 | metrics_2 | 1 | 2 - 5 |
50-
* | 4 <= hours < 8 | metrics_4 | 1 | 4 - 9 |
51-
* | 8 <= hours < 16 | metrics_8 | 1 | 8 - 17 |
52-
* | 16 <= hours < 32 | metrics_16 | 1 | 16 - 33 |
53-
* | 32 <= hours < 64 | metrics_32 | 2 | 16 - 33 |
54-
* | 64 <= hours < 128 | metrics_64 | 4 | 16 - 33 |
55-
* | 128 <= hours < 256 | metrics_128 | 7 | 19 - 38 |
56-
* | 256 <= hours < 512 | metrics_256 | 13 | 20 - 41 |
57-
* | 512 <= hours < 1024 | metrics_512 | 26 | 20 - 41 |
58-
* | 1024 <= hours < 2048 | metrics_1024 | 52 | 20 - 41 |
59-
* | 2048 <= hours < 4096 | metrics_2048 | 103 | 20 - 41 |
60-
* | 4096 <= hours < 8192 | metrics_4096 | 205 | 20 - 41 |
61-
* | 8192 <= hours < 16384 | metrics_8192 | 410 | 20 - 41 |
62-
* | 16384 <= hours < 32768 | metrics_16384 | 820 | 20 - 41 |
63-
* | 32768 <= hours < 65536 | metrics_32768 | 1639 | 20 - 41 |
47+
* | 0 <= hours < 1 | metric_0 | 1 | 0 - 2 |
48+
* | 1 <= hours < 2 | metric_1 | 1 | 1 - 3 |
49+
* | 2 <= hours < 4 | metric_2 | 1 | 2 - 5 |
50+
* | 4 <= hours < 8 | metric_4 | 1 | 4 - 9 |
51+
* | 8 <= hours < 16 | metric_8 | 1 | 8 - 17 |
52+
* | 16 <= hours < 32 | metric_16 | 1 | 16 - 33 |
53+
* | 32 <= hours < 64 | metric_32 | 2 | 16 - 33 |
54+
* | 64 <= hours < 128 | metric_64 | 4 | 16 - 33 |
55+
* | 128 <= hours < 256 | metric_128 | 7 | 19 - 38 |
56+
* | 256 <= hours < 512 | metric_256 | 13 | 20 - 41 |
57+
* | 512 <= hours < 1024 | metric_512 | 26 | 20 - 41 |
58+
* | 1024 <= hours < 2048 | metric_1024 | 52 | 20 - 41 |
59+
* | 2048 <= hours < 4096 | metric_2048 | 103 | 20 - 41 |
60+
* | 4096 <= hours < 8192 | metric_4096 | 205 | 20 - 41 |
61+
* | 8192 <= hours < 16384 | metric_8192 | 410 | 20 - 41 |
62+
* | 16384 <= hours < 32768 | metric_16384 | 820 | 20 - 41 |
63+
* | 32768 <= hours < 65536 | metric_32768 | 1639 | 20 - 41 |
6464
* +------------------------+---------------+---------------------+----------+
6565
*/
6666

0 commit comments

Comments
 (0)