-
Notifications
You must be signed in to change notification settings - Fork 0
Resource limit controls for memory and temp storage docs #53
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
Conversation
Preview Available 🚀Commit Author: Ved misra Preview Link: tailpipe-io-git-docs-memory-limit-docs-turbot.vercel.app |
| Define the maximum amount of disk space (in MB) that `tailpipe` is allowed to use for temporary storage of intermediate data, such as JSONL-formatted files used during processing. | ||
|
|
||
| This limit applies to the `.tailpipe/internal` directory and ensures that large result sets or slow-consuming data pipelines do not exhaust available disk space. | ||
|
|
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.
Can you disable the limit by setting it to 0 ?
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.
Yes. Updating
| |--------------------|------------------------- | ||
| | `log_level` | [`TAILPIPE_LOG_LEVEL`](/docs/reference/env-vars/tailpipe_log_level) | ||
| | `update_check` | [`TAILPIPE_UPDATE_CHECK`](/docs/reference/env-vars/tailpipe_update_check) | ||
| | `memory_max_mb` | [`TAILPIPE_MEMORY_MAX_MB`](/docs/reference/env-vars/tailpipe_memory_max_mb) |
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.
These new links need to be added to the sidebar as well...
| |---------------------|-------------|----------------------------------------- | ||
| | `log_level` | off | Set the logging output level | ||
| | `update_check` | `true` | Enable or disable automatic update checking. | ||
| | `memory_max_mb` | `unlimited` | Caps CLI memory usage and determines worker count. |
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.
I think the value is 0 which means unlimited. maybe list it as: 0 (unlimited), eg:
| `memory_max_mb` | `0` (unlimited) | Caps CLI memory usage and determines worker count.
| `plugin_max_memory_mb` | `0` (unlimited) | Sets soft memory cap per plugin.
| `max_temp_dir_mb` | `0` (unlimited) | Limits JSONL temp file size on disk.
No description provided.