hyperstreamdb 0.1.1__tar.gz → 0.1.2__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.
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.github/workflows/release.yml +1 -1
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.gitignore +1 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/Cargo.lock +1 -1
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/Cargo.toml +7 -3
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/PKG-INFO +1 -1
- hyperstreamdb-0.1.2/demo/01_basics.py +106 -0
- hyperstreamdb-0.1.2/demo/01_installation_and_basics.ipynb +719 -0
- hyperstreamdb-0.1.2/demo/02_rag_pipeline.ipynb +538 -0
- hyperstreamdb-0.1.2/demo/02_rag_pipeline.py +117 -0
- hyperstreamdb-0.1.2/demo/news_db/metadata/v1.metadata.json +1 -0
- hyperstreamdb-0.1.2/demo/verify_explain.py +59 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/api_reference.md +25 -4
- hyperstreamdb-0.1.2/news_db/metadata/v1.metadata.json +1 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/pyproject.toml +1 -1
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/python/hyperstreamdb/__init__.py +57 -6
- hyperstreamdb-0.1.2/rag_db/metadata/v1.metadata.json +1 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/cache.rs +1 -1
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/ffi.rs +10 -10
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/tokenizer.rs +1 -1
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/maintenance.rs +9 -9
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/manifest.rs +13 -13
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/mod.rs +1 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/planner.rs +38 -1
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/query.rs +2 -2
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/reader.rs +79 -34
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/mod.rs +1 -1
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/optimizer.rs +3 -2
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/physical_plan.rs +7 -6
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/table.rs +250 -22
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/lib.rs +8 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/python_binding.rs +141 -8
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/telemetry/tracing.rs +4 -2
- hyperstreamdb-0.1.2/test_explain.py +42 -0
- hyperstreamdb-0.1.2/test_smart_db_gpu_200000/metadata/version-hint.text +1 -0
- hyperstreamdb-0.1.2/test_smart_db_gpu_50000/metadata/version-hint.text +1 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_connector_ffi.rs +3 -2
- hyperstreamdb-0.1.1/demo/01_installation_and_basics.ipynb +0 -542
- hyperstreamdb-0.1.1/demo/02_rag_pipeline.ipynb +0 -268
- hyperstreamdb-0.1.1/demo/news_db/metadata/v1.metadata.json +0 -1
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.gitattributes +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/constants/32b327793848e7d8 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/constants/67b0a8ccf18bf5d2 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/constants/84828557b4ee7be4 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/033d249393293bc0/8e1e35c1a81e136d +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/049636c0c015cfc3/0ed63182b31492e2 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/049636c0c015cfc3/5ac252de8b508dc4 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/049636c0c015cfc3/c69672a5906e5344 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/049636c0c015cfc3/fc828d7b270e79f1 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/033d249393293bc0 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/049636c0c015cfc3 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/05c52c9dbdefb039 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/0aa855aa286cc0d5 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/0e93d521ad8ef297 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/221ff8984f1afcd9 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/225f7f5440d9a2a1 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/2d4c1faa9e4a0819 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/36599888c1042a48 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/40704535438cf9f8 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/41be53cbad6e8d92 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/475ae2144fdf49f9 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/4b0f3198ef3db3c2 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/59ae5c10cefe5c60 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/5ee4203c85e85823 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/6110d1d2476ad899 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/6fd0ebd83350bcd2 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/785f986097e422f8 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/7bf4a2cde59031b2 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/91242aa0c25004e0 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/9c035198139b2efc +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/a45fa4b659eeb9ab +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/a4f92d149856ac2c +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/b9d1eaf93992a2cc +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/cc4d031715368385 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/d4df3c831314ef07 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/de17b168cfeb515b +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/e5367d5f12d2042b +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/f2f8bcbc32cab849 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/f84bb7f3b884e266 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/04e6b3400353b141/fd7b8d1c000fde7f +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/05c52c9dbdefb039/99d15f32aec985fb +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0aa855aa286cc0d5/5671237fbbf113b2 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0aa855aa286cc0d5/79c1573b2ffdb2ac +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0aa855aa286cc0d5/84cf5a51ba1787b1 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0aa855aa286cc0d5/a0cb613faedd9a04 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0aa855aa286cc0d5/a4b1fb408c11860f +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0aa855aa286cc0d5/f73051ec0a52ed7e +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/0e93d521ad8ef297/6723cf4071f8bc14 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/221ff8984f1afcd9/fe081ddaa3a9a31b +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/225f7f5440d9a2a1/5e50886300e01e9d +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/2d4c1faa9e4a0819/99d15f32aec985fb +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/36599888c1042a48/fe081ddaa3a9a31b +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/40704535438cf9f8/8e72e999906e69af +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/41be53cbad6e8d92/3271a1944fa17f81 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/41be53cbad6e8d92/bb49a0bb4dc1adbf +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/475ae2144fdf49f9/0cf5cb1ae98c56d8 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/4b0f3198ef3db3c2/50d4726de6ad1864 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/59ae5c10cefe5c60/c1f4a115e99a62f7 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/5ee4203c85e85823/8e1e35c1a81e136d +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/6110d1d2476ad899/fe081ddaa3a9a31b +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/6fd0ebd83350bcd2/2fa72292e7a6b8bc +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/6fd0ebd83350bcd2/39e0e4d93040eb1c +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/6fd0ebd83350bcd2/a53f8d859d899871 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/785f986097e422f8/99d15f32aec985fb +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/7bf4a2cde59031b2/0cf5cb1ae98c56d8 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/91242aa0c25004e0/0cf5cb1ae98c56d8 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/9c035198139b2efc/5e50886300e01e9d +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/a45fa4b659eeb9ab/563ec4e1d08d4158 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/a4f92d149856ac2c/5e50886300e01e9d +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/b9d1eaf93992a2cc/e8bbe1e1d0cd639c +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/cc4d031715368385/0cf5cb1ae98c56d8 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/d4df3c831314ef07/fe081ddaa3a9a31b +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/de17b168cfeb515b/fe081ddaa3a9a31b +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/e5367d5f12d2042b/fe081ddaa3a9a31b +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/f2f8bcbc32cab849/fe081ddaa3a9a31b +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/f84bb7f3b884e266/0cf5cb1ae98c56d8 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/.hypothesis/examples/fd7b8d1c000fde7f/0cf5cb1ae98c56d8 +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/LICENSE-APACHE +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/LICENSE-MIT +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/README.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/RUN_COMPLIANCE_TESTS.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/THIRDPARTY_NOTICES.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benches/bench_table.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benches/performance.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benchmarks/competitive/benchmark_results/benchmark_charts.png +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benchmarks/competitive/benchmark_results/benchmark_results.csv +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benchmarks/competitive/benchmark_suite.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benchmarks/competitive/requirements.txt +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benchmarks/competitive/run_benchmarks.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/benchmarks/profile_ingest.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/book.toml +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/build-connectors.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/build.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/build_out.txt +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/check_iceberg_compliance.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/clippy_output.txt +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/.ipynb_checkpoints/01_installation_and_basics-checkpoint.ipynb +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/news_db/metadata/version-hint.text +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/rag_db/metadata/v1.metadata.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/rag_db/metadata/v10.metadata.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/rag_db/metadata/v4.metadata.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/rag_db/metadata/v7.metadata.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/rag_db/metadata/version-hint.text +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/rag_hf_demo.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/demo/requirements.txt +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docker/trino/catalog/hyperstreamdb.properties +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docker/trino/catalog/iceberg.properties +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docker-compose-minio-nessie.yml +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docker-compose.yml +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/BENCHMARKING.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/COMPREHENSIVE_GUIDE.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/GPU_SETUP_GUIDE.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/ICEBERG_V2_V3_API.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/PGVECTOR_SQL_GUIDE.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/PYTHON_VECTOR_API.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/VECTOR_CONFIGURATION.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/architecture.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/catalog_usage.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/index.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/integrations/README.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/integrations/java_jni.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/integrations/python.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/integrations/spark.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/docs/integrations/trino.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/catalog_usage.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/configs/glue.toml +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/configs/hive.toml +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/configs/nessie.toml +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/configs/rest.toml +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/configs/unity.toml +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/pgvector_python_examples.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/pgvector_sql_examples.sql +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/python_distance_api_examples.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/examples/vector_index_types.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/fix_cache.patch +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/fix_nb.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/fix_schema.patch +0 -0
- {hyperstreamdb-0.1.1/test_ingestion_db → hyperstreamdb-0.1.2/news_db}/metadata/version-hint.text +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/proptest-regressions/core/index/gpu.txt +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/proptest-regressions/core/sql/vector_literal.txt +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/proptest-regressions/core/sql/vector_udf.txt +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/python/hyperstreamdb/embeddings.py +0 -0
- {hyperstreamdb-0.1.1/test_per_col_db → hyperstreamdb-0.1.2/rag_db}/metadata/version-hint.text +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/.bloop/bloop.settings.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/.bloop/spark-hyperstream-test.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/.bloop/spark-hyperstream.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/pom.xml +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/DefaultSource.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartition.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReader.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReaderFactory.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamScanBuilder.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamTable.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/bin/gateway.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/bin/hdb.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/bin/iceberg_rest.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/bin/probe_datafusion.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/bin/setup_test_data.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/bin/verify_layered_indexing.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/config.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/glue.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/hive.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/jdbc.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/mod.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/nessie.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/rest.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/catalog/unity.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/clustering.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/compaction.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/embeddings.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/iceberg/iceberg_delete.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/iceberg.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/cosine_distance.cu +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/hamming_distance.cu +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/inner_product.cu +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/jaccard_distance.cu +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/kmeans_assignment.cu +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/l1_distance.cu +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/cuda/l2_distance.cu +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/distance.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/gpu.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/hnsw_ivf.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/ivf.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/memory.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mod.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/cosine_distance.metal +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/hamming_distance.metal +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/inner_product.metal +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/jaccard_distance.metal +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/kmeans_assignment.metal +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/l1_distance.metal +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/mps/l2_distance.metal +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/cosine_distance.cl +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/hamming_distance.cl +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/inner_product.cl +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/jaccard_distance.cl +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/kmeans_assignment.cl +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/l1_distance.cl +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/opencl/l2_distance.cl +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/index/pq.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/merge.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/metadata.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/nessie.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/puffin.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/segment.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/pgvector_rewriter.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/physical_plan/index_join.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/session.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/vector_literal.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/vector_operators.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/sql/vector_udf.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/storage.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/table.rs.orig +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/core/wal.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/enterprise/continuous_indexing.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/enterprise/license.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/enterprise/mod.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/index.rs.old +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/python_distance.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/python_gpu_context.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/telemetry/metrics.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/src/telemetry/mod.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/task.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_admin_features.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_admin_table/metadata/v1.metadata.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_admin_table/metadata/v5.metadata.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_admin_table/metadata/version-hint.text +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_cascading_db/metadata/v2.metadata.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_cascading_db/metadata/version-hint.text +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_catalog.toml +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_compound_pk.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_docstrings.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_exports.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_ingestion_db/metadata/v1.metadata.json +0 -0
- {hyperstreamdb-0.1.1/test_smart_db_cpu_200000 → hyperstreamdb-0.1.2/test_ingestion_db}/metadata/version-hint.text +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_ingestion_db_cpu/metadata/v2.metadata.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_ingestion_db_cpu/metadata/version-hint.text +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_ingestion_db_gpu/metadata/v2.metadata.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_ingestion_db_gpu/metadata/version-hint.text +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_log.txt +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_per_col_db/metadata/v1.metadata.json +0 -0
- {hyperstreamdb-0.1.1/test_smart_db_cpu_50000 → hyperstreamdb-0.1.2/test_per_col_db}/metadata/version-hint.text +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_prefilter.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_python_ingest.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_smart_db_cpu_200000/metadata/v1.metadata.json +0 -0
- {hyperstreamdb-0.1.1/test_smart_db_gpu_200000 → hyperstreamdb-0.1.2/test_smart_db_cpu_200000}/metadata/version-hint.text +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_smart_db_cpu_50000/metadata/v1.metadata.json +0 -0
- {hyperstreamdb-0.1.1/test_smart_db_gpu_50000 → hyperstreamdb-0.1.2/test_smart_db_cpu_50000}/metadata/version-hint.text +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_smart_db_gpu_200000/metadata/v1.metadata.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/test_smart_db_gpu_50000/metadata/v1.metadata.json +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/all_types_index_test.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/README.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/benchmark_vs_iceberg.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/common/__init__.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/common/index_verification.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/common/minio_setup.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/common/utils.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/hybrid/__init__.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/hybrid/test_scalar_plus_vector.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/index/test_index_build.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/requirements.txt +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/run_all.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/table_format/README.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/table_format/__init__.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/table_format/test_vs_iceberg.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/QDRANT_COMPARISON.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/README.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/__init__.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/test_cold_read_latency.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/test_parallel_search.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/test_qdrant_direct_comparison.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/test_vector_index_verification.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/benchmarks/vector_search/test_vs_qdrant.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/bin/generate_iceberg_manifests.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/bin/verify_iceberg_read_check.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/data/download_nyc_taxi.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/data/generate_embeddings.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/data/generate_wikipedia.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/data/start_nessie.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/datafusion_rust_test.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/debug_murmur3.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/fuzz_murmur3.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_boolean_index.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_catalog.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_concurrent_access.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_core_integration.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_error_handling.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_glue_catalog.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_hnsw_ivf.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_merge.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_multi_cloud.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_nyc_taxi.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_profiling_micro.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_query_planning.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_rest_catalog.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_schema_evolution.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_selective_indexing.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_sql.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_vector_search.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_views.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_wal_compaction.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_wal_durability.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_wikipedia.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration/test_write_buffer.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/integration_test_hnsw_ivf_native.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/performance/README.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/performance/test_benchmarks.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/performance/test_gpu_batch_benchmarks.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/prototype_merge.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/schema_evolution_test.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_advanced_sql.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_binary_vector_properties.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_catalog_factory.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_concurrency_robust.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_connector_apis.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_connector_integration.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_context_backend_property.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_core_ingestion.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_cross_engine_compat.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_data_types.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_default_config.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_distance_properties.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_docstrings.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_durability_robust.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_exports.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_gpu_kernel_availability_property.proptest-regressions +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_gpu_kernel_availability_property.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_gpu_kmeans.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_hamming_distance_kernel.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_hardware_parity.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_hyperstream_mps.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_iceberg_python.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_ingestion_optimizations.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_inner_product_kernel.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_jaccard_distance_kernel.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_l1_distance_kernel.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_merge_integration.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_mmh3.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_mps_gpu.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_partitioning_advanced.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_per_column_acceleration.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_performance_comparison.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_pgvector_minimal.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_pgvector_operators_gpu.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_pgvector_sql_integration.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_puffin.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_python_gpu_context.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_qdrant_install.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_smart_switching.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_splits.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_sql_udf_gpu_integration.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/test_vector_consistency.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_catalog_commit.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_compliance.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_delete_correctness.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_iceberg_python_delete.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_iceberg_rest.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_iceberg_rest_create.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_iceberg_rest_delete.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_iceberg_rest_remove_index.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_iceberg_rest_update.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_metadata_creation.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_mor_reads.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_mor_writes.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_partition_transforms.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_partitioned_writes.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_puffin_index.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_rest_updates.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/tests/verify_schema_compat.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/.DS_Store +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/catalog/glue_catalog.properties +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/catalog/hyperstreamdb.properties +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/catalog/iceberg.properties +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/catalog/memory.properties +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/catalog/postgres.properties +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/config.properties +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/entrypoint.sh +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/jvm.config +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config/node.properties +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-config.zip +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/pom.xml +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBColumnHandle.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBConnectorFactory.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBMetadata.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSource.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSourceProvider.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPlugin.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplit.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplitManager.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBTableHandle.java +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/update_schema_patch.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/update_schema_patch2.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/.gitignore +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/Cargo.toml +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/LICENSE-APACHE +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/LICENSE-MIT +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/README.md +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/ann-glove/ann-glove25-angular.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/ann-glove/annhdf5.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/ann-mnist/ann-mnist-784-euclidean.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/ann-mnist/annhdf5.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/ann-sift1m/ann-sift1m-128-euclidean.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/ann-sift1m/annhdf5.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/deallocation_test.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/levensthein.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/examples/random.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/annhdf5.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/api.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/dist.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/flatten.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/hnsw.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/hnswio.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/lib.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/libext.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/prelude.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/vendor/hnsw_rs/src/test.rs +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/verify_docstrings.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/verify_fluent_api.py +0 -0
- {hyperstreamdb-0.1.1 → hyperstreamdb-0.1.2}/verify_unified_ingest.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "hyperstreamdb"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.2"
|
|
4
4
|
edition = "2021"
|
|
5
5
|
license = "MIT AND Apache-2.0"
|
|
6
6
|
description = "HyperStreamDB - Serverless Index-Streaming Database with Overlay Indexing and Vector Search"
|
|
@@ -14,6 +14,10 @@ categories = ["database-implementations", "data-structures", "concurrency"]
|
|
|
14
14
|
name = "hyperstreamdb"
|
|
15
15
|
crate-type = ["cdylib", "rlib"]
|
|
16
16
|
|
|
17
|
+
[[test]]
|
|
18
|
+
name = "test_connector_ffi"
|
|
19
|
+
required-features = ["java"]
|
|
20
|
+
|
|
17
21
|
[features]
|
|
18
22
|
default = ["intel_gpu", "candle"]
|
|
19
23
|
candle = []
|
|
@@ -67,7 +71,7 @@ opencl3 = { version = "0.9", optional = true } # Intel / OpenCL
|
|
|
67
71
|
|
|
68
72
|
# indexing
|
|
69
73
|
roaring = "0.10.2" # For scalar bitmaps
|
|
70
|
-
hnsw_rs = { path = "vendor/hnsw_rs" } # For vector indexing
|
|
74
|
+
hnsw_rs = { version = "0.1.19", path = "vendor/hnsw_rs" } # For vector indexing
|
|
71
75
|
# lance removed due to missing protoc
|
|
72
76
|
|
|
73
77
|
# error handling
|
|
@@ -144,7 +148,7 @@ optional = true
|
|
|
144
148
|
criterion = { version = "0.5", features = ["async_tokio"] }
|
|
145
149
|
rand = "0.8"
|
|
146
150
|
rand_distr = "0.4"
|
|
147
|
-
hnsw_rs = { path = "vendor/hnsw_rs" }
|
|
151
|
+
hnsw_rs = { version = "0.1.19", path = "vendor/hnsw_rs" }
|
|
148
152
|
tempfile = "3.10"
|
|
149
153
|
proptest = "1.4"
|
|
150
154
|
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import hyperstreamdb as hdb
|
|
2
|
+
import pandas as pd
|
|
3
|
+
import numpy as np
|
|
4
|
+
|
|
5
|
+
# Set pandas options to show full text in results
|
|
6
|
+
pd.set_option('display.max_colwidth', None)
|
|
7
|
+
pd.set_option('display.width', 1000)
|
|
8
|
+
pd.set_option('display.max_rows', 50)
|
|
9
|
+
import os
|
|
10
|
+
import shutil
|
|
11
|
+
from datasets import load_dataset
|
|
12
|
+
from sentence_transformers import SentenceTransformer
|
|
13
|
+
import warnings
|
|
14
|
+
|
|
15
|
+
# Suppress warnings
|
|
16
|
+
warnings.filterwarnings('ignore')
|
|
17
|
+
|
|
18
|
+
def run_demo():
|
|
19
|
+
print("=== HyperStreamDB Basics Demo ===")
|
|
20
|
+
|
|
21
|
+
# 1. Setup
|
|
22
|
+
db_path = "news_db"
|
|
23
|
+
if os.path.exists(db_path):
|
|
24
|
+
shutil.rmtree(db_path)
|
|
25
|
+
|
|
26
|
+
# Initialize the Intel GPU context (or CPU if not available)
|
|
27
|
+
# Note: If "intel" fails, fallback to CPU
|
|
28
|
+
try:
|
|
29
|
+
ctx = hdb.ComputeContext("intel")
|
|
30
|
+
print("Using Intel GPU context")
|
|
31
|
+
except Exception as e:
|
|
32
|
+
print(f"Intel GPU not available ({e}), using CPU")
|
|
33
|
+
ctx = None
|
|
34
|
+
|
|
35
|
+
# 2. Load Data
|
|
36
|
+
print("\nLoading AG News dataset...")
|
|
37
|
+
dataset = load_dataset("ag_news", split="test[:500]")
|
|
38
|
+
df = pd.DataFrame(dataset)
|
|
39
|
+
label_map = {0: "World", 1: "Sports", 2: "Business", 3: "Sci/Tech"}
|
|
40
|
+
df["category"] = df["label"].map(label_map)
|
|
41
|
+
|
|
42
|
+
# 3. Embedding
|
|
43
|
+
print(f"Embedding {len(df)} articles using all-MiniLM-L6-v2...")
|
|
44
|
+
model = SentenceTransformer("all-MiniLM-L6-v2")
|
|
45
|
+
embeddings = model.encode(df["text"].tolist())
|
|
46
|
+
df["embedding"] = [list(e) for e in embeddings]
|
|
47
|
+
|
|
48
|
+
# 4. Ingest into HyperStreamDB
|
|
49
|
+
print("\nIngesting into HyperStreamDB...")
|
|
50
|
+
table = hdb.Table(db_path, context=ctx)
|
|
51
|
+
|
|
52
|
+
# Enable Vector Indexing for the embedding column and Inverted Index for category
|
|
53
|
+
# Note: Use add_index_columns for multiple columns
|
|
54
|
+
table.add_index_columns(["embedding", "category", "text"])
|
|
55
|
+
|
|
56
|
+
table.write(df)
|
|
57
|
+
table.commit()
|
|
58
|
+
print("Ingestion complete.")
|
|
59
|
+
|
|
60
|
+
# 5. Scalar Filtering
|
|
61
|
+
print("\n--- Scalar Filtering ---")
|
|
62
|
+
# Using the fluent API: table.filter(expr).to_pandas()
|
|
63
|
+
# Or table.to_pandas(filter=expr)
|
|
64
|
+
sports_query = table.filter("category = 'Sports'")
|
|
65
|
+
sports_df = sports_query.to_pandas()
|
|
66
|
+
print(f"Found {len(sports_df)} sports articles.")
|
|
67
|
+
if len(sports_df) > 0:
|
|
68
|
+
print(sports_df[["category", "text"]].head())
|
|
69
|
+
|
|
70
|
+
# 6. Vector Search
|
|
71
|
+
print("\n--- Vector Search ---")
|
|
72
|
+
query_text = "Winning medals in international sports competitions"
|
|
73
|
+
query_embedding = list(model.encode(query_text))
|
|
74
|
+
|
|
75
|
+
# Using the fluent API: table.filter(vector_filter=...).to_pandas()
|
|
76
|
+
# Or table.to_pandas(vector_filter=...)
|
|
77
|
+
# The current API seems to prefer vector_filter as a dict or list in to_pandas
|
|
78
|
+
|
|
79
|
+
print(f"Searching for: '{query_text}'")
|
|
80
|
+
results = table.to_pandas(vector_filter=query_embedding, k=5)
|
|
81
|
+
|
|
82
|
+
if "_distance" in results.columns:
|
|
83
|
+
print(results[["category", "text", "_distance"]])
|
|
84
|
+
elif "distance" in results.columns:
|
|
85
|
+
print(results[["category", "text", "distance"]])
|
|
86
|
+
else:
|
|
87
|
+
print(results[["category", "text"]])
|
|
88
|
+
|
|
89
|
+
# 7. Hybrid Search
|
|
90
|
+
print("\n--- Hybrid Search (Sci/Tech + Vector) ---")
|
|
91
|
+
query_text = "What is the latest news in Artificial Intelligence?"
|
|
92
|
+
query_embedding = list(model.encode(query_text))
|
|
93
|
+
# Use Fluent API (as requested by user)
|
|
94
|
+
hybrid_results = (table.filter("category = 'Sci/Tech'")
|
|
95
|
+
.vector_search(query_embedding, k=5)
|
|
96
|
+
.to_pandas())
|
|
97
|
+
if not hybrid_results.empty:
|
|
98
|
+
cols = ["category", "text"]
|
|
99
|
+
if "_distance" in hybrid_results.columns: cols.append("_distance")
|
|
100
|
+
elif "distance" in hybrid_results.columns: cols.append("distance")
|
|
101
|
+
print(hybrid_results[cols].to_string())
|
|
102
|
+
else:
|
|
103
|
+
print("No results found for hybrid search.")
|
|
104
|
+
|
|
105
|
+
if __name__ == "__main__":
|
|
106
|
+
run_demo()
|