
Core Plugins and tasks Reverse
CertifiedReverse a file (last line first) in Kestra internal storage.
Core Plugins and tasks Reverse
Certified
Reverse a file (last line first) in Kestra internal storage.
Copies the source file locally, writes lines in reverse order with a configurable separator, and uploads the result. Charset defaults to UTF-8.
Handy for log-like files where newest-first order is desired.
yaml
type: io.kestra.plugin.core.storage.ReverseExamples
yaml
id: reverse_file
namespace: company.team
tasks:
- id: generate_file
type: io.kestra.plugin.scripts.shell.Commands
commands:
- echo "1
2
3" > numbers.txt
outputFiles:
- "numbers.txt"
- id: reverse
type: io.kestra.plugin.core.storage.Reverse
from: "{{ outputs.generate_file.outputFiles['numbers.txt'] }}"
Properties
from *Requiredstring
The file to be split
Pebble expression referencing an Internal Storage URI e.g. {{ outputs.mytask.uri }}.
charset string
Default
UTF-8The name of a supported charset
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
separator string
Default
The separator used to join the file into chunks. By default, it's a newline \n character. If you are on Windows, you might want to use \r\n instead.
Outputs
uri string
Format
uriThe URIs of reverse files in the Kestra's internal storage