-
Notifications
You must be signed in to change notification settings - Fork 351
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
Add documentation for standalone (sparkless) GC #8307
Changes from 2 commits
fc9c376
c835860
1631f8c
70abbe8
684b5bb
d597378
a15b81e
a1e7ef9
460aab6
2be77df
30b4f2a
0ea65d8
afe2a5e
273644f
a010a03
5cdab63
bc2012e
9e8a43b
62e38ea
b44a572
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,174 @@ | ||||||||||
--- | ||||||||||
title: Standalone Garbage Collection | ||||||||||
description: Run a limited version of garbage collection without any external dependencies | ||||||||||
parent: Garbage Collection | ||||||||||
nav_order: 5 | ||||||||||
grand_parent: How-To | ||||||||||
redirect_from: | ||||||||||
- /cloud/standalone-gc.html | ||||||||||
--- | ||||||||||
|
||||||||||
# Standalone Garbage Collection | ||||||||||
{: .d-inline-block } | ||||||||||
lakeFS Enterprise | ||||||||||
{: .label .label-green } | ||||||||||
|
||||||||||
{: .d-inline-block } | ||||||||||
experimental | ||||||||||
{: .label .label-red } | ||||||||||
|
||||||||||
{: .note } | ||||||||||
> Standalone GC is only available for [lakeFS Enterprise]({% link enterprise/index.md %}). | ||||||||||
|
||||||||||
{: .note .warning } | ||||||||||
> Standalone GC is experimental and offers limited capabilities compared to the [Spark-backed GC]({% link howto/garbage-collection/gc.md %}). Read through the [limitations](./standalone-gc.md#limitations) carefully and use at your own risk. | ||||||||||
|
||||||||||
## About | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit; add a whitespace after every markdown heading There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||||||||||
Standalone GC is a limited version of the Spark-backed GC that runs without any external dependencies, as a standalone docker image. | ||||||||||
|
||||||||||
It only marks objects and does not delete them - Equivalent to the GC's [mark only mode]({% link howto/garbage-collection/gc.md %}#mark-only-mode). \ | ||||||||||
More about that in the [Output](./standalone-gc.md#output) section. | ||||||||||
|
||||||||||
## Limitations | ||||||||||
1. Except for the [Lab tests](./standalone-gc.md#lab-tests) performed, there are no further guarantees about the performance profile of the Standalone GC. | ||||||||||
2. Horizontal scale is not supported - Only a single instance of `lakefs-sgc` can operate at a time on a given repository. | ||||||||||
|
||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should add a limitation that says that sgc only implements the mark stage without sweeping, and sweep requires user action There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done - added a bullet to "Limitations", and a new "Output" section describing this. |
||||||||||
### Lab tests | ||||||||||
<TODO: update with final results once ready> | ||||||||||
|
||||||||||
Repository spec: | ||||||||||
|
||||||||||
- 100k objects | ||||||||||
- < 200 commits | ||||||||||
- 1 branch | ||||||||||
|
||||||||||
Machine spec: | ||||||||||
- 4GiB RAM | ||||||||||
- 8 CPUs | ||||||||||
|
||||||||||
In this setup, we measured: | ||||||||||
|
||||||||||
- Time: ~1 minute | ||||||||||
- Disk space: 120MiB | ||||||||||
|
||||||||||
## Installation | ||||||||||
|
||||||||||
### 1. Obtain Dockerhub token | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit; I prefer using words rather than bulleted lists in markdown headers but its up to you
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||||||||||
As an enterprise customer, you should already have a dockerhub token for the `externallakefs` user. | ||||||||||
If not, contact us at ___ (TODO: add mail/whaterver). | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @talSofer what should I put here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||||||||||
|
||||||||||
### 2. Login to docker with this token | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||||||||||
```bash | ||||||||||
docker login -u <your token> | ||||||||||
``` | ||||||||||
|
||||||||||
### 3. Download the docker image | ||||||||||
Download the image from the [lakefs-sgc](https://hub.docker.com/repository/docker/treeverse/lakefs-sgc/general) repository: | ||||||||||
```bash | ||||||||||
docker pull treeverse/lakefs-sgc:tagname | ||||||||||
itaiad200 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||
``` | ||||||||||
|
||||||||||
## Usage | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you please add these two steps here: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I already added an example - take a look at "Example - docker run command"
Done - in the new "Output" section. Not sure WDYM by a "CTA", I just added a sentence explaining that the user should read the report and delete manually. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Update: I added a dedicated section for "Deleting marked objects" with the same sentence ^ |
||||||||||
|
||||||||||
### AWS Credentials | ||||||||||
Currently, `lakefs-sgc` does not provide an option to explicitly set AWS credentials. It relies on the hosting machine | ||||||||||
to be set up correctly, and reads the AWS credentials from the machine. | ||||||||||
|
||||||||||
This means, you should set up your machine however AWS expects you to set it. \ | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How configurations work for on-prem users who use Minio? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done - added "S3-compatible clients" section and example (cc @itaiad200) |
||||||||||
For example, by following their guide on [configuring the AWS CLI](https://docs.aws.amazon.com/cli/v1/userguide/cli-chap-configure.html). | ||||||||||
|
||||||||||
### Configuration | ||||||||||
The following configuration keys are available: | ||||||||||
|
||||||||||
| Key | Description | Default value | Possible values | | ||||||||||
|----------------------------|----------------------------------------------------------------------------------------------------|--------------------------------|---------------------------------------------------------| | ||||||||||
| `logging.format` | Logs output format | "text" | "text","json" | | ||||||||||
| `logging.level` | Logs level | "info" | "error","warn",info","debug","trace" | | ||||||||||
| `logging.output` | Where to output the logs to | "-" | "-" (stdout), "=" (stderr), or any string for file path | | ||||||||||
| `logging.file_max_size_mb` | Max file size for logs output (relevant only if `logging.output` is set to a file path) | 102400 (100MiB) | number | | ||||||||||
| `logging.files_keep` | Number of files to keep for logs rotation (relevant only if `logging.output` is set to a file path | 100 | number | | ||||||||||
itaiad200 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||
| `cache_dir` | Directory to use for caching data during run | ~/.lakefs-sgc/data | string | | ||||||||||
| `aws.max_page_size` | Max number of items per page when listing objects in AWS | not set (AWS defaults to 1000) | number | | ||||||||||
itaiad200 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||
| `objects_min_age` | Ignore any object that is last modified within this time frame ("cutoff time") | "6h" | duration | | ||||||||||
itaiad200 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||
| `lakefs.endpoint_url` | The URL to the lakeFS installation - should end with `/api/v1` | NOT SET | URL | | ||||||||||
| `lakefs.access_key_id` | Access key to the lakeFS installation | NOT SET | string | | ||||||||||
| `lakefs.secret_access_key` | Secret access key to the lakeFS installation | NOT SET | string | | ||||||||||
|
||||||||||
|
||||||||||
These keys can be provided in the following ways: | ||||||||||
1. Config file: Create a YAML file with the keys, each `.` is a new nesting level. \ | ||||||||||
For example, `logging.level` will be: | ||||||||||
```yaml | ||||||||||
logging: | ||||||||||
level: <value> # info,debug... | ||||||||||
``` | ||||||||||
Then, pass it to the program using the `--config path/to/config.yaml` argument. | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There isn't a default location it expects for? that's ok, just to clarify There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is, it's mentioned in the "Command line reference" section:
|
||||||||||
2. Environment variables: by setting `LAKEFS_SGC_<KEY>`, with uppercase letters and `.`s converted to `_`s. \ | ||||||||||
For example `logging.level` will be: | ||||||||||
```bash | ||||||||||
export LAKEFS_SGC_LOGGING_LEVEL=info` | ||||||||||
``` | ||||||||||
|
||||||||||
Example (minimalistic) config file: | ||||||||||
```yaml | ||||||||||
logging: | ||||||||||
level: debug | ||||||||||
lakefs: | ||||||||||
endpoint_url: https://your.url/api/v1 | ||||||||||
access_key_id: <your lakeFS access key> | ||||||||||
secret_access_key: <your lakeFS secret key> | ||||||||||
``` | ||||||||||
|
||||||||||
### Command line reference | ||||||||||
|
||||||||||
#### Flags: | ||||||||||
- `-c, --config`: config file to use (default is $HOME/.lakefs-sgc.yaml) | ||||||||||
|
||||||||||
#### Commands: | ||||||||||
**run** | ||||||||||
|
||||||||||
Usage: \ | ||||||||||
`lakefs-sgc run <repository>` | ||||||||||
|
||||||||||
Flags: | ||||||||||
- `--cache-dir`: directory to cache read files and metadataDir (default is $HOME/.lakefs-sgc/data/) | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Isn't this a config value? How can it be both? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It can 🙂 |
||||||||||
- `--parallelism`: number of parallel downloads for metadataDir (default 10) | ||||||||||
- `--presign`: use pre-signed URLs when downloading/uploading data (recommended) (default true) | ||||||||||
|
||||||||||
### Example - docker run command | ||||||||||
Here's an example for running the `treeverse/lakefs-sgc` docker image, with AWS credentials parsed from the `~/.aws/credentials` file: | ||||||||||
|
||||||||||
```bash | ||||||||||
docker run \ | ||||||||||
-e AWS_REGION=<region> \ | ||||||||||
-e AWS_SESSION_TOKEN="$(grep 'aws_session_token' ~/.aws/credentials | awk -F' = ' '{print $2}')" \ | ||||||||||
-e AWS_ACCESS_KEY_ID="$(grep 'aws_access_key_id' ~/.aws/credentials | awk -F' = ' '{print $2}')" \ | ||||||||||
-e AWS_SECRET_ACCESS_KEY="$(grep 'aws_secret_access_key' ~/.aws/credentials | awk -F' = ' '{print $2}')" \ | ||||||||||
-e LAKEFS_SGC_LAKEFS_ENDPOINT_URL=<your lakefs URL> \ | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||||||||||
-e LAKEFS_SGC_LAKEFS_ACCESS_KEY_ID=<your accesss key> \ | ||||||||||
-e LAKEFS_SGC_LAKEFS_SECRET_ACCESS_KEY=<your secret key> \ | ||||||||||
-e LAKEFS_SGC_LOGGING_LEVEL=debug \ | ||||||||||
treeverse/lakefs-sgc:<version> run <repository> | ||||||||||
``` | ||||||||||
|
||||||||||
### Output | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||||||||||
`lakefs-sgc` will write its reports to `<REPOSITORY_STORAGE_NAMESPACE>/_lakefs/retention/gc/reports/<RUN_ID>/`. \ | ||||||||||
_RUN_ID_ is generated during runtime by the Standalone GC. You can find it in the logs: | ||||||||||
``` | ||||||||||
"Marking objects for deletion" ... run_id=gcoca17haabs73f2gtq0 | ||||||||||
``` | ||||||||||
|
||||||||||
In this prefix, you'll find 3 objects: | ||||||||||
- `deleted.json` - Containing all marked objects in a json format. | ||||||||||
- `deleted.parquet` - Containing all marked objects in a parquet format. | ||||||||||
- `summary.json` - A small json summarizing the GC run. Example: | ||||||||||
```json | ||||||||||
{ | ||||||||||
"run_id": "gcoca17haabs73f2gtq0", | ||||||||||
"success": true, | ||||||||||
"first_slice": "gcss5tpsrurs73cqi6e0", | ||||||||||
"start_time": "2024-10-27T13:19:26.890099059Z", | ||||||||||
"cutoff_time": "2024-10-27T07:19:26.890099059Z", | ||||||||||
"num_deleted_objects": 33000 | ||||||||||
} | ||||||||||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"at your own risk" sounds a bit harsh and unreliable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done