Skip to content

Commit

Permalink
chore: add replacedby link. Has to be hardcoded so will not work unti…
Browse files Browse the repository at this point in the history
…l these docs go live.
  • Loading branch information
billy-the-fish committed Jan 15, 2025
1 parent de1c436 commit 834a406
Show file tree
Hide file tree
Showing 10 changed files with 108 additions and 109 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ command. To enable compression on continuous aggregates, use the
command. To view the policies that you set or the policies that already exist,
see [informational views][informational-views].

<Deprecated2180 />
<Deprecated2180 /> Replaced by <a href="https://docs.timescale.com/api/latest/hypercore/add_columnstore_policy/">add_columnstore_policy()</a>.

## Required arguments

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ALTER TABLE <table_name> SET (timescaledb.compress,
);
```

<Deprecated2180 />
<Deprecated2180 /> Replaced by <a href="https://docs.timescale.com/api/latest/hypercore/alter_table/">ALTER TABLE (Hypercore)</a>.

## Required arguments

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ the chunk. An insert into a compressed chunk does not update the compressed
sizes. For more information about how to compute chunk sizes, see the
`chunks_detailed_size` section.

<Deprecated2180 />
<Deprecated2180 /> Replaced by <a href="https://docs.timescale.com/api/latest/hypercore/chunk_columnstore_stats/">chunk_columnstore_stats()</a>.

### Required arguments

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ You can get a list of chunks belonging to a hypertable using the
[`show_chunks` function](/api/latest/hypertable/show_chunks/).
</Highlight>

<Deprecated2180 />
<Deprecated2180 /> Replaced by <a href="https://docs.timescale.com/api/latest/hypercore/convert_to_columnstore/">convert_to_columnstore()</a>.

### Required arguments

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ turn the policy back on. The database automatically recompresses your chunks in
the next scheduled job.
</Highlight>

<Deprecated2180 />
<Deprecated2180 /> Replaced by <a href="https://docs.timescale.com/api/latest/hypercore/convert_to_cconvert_to_rowstore/">convert_to_rowstore()</a>.

### Required arguments

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ see the [hypertable section][hypertable-docs].
For more information about compression, see the
[compression sction][compression-docs].

<Deprecated2180 />
<Deprecated2180 /> Replaced by <a href="https://docs.timescale.com/api/latest/hypercore/hypertable_columnstore_stats/">hypertable_columnstore_stats()</a>.

### Required arguments

Expand Down
2 changes: 1 addition & 1 deletion api/compression.md → api/compression/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Compressed chunks have the following limitations:
after constraint creation.
* [Timescale SkipScan][skipscan] does not currently work on compressed chunks.

<Deprecated2180 />
<Deprecated2180 /> Replaced by <a href="https://docs.timescale.com/api/latest/hypercore/">Hypercore</a>.

## Restrictions

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ the procedure with `CALL`. Don't use a `SELECT` statement.
chunk for the first time, use [`compress_chunk`](/api/latest/compression/compress_chunk/).
</Highlight>

<Deprecated2180 />
<Deprecated2180 /> Replaced by <a href="https://docs.timescale.com/api/latest/hypercore/convert_to_columnstore/">convert_to_columnstore()</a>.

## Required arguments

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ If you need to remove the compression policy. To restart policy-based
compression you need to add the policy again. To view the policies that
already exist, see [informational views][informational-views].

<Deprecated2180 />
<Deprecated2180 /> Replaced by <a href="https://docs.timescale.com/api/latest/hypercore/remove_columnstore_policy/">remove_columnstore_policy()</a>.

### Required arguments

Expand Down
199 changes: 99 additions & 100 deletions api/page-index/page-index.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,106 +168,6 @@ module.exports = [
},
],
},
{
title: "Distributed hypertables",
type: "directory",
href: "distributed-hypertables",
children: [
{
title: "create_distributed_hypertable",
href: "create_distributed_hypertable",
},
{
title: "add_data_node",
href: "add_data_node",
},
{
title: "attach_data_node",
href: "attach_data_node",
},
{
title: "alter_data_node",
href: "alter_data_node",
},
{
title: "detach_data_node",
href: "detach_data_node",
},
{
title: "delete_data_node",
href: "delete_data_node",
},
{
title: "distributed_exec",
href: "distributed_exec",
},
{
title: "set_number_partitions",
href: "set_number_partitions",
},
{
title: "set_replication_factor",
href: "set_replication_factor",
},
{
title: "copy_chunk",
href: "copy_chunk_experimental",
},
{
title: "move_chunk",
href: "move_chunk_experimental",
},
{
title: "cleanup_copy_chunk_operation",
href: "cleanup_copy_chunk_operation_experimental",
},
{
title: "create_distributed_restore_point",
href: "create_distributed_restore_point",
},
],
},
{
title: "Compression",
type: "directory",
href: "compression",
description:
"We highly recommend reading the blog post and tutorial about compression before trying to set it up for the first time.",
children: [
{
title: "ALTER TABLE (Compression)",
href: "alter_table_compression",
},
{
title: "add_compression_policy",
href: "add_compression_policy",
},
{
title: "remove_compression_policy",
href: "remove_compression_policy",
},
{
title: "compress_chunk",
href: "compress_chunk",
},
{
title: "decompress_chunk",
href: "decompress_chunk",
},
{
title: "recompress_chunk",
href: "recompress_chunk",
},
{
title: "hypertable_compression_stats",
href: "hypertable_compression_stats",
},
{
title: "chunk_compression_stats",
href: "chunk_compression_stats",
},
],
},
{
title: "Continuous aggregates",
type: "redirect-to-child-page",
Expand Down Expand Up @@ -659,6 +559,105 @@ module.exports = [
description:
"An overview of what different tags represent in the API section of Timescale Documentation.",
},
{
title: "Compression (deprecated)",
href: "compression",
description:
"We highly recommend reading the blog post and tutorial about compression before trying to set it up for the first time.",
children: [
{
title: "ALTER TABLE (Compression)",
href: "alter_table_compression",
},
{
title: "add_compression_policy",
href: "add_compression_policy",
},
{
title: "remove_compression_policy",
href: "remove_compression_policy",
},
{
title: "compress_chunk",
href: "compress_chunk",
},
{
title: "decompress_chunk",
href: "decompress_chunk",
},
{
title: "recompress_chunk",
href: "recompress_chunk",
},
{
title: "hypertable_compression_stats",
href: "hypertable_compression_stats",
},
{
title: "chunk_compression_stats",
href: "chunk_compression_stats",
},
],
},
{
title: "Distributed hypertables (deprecated)",
type: "directory",
href: "distributed-hypertables",
children: [
{
title: "create_distributed_hypertable",
href: "create_distributed_hypertable",
},
{
title: "add_data_node",
href: "add_data_node",
},
{
title: "attach_data_node",
href: "attach_data_node",
},
{
title: "alter_data_node",
href: "alter_data_node",
},
{
title: "detach_data_node",
href: "detach_data_node",
},
{
title: "delete_data_node",
href: "delete_data_node",
},
{
title: "distributed_exec",
href: "distributed_exec",
},
{
title: "set_number_partitions",
href: "set_number_partitions",
},
{
title: "set_replication_factor",
href: "set_replication_factor",
},
{
title: "copy_chunk",
href: "copy_chunk_experimental",
},
{
title: "move_chunk",
href: "move_chunk_experimental",
},
{
title: "cleanup_copy_chunk_operation",
href: "cleanup_copy_chunk_operation_experimental",
},
{
title: "create_distributed_restore_point",
href: "create_distributed_restore_point",
},
],
},
],
},
];

0 comments on commit 834a406

Please sign in to comment.