You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
id: business_automationnamespace: tutorialdescription: Business Automationtasks:
- id: working_directorytype: io.kestra.plugin.core.flow.WorkingDirectorytasks:
- id: create_tabletype: io.kestra.plugin.jdbc.sqlite.Queryurl: jdbc:sqlite:kestra.dbsql: | CREATE TABLE IF NOT EXISTS features ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, description TEXT NOT NULL, release_version TEXT NOT NULL, edition TEXT NOT NULL );
- id: empty_tabletype: io.kestra.plugin.jdbc.sqlite.Queryurl: jdbc:sqlite:kestra.dbsql: DELETE FROM features;
- id: insert_datatype: io.kestra.plugin.jdbc.sqlite.Queryurl: jdbc:sqlite:kestra.dbsql: | INSERT INTO features (name, description, release_version, edition) VALUES ('Worker Groups', 'Allows targeting specific tasks or triggers to run on specific remote workers for better scalability and resource management.', '0.10', 'Enterprise'), ('Realtime Triggers', 'Supports triggering of event-driven workflows in real-time.', '0.17', 'Open-Source'), ('Task Runners', 'Provides on-demand remote execution environments for running tasks.', '0.16', 'Open-Source'), ('KV Store', 'Adds key-value storage for persisting data across workflow executions.', '0.18', 'Open-Source'), ('SCIM Directory Sync', 'Allows synchronization of users and groups from Identity Providers.', '0.18', 'Enterprise');
- id: querytype: io.kestra.plugin.jdbc.sqlite.Queryurl: jdbc:sqlite:kestra.dbstore: truesql: | SELECT * FROM features ORDER BY release_version;
- id: to_csvtype: io.kestra.plugin.serdes.csv.IonToCsvfrom: "{{ outputs.query.uri }}"
- id: to_exceltype: io.kestra.plugin.serdes.excel.IonToExcelfrom: "{{ outputs.query.uri }}"
Environment
Kestra Version:
Operating System (OS/Docker/Kubernetes):
Java Version (if you don't run kestra in Docker):
The text was updated successfully, but these errors were encountered:
Describe the issue
reproducer:
Environment
The text was updated successfully, but these errors were encountered: