mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
docs: Update breaking changes with binary data TTL note (#7894)
Context: https://n8nio.slack.com/archives/C035KBDA917/p1701418556761549?thread_ts=1701411854.517989&cid=C035KBDA917
This commit is contained in:
parent
07f6662aba
commit
50a7401de9
|
@ -31,6 +31,24 @@ const binaryStream = this.helpers.getBinaryStream(id); // until 1.9.0
|
||||||
const binaryStream = await this.helpers.getBinaryStream(id); // since 1.9.0
|
const binaryStream = await this.helpers.getBinaryStream(id); // since 1.9.0
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### What changed?
|
||||||
|
|
||||||
|
The env vars `N8N_BINARY_DATA_TTL` and `EXECUTIONS_DATA_PRUNE_TIMEOUT` no longer have any effect and can be safely removed. Instead of relying on a TTL system for binary data, n8n currently cleans up binary data together with executions during pruning.
|
||||||
|
|
||||||
|
### When is action necessary?
|
||||||
|
|
||||||
|
If using these flags, remove them from your settings and be mindful of the new behavior.
|
||||||
|
|
||||||
|
## 1.6.0
|
||||||
|
|
||||||
|
### What changed?
|
||||||
|
|
||||||
|
The env var `N8N_PERSISTED_BINARY_DATA_TTL` no longer has any effect and can be removed. This legacy flag was originally introduced to support ephemeral executions (see [details](https://github.com/n8n-io/n8n/pull/7046)), which are no longer supported.
|
||||||
|
|
||||||
|
### When is action necessary?
|
||||||
|
|
||||||
|
If using this flag, remove it from your settings.
|
||||||
|
|
||||||
## 1.5.0
|
## 1.5.0
|
||||||
|
|
||||||
### What changed?
|
### What changed?
|
||||||
|
|
Loading…
Reference in a new issue