Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify 'free up disk space more quickly' FAQ item #19087

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
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?
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
## How can I free up disk space when dropping a table?
## How can I free up disk space that was used by a dropped 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
Loading