hyperstreamdb 0.5.0__tar.gz → 0.5.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.5.0 → hyperstreamdb-0.5.2}/Cargo.lock +1 -1
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/Cargo.toml +1 -1
- hyperstreamdb-0.5.2/HyperStreamDB.png +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/PKG-INFO +6 -4
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/README.md +5 -3
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benches/bench_table.rs +39 -39
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benches/performance.rs +138 -97
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/build.rs +13 -14
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/clippy.toml +2 -2
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/BENCHMARKING.md +8 -6
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/INSTALLATION.md +2 -2
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/PYTHON_VECTOR_API.md +1 -1
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/api_reference.md +1 -1
- hyperstreamdb-0.5.2/docs/source/_static/HyperStreamDB.png +0 -0
- hyperstreamdb-0.5.2/marketing_site/index.html +365 -0
- hyperstreamdb-0.5.2/marketing_site/styles.css +793 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/python/hyperstreamdb/__init__.py +5 -5
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/bin/gateway.rs +35 -33
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/bin/hdb.rs +46 -41
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/bin/iceberg_rest.rs +406 -232
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/bin/setup_test_data.rs +10 -9
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/bin/verify_layered_indexing.rs +66 -31
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/cache.rs +127 -96
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/catalog/config.rs +4 -4
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/catalog/glue.rs +111 -65
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/catalog/hive.rs +77 -48
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/catalog/jdbc.rs +63 -35
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/catalog/mod.rs +35 -18
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/catalog/nessie.rs +122 -69
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/catalog/rest.rs +34 -30
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/catalog/unity.rs +72 -35
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/clustering.rs +33 -16
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/compaction.rs +291 -214
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/embeddings.rs +38 -30
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/error.rs +55 -148
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/ffi.rs +69 -72
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/iceberg/delete.rs +175 -78
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/iceberg/manifest.rs +188 -57
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/iceberg/mod.rs +11 -36
- hyperstreamdb-0.5.2/src/core/iceberg/schema.rs +195 -0
- hyperstreamdb-0.5.2/src/core/iceberg/transform.rs +366 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/iceberg/types.rs +3 -1
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/iceberg/value.rs +18 -8
- hyperstreamdb-0.5.2/src/core/iceberg/writer.rs +910 -0
- hyperstreamdb-0.5.2/src/core/index/build_inverted.rs +1132 -0
- hyperstreamdb-0.5.2/src/core/index/build_vector.rs +154 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/distance.rs +51 -35
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/gpu.rs +393 -160
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/hnsw_ivf.rs +716 -309
- hyperstreamdb-0.5.2/src/core/index/hnsw_rs/api.rs +128 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/hnsw_rs/dist.rs +45 -15
- hyperstreamdb-0.5.2/src/core/index/hnsw_rs/flatten.rs +236 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/hnsw_rs/hnsw.rs +723 -589
- hyperstreamdb-0.5.2/src/core/index/hnsw_rs/hnswio.rs +1070 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/hnsw_rs/libext.rs +405 -188
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/hnsw_rs/mod.rs +6 -9
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/hnsw_rs/prelude.rs +2 -2
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/ivf.rs +81 -45
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/memory.rs +142 -43
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/mod.rs +15 -12
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/pq.rs +65 -42
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/turboquant.rs +30 -17
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/license.rs +18 -16
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/lock.rs +57 -20
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/maintenance.rs +75 -42
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/manifest/manager/commit.rs +148 -57
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/manifest/manager/load.rs +196 -99
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/manifest/manager/partition.rs +23 -12
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/manifest/manager/schema.rs +51 -25
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/manifest/manager.rs +14 -14
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/manifest/types.rs +309 -174
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/merge.rs +177 -127
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/metadata.rs +36 -20
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/nessie.rs +59 -31
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/planner.rs +509 -412
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/puffin.rs +20 -17
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/query.rs +131 -73
- hyperstreamdb-0.5.2/src/core/reader/delete.rs +236 -0
- hyperstreamdb-0.5.2/src/core/reader/filter.rs +903 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/reader/mod.rs +183 -145
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/reader/scan.rs +684 -435
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/search/mod.rs +11 -7
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/search/rrf.rs +10 -5
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/segment.rs +276 -149
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/literal/binary.rs +26 -21
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/literal/dense.rs +9 -8
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/literal/mod.rs +71 -22
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/literal/sparse.rs +22 -18
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/mod.rs +141 -95
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/optimizer/config.rs +35 -13
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/optimizer/index_join.rs +11 -10
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/optimizer/vector_search/mod.rs +3 -2
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/optimizer/vector_search/plan_detection.rs +9 -4
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/optimizer/vector_search/plan_rewriter.rs +12 -5
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/optimizer/vector_search/sort_expr_parser.rs +29 -9
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/pgvector_rewriter.rs +71 -56
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/physical_plan/index_join.rs +130 -66
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/physical_plan/vector_merge.rs +19 -17
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/physical_plan/vector_scan.rs +40 -28
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/physical_plan.rs +41 -35
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/session.rs +33 -21
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/udf/aggregate.rs +243 -96
- hyperstreamdb-0.5.2/src/core/sql/udf/distance.rs +722 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/udf/mod.rs +9 -38
- hyperstreamdb-0.5.2/src/core/sql/udf/sparse.rs +379 -0
- hyperstreamdb-0.5.2/src/core/sql/udf/transform.rs +748 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/vector_operators.rs +85 -75
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/vector_udf/distance.rs +1 -1
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/storage.rs +61 -43
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/table/builder.rs +52 -35
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/table/fluent.rs +24 -9
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/table/mod.rs +1360 -844
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/table/read.rs +626 -353
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/table/schema.rs +200 -93
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/table/write.rs +403 -216
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/wal.rs +106 -105
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/enterprise/continuous_indexing.rs +10 -5
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/enterprise/mod.rs +0 -1
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/lib.rs +45 -25
- hyperstreamdb-0.5.2/src/python/catalog/glue.rs +65 -0
- hyperstreamdb-0.5.2/src/python/catalog/hive.rs +68 -0
- hyperstreamdb-0.5.2/src/python/catalog/jdbc.rs +69 -0
- hyperstreamdb-0.5.2/src/python/catalog/mod.rs +197 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/python/catalog/nessie.rs +30 -15
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/python/catalog/rest.rs +23 -12
- hyperstreamdb-0.5.2/src/python/catalog/unity.rs +59 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/python/helpers.rs +266 -102
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/python/manifest.rs +9 -2
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/python/schema.rs +107 -24
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/python/session.rs +9 -5
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/python/stats.rs +1 -1
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/python/table.rs +480 -279
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/python_distance.rs +294 -272
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/python_gpu_context.rs +93 -32
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/telemetry/metrics.rs +3 -2
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/telemetry/tracing.rs +29 -29
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/all_types_index_test.rs +33 -13
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/bin/generate_iceberg_manifests.rs +107 -51
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/bin/verify_iceberg_read_check.rs +29 -18
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/datafusion_rust_test.rs +29 -15
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/debug_murmur3.rs +9 -9
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/fuzz_murmur3.rs +12 -12
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/integration_test_hnsw_ivf_native.rs +86 -65
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/schema_evolution_test.rs +27 -21
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/stability.rs +18 -18
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_catalog_commit.rs +26 -15
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_compliance.rs +1 -1
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_delete_correctness.rs +25 -15
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_metadata_creation.rs +8 -8
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_mor_reads.rs +73 -39
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_mor_writes.rs +24 -21
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_partition_transforms.rs +19 -12
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_partitioned_writes.rs +22 -20
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_schema_compat.rs +161 -91
- hyperstreamdb-0.5.0/HyperStreamDB.png +0 -0
- hyperstreamdb-0.5.0/docs/source/_static/HyperStreamDB.png +0 -0
- hyperstreamdb-0.5.0/src/core/iceberg/schema.rs +0 -140
- hyperstreamdb-0.5.0/src/core/iceberg/transform.rs +0 -203
- hyperstreamdb-0.5.0/src/core/iceberg/writer.rs +0 -521
- hyperstreamdb-0.5.0/src/core/index/build_inverted.rs +0 -815
- hyperstreamdb-0.5.0/src/core/index/build_vector.rs +0 -98
- hyperstreamdb-0.5.0/src/core/index/hnsw_rs/api.rs +0 -107
- hyperstreamdb-0.5.0/src/core/index/hnsw_rs/flatten.rs +0 -249
- hyperstreamdb-0.5.0/src/core/index/hnsw_rs/hnswio.rs +0 -970
- hyperstreamdb-0.5.0/src/core/reader/delete.rs +0 -185
- hyperstreamdb-0.5.0/src/core/reader/filter.rs +0 -673
- hyperstreamdb-0.5.0/src/core/sql/udf/distance.rs +0 -517
- hyperstreamdb-0.5.0/src/core/sql/udf/sparse.rs +0 -240
- hyperstreamdb-0.5.0/src/core/sql/udf/transform.rs +0 -483
- hyperstreamdb-0.5.0/src/python/catalog/glue.rs +0 -54
- hyperstreamdb-0.5.0/src/python/catalog/hive.rs +0 -57
- hyperstreamdb-0.5.0/src/python/catalog/jdbc.rs +0 -54
- hyperstreamdb-0.5.0/src/python/catalog/mod.rs +0 -173
- hyperstreamdb-0.5.0/src/python/catalog/unity.rs +0 -48
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/.env.example +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/.gitattributes +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/.gitignore +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/.hypothesis/constants/32b327793848e7d8 +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/.hypothesis/constants/67b0a8ccf18bf5d2 +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/.hypothesis/constants/84828557b4ee7be4 +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/.instructions.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/.ipynb_checkpoints/Untitled-checkpoint.ipynb +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/.qwen/settings.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/.qwen/settings.json.orig +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/CHANGELOG.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/CNAME +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/CONTRIBUTING.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/Dockerfile +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/LICENSE-APACHE +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/LICENSE-MIT +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/RUN_COMPLIANCE_TESTS.sh +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/SECURITY.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/STEERING.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/THIRDPARTY_NOTICES.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/Untitled.ipynb +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/BENCHMARK_REPORT.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/benchmark_charts.png +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/benchmark_results.csv +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/concurrent_queries_20260409_214245.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/concurrent_queries_20260409_214245.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/filtered_search_comparison_20260409_222607.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/filtered_search_comparison_20260409_222607.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/filtered_vector_search_20260409_214355.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/filtered_vector_search_20260409_214355.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/filtered_vector_search_20260409_220418.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/filtered_vector_search_20260409_220418.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/filtered_vector_search_20260409_222053.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/filtered_vector_search_20260409_222053.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/filtered_vector_search_20260409_225907.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/filtered_vector_search_20260409_225907.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/full_scan_baseline_20260409_222303.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/full_scan_baseline_20260409_222303.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/high_selectivity_filter_20260409_222302.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/high_selectivity_filter_20260409_222302.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/ingestion_comparison_20260409_222516.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/ingestion_comparison_20260409_222516.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/multi_filter_vector_20260409_214428.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/multi_filter_vector_20260409_214428.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/multi_filter_vector_20260409_220450.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/multi_filter_vector_20260409_220450.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/multi_filter_vector_20260409_222131.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/multi_filter_vector_20260409_222131.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/multi_filter_vector_20260409_225938.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/multi_filter_vector_20260409_225938.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/multi_filter_vector_20260409_231713.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/multi_filter_vector_20260409_231713.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/post_vs_pre_filter_20260409_214501.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/post_vs_pre_filter_20260409_214501.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/post_vs_pre_filter_20260409_220524.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/post_vs_pre_filter_20260409_220524.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/post_vs_pre_filter_20260409_222204.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/post_vs_pre_filter_20260409_222204.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/post_vs_pre_filter_20260409_230010.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/post_vs_pre_filter_20260409_230010.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/query_comparison_20260409_222541.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/query_comparison_20260409_222541.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/range_query_20260409_222302.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/range_query_20260409_222302.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/search_filtered_high_selectivity_20260409_214144.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/search_filtered_high_selectivity_20260409_214144.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/search_unfiltered_20260409_214028.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/benchmark_results/search_unfiltered_20260409_214028.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/book.toml +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/build-connectors.sh +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/check_iceberg_compliance.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/deny.toml +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docker-compose-minio-nessie.yml +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docker-compose.production.yml +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docker-compose.yml +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/.nojekyll +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/COMPREHENSIVE_GUIDE.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/CONCURRENCY.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/CONFIGURATION.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/DORIS_OPTIMIZATION_PATTERNS.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/GPU_SETUP_GUIDE.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/ICEBERG_V2_V3_API.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/PGVECTOR_SQL_GUIDE.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/VECTOR_CONFIGURATION.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/architecture.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/catalog_usage.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/index.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/integrations/README.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/integrations/java_jni.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/integrations/python.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/integrations/spark.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/integrations/trino.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/monitoring.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/requirements.txt +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/source/api/python.rst +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/source/api/rust.rst +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/source/conf.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/source/index.rst +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/source/roadmap.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/docs/task_status.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/proptest-regressions/core/index/gpu.txt +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/proptest-regressions/core/sql/vector_literal.txt +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/proptest-regressions/core/sql/vector_udf.txt +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/pyproject.toml +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/python/hyperstreamdb/embeddings.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/recovered_plan.txt +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/rust-toolchain.toml +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/scripts/fix_nb.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/scripts/split_table.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/scripts/update_cache.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/scripts/update_reader.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/scripts/update_schema_patch.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/scripts/update_schema_patch2.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/spark-hyperstream/.bloop/bloop.settings.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/spark-hyperstream/.bloop/spark-hyperstream-test.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/spark-hyperstream/.bloop/spark-hyperstream.json +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/spark-hyperstream/pom.xml +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/DefaultSource.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartition.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReader.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReaderFactory.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamScanBuilder.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamTable.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/spark-hyperstream/src/test/java/com/hyperstreamdb/spark/SparkConnectorTest.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/bin/probe_datafusion.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/iceberg/iceberg_delete.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/cuda/cosine_distance.cu +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/cuda/hamming_distance.cu +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/cuda/inner_product.cu +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/cuda/jaccard_distance.cu +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/cuda/kmeans_assignment.cu +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/cuda/l1_distance.cu +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/cuda/l2_distance.cu +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/hnsw_rs/annhdf5.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/hnsw_rs/test.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/mps/cosine_distance.metal +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/mps/hamming_distance.metal +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/mps/inner_product.metal +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/mps/jaccard_distance.metal +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/mps/kmeans_assignment.metal +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/mps/l1_distance.metal +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/mps/l2_distance.metal +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/opencl/cosine_distance.cl +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/opencl/hamming_distance.cl +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/opencl/inner_product.cl +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/opencl/jaccard_distance.cl +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/opencl/kmeans_assignment.cl +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/opencl/l1_distance.cl +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/opencl/l2_distance.cl +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/tokenizer.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/index/wgpu_kernel.wgsl +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/manifest/mod.rs +2 -2
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/mod.rs +17 -17
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/planner/filter.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/planner/pruning.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/planner/vector_search.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/optimizer.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/vector_literal.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/vector_udf/aggregate.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/vector_udf/mod.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/vector_udf/sparse.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/vector_udf/transform.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/sql/vector_udf.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/table/index_config.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/table/primary_key.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/table/state.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/core/table/stats.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/index.rs.old +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/python/mod.rs +8 -8
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/python_binding.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/src/telemetry/mod.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/check_mmh3.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/data/download_nyc_taxi.sh +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/data/generate_embeddings.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/data/generate_wikipedia.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/data/start_nessie.sh +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/gpu_test_helpers.rs +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/performance/README.md +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/prototype_merge.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/python/verify_docstrings.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/python/verify_fluent_api.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/python/verify_unified_ingest.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_all_algos.py +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_iceberg_python_delete.sh +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_iceberg_rest.sh +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_iceberg_rest_create.sh +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_iceberg_rest_delete.sh +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_iceberg_rest_remove_index.sh +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_iceberg_rest_update.sh +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_puffin_index.sh +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/tests/verify_rest_updates.sh +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-config/.DS_Store +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-config/catalog/glue_catalog.properties +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-config/catalog/hyperstreamdb.properties +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-config/catalog/iceberg.properties +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-config/catalog/memory.properties +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-config/catalog/postgres.properties +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-config/config.properties +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-config/entrypoint.sh +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-config/jvm.config +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-config/node.properties +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-config.zip +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-hyperstream/pom.xml +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBColumnHandle.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBConnectorFactory.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBMetadata.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSource.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSourceProvider.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPlugin.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplit.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplitManager.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBTableHandle.java +0 -0
- {hyperstreamdb-0.5.0 → hyperstreamdb-0.5.2}/trino-hyperstream/src/test/java/com/hyperstreamdb/trino/TrinoConnectorTest.java +0 -0
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hyperstreamdb
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Classifier: Development Status :: 3 - Alpha
|
|
5
5
|
Classifier: Intended Audience :: Developers
|
|
6
6
|
Classifier: Programming Language :: Rust
|
|
@@ -383,7 +383,7 @@ session.register("users", table)
|
|
|
383
383
|
|
|
384
384
|
# Optional: Enable GPU acceleration for SQL queries
|
|
385
385
|
ctx = hdb.GPUContext.auto_detect()
|
|
386
|
-
hdb.
|
|
386
|
+
hdb.set_thread_gpu_context(ctx)
|
|
387
387
|
|
|
388
388
|
# Simple SQL
|
|
389
389
|
results = table.sql("SELECT * FROM t WHERE id > 100")
|
|
@@ -440,7 +440,7 @@ python tests/integration/test_nyc_taxi.py
|
|
|
440
440
|
|
|
441
441
|
**Performance Targets:**
|
|
442
442
|
- **Scalar Ingest**: >10K rows/sec ✅
|
|
443
|
-
- **Vector Ingest (768D)**: >
|
|
443
|
+
- **Vector Ingest (768D)**: >22,000 rows/sec ✅ (v0.5.0)
|
|
444
444
|
- **Query (indexed)**: <100ms p99 ⏱️
|
|
445
445
|
- **Vector search**: <50ms for k=10 on 10M vectors ⏱️
|
|
446
446
|
- **Compaction**: <5min for 10GB ⏱️
|
|
@@ -456,7 +456,7 @@ python tests/integration/test_nyc_taxi.py
|
|
|
456
456
|
- **Memory**: 128GB Unified Memory
|
|
457
457
|
- **OS**: macOS (Arm64)
|
|
458
458
|
- **Optimizations**: `target-cpu=native` (NEON SIMD)
|
|
459
|
-
- **Results (100K vectors, 768D)**:
|
|
459
|
+
- **Results (100K vectors, 768D) [OUT OF DATE - Pre-v0.5.0]**:
|
|
460
460
|
- **Vector Ingest**: 16,707 rows/sec (CPU) ✅
|
|
461
461
|
- **Vector Search (k=10)**: 819ms (CPU / NEON) ✅
|
|
462
462
|
- **Vector Search (k=10)**: 860ms (MPS GPU) ⏱️
|
|
@@ -685,3 +685,5 @@ This project contains modified source code from various upstream open-source pro
|
|
|
685
685
|
|
|
686
686
|
**Built with ❤️ in Rust**
|
|
687
687
|
|
|
688
|
+
|
|
689
|
+
|
|
@@ -345,7 +345,7 @@ session.register("users", table)
|
|
|
345
345
|
|
|
346
346
|
# Optional: Enable GPU acceleration for SQL queries
|
|
347
347
|
ctx = hdb.GPUContext.auto_detect()
|
|
348
|
-
hdb.
|
|
348
|
+
hdb.set_thread_gpu_context(ctx)
|
|
349
349
|
|
|
350
350
|
# Simple SQL
|
|
351
351
|
results = table.sql("SELECT * FROM t WHERE id > 100")
|
|
@@ -402,7 +402,7 @@ python tests/integration/test_nyc_taxi.py
|
|
|
402
402
|
|
|
403
403
|
**Performance Targets:**
|
|
404
404
|
- **Scalar Ingest**: >10K rows/sec ✅
|
|
405
|
-
- **Vector Ingest (768D)**: >
|
|
405
|
+
- **Vector Ingest (768D)**: >22,000 rows/sec ✅ (v0.5.0)
|
|
406
406
|
- **Query (indexed)**: <100ms p99 ⏱️
|
|
407
407
|
- **Vector search**: <50ms for k=10 on 10M vectors ⏱️
|
|
408
408
|
- **Compaction**: <5min for 10GB ⏱️
|
|
@@ -418,7 +418,7 @@ python tests/integration/test_nyc_taxi.py
|
|
|
418
418
|
- **Memory**: 128GB Unified Memory
|
|
419
419
|
- **OS**: macOS (Arm64)
|
|
420
420
|
- **Optimizations**: `target-cpu=native` (NEON SIMD)
|
|
421
|
-
- **Results (100K vectors, 768D)**:
|
|
421
|
+
- **Results (100K vectors, 768D) [OUT OF DATE - Pre-v0.5.0]**:
|
|
422
422
|
- **Vector Ingest**: 16,707 rows/sec (CPU) ✅
|
|
423
423
|
- **Vector Search (k=10)**: 819ms (CPU / NEON) ✅
|
|
424
424
|
- **Vector Search (k=10)**: 860ms (MPS GPU) ⏱️
|
|
@@ -646,3 +646,5 @@ This project contains modified source code from various upstream open-source pro
|
|
|
646
646
|
---
|
|
647
647
|
|
|
648
648
|
**Built with ❤️ in Rust**
|
|
649
|
+
|
|
650
|
+
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
use arrow::array::{FixedSizeListArray, Float32Array, Float64Array, Int32Array, Int64Array};
|
|
2
|
+
use arrow::datatypes::{DataType, Field, Schema};
|
|
3
|
+
use arrow::record_batch::RecordBatch;
|
|
1
4
|
use criterion::{black_box, criterion_group, criterion_main, Criterion};
|
|
2
5
|
use hyperstreamdb::{Table, VectorSearchParams};
|
|
3
|
-
use arrow::record_batch::RecordBatch;
|
|
4
|
-
use arrow::datatypes::{Schema, Field, DataType};
|
|
5
|
-
use arrow::array::{Int64Array, Float64Array, Int32Array, Float32Array, FixedSizeListArray};
|
|
6
6
|
use std::sync::Arc;
|
|
7
7
|
use tempfile::TempDir;
|
|
8
8
|
use tokio::runtime::Runtime;
|
|
@@ -21,12 +21,9 @@ fn create_test_batch(num_rows: usize) -> RecordBatch {
|
|
|
21
21
|
|
|
22
22
|
RecordBatch::try_new(
|
|
23
23
|
schema,
|
|
24
|
-
vec![
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
Arc::new(categories),
|
|
28
|
-
],
|
|
29
|
-
).unwrap()
|
|
24
|
+
vec![Arc::new(ids), Arc::new(values), Arc::new(categories)],
|
|
25
|
+
)
|
|
26
|
+
.unwrap()
|
|
30
27
|
}
|
|
31
28
|
|
|
32
29
|
/// Utility to create a vector batch for HNSW benchmarks
|
|
@@ -34,31 +31,25 @@ fn create_vector_batch(num_rows: usize, dim: usize) -> RecordBatch {
|
|
|
34
31
|
let inner_field = Arc::new(Field::new("item", DataType::Float32, true));
|
|
35
32
|
let schema = Arc::new(Schema::new(vec![
|
|
36
33
|
Field::new("id", DataType::Int64, false),
|
|
37
|
-
Field::new(
|
|
34
|
+
Field::new(
|
|
35
|
+
"embedding",
|
|
36
|
+
DataType::FixedSizeList(inner_field.clone(), dim as i32),
|
|
37
|
+
false,
|
|
38
|
+
),
|
|
38
39
|
]));
|
|
39
40
|
|
|
40
41
|
let ids = Int64Array::from_iter_values(0..num_rows as i64);
|
|
41
|
-
|
|
42
|
+
|
|
42
43
|
let mut values = Vec::with_capacity(num_rows * dim);
|
|
43
44
|
for i in 0..num_rows * dim {
|
|
44
45
|
values.push(i as f32 / 1000.0);
|
|
45
46
|
}
|
|
46
47
|
let values_array = Float32Array::from(values);
|
|
47
|
-
|
|
48
|
-
let embedding = FixedSizeListArray::try_new(
|
|
49
|
-
inner_field,
|
|
50
|
-
dim as i32,
|
|
51
|
-
Arc::new(values_array),
|
|
52
|
-
None,
|
|
53
|
-
).unwrap();
|
|
54
48
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
Arc::new(embedding),
|
|
60
|
-
],
|
|
61
|
-
).unwrap()
|
|
49
|
+
let embedding =
|
|
50
|
+
FixedSizeListArray::try_new(inner_field, dim as i32, Arc::new(values_array), None).unwrap();
|
|
51
|
+
|
|
52
|
+
RecordBatch::try_new(schema, vec![Arc::new(ids), Arc::new(embedding)]).unwrap()
|
|
62
53
|
}
|
|
63
54
|
|
|
64
55
|
/// Benchmark: Ingest throughput (In-memory)
|
|
@@ -77,7 +68,7 @@ fn bench_ingest_in_memory(c: &mut Criterion) {
|
|
|
77
68
|
let tmp_dir = TempDir::new().unwrap();
|
|
78
69
|
let table_uri = format!("file://{}", tmp_dir.path().to_str().unwrap());
|
|
79
70
|
let table = Table::new_async(table_uri).await.unwrap();
|
|
80
|
-
|
|
71
|
+
|
|
81
72
|
let start = std::time::Instant::now();
|
|
82
73
|
for _ in 0..(num_rows / batch_size) {
|
|
83
74
|
table.write_async(vec![batch.clone()]).await.unwrap();
|
|
@@ -96,14 +87,16 @@ fn bench_query_indexed(c: &mut Criterion) {
|
|
|
96
87
|
let rt = Runtime::new().unwrap();
|
|
97
88
|
let num_rows = 100_000;
|
|
98
89
|
let batch = create_test_batch(num_rows);
|
|
99
|
-
|
|
90
|
+
|
|
100
91
|
// Setup table
|
|
101
92
|
let tmp_dir = TempDir::new().unwrap();
|
|
102
93
|
let table_uri = format!("file://{}", tmp_dir.path().to_str().unwrap());
|
|
103
|
-
|
|
94
|
+
|
|
104
95
|
let table = rt.block_on(async {
|
|
105
96
|
let mut t = Table::new_async(table_uri).await.unwrap();
|
|
106
|
-
t.add_index_columns_async(vec!["id".to_string()], None)
|
|
97
|
+
t.add_index_columns_async(vec!["id".to_string()], None)
|
|
98
|
+
.await
|
|
99
|
+
.unwrap();
|
|
107
100
|
t.write_async(vec![batch]).await.unwrap();
|
|
108
101
|
t.commit_async().await.unwrap();
|
|
109
102
|
t.wait_for_background_tasks_async().await.unwrap();
|
|
@@ -114,7 +107,12 @@ fn bench_query_indexed(c: &mut Criterion) {
|
|
|
114
107
|
b.to_async(&rt).iter(|| {
|
|
115
108
|
let table = table.clone();
|
|
116
109
|
async move {
|
|
117
|
-
black_box(
|
|
110
|
+
black_box(
|
|
111
|
+
table
|
|
112
|
+
.read_async(Some("id > 50000"), None, None)
|
|
113
|
+
.await
|
|
114
|
+
.unwrap(),
|
|
115
|
+
)
|
|
118
116
|
}
|
|
119
117
|
});
|
|
120
118
|
});
|
|
@@ -126,14 +124,16 @@ fn bench_vector_search_in_memory(c: &mut Criterion) {
|
|
|
126
124
|
let num_vectors = 10_000;
|
|
127
125
|
let dim = 128;
|
|
128
126
|
let batch = create_vector_batch(num_vectors, dim);
|
|
129
|
-
|
|
127
|
+
|
|
130
128
|
// Setup table
|
|
131
129
|
let tmp_dir = TempDir::new().unwrap();
|
|
132
130
|
let table_uri = format!("file://{}", tmp_dir.path().to_str().unwrap());
|
|
133
|
-
|
|
131
|
+
|
|
134
132
|
let table = rt.block_on(async {
|
|
135
133
|
let mut t = Table::new_async(table_uri).await.unwrap();
|
|
136
|
-
t.add_index_columns_async(vec!["embedding".to_string()], None)
|
|
134
|
+
t.add_index_columns_async(vec!["embedding".to_string()], None)
|
|
135
|
+
.await
|
|
136
|
+
.unwrap();
|
|
137
137
|
t.write_async(vec![batch]).await.unwrap();
|
|
138
138
|
t.commit_async().await.unwrap();
|
|
139
139
|
t.wait_for_background_tasks_async().await.unwrap();
|
|
@@ -142,7 +142,9 @@ fn bench_vector_search_in_memory(c: &mut Criterion) {
|
|
|
142
142
|
|
|
143
143
|
let vs_params = VectorSearchParams::new(
|
|
144
144
|
"embedding",
|
|
145
|
-
hyperstreamdb::core::index::VectorValue::Float32(
|
|
145
|
+
hyperstreamdb::core::index::VectorValue::Float32(
|
|
146
|
+
(0..dim).map(|i| i as f32 / 100.0).collect(),
|
|
147
|
+
),
|
|
146
148
|
10,
|
|
147
149
|
);
|
|
148
150
|
|
|
@@ -151,9 +153,7 @@ fn bench_vector_search_in_memory(c: &mut Criterion) {
|
|
|
151
153
|
b.to_async(&rt).iter(|| {
|
|
152
154
|
let vs_params = vs_params.clone();
|
|
153
155
|
let table = table.clone();
|
|
154
|
-
async move {
|
|
155
|
-
black_box(table.read_async(None, Some(vs_params), None).await.unwrap())
|
|
156
|
-
}
|
|
156
|
+
async move { black_box(table.read_async(None, Some(vs_params), None).await.unwrap()) }
|
|
157
157
|
});
|
|
158
158
|
});
|
|
159
159
|
}
|
|
@@ -174,12 +174,12 @@ fn bench_compaction_in_memory(c: &mut Criterion) {
|
|
|
174
174
|
let tmp_dir = TempDir::new().unwrap();
|
|
175
175
|
let table_uri = format!("file://{}", tmp_dir.path().to_str().unwrap());
|
|
176
176
|
let table = Table::new_async(table_uri).await.unwrap();
|
|
177
|
-
|
|
177
|
+
|
|
178
178
|
for _ in 0..num_segments {
|
|
179
179
|
table.write_async(vec![batch.clone()]).await.unwrap();
|
|
180
180
|
table.commit_async().await.unwrap();
|
|
181
181
|
}
|
|
182
|
-
|
|
182
|
+
|
|
183
183
|
let start = std::time::Instant::now();
|
|
184
184
|
table.rewrite_data_files_async(None).await.unwrap();
|
|
185
185
|
total_duration += start.elapsed();
|