-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update structure for hypercore
- Loading branch information
1 parent
a4bf7f1
commit de1c436
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
module.exports = [ | ||
{ | ||
title: "Hypercore", | ||
href: "hypercore", | ||
excerpt: | ||
"Seamlessly switch between row-oriented and column-oriented storage", | ||
children: [ | ||
{ | ||
title: "add_columnstore_policy", | ||
href: "add_columnstore_policy", | ||
excerpt: "Compresses a chunk automatically in the background after it reaches a given age", | ||
}, | ||
{ | ||
title: "chunk_columnstore_settings", | ||
href: "chunk_columnstore_settings", | ||
excerpt: "Show the compression settings for each chunk that has compression enabled", | ||
}, | ||
{ | ||
title: "chunk_columnstore_stats", | ||
href: "chunk_columnstore_stats", | ||
excerpt: "Get chunk-specific statistics related to hypertable compression", | ||
}, | ||
{ | ||
title: "columnstore_settings", | ||
href: "columnstore_settings", | ||
excerpt: "Get information about compression-related settings for hypertables", | ||
}, | ||
{ | ||
title: "convert_to_columnstore", | ||
href: "convert_to_columnstore", | ||
excerpt: "Compress or recompress a specific chunk in the rowstore and add it to the columnstore", | ||
}, | ||
{ | ||
title: "convert_to_rowstore", | ||
href: "convert_to_rowstore", | ||
excerpt: "Decompress a chunk from the columnstore and add it to the rowstore", | ||
}, | ||
{ | ||
title: "hypertable_columnstore_settings", | ||
href: "hypertable_columnstore_settings", | ||
excerpt: "Returns information about the compression settings for each hypertable in the columnstore.", | ||
}, | ||
{ | ||
title: "hypertable_columnstore_stats", | ||
href: "hypertable_columnstore_stats", | ||
excerpt: "Get statistics related to hypertable compression", | ||
}, | ||
{ | ||
title: "remove_columnstore_policy", | ||
href: "remove_columnstore_policy", | ||
excerpt: "Remove the compression policy", | ||
}, | ||
], | ||
}, | ||
]; |