Skip to content

Commit

Permalink
Clarify 'free up disk space more quickly' FAQ item (#19087)
Browse files Browse the repository at this point in the history
* Clarify 'free up disk space more quickly' FAQ item

Fixes DOC-11638

Co-authored-by: Adam Storm <[email protected]>
  • Loading branch information
rmloveland and ajstorm authored Dec 11, 2024
1 parent 1310aca commit f7a6b25
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/current/_includes/v23.1/storage/free-up-disk-space.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
For instructions on how to free up disk space as quickly as possible after deleting data, see [How can I free up disk space quickly?]({% link {{ page.version.version }}/operational-faqs.md %}#how-can-i-free-up-disk-space-quickly)
For instructions on how to free up disk space as quickly as possible after dropping a table, see [How can I free up disk space that was used by a dropped table?]({% link {{ page.version.version }}/operational-faqs.md %}#how-can-i-free-up-disk-space-when-dropping-a-table)
2 changes: 1 addition & 1 deletion src/current/_includes/v23.2/storage/free-up-disk-space.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
For instructions on how to free up disk space as quickly as possible after deleting data, see [How can I free up disk space quickly?]({% link {{ page.version.version }}/operational-faqs.md %}#how-can-i-free-up-disk-space-quickly)
For instructions on how to free up disk space as quickly as possible after dropping a table, see [How can I free up disk space that was used by a dropped table?]({% link {{ page.version.version }}/operational-faqs.md %}#how-can-i-free-up-disk-space-when-dropping-a-table)
2 changes: 1 addition & 1 deletion src/current/_includes/v24.1/storage/free-up-disk-space.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
For instructions on how to free up disk space as quickly as possible after deleting data, see [How can I free up disk space quickly?]({% link {{ page.version.version }}/operational-faqs.md %}#how-can-i-free-up-disk-space-quickly)
For instructions on how to free up disk space as quickly as possible after dropping a table, see [How can I free up disk space that was used by a dropped table?]({% link {{ page.version.version }}/operational-faqs.md %}#how-can-i-free-up-disk-space-when-dropping-a-table)
2 changes: 1 addition & 1 deletion src/current/_includes/v24.2/storage/free-up-disk-space.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
For instructions on how to free up disk space as quickly as possible after deleting data, see [How can I free up disk space quickly?]({% link {{ page.version.version }}/operational-faqs.md %}#how-can-i-free-up-disk-space-quickly)
For instructions on how to free up disk space as quickly as possible after dropping a table, see [How can I free up disk space that was used by a dropped table?]({% link {{ page.version.version }}/operational-faqs.md %}#how-can-i-free-up-disk-space-when-dropping-a-table)
2 changes: 1 addition & 1 deletion src/current/_includes/v24.3/storage/free-up-disk-space.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
For instructions on how to free up disk space as quickly as possible after deleting data, see [How can I free up disk space quickly?]({% link {{ page.version.version }}/operational-faqs.md %}#how-can-i-free-up-disk-space-quickly)
For instructions on how to free up disk space as quickly as possible after dropping a table, see [How can I free up disk space that was used by a dropped table?]({% link {{ page.version.version }}/operational-faqs.md %}#how-can-i-free-up-disk-space-when-dropping-a-table)
8 changes: 6 additions & 2 deletions src/current/v23.1/operational-faqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,13 @@ When MVCC garbage is deleted by garbage collection, the data is still not yet ph

{% include {{page.version.version}}/storage/free-up-disk-space.md %}

## How can I free up disk space quickly?
## How can I free up disk space when dropping a table?

If you've noticed that [your disk space is not freeing up quickly enough after deleting data](#why-is-my-disk-usage-not-decreasing-after-deleting-data), you can take the following steps to free up disk space more quickly. This example assumes a table `t`.
If you've noticed that [your disk space is not freeing up quickly enough after dropping a table](#why-is-my-disk-usage-not-decreasing-after-deleting-data), you can take the following steps to free up disk space more quickly the next time you drop a table. This example assumes a table `t` exists.

{{site.data.alerts.callout_info}}
The procedure shown here only works if you get the range IDs from the table **before** running [`DROP TABLE`]({% link {{ page.version.version }}/drop-table.md %}). If you are in an emergency situation due to running out of disk, see [What happens when a node runs out of disk space?](#what-happens-when-a-node-runs-out-of-disk-space)
{{site.data.alerts.end}}

1. Lower the [`gc.ttlseconds` parameter]({% link {{ page.version.version }}/configure-replication-zones.md %}#gc-ttlseconds) to 10 minutes.

Expand Down
8 changes: 6 additions & 2 deletions src/current/v23.2/operational-faqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,13 @@ When MVCC garbage is deleted by garbage collection, the data is still not yet ph

{% include {{page.version.version}}/storage/free-up-disk-space.md %}

## How can I free up disk space quickly?
## How can I free up disk space when dropping a table?

If you've noticed that [your disk space is not freeing up quickly enough after deleting data](#why-is-my-disk-usage-not-decreasing-after-deleting-data), you can take the following steps to free up disk space more quickly. This example assumes a table `t`.
If you've noticed that [your disk space is not freeing up quickly enough after dropping a table](#why-is-my-disk-usage-not-decreasing-after-deleting-data), you can take the following steps to free up disk space more quickly the next time you drop a table. This example assumes a table `t` exists.

{{site.data.alerts.callout_info}}
The procedure shown here only works if you get the range IDs from the table **before** running [`DROP TABLE`]({% link {{ page.version.version }}/drop-table.md %}). If you are in an emergency situation due to running out of disk, see [What happens when a node runs out of disk space?](#what-happens-when-a-node-runs-out-of-disk-space)
{{site.data.alerts.end}}

1. Lower the [`gc.ttlseconds` parameter]({% link {{ page.version.version }}/configure-replication-zones.md %}#gc-ttlseconds) to 10 minutes.

Expand Down
8 changes: 6 additions & 2 deletions src/current/v24.1/operational-faqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,13 @@ When MVCC garbage is deleted by garbage collection, the data is still not yet ph

{% include {{page.version.version}}/storage/free-up-disk-space.md %}

## How can I free up disk space quickly?
## How can I free up disk space when dropping a table?

If you've noticed that [your disk space is not freeing up quickly enough after deleting data](#why-is-my-disk-usage-not-decreasing-after-deleting-data), you can take the following steps to free up disk space more quickly. This example assumes a table `t`.
If you've noticed that [your disk space is not freeing up quickly enough after dropping a table](#why-is-my-disk-usage-not-decreasing-after-deleting-data), you can take the following steps to free up disk space more quickly the next time you drop a table. This example assumes a table `t` exists.

{{site.data.alerts.callout_info}}
The procedure shown here only works if you get the range IDs from the table **before** running [`DROP TABLE`]({% link {{ page.version.version }}/drop-table.md %}). If you are in an emergency situation due to running out of disk, see [What happens when a node runs out of disk space?](#what-happens-when-a-node-runs-out-of-disk-space)
{{site.data.alerts.end}}

1. Lower the [`gc.ttlseconds` parameter]({% link {{ page.version.version }}/configure-replication-zones.md %}#gc-ttlseconds) to 10 minutes.

Expand Down
8 changes: 6 additions & 2 deletions src/current/v24.2/operational-faqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,13 @@ When MVCC garbage is deleted by garbage collection, the data is still not yet ph

{% include {{page.version.version}}/storage/free-up-disk-space.md %}

## How can I free up disk space quickly?
## How can I free up disk space when dropping a table?

If you've noticed that [your disk space is not freeing up quickly enough after deleting data](#why-is-my-disk-usage-not-decreasing-after-deleting-data), you can take the following steps to free up disk space more quickly. This example assumes a table `t`.
If you've noticed that [your disk space is not freeing up quickly enough after dropping a table](#why-is-my-disk-usage-not-decreasing-after-deleting-data), you can take the following steps to free up disk space more quickly the next time you drop a table. This example assumes a table `t` exists.

{{site.data.alerts.callout_info}}
The procedure shown here only works if you get the range IDs from the table **before** running [`DROP TABLE`]({% link {{ page.version.version }}/drop-table.md %}). If you are in an emergency situation due to running out of disk, see [What happens when a node runs out of disk space?](#what-happens-when-a-node-runs-out-of-disk-space)
{{site.data.alerts.end}}

1. Lower the [`gc.ttlseconds` parameter]({% link {{ page.version.version }}/configure-replication-zones.md %}#gc-ttlseconds) to 10 minutes.

Expand Down
8 changes: 6 additions & 2 deletions src/current/v24.3/operational-faqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,13 @@ When MVCC garbage is deleted by garbage collection, the data is still not yet ph

{% include {{page.version.version}}/storage/free-up-disk-space.md %}

## How can I free up disk space quickly?
## How can I free up disk space when dropping a table?

If you've noticed that [your disk space is not freeing up quickly enough after deleting data](#why-is-my-disk-usage-not-decreasing-after-deleting-data), you can take the following steps to free up disk space more quickly. This example assumes a table `t`.
If you've noticed that [your disk space is not freeing up quickly enough after dropping a table](#why-is-my-disk-usage-not-decreasing-after-deleting-data), you can take the following steps to free up disk space more quickly the next time you drop a table. This example assumes a table `t` exists.

{{site.data.alerts.callout_info}}
The procedure shown here only works if you get the range IDs from the table **before** running [`DROP TABLE`]({% link {{ page.version.version }}/drop-table.md %}). If you are in an emergency situation due to running out of disk, see [What happens when a node runs out of disk space?](#what-happens-when-a-node-runs-out-of-disk-space)
{{site.data.alerts.end}}

1. Lower the [`gc.ttlseconds` parameter]({% link {{ page.version.version }}/configure-replication-zones.md %}#gc-ttlseconds) to 10 minutes.

Expand Down

0 comments on commit f7a6b25

Please sign in to comment.