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.
Files changed (99) hide show
  1. ematix_flow-0.1.0/Cargo.lock +9632 -0
  2. ematix_flow-0.1.0/Cargo.toml +222 -0
  3. ematix_flow-0.1.0/PKG-INFO +821 -0
  4. ematix_flow-0.1.0/README.md +778 -0
  5. ematix_flow-0.1.0/crates/ematix-flow-cli/Cargo.toml +51 -0
  6. ematix_flow-0.1.0/crates/ematix-flow-cli/src/lib.rs +7124 -0
  7. ematix_flow-0.1.0/crates/ematix-flow-cli/src/main.rs +182 -0
  8. ematix_flow-0.1.0/crates/ematix-flow-cli/src/metrics_server.rs +152 -0
  9. ematix_flow-0.1.0/crates/ematix-flow-cli/src/supervisor.rs +383 -0
  10. ematix_flow-0.1.0/crates/ematix-flow-cli/tests/example_configs.rs +68 -0
  11. ematix_flow-0.1.0/crates/ematix-flow-cli/tests/integration_e2e.rs +270 -0
  12. ematix_flow-0.1.0/crates/ematix-flow-core/Cargo.toml +122 -0
  13. ematix_flow-0.1.0/crates/ematix-flow-core/benches/tpch.rs +266 -0
  14. ematix_flow-0.1.0/crates/ematix-flow-core/benches/transform.rs +389 -0
  15. ematix_flow-0.1.0/crates/ematix-flow-core/examples/tpcds_dialect_audit.rs +196 -0
  16. ematix_flow-0.1.0/crates/ematix-flow-core/examples/tpch_22_audit.rs +133 -0
  17. ematix_flow-0.1.0/crates/ematix-flow-core/examples/tpch_extract_queries.rs +345 -0
  18. ematix_flow-0.1.0/crates/ematix-flow-core/examples/tpch_generate.rs +294 -0
  19. ematix_flow-0.1.0/crates/ematix-flow-core/examples/tpch_q6_tune.rs +239 -0
  20. ematix_flow-0.1.0/crates/ematix-flow-core/src/backend.rs +1798 -0
  21. ematix_flow-0.1.0/crates/ematix-flow-core/src/ddl.rs +714 -0
  22. ematix_flow-0.1.0/crates/ematix-flow-core/src/delta_backend.rs +2242 -0
  23. ematix_flow-0.1.0/crates/ematix-flow-core/src/dialect/duckdb.rs +79 -0
  24. ematix_flow-0.1.0/crates/ematix-flow-core/src/dialect/mod.rs +129 -0
  25. ematix_flow-0.1.0/crates/ematix-flow-core/src/dialect/spark.rs +425 -0
  26. ematix_flow-0.1.0/crates/ematix-flow-core/src/duckdb_backend.rs +1172 -0
  27. ematix_flow-0.1.0/crates/ematix-flow-core/src/hash.rs +114 -0
  28. ematix_flow-0.1.0/crates/ematix-flow-core/src/join.rs +2021 -0
  29. ematix_flow-0.1.0/crates/ematix-flow-core/src/kafka_backend.rs +3951 -0
  30. ematix_flow-0.1.0/crates/ematix-flow-core/src/kinesis_backend.rs +1358 -0
  31. ematix_flow-0.1.0/crates/ematix-flow-core/src/lib.rs +47 -0
  32. ematix_flow-0.1.0/crates/ematix-flow-core/src/meta.rs +204 -0
  33. ematix_flow-0.1.0/crates/ematix-flow-core/src/mysql_backend.rs +1765 -0
  34. ematix_flow-0.1.0/crates/ematix-flow-core/src/objectstore_backend.rs +1621 -0
  35. ematix_flow-0.1.0/crates/ematix-flow-core/src/pg.rs +1575 -0
  36. ematix_flow-0.1.0/crates/ematix-flow-core/src/pubsub_backend.rs +1108 -0
  37. ematix_flow-0.1.0/crates/ematix-flow-core/src/rabbitmq_backend.rs +1131 -0
  38. ematix_flow-0.1.0/crates/ematix-flow-core/src/session_blob.rs +511 -0
  39. ematix_flow-0.1.0/crates/ematix-flow-core/src/spec.rs +243 -0
  40. ematix_flow-0.1.0/crates/ematix-flow-core/src/sqlite_backend.rs +2388 -0
  41. ematix_flow-0.1.0/crates/ematix-flow-core/src/state_store/in_memory.rs +81 -0
  42. ematix_flow-0.1.0/crates/ematix-flow-core/src/state_store/migrations.rs +133 -0
  43. ematix_flow-0.1.0/crates/ematix-flow-core/src/state_store/mod.rs +106 -0
  44. ematix_flow-0.1.0/crates/ematix-flow-core/src/state_store/postgres.rs +283 -0
  45. ematix_flow-0.1.0/crates/ematix-flow-core/src/strategy/append.rs +237 -0
  46. ematix_flow-0.1.0/crates/ematix-flow-core/src/strategy/merge.rs +286 -0
  47. ematix_flow-0.1.0/crates/ematix-flow-core/src/strategy/mod.rs +12 -0
  48. ematix_flow-0.1.0/crates/ematix-flow-core/src/strategy/scd2.rs +559 -0
  49. ematix_flow-0.1.0/crates/ematix-flow-core/src/strategy/truncate.rs +89 -0
  50. ematix_flow-0.1.0/crates/ematix-flow-core/src/streaming.rs +2610 -0
  51. ematix_flow-0.1.0/crates/ematix-flow-core/src/transform.rs +1195 -0
  52. ematix_flow-0.1.0/crates/ematix-flow-core/src/types.rs +557 -0
  53. ematix_flow-0.1.0/crates/ematix-flow-core/src/windowed.rs +4927 -0
  54. ematix_flow-0.1.0/crates/ematix-flow-core/tests/backend_config_scaffold.rs +753 -0
  55. ematix_flow-0.1.0/crates/ematix-flow-core/tests/dialect.rs +99 -0
  56. ematix_flow-0.1.0/crates/ematix-flow-core/tests/dialect_duckdb.rs +148 -0
  57. ematix_flow-0.1.0/crates/ematix-flow-core/tests/dialect_duckdb_e2e.rs +156 -0
  58. ematix_flow-0.1.0/crates/ematix-flow-core/tests/dialect_spark.rs +353 -0
  59. ematix_flow-0.1.0/crates/ematix-flow-core/tests/dialect_spark_e2e.rs +216 -0
  60. ematix_flow-0.1.0/crates/ematix-flow-core/tests/integration_pg.rs +7072 -0
  61. ematix_flow-0.1.0/crates/ematix-flow-core/tests/integration_state_store_pg.rs +207 -0
  62. ematix_flow-0.1.0/crates/ematix-flow-core/tests/seek_to_default.rs +23 -0
  63. ematix_flow-0.1.0/crates/ematix-flow-core/tests/state_migrations.rs +84 -0
  64. ematix_flow-0.1.0/crates/ematix-flow-core/tests/state_store_contract.rs +64 -0
  65. ematix_flow-0.1.0/crates/ematix-flow-core/tests/state_store_helpers/mod.rs +298 -0
  66. ematix_flow-0.1.0/crates/ematix-flow-core/tests/tpch_smoke.rs +182 -0
  67. ematix_flow-0.1.0/crates/ematix-flow-distributed/Cargo.toml +56 -0
  68. ematix_flow-0.1.0/crates/ematix-flow-distributed/benches/tpch_distributed.rs +287 -0
  69. ematix_flow-0.1.0/crates/ematix-flow-distributed/src/bin/flow_worker.rs +132 -0
  70. ematix_flow-0.1.0/crates/ematix-flow-distributed/src/lib.rs +984 -0
  71. ematix_flow-0.1.0/crates/ematix-flow-distributed/tests/cross_pod.rs +228 -0
  72. ematix_flow-0.1.0/crates/ematix-flow-distributed/tests/cross_pod_tls.rs +258 -0
  73. ematix_flow-0.1.0/crates/ematix-flow-py/Cargo.toml +23 -0
  74. ematix_flow-0.1.0/crates/ematix-flow-py/src/arrow_iter.rs +98 -0
  75. ematix_flow-0.1.0/crates/ematix-flow-py/src/kafka.rs +327 -0
  76. ematix_flow-0.1.0/crates/ematix-flow-py/src/kinesis.rs +216 -0
  77. ematix_flow-0.1.0/crates/ematix-flow-py/src/lib.rs +821 -0
  78. ematix_flow-0.1.0/crates/ematix-flow-py/src/pubsub.rs +186 -0
  79. ematix_flow-0.1.0/crates/ematix-flow-py/src/rabbitmq.rs +188 -0
  80. ematix_flow-0.1.0/pyproject.toml +140 -0
  81. ematix_flow-0.1.0/python/ematix_flow/__init__.py +98 -0
  82. ematix_flow-0.1.0/python/ematix_flow/_core.pyi +301 -0
  83. ematix_flow-0.1.0/python/ematix_flow/cli.py +428 -0
  84. ematix_flow-0.1.0/python/ematix_flow/config.py +221 -0
  85. ematix_flow-0.1.0/python/ematix_flow/connections.py +592 -0
  86. ematix_flow-0.1.0/python/ematix_flow/decorators.py +1630 -0
  87. ematix_flow-0.1.0/python/ematix_flow/df.py +519 -0
  88. ematix_flow-0.1.0/python/ematix_flow/feature_view.py +249 -0
  89. ematix_flow-0.1.0/python/ematix_flow/markers.py +121 -0
  90. ematix_flow-0.1.0/python/ematix_flow/normalize.py +749 -0
  91. ematix_flow-0.1.0/python/ematix_flow/pipeline.py +864 -0
  92. ematix_flow-0.1.0/python/ematix_flow/preview.py +220 -0
  93. ematix_flow-0.1.0/python/ematix_flow/source.py +49 -0
  94. ematix_flow-0.1.0/python/ematix_flow/spark.py +194 -0
  95. ematix_flow-0.1.0/python/ematix_flow/strategy.py +1 -0
  96. ematix_flow-0.1.0/python/ematix_flow/streaming.py +1565 -0
  97. ematix_flow-0.1.0/python/ematix_flow/table.py +78 -0
  98. ematix_flow-0.1.0/python/ematix_flow/training.py +247 -0
  99. 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.