hyperstreamdb 0.5.4__tar.gz → 0.6.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.
- hyperstreamdb-0.6.0/.cargo/audit.toml +25 -0
- hyperstreamdb-0.6.0/.dockerignore +15 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/.gitignore +1 -0
- hyperstreamdb-0.6.0/BENCHMARK_FINDINGS.md +89 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/CHANGELOG.md +27 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/Cargo.lock +271 -57
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/Cargo.toml +1 -1
- hyperstreamdb-0.6.0/Dockerfile +109 -0
- hyperstreamdb-0.6.0/GETTING_STARTED.md +189 -0
- hyperstreamdb-0.6.0/OPENSEARCH_COMPATIBILITY.md +105 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/PKG-INFO +186 -77
- hyperstreamdb-0.6.0/PROGRESS.md +74 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/README.md +185 -76
- hyperstreamdb-0.6.0/ROADMAP.md +585 -0
- hyperstreamdb-0.6.0/audit.toml +25 -0
- hyperstreamdb-0.6.0/dbt-hyperstreamdb/dbt/adapters/hyperstreamdb/__init__.py +12 -0
- hyperstreamdb-0.6.0/dbt-hyperstreamdb/dbt/adapters/hyperstreamdb/__version__.py +1 -0
- hyperstreamdb-0.6.0/dbt-hyperstreamdb/dbt/adapters/hyperstreamdb/connections.py +85 -0
- hyperstreamdb-0.6.0/dbt-hyperstreamdb/dbt/adapters/hyperstreamdb/impl.py +97 -0
- hyperstreamdb-0.6.0/dbt-hyperstreamdb/dbt/include/hyperstreamdb/__init__.py +3 -0
- hyperstreamdb-0.6.0/dbt-hyperstreamdb/dbt/include/hyperstreamdb/dbt_project.yml +5 -0
- hyperstreamdb-0.6.0/dbt-hyperstreamdb/dbt/include/hyperstreamdb/macros/adapters.sql +90 -0
- hyperstreamdb-0.6.0/dbt-hyperstreamdb/dbt/include/hyperstreamdb/macros/materializations/incremental.sql +108 -0
- hyperstreamdb-0.6.0/dbt-hyperstreamdb/dbt/include/hyperstreamdb/macros/materializations/table.sql +16 -0
- hyperstreamdb-0.6.0/dbt-hyperstreamdb/dbt/include/hyperstreamdb/macros/vector.sql +89 -0
- hyperstreamdb-0.6.0/dbt-hyperstreamdb/setup.py +34 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/deny.toml +11 -4
- hyperstreamdb-0.6.0/docker-compose.production.yml +95 -0
- hyperstreamdb-0.6.0/docs/INSTALLATION.md +551 -0
- hyperstreamdb-0.6.0/docs/build/html/.buildinfo +4 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/api/python.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/api/rust.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/environment.pickle +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/BENCHMARKING.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/COMPREHENSIVE_GUIDE.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/CONCURRENCY.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/CONFIGURATION.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/DORIS_OPTIMIZATION_PATTERNS.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/GPU_SETUP_GUIDE.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/ICEBERG_V2_V3_API.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/INSTALLATION.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/IN_MEMORY_COMPONENT_ANALYSIS.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/MONETIZATION_ARCHITECTURE.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/PGVECTOR_SQL_GUIDE.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/PYTHON_VECTOR_API.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/SUMMARY.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/VECTOR_CONFIGURATION.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/api_reference.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/architecture.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/catalog_usage.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/comprehensive_guide.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/concurrency.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/configuration.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/gpu_setup_guide.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/index.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/installation.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/monitoring.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/python_vector_api.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/guides/task_status.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/index.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/.doctrees/roadmap.doctree +0 -0
- hyperstreamdb-0.6.0/docs/build/html/_modules/hyperstreamdb/embeddings.html +413 -0
- hyperstreamdb-0.6.0/docs/build/html/_modules/hyperstreamdb.html +1168 -0
- hyperstreamdb-0.6.0/docs/build/html/_modules/index.html +309 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/BENCHMARKING.md.txt +108 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/COMPREHENSIVE_GUIDE.md.txt +267 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/CONCURRENCY.md.txt +38 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/CONFIGURATION.md.txt +91 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/DORIS_OPTIMIZATION_PATTERNS.md.txt +604 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/GPU_SETUP_GUIDE.md.txt +467 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/ICEBERG_V2_V3_API.md.txt +239 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/INSTALLATION.md.txt +553 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/IN_MEMORY_COMPONENT_ANALYSIS.md.txt +393 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/MONETIZATION_ARCHITECTURE.md.txt +610 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/PGVECTOR_SQL_GUIDE.md.txt +687 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/PYTHON_VECTOR_API.md.txt +550 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/SUMMARY.md.txt +12 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/VECTOR_CONFIGURATION.md.txt +322 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/api_reference.md.txt +301 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/architecture.md.txt +49 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/comprehensive_guide.md.txt +267 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/concurrency.md.txt +38 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/configuration.md.txt +91 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/gpu_setup_guide.md.txt +467 -0
- hyperstreamdb-0.5.4/docs/INSTALLATION.md → hyperstreamdb-0.6.0/docs/build/html/_sources/guides/installation.md.txt +2 -2
- hyperstreamdb-0.6.0/docs/build/html/_sources/guides/python_vector_api.md.txt +550 -0
- hyperstreamdb-0.6.0/docs/build/html/_sources/index.rst.txt +50 -0
- hyperstreamdb-0.6.0/docs/build/html/_sphinx_design_static/design-tabs.js +101 -0
- hyperstreamdb-0.6.0/docs/build/html/_sphinx_design_static/sphinx-design.min.css +1 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/HyperStreamDB.png +0 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/base-stemmer.js +476 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/basic.css +906 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/check-solid.svg +4 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/clipboard.min.js +7 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/copy-button.svg +5 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/copybutton.css +94 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/copybutton.js +248 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/copybutton_funcs.js +73 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/debug.css +69 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/design-tabs.js +101 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/doctools.js +150 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/documentation_options.js +13 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/english-stemmer.js +1066 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/file.png +0 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/language_data.js +13 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/minus.png +0 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/plus.png +0 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/pygments.css +250 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/scripts/furo.js +3 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/scripts/furo.js.LICENSE.txt +7 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/scripts/furo.js.map +1 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/searchtools.js +693 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/skeleton.css +296 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/sphinx-design.min.css +1 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/sphinx_highlight.js +159 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/styles/furo-extensions.css +2 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/styles/furo-extensions.css.map +1 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/styles/furo.css +2 -0
- hyperstreamdb-0.6.0/docs/build/html/_static/styles/furo.css.map +1 -0
- hyperstreamdb-0.6.0/docs/build/html/api/python.html +1143 -0
- hyperstreamdb-0.6.0/docs/build/html/api/rust.html +343 -0
- hyperstreamdb-0.6.0/docs/build/html/genindex.html +310 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/BENCHMARKING.html +530 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/COMPREHENSIVE_GUIDE.html +683 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/CONCURRENCY.html +403 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/CONFIGURATION.html +501 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/DORIS_OPTIMIZATION_PATTERNS.html +1044 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/GPU_SETUP_GUIDE.html +975 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/ICEBERG_V2_V3_API.html +670 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/INSTALLATION.html +988 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/IN_MEMORY_COMPONENT_ANALYSIS.html +915 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/MONETIZATION_ARCHITECTURE.html +1089 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/PGVECTOR_SQL_GUIDE.html +1129 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/PYTHON_VECTOR_API.html +1040 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/SUMMARY.html +331 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/VECTOR_CONFIGURATION.html +754 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/api_reference.html +658 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/architecture.html +408 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/catalog_usage.html +483 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/comprehensive_guide.html +686 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/concurrency.html +406 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/configuration.html +504 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/gpu_setup_guide.html +978 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/index.html +351 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/installation.html +922 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/monitoring.html +418 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/python_vector_api.html +1043 -0
- hyperstreamdb-0.6.0/docs/build/html/guides/task_status.html +393 -0
- hyperstreamdb-0.6.0/docs/build/html/index.html +470 -0
- hyperstreamdb-0.6.0/docs/build/html/objects.inv +0 -0
- hyperstreamdb-0.6.0/docs/build/html/roadmap.html +366 -0
- hyperstreamdb-0.6.0/docs/build/html/search.html +321 -0
- hyperstreamdb-0.6.0/docs/build/html/searchindex.js +1 -0
- hyperstreamdb-0.6.0/docs/catalog_usage.md +102 -0
- hyperstreamdb-0.6.0/docs/index.md +15 -0
- hyperstreamdb-0.6.0/docs/monitoring.md +57 -0
- hyperstreamdb-0.6.0/docs/source/_static/HyperStreamDB.png +0 -0
- hyperstreamdb-0.6.0/docs/source/api/python.rst +40 -0
- hyperstreamdb-0.6.0/docs/source/api/rust.rst +11 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/source/conf.py +1 -0
- hyperstreamdb-0.6.0/docs/source/guides/BENCHMARKING.md +108 -0
- hyperstreamdb-0.6.0/docs/source/guides/COMPREHENSIVE_GUIDE.md +267 -0
- hyperstreamdb-0.6.0/docs/source/guides/CONCURRENCY.md +38 -0
- hyperstreamdb-0.6.0/docs/source/guides/CONFIGURATION.md +91 -0
- hyperstreamdb-0.6.0/docs/source/guides/DORIS_OPTIMIZATION_PATTERNS.md +604 -0
- hyperstreamdb-0.6.0/docs/source/guides/GPU_SETUP_GUIDE.md +467 -0
- hyperstreamdb-0.6.0/docs/source/guides/ICEBERG_V2_V3_API.md +239 -0
- hyperstreamdb-0.6.0/docs/source/guides/INSTALLATION.md +551 -0
- hyperstreamdb-0.6.0/docs/source/guides/PGVECTOR_SQL_GUIDE.md +687 -0
- hyperstreamdb-0.6.0/docs/source/guides/PYTHON_VECTOR_API.md +550 -0
- hyperstreamdb-0.6.0/docs/source/guides/VECTOR_CONFIGURATION.md +322 -0
- hyperstreamdb-0.6.0/docs/source/guides/api_reference.md +301 -0
- hyperstreamdb-0.6.0/docs/source/guides/architecture.md +49 -0
- hyperstreamdb-0.6.0/docs/source/guides/catalog_usage.md +102 -0
- hyperstreamdb-0.6.0/docs/source/guides/index.md +15 -0
- hyperstreamdb-0.6.0/docs/source/guides/monitoring.md +57 -0
- hyperstreamdb-0.6.0/docs/source/guides/task_status.md +33 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/source/index.rst +6 -6
- hyperstreamdb-0.6.0/docs/source/roadmap.md +14 -0
- hyperstreamdb-0.6.0/docs/task_status.md +33 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/pyproject.toml +2 -2
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/python/hyperstreamdb/__init__.py +51 -2
- hyperstreamdb-0.6.0/recovered_plan.txt +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/spark-hyperstream/pom.xml +107 -7
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister +1 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/DefaultSource.scala +46 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamMergeBuilder.scala +17 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamPositionDeltaWrite.scala +27 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamPositionDeltaWriterFactory.scala +78 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamRowLevelOperation.scala +37 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamScanBuilder.scala +44 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamTable.scala +53 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamWriteBuilder.scala +16 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/jni/HyperStreamJNIBridge.scala +41 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/spark-3/com/hyperstreamdb/spark/HyperStreamCatalog.scala +38 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/spark-3/com/hyperstreamdb/spark/procedures/AddIndexProcedure.scala +40 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/spark-3/com/hyperstreamdb/spark/procedures/BuildIndexProcedure.scala +36 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/spark-3/com/hyperstreamdb/spark/procedures/SetPrimaryKeyProcedure.scala +39 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/spark-4/com/hyperstreamdb/spark/HyperStreamCatalog.scala +49 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/spark-4/com/hyperstreamdb/spark/procedures/AddIndexProcedure.scala +33 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/spark-4/com/hyperstreamdb/spark/procedures/BuildIndexProcedure.scala +31 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/main/spark-4/com/hyperstreamdb/spark/procedures/SetPrimaryKeyProcedure.scala +31 -0
- hyperstreamdb-0.6.0/spark-hyperstream/src/test/scala/com/hyperstreamdb/spark/SparkMergeIntegrationTest.scala +101 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/cache.rs +10 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/error.rs +5 -2
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/ffi.rs +196 -1
- hyperstreamdb-0.6.0/src/core/index/analyzer.rs +82 -0
- hyperstreamdb-0.6.0/src/core/index/bm25.rs +142 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/build_inverted.rs +13 -3
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/distance.rs +2 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/gpu.rs +87 -9
- hyperstreamdb-0.6.0/src/core/index/hnsw_rs/LICENSE-APACHE +201 -0
- hyperstreamdb-0.6.0/src/core/index/hnsw_rs/LICENSE-MIT +21 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/hnsw_rs/hnsw.rs +3 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/mod.rs +5 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/tokenizer.rs +5 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/reader/scan.rs +124 -34
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/search/mod.rs +35 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/segment.rs +81 -2
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/mod.rs +1 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/optimizer/config.rs +13 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/optimizer/vector_search/mod.rs +13 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/optimizer/vector_search/sort_expr_parser.rs +13 -0
- hyperstreamdb-0.6.0/src/core/sql/partition_rewriter.rs +28 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/session.rs +37 -4
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/table/mod.rs +32 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/table/read.rs +19 -5
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/table/write.rs +32 -19
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/wal.rs +28 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/lib.rs +2 -1
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/table.rs +48 -4
- hyperstreamdb-0.6.0/tests/verify_index_recovery.rs +102 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBConnectorFactory.java +9 -3
- hyperstreamdb-0.6.0/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBJNIBridge.java +24 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSource.java +7 -1
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSourceProvider.java +6 -1
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplitManager.java +10 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-hyperstream/src/test/java/com/hyperstreamdb/trino/TrinoConnectorTest.java +2 -2
- hyperstreamdb-0.5.4/.cargo/audit.toml +0 -11
- hyperstreamdb-0.5.4/Dockerfile +0 -62
- hyperstreamdb-0.5.4/GETTING_STARTED.md +0 -118
- hyperstreamdb-0.5.4/ROADMAP.md +0 -562
- hyperstreamdb-0.5.4/docker-compose.production.yml +0 -75
- hyperstreamdb-0.5.4/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/DefaultSource.java +0 -30
- hyperstreamdb-0.5.4/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartition.java +0 -21
- hyperstreamdb-0.5.4/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReader.java +0 -102
- hyperstreamdb-0.5.4/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReaderFactory.java +0 -35
- hyperstreamdb-0.5.4/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamScanBuilder.java +0 -98
- hyperstreamdb-0.5.4/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamTable.java +0 -43
- hyperstreamdb-0.5.4/spark-hyperstream/src/test/java/com/hyperstreamdb/spark/SparkConnectorTest.java +0 -209
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/.env.example +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/.gitattributes +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/.hypothesis/constants/32b327793848e7d8 +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/.hypothesis/constants/67b0a8ccf18bf5d2 +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/.hypothesis/constants/84828557b4ee7be4 +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/.instructions.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/.ipynb_checkpoints/Untitled-checkpoint.ipynb +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/.qwen/settings.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/.qwen/settings.json.orig +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/ADMIN_CLI.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/CNAME +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/CONTRIBUTING.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/ELASTICSEARCH_INTEGRATION_PLAN.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/HyperStreamDB.png +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/LICENSE-APACHE +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/LICENSE-MIT +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/RUN_COMPLIANCE_TESTS.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/SECURITY.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/STEERING.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/THIRDPARTY_NOTICES.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/Untitled.ipynb +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benches/bench_table.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benches/performance.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/BENCHMARK_REPORT.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/benchmark_charts.png +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/benchmark_results.csv +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/concurrent_queries_20260409_214245.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/concurrent_queries_20260409_214245.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/filtered_search_comparison_20260409_222607.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/filtered_search_comparison_20260409_222607.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/filtered_vector_search_20260409_214355.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/filtered_vector_search_20260409_214355.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/filtered_vector_search_20260409_220418.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/filtered_vector_search_20260409_220418.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/filtered_vector_search_20260409_222053.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/filtered_vector_search_20260409_222053.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/filtered_vector_search_20260409_225907.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/filtered_vector_search_20260409_225907.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/full_scan_baseline_20260409_222303.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/full_scan_baseline_20260409_222303.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/full_scan_baseline_20260620_173334.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/full_scan_baseline_20260620_173334.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/full_scan_baseline_20260620_192646.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/full_scan_baseline_20260620_192646.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/full_scan_baseline_20260623_173013.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/full_scan_baseline_20260623_173013.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/high_selectivity_filter_20260409_222302.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/high_selectivity_filter_20260409_222302.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/high_selectivity_filter_20260620_173332.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/high_selectivity_filter_20260620_173332.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/high_selectivity_filter_20260620_192645.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/high_selectivity_filter_20260620_192645.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/high_selectivity_filter_20260623_173011.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/high_selectivity_filter_20260623_173011.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/ingestion_comparison_20260409_222516.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/ingestion_comparison_20260409_222516.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260409_214428.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260409_214428.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260409_220450.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260409_220450.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260409_222131.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260409_222131.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260409_225938.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260409_225938.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260409_231713.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260409_231713.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260620_173300.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260620_173300.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260620_192611.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260620_192611.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260623_172935.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/multi_filter_vector_20260623_172935.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/point_lookup_20260620_173332.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/point_lookup_20260620_173332.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/point_lookup_20260620_192644.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/point_lookup_20260620_192644.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/point_lookup_20260623_173011.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/point_lookup_20260623_173011.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260409_214501.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260409_214501.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260409_220524.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260409_220524.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260409_222204.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260409_222204.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260409_230010.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260409_230010.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260620_173303.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260620_173303.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260620_192614.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260620_192614.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260623_172938.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/post_vs_pre_filter_20260623_172938.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/query_comparison_20260409_222541.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/query_comparison_20260409_222541.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/range_query_20260409_222302.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/range_query_20260409_222302.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/range_query_20260620_173333.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/range_query_20260620_173333.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/range_query_20260620_192646.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/range_query_20260620_192646.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/range_query_20260623_173012.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/range_query_20260623_173012.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/search_filtered_high_selectivity_20260409_214144.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/search_filtered_high_selectivity_20260409_214144.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/search_unfiltered_20260409_214028.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/benchmark_results/search_unfiltered_20260409_214028.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/book.toml +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/build-connectors.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/build.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/check_iceberg_compliance.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/clippy.toml +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/clippy_output.txt +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docker-compose-hive.yml +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docker-compose-minio-nessie.yml +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docker-compose.yml +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/.nojekyll +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/BENCHMARKING.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/COMPREHENSIVE_GUIDE.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/CONCURRENCY.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/CONFIGURATION.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/DORIS_OPTIMIZATION_PATTERNS.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/GPU_SETUP_GUIDE.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/ICEBERG_V2_V3_API.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/PGVECTOR_SQL_GUIDE.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/PYTHON_VECTOR_API.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/VECTOR_CONFIGURATION.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/api_reference.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/architecture.md +0 -0
- {hyperstreamdb-0.5.4/docs/source/_static → hyperstreamdb-0.6.0/docs/build/html/_images}/HyperStreamDB.png +0 -0
- /hyperstreamdb-0.5.4/docs/source/api/python.rst → /hyperstreamdb-0.6.0/docs/build/html/_sources/api/python.rst.txt +0 -0
- /hyperstreamdb-0.5.4/docs/source/api/rust.rst → /hyperstreamdb-0.6.0/docs/build/html/_sources/api/rust.rst.txt +0 -0
- /hyperstreamdb-0.5.4/docs/catalog_usage.md → /hyperstreamdb-0.6.0/docs/build/html/_sources/guides/catalog_usage.md.txt +0 -0
- /hyperstreamdb-0.5.4/docs/index.md → /hyperstreamdb-0.6.0/docs/build/html/_sources/guides/index.md.txt +0 -0
- /hyperstreamdb-0.5.4/docs/monitoring.md → /hyperstreamdb-0.6.0/docs/build/html/_sources/guides/monitoring.md.txt +0 -0
- /hyperstreamdb-0.5.4/docs/task_status.md → /hyperstreamdb-0.6.0/docs/build/html/_sources/guides/task_status.md.txt +0 -0
- /hyperstreamdb-0.5.4/docs/source/roadmap.md → /hyperstreamdb-0.6.0/docs/build/html/_sources/roadmap.md.txt +0 -0
- /hyperstreamdb-0.5.4/recovered_plan.txt → /hyperstreamdb-0.6.0/docs/build/html/_static/scripts/furo-extensions.js +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/integrations/README.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/integrations/java_jni.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/integrations/python.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/integrations/spark.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/integrations/trino.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/docs/requirements.txt +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/fix_deprecated.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/hive-config/hive-site.xml +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/marketing_site/index.html +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/marketing_site/styles.css +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/proptest-regressions/core/index/gpu.txt +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/proptest-regressions/core/sql/vector_literal.txt +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/proptest-regressions/core/sql/vector_udf.txt +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/python/hyperstreamdb/embeddings.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/rust-toolchain.toml +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/scripts/fix_nb.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/scripts/split_table.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/scripts/update_cache.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/scripts/update_reader.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/scripts/update_schema_patch.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/scripts/update_schema_patch2.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/spark-hyperstream/.bloop/bloop.settings.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/spark-hyperstream/.bloop/spark-hyperstream-test.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/spark-hyperstream/.bloop/spark-hyperstream.json +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/bin/gateway.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/bin/hdb.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/bin/hyperstreamdb-admin.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/bin/iceberg_rest.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/bin/probe_datafusion.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/bin/setup_test_data.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/bin/verify_layered_indexing.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/catalog/config.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/catalog/glue.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/catalog/hive.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/catalog/jdbc.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/catalog/mod.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/catalog/nessie.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/catalog/rest.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/catalog/unity.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/clustering.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/compaction.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/embeddings.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/iceberg/delete.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/iceberg/iceberg_delete.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/iceberg/manifest.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/iceberg/mod.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/iceberg/schema.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/iceberg/transform.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/iceberg/types.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/iceberg/value.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/iceberg/writer.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/build_vector.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/cuda/cosine_distance.cu +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/cuda/hamming_distance.cu +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/cuda/inner_product.cu +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/cuda/jaccard_distance.cu +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/cuda/kmeans_assignment.cu +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/cuda/l1_distance.cu +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/cuda/l2_distance.cu +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/hnsw_ivf.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/hnsw_rs/annhdf5.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/hnsw_rs/api.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/hnsw_rs/dist.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/hnsw_rs/flatten.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/hnsw_rs/hnswio.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/hnsw_rs/libext.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/hnsw_rs/mod.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/hnsw_rs/prelude.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/hnsw_rs/test.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/ivf.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/memory.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/mps/cosine_distance.metal +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/mps/hamming_distance.metal +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/mps/inner_product.metal +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/mps/jaccard_distance.metal +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/mps/kmeans_assignment.metal +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/mps/l1_distance.metal +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/mps/l2_distance.metal +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/opencl/cosine_distance.cl +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/opencl/hamming_distance.cl +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/opencl/inner_product.cl +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/opencl/jaccard_distance.cl +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/opencl/kmeans_assignment.cl +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/opencl/l1_distance.cl +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/opencl/l2_distance.cl +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/pq.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/turboquant.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/index/wgpu_kernel.wgsl +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/license.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/lock.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/maintenance.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/manifest/manager/commit.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/manifest/manager/load.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/manifest/manager/partition.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/manifest/manager/schema.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/manifest/manager.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/manifest/mod.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/manifest/types.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/merge.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/metadata.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/mod.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/nessie.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/planner/filter.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/planner/pruning.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/planner/vector_search.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/planner.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/puffin.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/query.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/reader/delete.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/reader/filter.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/reader/mod.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/search/rrf.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/literal/binary.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/literal/dense.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/literal/mod.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/literal/sparse.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/optimizer/index_join.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/optimizer/vector_search/plan_detection.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/optimizer/vector_search/plan_rewriter.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/optimizer.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/pgvector_rewriter.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/physical_plan/index_join.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/physical_plan/vector_merge.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/physical_plan/vector_scan.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/physical_plan.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/udf/aggregate.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/udf/distance.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/udf/mod.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/udf/sparse.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/udf/transform.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/vector_literal.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/vector_operators.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/vector_udf/aggregate.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/vector_udf/distance.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/vector_udf/mod.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/vector_udf/sparse.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/vector_udf/transform.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/sql/vector_udf.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/storage.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/table/builder.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/table/fluent.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/table/index_config.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/table/primary_key.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/table/schema.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/table/state.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/table/stats.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/core/telemetry.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/enterprise/continuous_indexing.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/enterprise/mod.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/index.rs.old +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/catalog/glue.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/catalog/hive.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/catalog/jdbc.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/catalog/mod.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/catalog/nessie.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/catalog/rest.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/catalog/unity.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/helpers.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/manifest.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/mod.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/schema.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/session.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python/stats.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python_binding.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python_distance.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/python_gpu_context.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/telemetry/metrics.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/telemetry/mod.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/src/telemetry/tracing.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/all_types_index_test.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/bin/generate_iceberg_manifests.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/bin/verify_iceberg_read_check.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/check_mmh3.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/data/download_nyc_taxi.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/data/generate_embeddings.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/data/generate_wikipedia.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/data/start_nessie.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/datafusion_rust_test.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/debug_murmur3.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/fuzz_murmur3.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/gpu_test_helpers.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/integration_test_hnsw_ivf_native.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/performance/README.md +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/prototype_merge.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/python/verify_docstrings.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/python/verify_fluent_api.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/python/verify_unified_ingest.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/schema_evolution_test.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/stability.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_admin_cli.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_all_algos.py +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_catalog_commit.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_compliance.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_delete_correctness.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_iceberg_python_delete.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_iceberg_rest.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_iceberg_rest_create.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_iceberg_rest_delete.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_iceberg_rest_remove_index.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_iceberg_rest_update.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_metadata_creation.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_mor_reads.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_mor_writes.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_partition_transforms.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_partitioned_writes.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_puffin_index.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_rest_updates.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/tests/verify_schema_compat.rs +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-config/.DS_Store +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-config/catalog/glue_catalog.properties +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-config/catalog/hyperstreamdb.properties +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-config/catalog/iceberg.properties +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-config/catalog/iceberg_hive.properties +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-config/catalog/memory.properties +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-config/catalog/postgres.properties +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-config/config.properties +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-config/entrypoint.sh +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-config/jvm.config +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-config/node.properties +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-config.zip +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-hyperstream/pom.xml +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBColumnHandle.java +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBMetadata.java +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPlugin.java +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplit.java +0 -0
- {hyperstreamdb-0.5.4 → hyperstreamdb-0.6.0}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBTableHandle.java +0 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Cargo Audit Configuration
|
|
2
|
+
# https://github.com/rustsec/rustsec/tree/main/cargo-audit
|
|
3
|
+
|
|
4
|
+
[advisories]
|
|
5
|
+
ignore = [
|
|
6
|
+
# Transitive dependencies & existing ignores
|
|
7
|
+
"RUSTSEC-2026-0104", # rustls-webpki: CRL panic
|
|
8
|
+
"RUSTSEC-2026-0099", # rustls-webpki: wildcard name constraints
|
|
9
|
+
"RUSTSEC-2026-0098", # rustls-webpki: URI name constraints
|
|
10
|
+
"RUSTSEC-2026-0097", # rand: unsound with custom logger
|
|
11
|
+
"RUSTSEC-2024-0437", # protobuf: uncontrolled recursion
|
|
12
|
+
"RUSTSEC-2026-0177", # pyo3: missing Sync bound
|
|
13
|
+
"RUSTSEC-2026-0176", # pyo3: out-of-bounds read in iterator
|
|
14
|
+
"RUSTSEC-2023-0071", # rsa: Marvin attack
|
|
15
|
+
"RUSTSEC-2026-0258", # h2: unbounded empty DATA frames
|
|
16
|
+
"RUSTSEC-2026-0195", # quick-xml: unbounded namespace allocation
|
|
17
|
+
"RUSTSEC-2026-0194", # quick-xml: quadratic run time in duplicate attribute check
|
|
18
|
+
"RUSTSEC-2025-0134", # rustls-pemfile: unmaintained advisory
|
|
19
|
+
"RUSTSEC-2026-0190", # anyhow: Error::downcast_mut unsoundness
|
|
20
|
+
"RUSTSEC-2026-0221", # event-listener: !Send tags across thread boundaries
|
|
21
|
+
"RUSTSEC-2026-0204", # crossbeam-epoch: pointer dereference
|
|
22
|
+
"RUSTSEC-2026-0234", # rkyv: hash table out of bounds
|
|
23
|
+
"RUSTSEC-2026-0233", # rkyv: use-after-free
|
|
24
|
+
"RUSTSEC-2026-0235", # rkyv: Rc/Arc out of bounds
|
|
25
|
+
]
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# Benchmark Findings — `hypersearch` vs Elasticsearch 7.10.2
|
|
2
|
+
|
|
3
|
+
Step 4.2 of the OpenSearch/ES integration plan. Compares the `hypersearch`
|
|
4
|
+
REST server against a single-node Elasticsearch 7.10.2 (Docker, security
|
|
5
|
+
disabled, 1 shard / 0 replicas, refresh disabled during ingest, default 1 GiB
|
|
6
|
+
JVM heap), feeding both the **same document stream** (one document per HTTP
|
|
7
|
+
POST) on the same host.
|
|
8
|
+
|
|
9
|
+
- **Tool:** [`benchmarks/competitive/benchmark_es710.py`](benchmarks/competitive/benchmark_es710.py)
|
|
10
|
+
- **Raw results:** `benchmarks/competitive/benchmark_results/es710_hypersearch_*.json` / `.md`
|
|
11
|
+
|
|
12
|
+
## How to run
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
# From the repo root, after building the binary:
|
|
16
|
+
cargo build -p hyperstreamdb-search --bin hypersearch
|
|
17
|
+
|
|
18
|
+
# Quick validation run (200 docs, 20 query runs, dim 32) — the M4 gate:
|
|
19
|
+
./venv/bin/python benchmarks/competitive/benchmark_es710.py --quick
|
|
20
|
+
|
|
21
|
+
# Full target runs (spec Step 4.2):
|
|
22
|
+
./venv/bin/python benchmarks/competitive/benchmark_es710.py --size 100000 --runs 100
|
|
23
|
+
./venv/bin/python benchmarks/competitive/benchmark_es710.py --size 1000000 --runs 100
|
|
24
|
+
|
|
25
|
+
# hypersearch-only (no ES) or keep the ES container for inspection:
|
|
26
|
+
./venv/bin/python benchmarks/competitive/benchmark_es710.py --skip-es
|
|
27
|
+
./venv/bin/python benchmarks/competitive/benchmark_es710.py --keep-es
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
The ES 7.10.2 image (`docker.elastic.co/elasticsearch/elasticsearch:7.10.2`,
|
|
31
|
+
~814 MB) is pulled on first run.
|
|
32
|
+
|
|
33
|
+
## Results — quick run (200 docs, dim 32, 20 runs)
|
|
34
|
+
|
|
35
|
+
| Operation | HyperStreamDB p50 | HyperStreamDB p95 | ES 7.10.2 p50 | ES 7.10.2 p95 |
|
|
36
|
+
|-----------|-------------------|-------------------|---------------|---------------|
|
|
37
|
+
| Ingest (docs/s) | **879** | — | 221 | — |
|
|
38
|
+
| Refresh (ms) | 19,560 | — | **46** | — |
|
|
39
|
+
| `match` BM25 (ms) | 86.1 | 100.4 | **3.3** | 4.8 |
|
|
40
|
+
| Filtered `match`+`term` (ms) | 106.5 | 120.1 | **2.6** | 2.9 |
|
|
41
|
+
| `knn` HNSW (ms) | 85.6 | 89.0 | n/a¹ | n/a¹ |
|
|
42
|
+
| Hybrid `match`+`knn` (ms) | 101.5 | 109.3 | n/a¹ | n/a¹ |
|
|
43
|
+
|
|
44
|
+
¹ ES 7.10 has no `dense_vector` type, so `knn` and hybrid are hypersearch-only.
|
|
45
|
+
|
|
46
|
+
## Findings
|
|
47
|
+
|
|
48
|
+
1. **Search latency is within the target envelope.** Hypersearch query
|
|
49
|
+
latencies (86–120 ms p95) fall inside the plan's **50–200 ms** target for
|
|
50
|
+
website/document search. This is the intended operating point.
|
|
51
|
+
|
|
52
|
+
2. **ES is far faster on search — by design.** ES 7.10 answers in 3–6 ms
|
|
53
|
+
because it pins segments in memory (sub-millisecond, JVM heap + hot SSD).
|
|
54
|
+
Hypersearch trades that latency for an object-storage-native, scale-to-zero
|
|
55
|
+
model. This is the core positioning trade-off, not a regression.
|
|
56
|
+
|
|
57
|
+
3. **Ingest throughput favors hypersearch** (879 vs 221 docs/s) for single-doc
|
|
58
|
+
POSTs, because writes land in the memtable + WAL immediately. (The
|
|
59
|
+
`_bulk` endpoint, added in M3, improves this further for batch ingestion.)
|
|
60
|
+
|
|
61
|
+
4. **Refresh (index build) is the one-time cost.** Hypersearch's refresh
|
|
62
|
+
(19.5 s for 200 docs) includes building the BM25 inverted index + HNSW
|
|
63
|
+
vector index and committing the manifest/Iceberg metadata; ES's refresh
|
|
64
|
+
(46 ms) only flushes the translog. As document count grows, hypersearch's
|
|
65
|
+
per-refresh index build grows too — this is the main area to optimize
|
|
66
|
+
(incremental index builds, background/async indexing, and the on-demand
|
|
67
|
+
index-file cache) before the 100k/1M runs.
|
|
68
|
+
|
|
69
|
+
5. **`knn` and hybrid are differentiators.** ES 7.10 cannot do native vector
|
|
70
|
+
search; hypersearch serves `knn` and RRF-fused hybrid in the same 50–200 ms
|
|
71
|
+
envelope with no extra infrastructure.
|
|
72
|
+
|
|
73
|
+
## Next steps (100k / 1M)
|
|
74
|
+
|
|
75
|
+
The quick run validates the pipeline end-to-end (the M4 gate). The full
|
|
76
|
+
100k/1M runs are long-running (ingest alone is ~20 min for 1M docs at the
|
|
77
|
+
observed hypersearch rate, ~75 min for ES, plus index builds and query runs)
|
|
78
|
+
and should be run on a dedicated host:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
./venv/bin/python benchmarks/competitive/benchmark_es710.py --size 100000 --runs 100
|
|
82
|
+
./venv/bin/python benchmarks/competitive/benchmark_es710.py --size 1000000 --runs 100
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
The S3/MinIO variant (spec: "local FS, then S3 via MinIO") sets
|
|
86
|
+
`HYPERSEARCH_STORAGE_URI=s3://<bucket>/search` with a running MinIO and the
|
|
87
|
+
same commands; the on-demand index-file cache
|
|
88
|
+
([`hyperstreamdb-search/src/index_cache.rs`](hyperstreamdb-search/src/index_cache.rs))
|
|
89
|
+
is what makes the S3 path viable at scale.
|
|
@@ -9,6 +9,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
+
## [0.6.0] - 2026-09-09
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- **Multi-Protocol Gateway Ecosystem**:
|
|
16
|
+
- **`hyperstreamdb-search` Service (`hypersearch` binary)**: Dual Elasticsearch 7.10 (Port 9200) and Qdrant (Port 6333) compatible REST APIs over HyperStreamDB tables.
|
|
17
|
+
- Elasticsearch 7.10 API: Full document CRUD (`POST /{index}/_doc`), hybrid search (`POST /{index}/_search` with BM25 + HNSW kNN + Reciprocal Rank Fusion), index management (`PUT /{index}`, `POST /{index}/_refresh`), and cluster health (`GET /_cluster/health`).
|
|
18
|
+
- Qdrant REST API: Collection management (`/collections/{name}`), point upsert/retrieval (`/collections/{name}/points`), and vector search (`/collections/{name}/points/search`).
|
|
19
|
+
- Prometheus metrics exporter on `/metrics` (Port 9090).
|
|
20
|
+
- **`hyperstreamdb-flight` Gateway Service**: Native Arrow Flight SQL gRPC gateway (Port 50051) enabling zero-copy analytics for DuckDB, Polars, Apache Spark, and JDBC/ODBC BI tools via standard Flight SQL/ADBC.
|
|
21
|
+
- **Multi-Flavor GPU Acceleration & Hardware Auto-Detection**:
|
|
22
|
+
- Optional GPU acceleration exposed across `hyperstreamdb-search` and `hyperstreamdb-flight` via `cuda`, `wgpu`, `rocm`, `intel`, and `all-gpu` feature flags.
|
|
23
|
+
- Runtime device selection via `HYPERSEARCH_DEVICE=auto|cuda[:N]|rocm[:N]|intel[:N]|mps|cpu`.
|
|
24
|
+
- Active compute backend (`compute` block) exposed in `GET /` cluster info and `GET /_cluster/stats`.
|
|
25
|
+
- `docker/Dockerfile.gpu`: Multi-flavor GPU container image with CUDA 12 runtime, NVRTC JIT compilation, and Vulkan/Mesa drivers for AMD Radeon and Intel Arc.
|
|
26
|
+
- `docker/docker-compose.gpu.yml`: Compose GPU override with hardware reservations and device pass-through.
|
|
27
|
+
- **Iceberg Compaction Resilience & Index Recovery**:
|
|
28
|
+
- `Table::recover_indexes_async(&self)` / `recover_indexes(&self)`: Re-indexes data files that are missing overlay index sidecars, recovering fast vector (HNSW) and keyword (BM25) search after external Iceberg tools (Spark `rewriteDataFiles`, Trino `OPTIMIZE`, PyIceberg) compact table data files.
|
|
29
|
+
- **Docker Container Infrastructure**:
|
|
30
|
+
- `hyperstreamdb/quickstart:latest`: Single all-in-one developer container running ES 7.10 (9200), Qdrant (6333), and Flight SQL (50051).
|
|
31
|
+
- `hyperstreamdb/search:latest`: Standalone production search microservice.
|
|
32
|
+
- `hyperstreamdb/flight:latest`: Standalone production Arrow Flight SQL microservice.
|
|
33
|
+
- `docker/docker-compose.quickstart.yml`: Single-command full stack with MinIO (S3), Project Nessie catalog, and HyperStreamDB.
|
|
34
|
+
- `docker-compose.production.yml`: Production multi-container configuration with health checks and resource limits.
|
|
35
|
+
- Okapi BM25 keyword scoring (tunable `k1`/`b`) with an English analyzer in the core engine; public `keyword_search_index` API.
|
|
36
|
+
- Smart hybrid trigger fusing keyword (BM25) and vector (HNSW) results via reciprocal rank fusion (RRF, k=60).
|
|
37
|
+
- Background segment index builds with `wait_for_background_tasks_async` for deterministic refresh semantics.
|
|
38
|
+
|
|
12
39
|
## [0.5.3] - 2026-06-21
|
|
13
40
|
|
|
14
41
|
### Added
|