├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── doc-deploy.yml │ ├── docker.yml │ ├── rust.yml │ └── test-doc-deploy.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── README_zh.md ├── crates ├── arkflow-core │ ├── Cargo.toml │ └── src │ │ ├── buffer │ │ └── mod.rs │ │ ├── cli │ │ └── mod.rs │ │ ├── codec │ │ └── mod.rs │ │ ├── config.rs │ │ ├── engine │ │ └── mod.rs │ │ ├── input │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── output │ │ └── mod.rs │ │ ├── pipeline │ │ └── mod.rs │ │ ├── processor │ │ └── mod.rs │ │ ├── stream │ │ └── mod.rs │ │ └── temporary │ │ └── mod.rs ├── arkflow-plugin │ ├── Cargo.toml │ ├── src │ │ ├── buffer │ │ │ ├── join.rs │ │ │ ├── memory.rs │ │ │ ├── mod.rs │ │ │ ├── session_window.rs │ │ │ ├── sliding_window.rs │ │ │ ├── tumbling_window.rs │ │ │ └── window.rs │ │ ├── codec │ │ │ ├── json.rs │ │ │ ├── mod.rs │ │ │ └── protobuf.rs │ │ ├── component │ │ │ ├── json.rs │ │ │ ├── mod.rs │ │ │ ├── protobuf.rs │ │ │ ├── redis.rs │ │ │ └── sql.rs │ │ ├── expr │ │ │ └── mod.rs │ │ ├── input │ │ │ ├── file.rs │ │ │ ├── generate.rs │ │ │ ├── http.rs │ │ │ ├── kafka.rs │ │ │ ├── memory.rs │ │ │ ├── mod.rs │ │ │ ├── modbus.rs │ │ │ ├── mqtt.rs │ │ │ ├── multiple_inputs.rs │ │ │ ├── nats.rs │ │ │ ├── pulsar.rs │ │ │ ├── redis.rs │ │ │ ├── sql.rs │ │ │ └── websocket.rs │ │ ├── lib.rs │ │ ├── output │ │ │ ├── drop.rs │ │ │ ├── http.rs │ │ │ ├── kafka.rs │ │ │ ├── mod.rs │ │ │ ├── mqtt.rs │ │ │ ├── nats.rs │ │ │ ├── pulsar.rs │ │ │ ├── redis.rs │ │ │ ├── sql.rs │ │ │ └── stdout.rs │ │ ├── processor │ │ │ ├── batch.rs │ │ │ ├── json.rs │ │ │ ├── mod.rs │ │ │ ├── protobuf.rs │ │ │ ├── python.rs │ │ │ ├── sql.rs │ │ │ └── vrl.rs │ │ ├── pulsar │ │ │ ├── common.rs │ │ │ └── mod.rs │ │ ├── temporary │ │ │ ├── mod.rs │ │ │ └── redis.rs │ │ ├── time │ │ │ └── mod.rs │ │ └── udf │ │ │ ├── aggregate_udf.rs │ │ │ ├── mod.rs │ │ │ ├── scalar_udf.rs │ │ │ └── window_udf.rs │ └── tests │ │ └── pulsar_tests.rs └── arkflow │ ├── Cargo.toml │ └── src │ └── main.rs ├── docker └── Dockerfile ├── docs ├── .gitignore ├── README.md ├── blog │ ├── 2025 │ │ ├── 04 │ │ │ ├── 01-v0.2.0-rc1.md │ │ │ └── 15-v0.2.0-release.md │ │ ├── 05 │ │ │ └── 09-v0.3.0-release.md │ │ └── 06 │ │ │ └── 14-ArkFlow+Python-Easy-Real-time-AI.md │ ├── authors.yml │ └── tags.yml ├── docs │ ├── 0-intro.md │ ├── 999-about-logo.md │ ├── components │ │ ├── 0-inputs │ │ │ ├── _category_.json │ │ │ ├── generate.md │ │ │ ├── http.md │ │ │ ├── kafka.md │ │ │ ├── memory.md │ │ │ ├── modbus.md │ │ │ ├── mqtt.md │ │ │ ├── multiple_inputs.md │ │ │ ├── nats.md │ │ │ ├── redis.md │ │ │ └── sql.md │ │ ├── 1-buffers │ │ │ ├── _category_.json │ │ │ ├── memory.md │ │ │ ├── session_window.md │ │ │ ├── sliding_window.md │ │ │ └── tumbling_window.md │ │ ├── 2-processors │ │ │ ├── _category_.json │ │ │ ├── batch.md │ │ │ ├── json.md │ │ │ ├── protobuf.md │ │ │ ├── python.md │ │ │ ├── sql.md │ │ │ └── vrl.md │ │ ├── 3-outputs │ │ │ ├── _category_.json │ │ │ ├── drop.md │ │ │ ├── http.md │ │ │ ├── kafka.md │ │ │ ├── mqtt.md │ │ │ ├── nats.md │ │ │ └── stdout.md │ │ ├── 4-temporary │ │ │ ├── _category_.json │ │ │ └── redis.md │ │ └── _category_.json │ ├── deploy │ │ ├── _category_.json │ │ └── k8s-deployment.md │ ├── logo.svg │ └── sql │ │ ├── 0-data-types.md │ │ ├── 1-operators.md │ │ ├── 2-select.md │ │ ├── 4-subqueries.md │ │ ├── 5-aggregate_functions.md │ │ ├── 6-window_functions.md │ │ ├── 7-scalar_functions.md │ │ ├── 8-special_functions.md │ │ ├── 9-udf.md │ │ └── _category_.json ├── docusaurus.config.ts ├── package.json ├── pnpm-lock.yaml ├── sidebars.ts ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── markdown-page.md ├── static │ ├── .nojekyll │ └── img │ │ ├── arkflow.svg │ │ ├── docusaurus-social-card.jpg │ │ ├── docusaurus.png │ │ ├── favicon.ico │ │ ├── favicon.svg │ │ ├── home-1.svg │ │ ├── home-2.svg │ │ ├── home-3.svg │ │ ├── home-4.svg │ │ ├── logo-1.svg │ │ ├── logo-cp.svg │ │ ├── logo.svg │ │ ├── logo2.svg │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg ├── tsconfig.json ├── versioned_docs │ ├── version-0.2.x │ │ ├── 0-intro.md │ │ ├── components │ │ │ ├── 0-inputs │ │ │ │ ├── _category_.json │ │ │ │ ├── generate.md │ │ │ │ ├── http.md │ │ │ │ ├── kafka.md │ │ │ │ ├── memory.md │ │ │ │ ├── mqtt.md │ │ │ │ └── sql.md │ │ │ ├── 1-buffers │ │ │ │ ├── _category_.json │ │ │ │ └── memory.md │ │ │ ├── 2-processors │ │ │ │ ├── _category_.json │ │ │ │ ├── batch.md │ │ │ │ ├── json.md │ │ │ │ ├── protobuf.md │ │ │ │ └── sql.md │ │ │ ├── 3-outputs │ │ │ │ ├── _category_.json │ │ │ │ ├── drop.md │ │ │ │ ├── http.md │ │ │ │ ├── kafka.md │ │ │ │ ├── mqtt.md │ │ │ │ └── stdout.md │ │ │ └── _category_.json │ │ ├── deploy │ │ │ ├── _category_.json │ │ │ └── k8s-deployment.md │ │ └── sql │ │ │ ├── 0-data-types.md │ │ │ ├── 1-operators.md │ │ │ ├── 2-select.md │ │ │ ├── 4-subqueries.md │ │ │ ├── 5-aggregate_functions.md │ │ │ ├── 6-window_functions.md │ │ │ ├── 7-scalar_functions.md │ │ │ ├── 8-special_functions.md │ │ │ └── _category_.json │ ├── version-0.3.x │ │ ├── 0-intro.md │ │ ├── 999-about-logo.md │ │ ├── architecture.svg │ │ ├── components │ │ │ ├── 0-inputs │ │ │ │ ├── _category_.json │ │ │ │ ├── generate.md │ │ │ │ ├── http.md │ │ │ │ ├── kafka.md │ │ │ │ ├── memory.md │ │ │ │ ├── mqtt.md │ │ │ │ ├── nats.md │ │ │ │ ├── redis.md │ │ │ │ └── sql.md │ │ │ ├── 1-buffers │ │ │ │ ├── _category_.json │ │ │ │ ├── memory.md │ │ │ │ ├── session_window.md │ │ │ │ ├── sliding_window.md │ │ │ │ └── tumbling_window.md │ │ │ ├── 2-processors │ │ │ │ ├── _category_.json │ │ │ │ ├── batch.md │ │ │ │ ├── json.md │ │ │ │ ├── protobuf.md │ │ │ │ ├── sql.md │ │ │ │ └── vrl.md │ │ │ ├── 3-outputs │ │ │ │ ├── _category_.json │ │ │ │ ├── drop.md │ │ │ │ ├── http.md │ │ │ │ ├── kafka.md │ │ │ │ ├── mqtt.md │ │ │ │ ├── nats.md │ │ │ │ └── stdout.md │ │ │ └── _category_.json │ │ ├── deploy │ │ │ ├── _category_.json │ │ │ └── k8s-deployment.md │ │ ├── logo.svg │ │ └── sql │ │ │ ├── 0-data-types.md │ │ │ ├── 1-operators.md │ │ │ ├── 2-select.md │ │ │ ├── 4-subqueries.md │ │ │ ├── 5-aggregate_functions.md │ │ │ ├── 6-window_functions.md │ │ │ ├── 7-scalar_functions.md │ │ │ ├── 8-special_functions.md │ │ │ ├── 9-udf.md │ │ │ └── _category_.json │ └── version-0.5.x │ │ ├── 0-intro.md │ │ ├── 999-about-logo.md │ │ ├── components │ │ ├── 0-inputs │ │ │ ├── _category_.json │ │ │ ├── generate.md │ │ │ ├── http.md │ │ │ ├── kafka.md │ │ │ ├── memory.md │ │ │ ├── modbus.md │ │ │ ├── mqtt.md │ │ │ ├── multiple_inputs.md │ │ │ ├── nats.md │ │ │ ├── redis.md │ │ │ └── sql.md │ │ ├── 1-buffers │ │ │ ├── _category_.json │ │ │ ├── memory.md │ │ │ ├── session_window.md │ │ │ ├── sliding_window.md │ │ │ └── tumbling_window.md │ │ ├── 2-processors │ │ │ ├── _category_.json │ │ │ ├── batch.md │ │ │ ├── json.md │ │ │ ├── protobuf.md │ │ │ ├── python.md │ │ │ ├── sql.md │ │ │ └── vrl.md │ │ ├── 3-outputs │ │ │ ├── _category_.json │ │ │ ├── drop.md │ │ │ ├── http.md │ │ │ ├── kafka.md │ │ │ ├── mqtt.md │ │ │ ├── nats.md │ │ │ └── stdout.md │ │ ├── 4-temporary │ │ │ ├── _category_.json │ │ │ └── redis.md │ │ └── _category_.json │ │ ├── deploy │ │ ├── _category_.json │ │ └── k8s-deployment.md │ │ ├── logo.svg │ │ └── sql │ │ ├── 0-data-types.md │ │ ├── 1-operators.md │ │ ├── 2-select.md │ │ ├── 4-subqueries.md │ │ ├── 5-aggregate_functions.md │ │ ├── 6-window_functions.md │ │ ├── 7-scalar_functions.md │ │ ├── 8-special_functions.md │ │ ├── 9-udf.md │ │ └── _category_.json ├── versioned_sidebars │ ├── version-0.2.x-sidebars.json │ ├── version-0.3.x-sidebars.json │ └── version-0.5.x-sidebars.json └── versions.json ├── examples ├── drop_output_example.yaml ├── generate_example.yaml ├── http_client_example.yaml ├── http_server_example.yaml ├── input_data.csv ├── join_buffer_example.yaml ├── kafka_example.yaml ├── message.proto ├── mqtt_example.yaml ├── nats_input_example.yaml ├── nats_output_example.yaml ├── protobuf_example.yaml ├── python │ └── example1.py ├── python_processor_example.yaml ├── redis_input_example.yaml ├── redis_output_example.yaml ├── redis_temporary_example.yaml ├── sql_input_example.yaml ├── sql_output_example.yaml ├── stream_data.json ├── vrl_example.yaml └── websocket_input_example.yaml └── images ├── cncf-landscape-logo.svg ├── cncf-logo.svg ├── logo.svg └── wx-group.png /.dockerignore: -------------------------------------------------------------------------------- 1 | /.git 2 | /.idea 3 | /target 4 | /docs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/doc-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/.github/workflows/doc-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.github/workflows/test-doc-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/.github/workflows/test-doc-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/README_zh.md -------------------------------------------------------------------------------- /crates/arkflow-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-core/Cargo.toml -------------------------------------------------------------------------------- /crates/arkflow-core/src/buffer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-core/src/buffer/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-core/src/cli/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-core/src/cli/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-core/src/codec/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-core/src/codec/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-core/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-core/src/config.rs -------------------------------------------------------------------------------- /crates/arkflow-core/src/engine/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-core/src/engine/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-core/src/input/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-core/src/input/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-core/src/lib.rs -------------------------------------------------------------------------------- /crates/arkflow-core/src/output/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-core/src/output/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-core/src/pipeline/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-core/src/pipeline/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-core/src/processor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-core/src/processor/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-core/src/stream/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-core/src/stream/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-core/src/temporary/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-core/src/temporary/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/Cargo.toml -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/buffer/join.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/buffer/join.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/buffer/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/buffer/memory.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/buffer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/buffer/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/buffer/session_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/buffer/session_window.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/buffer/sliding_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/buffer/sliding_window.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/buffer/tumbling_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/buffer/tumbling_window.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/buffer/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/buffer/window.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/codec/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/codec/json.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/codec/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/codec/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/codec/protobuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/codec/protobuf.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/component/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/component/json.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/component/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/component/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/component/protobuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/component/protobuf.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/component/redis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/component/redis.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/component/sql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/component/sql.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/expr/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/expr/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/file.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/generate.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/http.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/kafka.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/kafka.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/memory.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/modbus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/modbus.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/mqtt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/mqtt.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/multiple_inputs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/multiple_inputs.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/nats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/nats.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/pulsar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/pulsar.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/redis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/redis.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/sql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/sql.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/input/websocket.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/input/websocket.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/lib.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/output/drop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/output/drop.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/output/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/output/http.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/output/kafka.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/output/kafka.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/output/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/output/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/output/mqtt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/output/mqtt.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/output/nats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/output/nats.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/output/pulsar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/output/pulsar.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/output/redis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/output/redis.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/output/sql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/output/sql.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/output/stdout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/output/stdout.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/processor/batch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/processor/batch.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/processor/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/processor/json.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/processor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/processor/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/processor/protobuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/processor/protobuf.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/processor/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/processor/python.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/processor/sql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/processor/sql.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/processor/vrl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/processor/vrl.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/pulsar/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/pulsar/common.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/pulsar/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/pulsar/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/temporary/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/temporary/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/temporary/redis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/temporary/redis.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/time/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/time/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/udf/aggregate_udf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/udf/aggregate_udf.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/udf/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/udf/mod.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/udf/scalar_udf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/udf/scalar_udf.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/src/udf/window_udf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/src/udf/window_udf.rs -------------------------------------------------------------------------------- /crates/arkflow-plugin/tests/pulsar_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow-plugin/tests/pulsar_tests.rs -------------------------------------------------------------------------------- /crates/arkflow/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow/Cargo.toml -------------------------------------------------------------------------------- /crates/arkflow/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/crates/arkflow/src/main.rs -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/blog/2025/04/01-v0.2.0-rc1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/blog/2025/04/01-v0.2.0-rc1.md -------------------------------------------------------------------------------- /docs/blog/2025/04/15-v0.2.0-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/blog/2025/04/15-v0.2.0-release.md -------------------------------------------------------------------------------- /docs/blog/2025/05/09-v0.3.0-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/blog/2025/05/09-v0.3.0-release.md -------------------------------------------------------------------------------- /docs/blog/2025/06/14-ArkFlow+Python-Easy-Real-time-AI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/blog/2025/06/14-ArkFlow+Python-Easy-Real-time-AI.md -------------------------------------------------------------------------------- /docs/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/blog/authors.yml -------------------------------------------------------------------------------- /docs/blog/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/blog/tags.yml -------------------------------------------------------------------------------- /docs/docs/0-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/0-intro.md -------------------------------------------------------------------------------- /docs/docs/999-about-logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/999-about-logo.md -------------------------------------------------------------------------------- /docs/docs/components/0-inputs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/0-inputs/_category_.json -------------------------------------------------------------------------------- /docs/docs/components/0-inputs/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/0-inputs/generate.md -------------------------------------------------------------------------------- /docs/docs/components/0-inputs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/0-inputs/http.md -------------------------------------------------------------------------------- /docs/docs/components/0-inputs/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/0-inputs/kafka.md -------------------------------------------------------------------------------- /docs/docs/components/0-inputs/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/0-inputs/memory.md -------------------------------------------------------------------------------- /docs/docs/components/0-inputs/modbus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/0-inputs/modbus.md -------------------------------------------------------------------------------- /docs/docs/components/0-inputs/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/0-inputs/mqtt.md -------------------------------------------------------------------------------- /docs/docs/components/0-inputs/multiple_inputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/0-inputs/multiple_inputs.md -------------------------------------------------------------------------------- /docs/docs/components/0-inputs/nats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/0-inputs/nats.md -------------------------------------------------------------------------------- /docs/docs/components/0-inputs/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/0-inputs/redis.md -------------------------------------------------------------------------------- /docs/docs/components/0-inputs/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/0-inputs/sql.md -------------------------------------------------------------------------------- /docs/docs/components/1-buffers/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/1-buffers/_category_.json -------------------------------------------------------------------------------- /docs/docs/components/1-buffers/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/1-buffers/memory.md -------------------------------------------------------------------------------- /docs/docs/components/1-buffers/session_window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/1-buffers/session_window.md -------------------------------------------------------------------------------- /docs/docs/components/1-buffers/sliding_window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/1-buffers/sliding_window.md -------------------------------------------------------------------------------- /docs/docs/components/1-buffers/tumbling_window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/1-buffers/tumbling_window.md -------------------------------------------------------------------------------- /docs/docs/components/2-processors/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/2-processors/_category_.json -------------------------------------------------------------------------------- /docs/docs/components/2-processors/batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/2-processors/batch.md -------------------------------------------------------------------------------- /docs/docs/components/2-processors/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/2-processors/json.md -------------------------------------------------------------------------------- /docs/docs/components/2-processors/protobuf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/2-processors/protobuf.md -------------------------------------------------------------------------------- /docs/docs/components/2-processors/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/2-processors/python.md -------------------------------------------------------------------------------- /docs/docs/components/2-processors/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/2-processors/sql.md -------------------------------------------------------------------------------- /docs/docs/components/2-processors/vrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/2-processors/vrl.md -------------------------------------------------------------------------------- /docs/docs/components/3-outputs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/3-outputs/_category_.json -------------------------------------------------------------------------------- /docs/docs/components/3-outputs/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/3-outputs/drop.md -------------------------------------------------------------------------------- /docs/docs/components/3-outputs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/3-outputs/http.md -------------------------------------------------------------------------------- /docs/docs/components/3-outputs/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/3-outputs/kafka.md -------------------------------------------------------------------------------- /docs/docs/components/3-outputs/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/3-outputs/mqtt.md -------------------------------------------------------------------------------- /docs/docs/components/3-outputs/nats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/3-outputs/nats.md -------------------------------------------------------------------------------- /docs/docs/components/3-outputs/stdout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/3-outputs/stdout.md -------------------------------------------------------------------------------- /docs/docs/components/4-temporary/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/4-temporary/_category_.json -------------------------------------------------------------------------------- /docs/docs/components/4-temporary/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/4-temporary/redis.md -------------------------------------------------------------------------------- /docs/docs/components/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/components/_category_.json -------------------------------------------------------------------------------- /docs/docs/deploy/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/deploy/_category_.json -------------------------------------------------------------------------------- /docs/docs/deploy/k8s-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/deploy/k8s-deployment.md -------------------------------------------------------------------------------- /docs/docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/logo.svg -------------------------------------------------------------------------------- /docs/docs/sql/0-data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/sql/0-data-types.md -------------------------------------------------------------------------------- /docs/docs/sql/1-operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/sql/1-operators.md -------------------------------------------------------------------------------- /docs/docs/sql/2-select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/sql/2-select.md -------------------------------------------------------------------------------- /docs/docs/sql/4-subqueries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/sql/4-subqueries.md -------------------------------------------------------------------------------- /docs/docs/sql/5-aggregate_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/sql/5-aggregate_functions.md -------------------------------------------------------------------------------- /docs/docs/sql/6-window_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/sql/6-window_functions.md -------------------------------------------------------------------------------- /docs/docs/sql/7-scalar_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/sql/7-scalar_functions.md -------------------------------------------------------------------------------- /docs/docs/sql/8-special_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/sql/8-special_functions.md -------------------------------------------------------------------------------- /docs/docs/sql/9-udf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/sql/9-udf.md -------------------------------------------------------------------------------- /docs/docs/sql/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docs/sql/_category_.json -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/arkflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/arkflow.svg -------------------------------------------------------------------------------- /docs/static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/favicon.svg -------------------------------------------------------------------------------- /docs/static/img/home-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/home-1.svg -------------------------------------------------------------------------------- /docs/static/img/home-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/home-2.svg -------------------------------------------------------------------------------- /docs/static/img/home-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/home-3.svg -------------------------------------------------------------------------------- /docs/static/img/home-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/home-4.svg -------------------------------------------------------------------------------- /docs/static/img/logo-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/logo-1.svg -------------------------------------------------------------------------------- /docs/static/img/logo-cp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/logo-cp.svg -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/logo2.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/0-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/0-intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/0-inputs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/0-inputs/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/0-inputs/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/0-inputs/generate.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/0-inputs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/0-inputs/http.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/0-inputs/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/0-inputs/kafka.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/0-inputs/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/0-inputs/memory.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/0-inputs/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/0-inputs/mqtt.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/0-inputs/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/0-inputs/sql.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/1-buffers/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/1-buffers/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/1-buffers/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/1-buffers/memory.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/2-processors/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/2-processors/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/2-processors/batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/2-processors/batch.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/2-processors/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/2-processors/json.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/2-processors/protobuf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/2-processors/protobuf.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/2-processors/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/2-processors/sql.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/3-outputs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/3-outputs/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/3-outputs/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/3-outputs/drop.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/3-outputs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/3-outputs/http.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/3-outputs/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/3-outputs/kafka.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/3-outputs/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/3-outputs/mqtt.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/3-outputs/stdout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/3-outputs/stdout.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/components/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/components/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/deploy/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/deploy/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/deploy/k8s-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/deploy/k8s-deployment.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/sql/0-data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/sql/0-data-types.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/sql/1-operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/sql/1-operators.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/sql/2-select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/sql/2-select.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/sql/4-subqueries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/sql/4-subqueries.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/sql/5-aggregate_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/sql/5-aggregate_functions.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/sql/6-window_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/sql/6-window_functions.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/sql/7-scalar_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/sql/7-scalar_functions.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/sql/8-special_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/sql/8-special_functions.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.2.x/sql/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.2.x/sql/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/0-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/0-intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/999-about-logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/999-about-logo.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/architecture.svg -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/0-inputs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/0-inputs/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/0-inputs/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/0-inputs/generate.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/0-inputs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/0-inputs/http.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/0-inputs/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/0-inputs/kafka.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/0-inputs/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/0-inputs/memory.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/0-inputs/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/0-inputs/mqtt.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/0-inputs/nats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/0-inputs/nats.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/0-inputs/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/0-inputs/redis.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/0-inputs/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/0-inputs/sql.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/1-buffers/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/1-buffers/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/1-buffers/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/1-buffers/memory.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/1-buffers/session_window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/1-buffers/session_window.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/1-buffers/sliding_window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/1-buffers/sliding_window.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/1-buffers/tumbling_window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/1-buffers/tumbling_window.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/2-processors/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/2-processors/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/2-processors/batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/2-processors/batch.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/2-processors/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/2-processors/json.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/2-processors/protobuf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/2-processors/protobuf.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/2-processors/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/2-processors/sql.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/2-processors/vrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/2-processors/vrl.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/3-outputs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/3-outputs/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/3-outputs/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/3-outputs/drop.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/3-outputs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/3-outputs/http.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/3-outputs/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/3-outputs/kafka.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/3-outputs/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/3-outputs/mqtt.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/3-outputs/nats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/3-outputs/nats.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/3-outputs/stdout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/3-outputs/stdout.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/components/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/components/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/deploy/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/deploy/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/deploy/k8s-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/deploy/k8s-deployment.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/logo.svg -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/sql/0-data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/sql/0-data-types.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/sql/1-operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/sql/1-operators.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/sql/2-select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/sql/2-select.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/sql/4-subqueries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/sql/4-subqueries.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/sql/5-aggregate_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/sql/5-aggregate_functions.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/sql/6-window_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/sql/6-window_functions.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/sql/7-scalar_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/sql/7-scalar_functions.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/sql/8-special_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/sql/8-special_functions.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/sql/9-udf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/sql/9-udf.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.3.x/sql/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.3.x/sql/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/0-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/0-intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/999-about-logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/999-about-logo.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/0-inputs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/0-inputs/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/0-inputs/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/0-inputs/generate.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/0-inputs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/0-inputs/http.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/0-inputs/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/0-inputs/kafka.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/0-inputs/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/0-inputs/memory.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/0-inputs/modbus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/0-inputs/modbus.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/0-inputs/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/0-inputs/mqtt.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/0-inputs/multiple_inputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/0-inputs/multiple_inputs.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/0-inputs/nats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/0-inputs/nats.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/0-inputs/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/0-inputs/redis.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/0-inputs/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/0-inputs/sql.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/1-buffers/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/1-buffers/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/1-buffers/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/1-buffers/memory.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/1-buffers/session_window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/1-buffers/session_window.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/1-buffers/sliding_window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/1-buffers/sliding_window.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/1-buffers/tumbling_window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/1-buffers/tumbling_window.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/2-processors/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/2-processors/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/2-processors/batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/2-processors/batch.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/2-processors/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/2-processors/json.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/2-processors/protobuf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/2-processors/protobuf.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/2-processors/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/2-processors/python.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/2-processors/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/2-processors/sql.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/2-processors/vrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/2-processors/vrl.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/3-outputs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/3-outputs/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/3-outputs/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/3-outputs/drop.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/3-outputs/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/3-outputs/http.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/3-outputs/kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/3-outputs/kafka.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/3-outputs/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/3-outputs/mqtt.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/3-outputs/nats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/3-outputs/nats.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/3-outputs/stdout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/3-outputs/stdout.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/4-temporary/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/4-temporary/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/4-temporary/redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/4-temporary/redis.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/components/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/components/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/deploy/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/deploy/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/deploy/k8s-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/deploy/k8s-deployment.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/logo.svg -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/sql/0-data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/sql/0-data-types.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/sql/1-operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/sql/1-operators.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/sql/2-select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/sql/2-select.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/sql/4-subqueries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/sql/4-subqueries.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/sql/5-aggregate_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/sql/5-aggregate_functions.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/sql/6-window_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/sql/6-window_functions.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/sql/7-scalar_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/sql/7-scalar_functions.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/sql/8-special_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/sql/8-special_functions.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/sql/9-udf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/sql/9-udf.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-0.5.x/sql/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_docs/version-0.5.x/sql/_category_.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-0.2.x-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_sidebars/version-0.2.x-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-0.3.x-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_sidebars/version-0.3.x-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-0.5.x-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versioned_sidebars/version-0.5.x-sidebars.json -------------------------------------------------------------------------------- /docs/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/docs/versions.json -------------------------------------------------------------------------------- /examples/drop_output_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/drop_output_example.yaml -------------------------------------------------------------------------------- /examples/generate_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/generate_example.yaml -------------------------------------------------------------------------------- /examples/http_client_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/http_client_example.yaml -------------------------------------------------------------------------------- /examples/http_server_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/http_server_example.yaml -------------------------------------------------------------------------------- /examples/input_data.csv: -------------------------------------------------------------------------------- 1 | id,data 2 | 1,a 3 | 2,b 4 | -------------------------------------------------------------------------------- /examples/join_buffer_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/join_buffer_example.yaml -------------------------------------------------------------------------------- /examples/kafka_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/kafka_example.yaml -------------------------------------------------------------------------------- /examples/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/message.proto -------------------------------------------------------------------------------- /examples/mqtt_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/mqtt_example.yaml -------------------------------------------------------------------------------- /examples/nats_input_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/nats_input_example.yaml -------------------------------------------------------------------------------- /examples/nats_output_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/nats_output_example.yaml -------------------------------------------------------------------------------- /examples/protobuf_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/protobuf_example.yaml -------------------------------------------------------------------------------- /examples/python/example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/python/example1.py -------------------------------------------------------------------------------- /examples/python_processor_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/python_processor_example.yaml -------------------------------------------------------------------------------- /examples/redis_input_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/redis_input_example.yaml -------------------------------------------------------------------------------- /examples/redis_output_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/redis_output_example.yaml -------------------------------------------------------------------------------- /examples/redis_temporary_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/redis_temporary_example.yaml -------------------------------------------------------------------------------- /examples/sql_input_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/sql_input_example.yaml -------------------------------------------------------------------------------- /examples/sql_output_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/sql_output_example.yaml -------------------------------------------------------------------------------- /examples/stream_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/stream_data.json -------------------------------------------------------------------------------- /examples/vrl_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/vrl_example.yaml -------------------------------------------------------------------------------- /examples/websocket_input_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/examples/websocket_input_example.yaml -------------------------------------------------------------------------------- /images/cncf-landscape-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/images/cncf-landscape-logo.svg -------------------------------------------------------------------------------- /images/cncf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/images/cncf-logo.svg -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/images/logo.svg -------------------------------------------------------------------------------- /images/wx-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkflow-rs/arkflow/HEAD/images/wx-group.png --------------------------------------------------------------------------------