ematix-flow 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ematix_flow-0.1.0/Cargo.lock +9632 -0
- ematix_flow-0.1.0/Cargo.toml +222 -0
- ematix_flow-0.1.0/PKG-INFO +821 -0
- ematix_flow-0.1.0/README.md +778 -0
- ematix_flow-0.1.0/crates/ematix-flow-cli/Cargo.toml +51 -0
- ematix_flow-0.1.0/crates/ematix-flow-cli/src/lib.rs +7124 -0
- ematix_flow-0.1.0/crates/ematix-flow-cli/src/main.rs +182 -0
- ematix_flow-0.1.0/crates/ematix-flow-cli/src/metrics_server.rs +152 -0
- ematix_flow-0.1.0/crates/ematix-flow-cli/src/supervisor.rs +383 -0
- ematix_flow-0.1.0/crates/ematix-flow-cli/tests/example_configs.rs +68 -0
- ematix_flow-0.1.0/crates/ematix-flow-cli/tests/integration_e2e.rs +270 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/Cargo.toml +122 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/benches/tpch.rs +266 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/benches/transform.rs +389 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/examples/tpcds_dialect_audit.rs +196 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/examples/tpch_22_audit.rs +133 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/examples/tpch_extract_queries.rs +345 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/examples/tpch_generate.rs +294 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/examples/tpch_q6_tune.rs +239 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/backend.rs +1798 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/ddl.rs +714 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/delta_backend.rs +2242 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/dialect/duckdb.rs +79 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/dialect/mod.rs +129 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/dialect/spark.rs +425 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/duckdb_backend.rs +1172 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/hash.rs +114 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/join.rs +2021 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/kafka_backend.rs +3951 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/kinesis_backend.rs +1358 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/lib.rs +47 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/meta.rs +204 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/mysql_backend.rs +1765 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/objectstore_backend.rs +1621 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/pg.rs +1575 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/pubsub_backend.rs +1108 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/rabbitmq_backend.rs +1131 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/session_blob.rs +511 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/spec.rs +243 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/sqlite_backend.rs +2388 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/state_store/in_memory.rs +81 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/state_store/migrations.rs +133 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/state_store/mod.rs +106 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/state_store/postgres.rs +283 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/strategy/append.rs +237 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/strategy/merge.rs +286 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/strategy/mod.rs +12 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/strategy/scd2.rs +559 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/strategy/truncate.rs +89 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/streaming.rs +2610 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/transform.rs +1195 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/types.rs +557 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/src/windowed.rs +4927 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/tests/backend_config_scaffold.rs +753 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/tests/dialect.rs +99 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/tests/dialect_duckdb.rs +148 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/tests/dialect_duckdb_e2e.rs +156 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/tests/dialect_spark.rs +353 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/tests/dialect_spark_e2e.rs +216 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/tests/integration_pg.rs +7072 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/tests/integration_state_store_pg.rs +207 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/tests/seek_to_default.rs +23 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/tests/state_migrations.rs +84 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/tests/state_store_contract.rs +64 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/tests/state_store_helpers/mod.rs +298 -0
- ematix_flow-0.1.0/crates/ematix-flow-core/tests/tpch_smoke.rs +182 -0
- ematix_flow-0.1.0/crates/ematix-flow-distributed/Cargo.toml +56 -0
- ematix_flow-0.1.0/crates/ematix-flow-distributed/benches/tpch_distributed.rs +287 -0
- ematix_flow-0.1.0/crates/ematix-flow-distributed/src/bin/flow_worker.rs +132 -0
- ematix_flow-0.1.0/crates/ematix-flow-distributed/src/lib.rs +984 -0
- ematix_flow-0.1.0/crates/ematix-flow-distributed/tests/cross_pod.rs +228 -0
- ematix_flow-0.1.0/crates/ematix-flow-distributed/tests/cross_pod_tls.rs +258 -0
- ematix_flow-0.1.0/crates/ematix-flow-py/Cargo.toml +23 -0
- ematix_flow-0.1.0/crates/ematix-flow-py/src/arrow_iter.rs +98 -0
- ematix_flow-0.1.0/crates/ematix-flow-py/src/kafka.rs +327 -0
- ematix_flow-0.1.0/crates/ematix-flow-py/src/kinesis.rs +216 -0
- ematix_flow-0.1.0/crates/ematix-flow-py/src/lib.rs +821 -0
- ematix_flow-0.1.0/crates/ematix-flow-py/src/pubsub.rs +186 -0
- ematix_flow-0.1.0/crates/ematix-flow-py/src/rabbitmq.rs +188 -0
- ematix_flow-0.1.0/pyproject.toml +140 -0
- ematix_flow-0.1.0/python/ematix_flow/__init__.py +98 -0
- ematix_flow-0.1.0/python/ematix_flow/_core.pyi +301 -0
- ematix_flow-0.1.0/python/ematix_flow/cli.py +428 -0
- ematix_flow-0.1.0/python/ematix_flow/config.py +221 -0
- ematix_flow-0.1.0/python/ematix_flow/connections.py +592 -0
- ematix_flow-0.1.0/python/ematix_flow/decorators.py +1630 -0
- ematix_flow-0.1.0/python/ematix_flow/df.py +519 -0
- ematix_flow-0.1.0/python/ematix_flow/feature_view.py +249 -0
- ematix_flow-0.1.0/python/ematix_flow/markers.py +121 -0
- ematix_flow-0.1.0/python/ematix_flow/normalize.py +749 -0
- ematix_flow-0.1.0/python/ematix_flow/pipeline.py +864 -0
- ematix_flow-0.1.0/python/ematix_flow/preview.py +220 -0
- ematix_flow-0.1.0/python/ematix_flow/source.py +49 -0
- ematix_flow-0.1.0/python/ematix_flow/spark.py +194 -0
- ematix_flow-0.1.0/python/ematix_flow/strategy.py +1 -0
- ematix_flow-0.1.0/python/ematix_flow/streaming.py +1565 -0
- ematix_flow-0.1.0/python/ematix_flow/table.py +78 -0
- ematix_flow-0.1.0/python/ematix_flow/training.py +247 -0
- ematix_flow-0.1.0/python/ematix_flow/types.py +125 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.