Core Plugins and tasks Reverse

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.Reverse
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

The file to be split

DefaultUTF-8

The name of a supported charset

Reference (ref) of the pluginDefaults to apply to this task.

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.

Formaturi

The URIs of reverse files in the Kestra's internal storage