hyperstreamdb 0.6.0__tar.gz → 0.7.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (628) hide show
  1. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/.dockerignore +1 -0
  2. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/.gitignore +22 -2
  3. hyperstreamdb-0.7.1/BENCHMARK_100K_FINDINGS.md +45 -0
  4. hyperstreamdb-0.7.1/BENCHMARK_1M_FINDINGS.md +37 -0
  5. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/CHANGELOG.md +27 -0
  6. hyperstreamdb-0.7.1/CODEBASE_METRICS.md +210 -0
  7. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/Cargo.lock +96 -17
  8. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/Cargo.toml +5 -3
  9. hyperstreamdb-0.7.1/NOTICE +17 -0
  10. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/PKG-INFO +80 -19
  11. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/PROGRESS.md +32 -0
  12. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/README.md +78 -18
  13. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/ROADMAP.md +85 -10
  14. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benches/bench_table.rs +8 -1
  15. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/check_iceberg_compliance.py +17 -9
  16. hyperstreamdb-0.7.1/docker-compose-bench.yml +40 -0
  17. hyperstreamdb-0.7.1/docs/BENCHMARKING.md +167 -0
  18. hyperstreamdb-0.7.1/docs/COMPREHENSIVE_GUIDE.md +216 -0
  19. hyperstreamdb-0.7.1/docs/CONCURRENCY.md +57 -0
  20. hyperstreamdb-0.7.1/docs/CONFIGURATION.md +180 -0
  21. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/PGVECTOR_SQL_GUIDE.md +79 -28
  22. hyperstreamdb-0.7.1/docs/SNOWFLAKE_POLARIS_GUIDE.md +210 -0
  23. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/api_reference.md +87 -16
  24. hyperstreamdb-0.7.1/docs/architecture.md +75 -0
  25. hyperstreamdb-0.7.1/docs/benchmarking.md +167 -0
  26. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/catalog_usage.md +22 -5
  27. hyperstreamdb-0.7.1/docs/index.md +17 -0
  28. hyperstreamdb-0.7.1/docs/source/guides/BENCHMARKING.md +167 -0
  29. hyperstreamdb-0.7.1/docs/source/guides/COMPREHENSIVE_GUIDE.md +216 -0
  30. hyperstreamdb-0.7.1/docs/source/guides/CONCURRENCY.md +57 -0
  31. hyperstreamdb-0.7.1/docs/source/guides/CONFIGURATION.md +180 -0
  32. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/guides/PGVECTOR_SQL_GUIDE.md +79 -28
  33. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/guides/api_reference.md +87 -16
  34. hyperstreamdb-0.7.1/docs/source/guides/architecture.md +75 -0
  35. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/guides/catalog_usage.md +22 -5
  36. hyperstreamdb-0.7.1/docs/source/guides/index.md +17 -0
  37. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/pyproject.toml +1 -1
  38. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/bin/iceberg_rest.rs +1 -0
  39. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/cache.rs +10 -10
  40. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/catalog/mod.rs +58 -3
  41. hyperstreamdb-0.7.1/src/core/catalog/rest.rs +401 -0
  42. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/clustering.rs +4 -4
  43. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/compaction.rs +5 -5
  44. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/ffi.rs +85 -42
  45. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/build_inverted.rs +34 -4
  46. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/build_vector.rs +44 -28
  47. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/distance.rs +1 -1
  48. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/hnsw_ivf.rs +170 -156
  49. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/hnsw_rs/hnswio.rs +85 -40
  50. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/hnsw_rs/mod.rs +0 -1
  51. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/ivf.rs +5 -2
  52. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/mod.rs +35 -0
  53. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/lock.rs +4 -1
  54. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/maintenance.rs +20 -2
  55. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/manifest/manager/commit.rs +8 -1
  56. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/manifest/manager.rs +3 -0
  57. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/manifest/types.rs +5 -8
  58. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/planner.rs +10 -3
  59. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/query.rs +209 -30
  60. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/reader/delete.rs +2 -23
  61. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/reader/filter.rs +104 -32
  62. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/reader/mod.rs +8 -23
  63. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/reader/scan.rs +382 -195
  64. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/segment.rs +49 -0
  65. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/mod.rs +1 -1
  66. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/optimizer/vector_search/mod.rs +2 -7
  67. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/optimizer/vector_search/plan_rewriter.rs +24 -19
  68. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/physical_plan/vector_merge.rs +5 -2
  69. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/physical_plan/vector_scan.rs +36 -34
  70. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/physical_plan.rs +2 -3
  71. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/vector_udf/aggregate.rs +20 -4
  72. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/vector_udf/transform.rs +38 -8
  73. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/table/builder.rs +94 -36
  74. hyperstreamdb-0.7.1/src/core/table/catalog.rs +575 -0
  75. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/table/fluent.rs +9 -4
  76. hyperstreamdb-0.7.1/src/core/table/index_config.rs +509 -0
  77. hyperstreamdb-0.7.1/src/core/table/maintenance.rs +424 -0
  78. hyperstreamdb-0.7.1/src/core/table/merge.rs +163 -0
  79. hyperstreamdb-0.7.1/src/core/table/mod.rs +533 -0
  80. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/table/primary_key.rs +104 -44
  81. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/table/read.rs +111 -91
  82. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/table/schema.rs +1 -0
  83. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/table/state.rs +44 -13
  84. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/table/stats.rs +240 -75
  85. hyperstreamdb-0.7.1/src/core/table/tests.rs +167 -0
  86. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/table/write.rs +274 -55
  87. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/wal.rs +273 -23
  88. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/lib.rs +5 -3
  89. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/table.rs +17 -8
  90. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/integration_test_hnsw_ivf_native.rs +9 -1
  91. hyperstreamdb-0.7.1/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBMetadata.java +116 -0
  92. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSource.java +2 -2
  93. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplitManager.java +7 -5
  94. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBTableHandle.java +14 -1
  95. hyperstreamdb-0.6.0/Untitled.ipynb +0 -33
  96. hyperstreamdb-0.6.0/clippy_output.txt +0 -502
  97. hyperstreamdb-0.6.0/docs/BENCHMARKING.md +0 -108
  98. hyperstreamdb-0.6.0/docs/COMPREHENSIVE_GUIDE.md +0 -267
  99. hyperstreamdb-0.6.0/docs/CONCURRENCY.md +0 -38
  100. hyperstreamdb-0.6.0/docs/CONFIGURATION.md +0 -91
  101. hyperstreamdb-0.6.0/docs/architecture.md +0 -49
  102. hyperstreamdb-0.6.0/docs/index.md +0 -15
  103. hyperstreamdb-0.6.0/docs/source/guides/BENCHMARKING.md +0 -108
  104. hyperstreamdb-0.6.0/docs/source/guides/COMPREHENSIVE_GUIDE.md +0 -267
  105. hyperstreamdb-0.6.0/docs/source/guides/CONCURRENCY.md +0 -38
  106. hyperstreamdb-0.6.0/docs/source/guides/CONFIGURATION.md +0 -91
  107. hyperstreamdb-0.6.0/docs/source/guides/architecture.md +0 -49
  108. hyperstreamdb-0.6.0/docs/source/guides/index.md +0 -15
  109. hyperstreamdb-0.6.0/fix_deprecated.py +0 -20
  110. hyperstreamdb-0.6.0/recovered_plan.txt +0 -0
  111. hyperstreamdb-0.6.0/scripts/fix_nb.py +0 -30
  112. hyperstreamdb-0.6.0/scripts/split_table.py +0 -19
  113. hyperstreamdb-0.6.0/scripts/update_cache.py +0 -46
  114. hyperstreamdb-0.6.0/scripts/update_reader.py +0 -57
  115. hyperstreamdb-0.6.0/scripts/update_schema_patch.py +0 -236
  116. hyperstreamdb-0.6.0/scripts/update_schema_patch2.py +0 -17
  117. hyperstreamdb-0.6.0/src/core/catalog/rest.rs +0 -166
  118. hyperstreamdb-0.6.0/src/core/index/hnsw_rs/libext.rs +0 -858
  119. hyperstreamdb-0.6.0/src/core/planner/pruning.rs +0 -590
  120. hyperstreamdb-0.6.0/src/core/table/index_config.rs +0 -374
  121. hyperstreamdb-0.6.0/src/core/table/mod.rs +0 -3503
  122. hyperstreamdb-0.6.0/src/index.rs.old +0 -11
  123. hyperstreamdb-0.6.0/src/python_binding.rs +0 -9
  124. hyperstreamdb-0.6.0/tests/check_mmh3.py +0 -16
  125. hyperstreamdb-0.6.0/tests/debug_murmur3.rs +0 -96
  126. hyperstreamdb-0.6.0/tests/fuzz_murmur3.rs +0 -94
  127. hyperstreamdb-0.6.0/tests/prototype_merge.py +0 -113
  128. hyperstreamdb-0.6.0/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBMetadata.java +0 -55
  129. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/.cargo/audit.toml +0 -0
  130. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/.env.example +0 -0
  131. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/.gitattributes +0 -0
  132. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/.hypothesis/constants/32b327793848e7d8 +0 -0
  133. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/.hypothesis/constants/67b0a8ccf18bf5d2 +0 -0
  134. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/.hypothesis/constants/84828557b4ee7be4 +0 -0
  135. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/.instructions.md +0 -0
  136. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/.ipynb_checkpoints/Untitled-checkpoint.ipynb +0 -0
  137. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/.qwen/settings.json +0 -0
  138. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/.qwen/settings.json.orig +0 -0
  139. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/ADMIN_CLI.md +0 -0
  140. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/BENCHMARK_FINDINGS.md +0 -0
  141. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/CNAME +0 -0
  142. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/CONTRIBUTING.md +0 -0
  143. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/Dockerfile +0 -0
  144. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/ELASTICSEARCH_INTEGRATION_PLAN.md +0 -0
  145. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/GETTING_STARTED.md +0 -0
  146. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/HyperStreamDB.png +0 -0
  147. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/LICENSE-APACHE +0 -0
  148. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/LICENSE-MIT +0 -0
  149. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/OPENSEARCH_COMPATIBILITY.md +0 -0
  150. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/RUN_COMPLIANCE_TESTS.sh +0 -0
  151. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/SECURITY.md +0 -0
  152. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/STEERING.md +0 -0
  153. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/THIRDPARTY_NOTICES.md +0 -0
  154. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/audit.toml +0 -0
  155. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benches/performance.rs +0 -0
  156. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/BENCHMARK_REPORT.md +0 -0
  157. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/benchmark_charts.png +0 -0
  158. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/benchmark_results.csv +0 -0
  159. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/concurrent_queries_20260409_214245.json +0 -0
  160. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/concurrent_queries_20260409_214245.md +0 -0
  161. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/filtered_search_comparison_20260409_222607.json +0 -0
  162. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/filtered_search_comparison_20260409_222607.md +0 -0
  163. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/filtered_vector_search_20260409_214355.json +0 -0
  164. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/filtered_vector_search_20260409_214355.md +0 -0
  165. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/filtered_vector_search_20260409_220418.json +0 -0
  166. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/filtered_vector_search_20260409_220418.md +0 -0
  167. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/filtered_vector_search_20260409_222053.json +0 -0
  168. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/filtered_vector_search_20260409_222053.md +0 -0
  169. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/filtered_vector_search_20260409_225907.json +0 -0
  170. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/filtered_vector_search_20260409_225907.md +0 -0
  171. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/full_scan_baseline_20260409_222303.json +0 -0
  172. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/full_scan_baseline_20260409_222303.md +0 -0
  173. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/full_scan_baseline_20260620_173334.json +0 -0
  174. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/full_scan_baseline_20260620_173334.md +0 -0
  175. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/full_scan_baseline_20260620_192646.json +0 -0
  176. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/full_scan_baseline_20260620_192646.md +0 -0
  177. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/full_scan_baseline_20260623_173013.json +0 -0
  178. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/full_scan_baseline_20260623_173013.md +0 -0
  179. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/high_selectivity_filter_20260409_222302.json +0 -0
  180. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/high_selectivity_filter_20260409_222302.md +0 -0
  181. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/high_selectivity_filter_20260620_173332.json +0 -0
  182. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/high_selectivity_filter_20260620_173332.md +0 -0
  183. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/high_selectivity_filter_20260620_192645.json +0 -0
  184. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/high_selectivity_filter_20260620_192645.md +0 -0
  185. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/high_selectivity_filter_20260623_173011.json +0 -0
  186. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/high_selectivity_filter_20260623_173011.md +0 -0
  187. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/ingestion_comparison_20260409_222516.json +0 -0
  188. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/ingestion_comparison_20260409_222516.md +0 -0
  189. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260409_214428.json +0 -0
  190. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260409_214428.md +0 -0
  191. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260409_220450.json +0 -0
  192. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260409_220450.md +0 -0
  193. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260409_222131.json +0 -0
  194. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260409_222131.md +0 -0
  195. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260409_225938.json +0 -0
  196. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260409_225938.md +0 -0
  197. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260409_231713.json +0 -0
  198. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260409_231713.md +0 -0
  199. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260620_173300.json +0 -0
  200. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260620_173300.md +0 -0
  201. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260620_192611.json +0 -0
  202. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260620_192611.md +0 -0
  203. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260623_172935.json +0 -0
  204. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/multi_filter_vector_20260623_172935.md +0 -0
  205. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/point_lookup_20260620_173332.json +0 -0
  206. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/point_lookup_20260620_173332.md +0 -0
  207. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/point_lookup_20260620_192644.json +0 -0
  208. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/point_lookup_20260620_192644.md +0 -0
  209. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/point_lookup_20260623_173011.json +0 -0
  210. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/point_lookup_20260623_173011.md +0 -0
  211. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260409_214501.json +0 -0
  212. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260409_214501.md +0 -0
  213. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260409_220524.json +0 -0
  214. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260409_220524.md +0 -0
  215. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260409_222204.json +0 -0
  216. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260409_222204.md +0 -0
  217. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260409_230010.json +0 -0
  218. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260409_230010.md +0 -0
  219. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260620_173303.json +0 -0
  220. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260620_173303.md +0 -0
  221. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260620_192614.json +0 -0
  222. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260620_192614.md +0 -0
  223. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260623_172938.json +0 -0
  224. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/post_vs_pre_filter_20260623_172938.md +0 -0
  225. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/query_comparison_20260409_222541.json +0 -0
  226. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/query_comparison_20260409_222541.md +0 -0
  227. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/range_query_20260409_222302.json +0 -0
  228. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/range_query_20260409_222302.md +0 -0
  229. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/range_query_20260620_173333.json +0 -0
  230. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/range_query_20260620_173333.md +0 -0
  231. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/range_query_20260620_192646.json +0 -0
  232. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/range_query_20260620_192646.md +0 -0
  233. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/range_query_20260623_173012.json +0 -0
  234. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/range_query_20260623_173012.md +0 -0
  235. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/search_filtered_high_selectivity_20260409_214144.json +0 -0
  236. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/search_filtered_high_selectivity_20260409_214144.md +0 -0
  237. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/search_unfiltered_20260409_214028.json +0 -0
  238. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/benchmark_results/search_unfiltered_20260409_214028.md +0 -0
  239. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/book.toml +0 -0
  240. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/build-connectors.sh +0 -0
  241. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/build.rs +0 -0
  242. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/clippy.toml +0 -0
  243. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/dbt-hyperstreamdb/dbt/adapters/hyperstreamdb/__init__.py +0 -0
  244. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/dbt-hyperstreamdb/dbt/adapters/hyperstreamdb/__version__.py +0 -0
  245. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/dbt-hyperstreamdb/dbt/adapters/hyperstreamdb/connections.py +0 -0
  246. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/dbt-hyperstreamdb/dbt/adapters/hyperstreamdb/impl.py +0 -0
  247. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/dbt-hyperstreamdb/dbt/include/hyperstreamdb/__init__.py +0 -0
  248. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/dbt-hyperstreamdb/dbt/include/hyperstreamdb/dbt_project.yml +0 -0
  249. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/dbt-hyperstreamdb/dbt/include/hyperstreamdb/macros/adapters.sql +0 -0
  250. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/dbt-hyperstreamdb/dbt/include/hyperstreamdb/macros/materializations/incremental.sql +0 -0
  251. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/dbt-hyperstreamdb/dbt/include/hyperstreamdb/macros/materializations/table.sql +0 -0
  252. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/dbt-hyperstreamdb/dbt/include/hyperstreamdb/macros/vector.sql +0 -0
  253. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/dbt-hyperstreamdb/setup.py +0 -0
  254. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/deny.toml +0 -0
  255. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docker-compose-hive.yml +0 -0
  256. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docker-compose-minio-nessie.yml +0 -0
  257. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docker-compose.production.yml +0 -0
  258. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docker-compose.yml +0 -0
  259. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/.nojekyll +0 -0
  260. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/DORIS_OPTIMIZATION_PATTERNS.md +0 -0
  261. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/GPU_SETUP_GUIDE.md +0 -0
  262. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/ICEBERG_V2_V3_API.md +0 -0
  263. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/INSTALLATION.md +0 -0
  264. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/PYTHON_VECTOR_API.md +0 -0
  265. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/VECTOR_CONFIGURATION.md +0 -0
  266. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.buildinfo +0 -0
  267. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/api/python.doctree +0 -0
  268. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/api/rust.doctree +0 -0
  269. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/environment.pickle +0 -0
  270. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/BENCHMARKING.doctree +0 -0
  271. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/COMPREHENSIVE_GUIDE.doctree +0 -0
  272. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/CONCURRENCY.doctree +0 -0
  273. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/CONFIGURATION.doctree +0 -0
  274. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/DORIS_OPTIMIZATION_PATTERNS.doctree +0 -0
  275. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/GPU_SETUP_GUIDE.doctree +0 -0
  276. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/ICEBERG_V2_V3_API.doctree +0 -0
  277. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/INSTALLATION.doctree +0 -0
  278. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/IN_MEMORY_COMPONENT_ANALYSIS.doctree +0 -0
  279. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/MONETIZATION_ARCHITECTURE.doctree +0 -0
  280. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/PGVECTOR_SQL_GUIDE.doctree +0 -0
  281. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/PYTHON_VECTOR_API.doctree +0 -0
  282. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/SUMMARY.doctree +0 -0
  283. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/VECTOR_CONFIGURATION.doctree +0 -0
  284. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/api_reference.doctree +0 -0
  285. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/architecture.doctree +0 -0
  286. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/catalog_usage.doctree +0 -0
  287. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/comprehensive_guide.doctree +0 -0
  288. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/concurrency.doctree +0 -0
  289. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/configuration.doctree +0 -0
  290. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/gpu_setup_guide.doctree +0 -0
  291. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/index.doctree +0 -0
  292. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/installation.doctree +0 -0
  293. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/monitoring.doctree +0 -0
  294. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/python_vector_api.doctree +0 -0
  295. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/guides/task_status.doctree +0 -0
  296. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/index.doctree +0 -0
  297. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/.doctrees/roadmap.doctree +0 -0
  298. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_images/HyperStreamDB.png +0 -0
  299. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_modules/hyperstreamdb/embeddings.html +0 -0
  300. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_modules/hyperstreamdb.html +0 -0
  301. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_modules/index.html +0 -0
  302. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/api/python.rst.txt +0 -0
  303. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/api/rust.rst.txt +0 -0
  304. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/BENCHMARKING.md.txt +0 -0
  305. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/COMPREHENSIVE_GUIDE.md.txt +0 -0
  306. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/CONCURRENCY.md.txt +0 -0
  307. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/CONFIGURATION.md.txt +0 -0
  308. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/DORIS_OPTIMIZATION_PATTERNS.md.txt +0 -0
  309. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/GPU_SETUP_GUIDE.md.txt +0 -0
  310. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/ICEBERG_V2_V3_API.md.txt +0 -0
  311. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/INSTALLATION.md.txt +0 -0
  312. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/IN_MEMORY_COMPONENT_ANALYSIS.md.txt +0 -0
  313. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/MONETIZATION_ARCHITECTURE.md.txt +0 -0
  314. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/PGVECTOR_SQL_GUIDE.md.txt +0 -0
  315. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/PYTHON_VECTOR_API.md.txt +0 -0
  316. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/SUMMARY.md.txt +0 -0
  317. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/VECTOR_CONFIGURATION.md.txt +0 -0
  318. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/api_reference.md.txt +0 -0
  319. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/architecture.md.txt +0 -0
  320. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/catalog_usage.md.txt +0 -0
  321. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/comprehensive_guide.md.txt +0 -0
  322. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/concurrency.md.txt +0 -0
  323. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/configuration.md.txt +0 -0
  324. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/gpu_setup_guide.md.txt +0 -0
  325. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/index.md.txt +0 -0
  326. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/installation.md.txt +0 -0
  327. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/monitoring.md.txt +0 -0
  328. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/python_vector_api.md.txt +0 -0
  329. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/guides/task_status.md.txt +0 -0
  330. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/index.rst.txt +0 -0
  331. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sources/roadmap.md.txt +0 -0
  332. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sphinx_design_static/design-tabs.js +0 -0
  333. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_sphinx_design_static/sphinx-design.min.css +0 -0
  334. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/HyperStreamDB.png +0 -0
  335. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/base-stemmer.js +0 -0
  336. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/basic.css +0 -0
  337. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/check-solid.svg +0 -0
  338. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/clipboard.min.js +0 -0
  339. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/copy-button.svg +0 -0
  340. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/copybutton.css +0 -0
  341. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/copybutton.js +0 -0
  342. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/copybutton_funcs.js +0 -0
  343. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/debug.css +0 -0
  344. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/design-tabs.js +0 -0
  345. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/doctools.js +0 -0
  346. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/documentation_options.js +0 -0
  347. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/english-stemmer.js +0 -0
  348. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/file.png +0 -0
  349. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/language_data.js +0 -0
  350. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/minus.png +0 -0
  351. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/plus.png +0 -0
  352. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/pygments.css +0 -0
  353. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/scripts/furo-extensions.js +0 -0
  354. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/scripts/furo.js +0 -0
  355. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/scripts/furo.js.LICENSE.txt +0 -0
  356. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/scripts/furo.js.map +0 -0
  357. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/searchtools.js +0 -0
  358. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/skeleton.css +0 -0
  359. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/sphinx-design.min.css +0 -0
  360. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/sphinx_highlight.js +0 -0
  361. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/styles/furo-extensions.css +0 -0
  362. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/styles/furo-extensions.css.map +0 -0
  363. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/styles/furo.css +0 -0
  364. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/_static/styles/furo.css.map +0 -0
  365. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/api/python.html +0 -0
  366. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/api/rust.html +0 -0
  367. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/genindex.html +0 -0
  368. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/BENCHMARKING.html +0 -0
  369. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/COMPREHENSIVE_GUIDE.html +0 -0
  370. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/CONCURRENCY.html +0 -0
  371. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/CONFIGURATION.html +0 -0
  372. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/DORIS_OPTIMIZATION_PATTERNS.html +0 -0
  373. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/GPU_SETUP_GUIDE.html +0 -0
  374. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/ICEBERG_V2_V3_API.html +0 -0
  375. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/INSTALLATION.html +0 -0
  376. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/IN_MEMORY_COMPONENT_ANALYSIS.html +0 -0
  377. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/MONETIZATION_ARCHITECTURE.html +0 -0
  378. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/PGVECTOR_SQL_GUIDE.html +0 -0
  379. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/PYTHON_VECTOR_API.html +0 -0
  380. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/SUMMARY.html +0 -0
  381. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/VECTOR_CONFIGURATION.html +0 -0
  382. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/api_reference.html +0 -0
  383. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/architecture.html +0 -0
  384. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/catalog_usage.html +0 -0
  385. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/comprehensive_guide.html +0 -0
  386. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/concurrency.html +0 -0
  387. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/configuration.html +0 -0
  388. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/gpu_setup_guide.html +0 -0
  389. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/index.html +0 -0
  390. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/installation.html +0 -0
  391. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/monitoring.html +0 -0
  392. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/python_vector_api.html +0 -0
  393. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/guides/task_status.html +0 -0
  394. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/index.html +0 -0
  395. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/objects.inv +0 -0
  396. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/roadmap.html +0 -0
  397. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/search.html +0 -0
  398. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/build/html/searchindex.js +0 -0
  399. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/integrations/README.md +0 -0
  400. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/integrations/java_jni.md +0 -0
  401. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/integrations/python.md +0 -0
  402. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/integrations/spark.md +0 -0
  403. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/integrations/trino.md +0 -0
  404. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/monitoring.md +0 -0
  405. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/requirements.txt +0 -0
  406. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/_static/HyperStreamDB.png +0 -0
  407. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/api/python.rst +0 -0
  408. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/api/rust.rst +0 -0
  409. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/conf.py +0 -0
  410. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/guides/DORIS_OPTIMIZATION_PATTERNS.md +0 -0
  411. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/guides/GPU_SETUP_GUIDE.md +0 -0
  412. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/guides/ICEBERG_V2_V3_API.md +0 -0
  413. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/guides/INSTALLATION.md +0 -0
  414. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/guides/PYTHON_VECTOR_API.md +0 -0
  415. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/guides/VECTOR_CONFIGURATION.md +0 -0
  416. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/guides/monitoring.md +0 -0
  417. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/guides/task_status.md +0 -0
  418. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/index.rst +0 -0
  419. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/source/roadmap.md +0 -0
  420. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/docs/task_status.md +0 -0
  421. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/hive-config/hive-site.xml +0 -0
  422. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/marketing_site/index.html +0 -0
  423. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/marketing_site/styles.css +0 -0
  424. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/proptest-regressions/core/index/gpu.txt +0 -0
  425. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/proptest-regressions/core/sql/vector_literal.txt +0 -0
  426. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/proptest-regressions/core/sql/vector_udf.txt +0 -0
  427. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/python/hyperstreamdb/__init__.py +0 -0
  428. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/python/hyperstreamdb/embeddings.py +0 -0
  429. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/rust-toolchain.toml +0 -0
  430. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/.bloop/bloop.settings.json +0 -0
  431. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/.bloop/spark-hyperstream-test.json +0 -0
  432. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/.bloop/spark-hyperstream.json +0 -0
  433. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/pom.xml +0 -0
  434. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister +0 -0
  435. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/DefaultSource.scala +0 -0
  436. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamMergeBuilder.scala +0 -0
  437. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamPositionDeltaWrite.scala +0 -0
  438. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamPositionDeltaWriterFactory.scala +0 -0
  439. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamRowLevelOperation.scala +0 -0
  440. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamScanBuilder.scala +0 -0
  441. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamTable.scala +0 -0
  442. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/HyperStreamWriteBuilder.scala +0 -0
  443. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/scala/com/hyperstreamdb/spark/jni/HyperStreamJNIBridge.scala +0 -0
  444. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/spark-3/com/hyperstreamdb/spark/HyperStreamCatalog.scala +0 -0
  445. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/spark-3/com/hyperstreamdb/spark/procedures/AddIndexProcedure.scala +0 -0
  446. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/spark-3/com/hyperstreamdb/spark/procedures/BuildIndexProcedure.scala +0 -0
  447. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/spark-3/com/hyperstreamdb/spark/procedures/SetPrimaryKeyProcedure.scala +0 -0
  448. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/spark-4/com/hyperstreamdb/spark/HyperStreamCatalog.scala +0 -0
  449. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/spark-4/com/hyperstreamdb/spark/procedures/AddIndexProcedure.scala +0 -0
  450. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/spark-4/com/hyperstreamdb/spark/procedures/BuildIndexProcedure.scala +0 -0
  451. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/main/spark-4/com/hyperstreamdb/spark/procedures/SetPrimaryKeyProcedure.scala +0 -0
  452. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/spark-hyperstream/src/test/scala/com/hyperstreamdb/spark/SparkMergeIntegrationTest.scala +0 -0
  453. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/bin/gateway.rs +0 -0
  454. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/bin/hdb.rs +0 -0
  455. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/bin/hyperstreamdb-admin.rs +0 -0
  456. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/bin/probe_datafusion.rs +0 -0
  457. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/bin/setup_test_data.rs +0 -0
  458. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/bin/verify_layered_indexing.rs +0 -0
  459. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/catalog/config.rs +0 -0
  460. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/catalog/glue.rs +0 -0
  461. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/catalog/hive.rs +0 -0
  462. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/catalog/jdbc.rs +0 -0
  463. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/catalog/nessie.rs +0 -0
  464. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/catalog/unity.rs +0 -0
  465. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/embeddings.rs +0 -0
  466. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/error.rs +0 -0
  467. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/iceberg/delete.rs +0 -0
  468. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/iceberg/iceberg_delete.rs +0 -0
  469. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/iceberg/manifest.rs +0 -0
  470. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/iceberg/mod.rs +0 -0
  471. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/iceberg/schema.rs +0 -0
  472. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/iceberg/transform.rs +0 -0
  473. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/iceberg/types.rs +0 -0
  474. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/iceberg/value.rs +0 -0
  475. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/iceberg/writer.rs +0 -0
  476. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/analyzer.rs +0 -0
  477. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/bm25.rs +0 -0
  478. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/cuda/cosine_distance.cu +0 -0
  479. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/cuda/hamming_distance.cu +0 -0
  480. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/cuda/inner_product.cu +0 -0
  481. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/cuda/jaccard_distance.cu +0 -0
  482. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/cuda/kmeans_assignment.cu +0 -0
  483. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/cuda/l1_distance.cu +0 -0
  484. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/cuda/l2_distance.cu +0 -0
  485. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/gpu.rs +0 -0
  486. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/hnsw_rs/LICENSE-APACHE +0 -0
  487. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/hnsw_rs/LICENSE-MIT +0 -0
  488. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/hnsw_rs/annhdf5.rs +0 -0
  489. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/hnsw_rs/api.rs +0 -0
  490. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/hnsw_rs/dist.rs +0 -0
  491. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/hnsw_rs/flatten.rs +0 -0
  492. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/hnsw_rs/hnsw.rs +0 -0
  493. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/hnsw_rs/prelude.rs +0 -0
  494. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/hnsw_rs/test.rs +0 -0
  495. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/memory.rs +0 -0
  496. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/mps/cosine_distance.metal +0 -0
  497. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/mps/hamming_distance.metal +0 -0
  498. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/mps/inner_product.metal +0 -0
  499. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/mps/jaccard_distance.metal +0 -0
  500. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/mps/kmeans_assignment.metal +0 -0
  501. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/mps/l1_distance.metal +0 -0
  502. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/mps/l2_distance.metal +0 -0
  503. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/opencl/cosine_distance.cl +0 -0
  504. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/opencl/hamming_distance.cl +0 -0
  505. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/opencl/inner_product.cl +0 -0
  506. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/opencl/jaccard_distance.cl +0 -0
  507. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/opencl/kmeans_assignment.cl +0 -0
  508. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/opencl/l1_distance.cl +0 -0
  509. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/opencl/l2_distance.cl +0 -0
  510. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/pq.rs +0 -0
  511. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/tokenizer.rs +0 -0
  512. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/turboquant.rs +0 -0
  513. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/index/wgpu_kernel.wgsl +0 -0
  514. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/license.rs +0 -0
  515. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/manifest/manager/load.rs +0 -0
  516. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/manifest/manager/partition.rs +0 -0
  517. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/manifest/manager/schema.rs +0 -0
  518. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/manifest/mod.rs +0 -0
  519. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/merge.rs +0 -0
  520. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/metadata.rs +0 -0
  521. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/mod.rs +0 -0
  522. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/nessie.rs +0 -0
  523. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/planner/filter.rs +0 -0
  524. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/planner/vector_search.rs +0 -0
  525. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/puffin.rs +0 -0
  526. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/search/mod.rs +0 -0
  527. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/search/rrf.rs +0 -0
  528. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/literal/binary.rs +0 -0
  529. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/literal/dense.rs +0 -0
  530. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/literal/mod.rs +0 -0
  531. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/literal/sparse.rs +0 -0
  532. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/optimizer/config.rs +0 -0
  533. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/optimizer/index_join.rs +0 -0
  534. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/optimizer/vector_search/plan_detection.rs +0 -0
  535. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/optimizer/vector_search/sort_expr_parser.rs +0 -0
  536. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/optimizer.rs +0 -0
  537. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/partition_rewriter.rs +0 -0
  538. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/pgvector_rewriter.rs +0 -0
  539. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/physical_plan/index_join.rs +0 -0
  540. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/session.rs +0 -0
  541. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/udf/aggregate.rs +0 -0
  542. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/udf/distance.rs +0 -0
  543. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/udf/mod.rs +0 -0
  544. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/udf/sparse.rs +0 -0
  545. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/udf/transform.rs +0 -0
  546. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/vector_literal.rs +0 -0
  547. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/vector_operators.rs +0 -0
  548. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/vector_udf/distance.rs +0 -0
  549. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/vector_udf/mod.rs +0 -0
  550. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/vector_udf/sparse.rs +0 -0
  551. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/sql/vector_udf.rs +0 -0
  552. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/storage.rs +0 -0
  553. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/core/telemetry.rs +0 -0
  554. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/enterprise/continuous_indexing.rs +0 -0
  555. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/enterprise/mod.rs +0 -0
  556. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/catalog/glue.rs +0 -0
  557. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/catalog/hive.rs +0 -0
  558. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/catalog/jdbc.rs +0 -0
  559. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/catalog/mod.rs +0 -0
  560. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/catalog/nessie.rs +0 -0
  561. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/catalog/rest.rs +0 -0
  562. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/catalog/unity.rs +0 -0
  563. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/helpers.rs +0 -0
  564. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/manifest.rs +0 -0
  565. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/mod.rs +0 -0
  566. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/schema.rs +0 -0
  567. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/session.rs +0 -0
  568. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python/stats.rs +0 -0
  569. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python_distance.rs +0 -0
  570. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/python_gpu_context.rs +0 -0
  571. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/telemetry/metrics.rs +0 -0
  572. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/telemetry/mod.rs +0 -0
  573. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/src/telemetry/tracing.rs +0 -0
  574. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/all_types_index_test.rs +0 -0
  575. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/bin/generate_iceberg_manifests.rs +0 -0
  576. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/bin/verify_iceberg_read_check.rs +0 -0
  577. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/data/download_nyc_taxi.sh +0 -0
  578. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/data/generate_embeddings.py +0 -0
  579. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/data/generate_wikipedia.py +0 -0
  580. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/data/start_nessie.sh +0 -0
  581. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/datafusion_rust_test.rs +0 -0
  582. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/gpu_test_helpers.rs +0 -0
  583. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/performance/README.md +0 -0
  584. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/python/verify_docstrings.py +0 -0
  585. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/python/verify_fluent_api.py +0 -0
  586. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/python/verify_unified_ingest.py +0 -0
  587. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/schema_evolution_test.rs +0 -0
  588. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/stability.rs +0 -0
  589. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_admin_cli.sh +0 -0
  590. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_all_algos.py +0 -0
  591. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_catalog_commit.rs +0 -0
  592. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_compliance.rs +0 -0
  593. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_delete_correctness.rs +0 -0
  594. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_iceberg_python_delete.sh +0 -0
  595. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_iceberg_rest.sh +0 -0
  596. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_iceberg_rest_create.sh +0 -0
  597. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_iceberg_rest_delete.sh +0 -0
  598. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_iceberg_rest_remove_index.sh +0 -0
  599. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_iceberg_rest_update.sh +0 -0
  600. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_index_recovery.rs +0 -0
  601. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_metadata_creation.rs +0 -0
  602. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_mor_reads.rs +0 -0
  603. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_mor_writes.rs +0 -0
  604. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_partition_transforms.rs +0 -0
  605. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_partitioned_writes.rs +0 -0
  606. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_puffin_index.sh +0 -0
  607. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_rest_updates.sh +0 -0
  608. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/tests/verify_schema_compat.rs +0 -0
  609. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-config/.DS_Store +0 -0
  610. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-config/catalog/glue_catalog.properties +0 -0
  611. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-config/catalog/hyperstreamdb.properties +0 -0
  612. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-config/catalog/iceberg.properties +0 -0
  613. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-config/catalog/iceberg_hive.properties +0 -0
  614. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-config/catalog/memory.properties +0 -0
  615. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-config/catalog/postgres.properties +0 -0
  616. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-config/config.properties +0 -0
  617. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-config/entrypoint.sh +0 -0
  618. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-config/jvm.config +0 -0
  619. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-config/node.properties +0 -0
  620. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-config.zip +0 -0
  621. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-hyperstream/pom.xml +0 -0
  622. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBColumnHandle.java +0 -0
  623. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBConnectorFactory.java +0 -0
  624. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBJNIBridge.java +0 -0
  625. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSourceProvider.java +0 -0
  626. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPlugin.java +0 -0
  627. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplit.java +0 -0
  628. {hyperstreamdb-0.6.0 → hyperstreamdb-0.7.1}/trino-hyperstream/src/test/java/com/hyperstreamdb/trino/TrinoConnectorTest.java +0 -0
@@ -13,3 +13,4 @@ demo/
13
13
  benchmarks/
14
14
  __pycache__/
15
15
  *.pyc
16
+ !target/release/hypersearch
@@ -39,8 +39,6 @@ _metadata/
39
39
  .maven/
40
40
 
41
41
  # Compiled native binaries
42
- fuzz_murmur3
43
- debug_murmur3
44
42
  test_pgvector_sql_integration
45
43
 
46
44
  # Test database directories
@@ -110,3 +108,25 @@ venv_demo/
110
108
  .env
111
109
 
112
110
  COMMERCIALIZATION_STRATEGY.md
111
+ business_plan*
112
+ business_plan/
113
+
114
+ # Benchmark scratch & local test artifacts
115
+ benchmarks/competitive/data/
116
+ docker/data/
117
+ hsdbg_bench_data/
118
+ measure_disk.py
119
+ parse_dhat.py
120
+ populate.py
121
+ run_*.sh
122
+ test_bench.sh
123
+ bench_*.py
124
+ run_benchmark.py
125
+ *.pid
126
+ *.patch
127
+ dhat-heap.json
128
+ test_bm25*
129
+ *_output.txt
130
+ mem_report.txt
131
+ benchmark_raw.json
132
+ docs/roo_task_*.md
@@ -0,0 +1,45 @@
1
+ # Benchmark Findings — `hypersearch` vs OpenSearch 2.11 (100k docs)
2
+
3
+ This document summarizes the 100k document scaling benchmark comparing the `hypersearch` REST server against a single-node OpenSearch 2.11 instance. Both instances were strictly constrained via Docker to **4 CPU cores** and **4GB of RAM**. They ingested a stream of 100,000 documents (64-dimensional embeddings, Wikipedia text payload).
4
+
5
+ ## Results — (100k docs, dim 64, 100 runs)
6
+
7
+ | Operation | HyperStreamDB p50 | HyperStreamDB p99 | OpenSearch 2.11 p50 | OpenSearch 2.11 p99 |
8
+ |-----------|-------------------|-------------------|---------------------|---------------------|
9
+ | Ingest (docs/s) | 4,419 | — | **7,510** | — |
10
+ | `match` BM25 (ms)* | 3.96 | 4.75 | **2.91** | **4.33** |
11
+ | Filtered `match`* | 5.17 | 5.35 | **3.23** | **4.45** |
12
+ | `knn` HNSW (ms) | **1.94** | **4.26** | 4.29 | 62.58 |
13
+
14
+ *\* BM25 and Filtered stats carried over from previous unconstrained benchmark runs.*
15
+
16
+ ## Findings
17
+
18
+ 1. **Vector Query Latency (kNN)**: **HyperStreamDB is now strictly faster and significantly more stable than OpenSearch.** Thanks to our new Hot Row Cache (bypassing disk I/O on scattered row fetches), HyperStreamDB achieves an incredible p50 of ~1.94ms compared to OpenSearch's ~4.29ms. More importantly, HyperStreamDB completely eliminates the tail-latency spikes that plague OpenSearch under tight memory constraints (p99 of 4.26ms vs 62.58ms).
19
+ 2. **Ingest Throughput**: OpenSearch achieves higher ingestion throughput (8,295 docs/s vs 4,535 docs/s). OpenSearch defers heavy HNSW graph operations to background merges (`refresh_interval`), while HyperStreamDB's `hnsw_rs` builds its graph synchronously in the hot path.
20
+ 3. **Memory Safety**: HyperStreamDB successfully loaded all 100,000 vectors within the 4GB hard container limit without OOM crashing.
21
+ 4. **Keyword and Filtered Search (BM25)**: HyperStreamDB remains highly competitive with OpenSearch for standard keyword search, answering within 3-5ms.
22
+
23
+ ## Total Time & Disk Usage Analysis
24
+
25
+ ### Disk Usage & Data Duplication (Zero Data Duplication)
26
+ When calculating disk usage and operational overhead, we must account for the architectural differences. OpenSearch is a secondary search engine. This means you must store your data in your primary database or Data Lake (e.g., S3/Parquet), **and** then pump a complete duplicated copy into OpenSearch's Lucene indices.
27
+
28
+ HyperStreamDB **is** the Data Lake. It natively serves the Parquet files and simply attaches `.hnsw` index sidecars to them. You do not need a separate data lake when using HyperStreamDB.
29
+
30
+ For our 100,000 vector benchmark (64-dimensional float32 arrays), the pure raw data payload is exactly 25.6 MB. Here is the true disk footprint required:
31
+
32
+ - **HyperStreamDB Total Storage Required**: **~26.0 MB**
33
+ - *Why?* HyperStreamDB writes the raw vectors directly into a compressed Parquet file and builds lightweight `.hnsw` sidecars. Because HyperStreamDB *is* the data lake, this is the total operational disk footprint.
34
+ - **OpenSearch Total Storage Required**: **~185.4 MB**
35
+ - *Why?* You must keep the original 25.6 MB data lake payload, plus the heavily amplified OpenSearch Lucene Index (159.84 MB) required to serve the vectors.
36
+
37
+ **Conclusion**: OpenSearch requires **7x more disk space** because it amplifies the data through Lucene HNSW graph copies and forces you to maintain a separate primary data lake. HyperStreamDB eliminates the separate data lake and serves searches directly from the compressed source of truth.
38
+
39
+ ### Cold Start & Restart Penalties
40
+ Another massive architectural advantage is cold-start performance. When OpenSearch restarts, the JVM must boot up, re-join the cluster, replay translogs, and load the Lucene HNSW structures into memory before it can answer queries.
41
+
42
+ HyperStreamDB is stateless. It points directly to the data lake, memory maps the native Parquet and `.hnsw` sidecar files directly from the OS page cache, and can begin answering queries almost instantly with near-zero cold start penalty.
43
+
44
+ ## Next Steps
45
+ For the 1M document benchmark or v0.8.0, the primary engineering focus must be on optimizing the `_bulk` insert pathway to improve ingestion throughput (e.g., buffering documents in memory and flushing asynchronously via a Write-Ahead Log to remove the synchronous index building bottleneck).
@@ -0,0 +1,37 @@
1
+ # Benchmark Findings — `hypersearch` vs OpenSearch 2.11 (1M docs)
2
+
3
+ This document summarizes the 1M document scaling benchmark comparing the `hypersearch` REST server against a single-node OpenSearch 2.11 instance. Both instances were strictly constrained via Docker to **4 CPU cores** and **4GB of RAM**. They ingested a stream of 1,000,000 documents (64-dimensional embeddings, Wikipedia text payload).
4
+
5
+ ## Results — (1M docs, dim 64, 100 runs)
6
+
7
+ | Operation | HyperStreamDB p50 | HyperStreamDB p99 | OpenSearch 2.11 p50 | OpenSearch 2.11 p99 |
8
+ |-----------|-------------------|-------------------|---------------------|---------------------|
9
+ | Ingest (docs/s) | 4,613 | — | **9,221** | — |
10
+ | `knn` HNSW (ms) | **1.91** | **3.74** | 8.26 | 478.77 |
11
+
12
+ ## Findings
13
+
14
+ 1. **Catastrophic Tail Latency in OpenSearch**: At 1,000,000 documents under 4GB of RAM, OpenSearch begins to heavily thrash. While its median latency degraded to ~8.2ms, its **p99 latency skyrocketed to 478.77ms** (nearly half a second) due to massive JVM Garbage Collection pauses and Lucene segment merging.
15
+ 2. **HyperStreamDB Ironclad Stability**: Even at 10x the scale, HyperStreamDB's query latency remained **completely flat**. Thanks to the Hot Row Cache bypassing disk I/O, HyperStreamDB achieved a blistering **1.91ms p50** and an ultra-stable **3.74ms p99**.
16
+ 3. **Ingest Throughput**: OpenSearch achieves roughly double the ingestion throughput (~9.2k docs/s vs ~4.6k docs/s) because it defers the heavy HNSW graph operations to background merges, while HyperStreamDB builds its graph synchronously in the hot path.
17
+
18
+ ## Total Time & Disk Usage Analysis
19
+
20
+ ### Disk Usage & Data Duplication (Zero Data Duplication)
21
+ When calculating disk usage and operational overhead, we must account for the architectural differences. OpenSearch is a secondary search engine. This means you must store your data in your primary database or Data Lake (e.g., S3/Parquet), **and** then pump a complete duplicated copy into OpenSearch's Lucene indices.
22
+
23
+ HyperStreamDB **is** the Data Lake. It natively serves the Parquet files and simply attaches `.hnsw` index sidecars to them. You do not need a separate data lake when using HyperStreamDB.
24
+
25
+ For our 1,000,000 vector benchmark (64-dimensional float32 arrays), the pure raw data payload is exactly 256 MB. Here is the true disk footprint required:
26
+
27
+ - **HyperStreamDB Total Storage Required**: **~280 MB**
28
+ - *Why?* HyperStreamDB writes the raw vectors directly into a compressed Parquet file and builds lightweight `.hnsw` sidecars. Because HyperStreamDB *is* the data lake, this is the total operational disk footprint.
29
+ - **OpenSearch Total Storage Required**: **~1,852 MB (1.85 GB)**
30
+ - *Why?* You must keep the original 256 MB data lake payload, plus the heavily amplified OpenSearch Lucene Index (1,596.59 MB) required to serve the vectors.
31
+
32
+ **Conclusion**: At 1M documents, OpenSearch requires **6.6x more disk space** because it amplifies the data through Lucene HNSW graph copies and forces you to maintain a separate primary data lake. HyperStreamDB completely eliminates the separate data lake and serves searches directly from the compressed source of truth.
33
+
34
+ ### Cold Start & Restart Penalties
35
+ Another massive architectural advantage is cold-start performance. When OpenSearch restarts, the JVM must boot up, re-join the cluster, replay translogs, and load the 1.6GB Lucene HNSW structures into memory before it can answer queries.
36
+
37
+ HyperStreamDB is stateless. It points directly to the data lake, memory maps the native Parquet and `.hnsw` sidecar files directly from the OS page cache, and can begin answering queries almost instantly with near-zero cold start penalty.
@@ -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.7.0] - 2026-09-10
13
+
14
+ ### Added
15
+ - **Multi-Vector Search & Reciprocal Rank Fusion (RRF)**:
16
+ - Coordinate multi-vector search queries across multiple vector columns (e.g., `title_vec` and `body_vec`) using reciprocal rank fusion ($1 / (k + \text{rank} + 1)$).
17
+ - DataFusion SQL physical plan optimization and optimizer pushdown for multi-vector expressions (`dist_l2(col1, ...) as dist1, dist_l2(col2, ...) as dist2`).
18
+ - Added programmatic and SQL end-to-end integration tests in `tests/test_multi_vector_search.rs`.
19
+ - **Composite Scalar Roaring Bitmap Indexes (`IndexAlgorithm::CompositeBitmap`)**:
20
+ - Multi-column point and range query acceleration using combined composite inverted bitmap indexes.
21
+ - Virtual composite column naming and tokenization using exact `"identity"` tokenization to preserve multi-column key terms (`val1\0val2`).
22
+ - Fluent table API `table.add_composite_index(name, columns)` and filter rewriting.
23
+ - Added end-to-end integration tests in `tests/test_composite_index.rs`.
24
+ - **Apache Polaris & Lakekeeper Iceberg REST Catalog OAuth2 Client Credentials**:
25
+ - Implemented standard `/v1/oauth/tokens` client credentials grant flow for Iceberg REST catalogs.
26
+ - Added token caching with automatic expiry tracking and refresh within 60-second window.
27
+ - Injected `Authorization: Bearer <token>` across all REST catalog requests (`load_table`, `create_table`, `commit_table`).
28
+ - **Core Community TurboQuant™ (TQ4 / TQ8) Scalar Quantization**:
29
+ - Polar Quantization (PQ) and TurboQuant 4-bit / 8-bit quantized HNSW vector index algorithms integrated into open-source core engine.
30
+ - **Production Hardening & Correctness Enhancements**:
31
+ - **Vector Metric Propagation**: Dynamic metric parsing (`VectorMetric::from_str`) and propagation from `IndexAlgorithm` (`L2`, `Cosine`, `InnerProduct`, `L1`, `Hamming`, `Jaccard`) through index construction and Puffin/Parquet serialization.
32
+ - **Global KNN Ordering**: Refactored `merge_and_rerank_vector_results` to guarantee monotonic ascending distance order across all returned batches without unordered `HashMap` bucketing.
33
+ - **Metric Parity Test Suite**: Added `tests/test_vector_metrics_parity.rs` establishing 100% nearest-neighbor accuracy against exact brute force ground truth across all 6 metrics.
34
+ - **Strict Query Execution Semantics**: Segment vector search failures now fail the query immediately with actionable diagnostics rather than silently omitting rows.
35
+ - **Zero-Warning Standard**: Eliminated diagnostic `println!` statements in favor of structured `tracing::debug!`, resolved all clippy compiler warnings with `#![deny(warnings)]`.
36
+
37
+ ---
38
+
12
39
  ## [0.6.0] - 2026-09-09
13
40
 
14
41
  ### Added
@@ -0,0 +1,210 @@
1
+ # HyperStreamDB Codebase Line Count & Test Analysis
2
+
3
+ *Generated: September 10, 2026*
4
+
5
+ ---
6
+
7
+ ## 1. Executive Summary
8
+
9
+ | Metric | Count | Description |
10
+ |:---|---:|:---|
11
+ | **Total Source Lines of Code (SLOC)** | **73,185** | Executable lines of code across all source languages (excluding blanks & comments) |
12
+ | **Total Physical Lines** | **96,236** | Complete line count in source files (includes 10,709 comments & 12,342 blank lines) |
13
+ | **Total Tracked Source Files** | **433** | Source code files tracked in git (Rust, Python, Java, Scala, Shell, SQL, GPU shaders, Web) |
14
+ | **Pure Production Code** | **48,197 SLOC** | Production database engine, connectors, APIs, and shaders (excluding all tests) |
15
+ | **Total Test Code** | **20,652 SLOC** | All test code across integration suites, connector tests, and inline unit tests |
16
+ | **Test-to-Production Ratio** | **1 : 2.33** | Test code comprises **~30.0%** of all executable code in the repository |
17
+ | **Configuration & Manifests** | **1,540 SLOC** | TOML and YAML configurations (Cargo manifests, CI/CD workflows, Docker Compose) |
18
+
19
+ ---
20
+
21
+ ## 2. Breakdown by Programming Language
22
+
23
+ | Language | Files | SLOC (Code) | Comments & Docs | Blank Lines | Total Lines | % of Code |
24
+ |:---|---:|---:|---:|---:|---:|---:|
25
+ | **Rust** (`.rs`) | 232 | **57,448** | 7,084 | 8,024 | 72,556 | 78.50% |
26
+ | **Python** (`.py`) | 118 | **11,295** | 2,954 | 3,337 | 17,586 | 15.43% |
27
+ | **Shell** (`.sh`) | 17 | **862** | 179 | 197 | 1,238 | 1.18% |
28
+ | **CSS** (`.css`) | 1 | **668** | 15 | 110 | 793 | 0.91% |
29
+ | **Java** (`.java`) | 11 | **615** | 56 | 162 | 833 | 0.84% |
30
+ | **SQL** (`.sql`) | 8 | **557** | 97 | 125 | 779 | 0.76% |
31
+ | **Scala** (`.scala`) | 18 | **541** | 64 | 152 | 757 | 0.74% |
32
+ | **HTML** (`.html`) | 1 | **350** | 0 | 15 | 365 | 0.48% |
33
+ | **Dockerfile** | 4 | **248** | 72 | 73 | 393 | 0.34% |
34
+ | **CUDA** (`.cu`) | 8 | **235** | 135 | 64 | 434 | 0.32% |
35
+ | **Metal** (`.metal`) | 7 | **155** | 34 | 41 | 230 | 0.21% |
36
+ | **OpenCL** (`.cl`) | 7 | **134** | 13 | 31 | 178 | 0.18% |
37
+ | **WGSL** (`.wgsl`) | 1 | **77** | 6 | 11 | 94 | 0.11% |
38
+ | **TOTAL (Source Code)** | **433** | **73,185** | **10,709** | **12,342** | **96,236** | **100.0%** |
39
+ | *YAML / TOML Manifests* | *29* | *1,540* | *166* | *169* | *1,875* | — |
40
+
41
+ ---
42
+
43
+ ## 3. Breakdown by Subsystem & Component
44
+
45
+ | Subsystem / Component | Files | SLOC (Code) | Comments | Blank | Total Lines | Primary Stack |
46
+ |:---|---:|---:|---:|---:|---:|:---|
47
+ | **Core Database Engine** (`src/`) | 169 | **45,356** | 5,748 | 6,193 | 57,297 | Rust, CUDA, Metal, OpenCL, WGSL |
48
+ | **Search Engine** (`hyperstreamdb-search/`) | 17 | **5,657** | 575 | 626 | 6,858 | Rust |
49
+ | **Arrow Flight Server** (`hyperstreamdb-flight/`) | 5 | **583** | 16 | 84 | 683 | Rust, Python |
50
+ | **Trino Connector** (`trino-hyperstream/`) | 11 | **615** | 56 | 162 | 833 | Java |
51
+ | **Spark Connector** (`spark-hyperstream/`) | 18 | **541** | 64 | 152 | 757 | Scala |
52
+ | **Python SDK & Client** (`python/`) | 2 | **506** | 251 | 142 | 899 | Python |
53
+ | **dbt Adapter** (`dbt-hyperstreamdb/`) | 13 | **444** | 29 | 105 | 578 | Python, SQL |
54
+ | **Enterprise Features** (`hyperstreamdb-enterprise/`) | 2 | **8** | 7 | 4 | 19 | Rust |
55
+ | **↳ Subtotal: Production Code** | **237** | **53,710** | **6,746** | **7,468** | **67,924** | |
56
+ | **Dedicated Test Suite** (`tests/`) | 156 | **13,940** | 2,885 | 3,586 | 20,411 | Python, Rust, Shell |
57
+ | **Benchmarks** (`benchmarks/`, `benches/`) | 8 | **1,830** | 272 | 410 | 2,512 | Python, Rust, Shell |
58
+ | **Build, CI, Docker & Admin Scripts** | 19 | **1,509** | 317 | 362 | 2,188 | Shell, Python, Dockerfile |
59
+ | **Examples & Demos** (`examples/`, `demo/`) | 10 | **1,127** | 452 | 378 | 1,957 | Python, Rust, SQL |
60
+ | **Marketing Site & Docs Scripts** | 3 | **1,069** | 37 | 138 | 1,244 | HTML, CSS, Python |
61
+
62
+ ---
63
+
64
+ ## 4. Core Engine Architecture Breakdown (`src/`)
65
+
66
+ Within the core database engine (`src/`), the 45,356 lines of code are distributed as follows:
67
+
68
+ | Engine Subsystem | Files | SLOC (Code) | Total Lines | Description & Key Responsibilities |
69
+ |:---|---:|---:|---:|:---|
70
+ | **Vector & Inverted Indexing** (`src/core/index/`) | 47 | **9,727** | 12,136 | HNSW graph, IVF-PQ quantization, SIMD/GPU acceleration, Bloom filters |
71
+ | **SQL & DataFusion Engine** (`src/core/sql/`) | 32 | **7,500** | 9,380 | pgvector operators, custom dialects, physical expression pushdown |
72
+ | **Table Engine & Concurrency** (`src/core/table/`) | 10 | **6,662** | 8,387 | Table locks, segment lifecycles, streaming ingestion buffers |
73
+ | **Iceberg Integration** (`src/core/iceberg/`) | 9 | **2,742** | 3,111 | REST catalog client, v2/v3 spec, manifest parsing & commit protocol |
74
+ | **Parquet Readers** (`src/core/reader/`) | 4 | **2,721** | 3,240 | Vectorized Parquet reader, column projection, filter pushdown |
75
+ | **PyO3 Python Engine Bindings** (`src/python/`) | 15 | **2,446** | 2,958 | Python C-API bindings for Arrow tables, sessions, and catalog |
76
+ | **Manifests & Metadata** (`src/core/manifest/`, `metadata.rs`) | 8 | **2,278** | 2,726 | Avro metadata serialization, partition summary records |
77
+ | **Execution Planner & Query Engine** (`planner.rs`, `query.rs`) | 3 | **2,358** | 3,167 | Logical/physical plan optimization, hybrid vector/scalar scoring |
78
+ | **Catalog Implementations** (`src/core/catalog/`, `nessie.rs`) | 9 | **1,789** | 2,185 | Hive metastore, Nessie, Memory, and File system catalogs |
79
+ | **CLI Binaries & Tools** (`src/bin/`) | 6 | **1,401** | 1,658 | REST gateway, admin CLI, layered index verification tools |
80
+ | **WAL, Compaction, Cache & Storage** | 6 | **2,044** | 2,746 | Write-Ahead Log, segment compaction, block cache, cloud storage |
81
+ | **Telemetry & Error Handling** | 5 | **426** | 648 | OpenTelemetry metrics, distributed tracing, error types |
82
+
83
+ ---
84
+
85
+ ## 5. Comprehensive Test Suite Breakdown
86
+
87
+ Across all testing layers, HyperStreamDB contains **20,652 SLOC of test code**.
88
+
89
+ ### A. Test Code Distribution
90
+
91
+ | Test Layer | Files | SLOC (Code) | Primary Languages | Focus |
92
+ |:---|---:|---:|:---|:---|
93
+ | **Dedicated Test Suite** (`tests/`) | 155 | **13,934** | Python (6.9k), Rust (6.5k), Shell (566) | E2E, integration, property & chaos tests |
94
+ | **Inline Unit Tests** (`#[cfg(test)]`) | 40 | **5,513** | Rust native | Embedded unit tests in `src/` and sub-crates |
95
+ | **Sub-crate & Connector Test Suites** | 11 | **1,205** | Python, Java, Scala, Rust, SQL | Trino, Spark, Search, Flight, and dbt tests |
96
+ | **TOTAL TEST CODE** | **206** | **20,652** | | |
97
+
98
+ ---
99
+
100
+ ### B. Dedicated Test Suite Breakdown by Domain (`tests/`)
101
+
102
+ The 155 test files inside the dedicated `tests/` directory target specific functionality:
103
+
104
+ #### 1. Vector Search & Hardware Acceleration (34 files | 4,158 SLOC)
105
+ - **Multi-Hardware Parity**: Cross-platform verification ensuring numerical and recall parity across backends:
106
+ - CUDA: `test_hyperstream_cuda.py`
107
+ - Apple Silicon Metal/MPS: `test_mps_gpu.py`
108
+ - Intel: `test_hyperstream_intel.py`
109
+ - AMD ROCm: `test_hyperstream_rocm.py`
110
+ - CPU SIMD: `test_hardware_parity.rs`
111
+ - **Distance Metric Kernels**: Correctness benchmarks and edge cases for L1, L2, Inner Product, Cosine, Hamming, and Jaccard distances.
112
+ - **Index Algorithms**: HNSW recall verification, layered index recovery, TurboQuant quantization, and GPU KMeans clustering.
113
+
114
+ #### 2. Data Ingestion, Schema Evolution & Partitioning (21 files | 2,105 SLOC)
115
+ - Partition transform validations (identity, bucket, truncate, hour/day transforms).
116
+ - Schema evolution compatibility across Iceberg metadata snapshots.
117
+ - Primary key acceleration, composite indexes, and write-buffer deduplication.
118
+
119
+ #### 3. Iceberg Format, REST Catalogs & Metadata (25 files | 1,876 SLOC)
120
+ - Iceberg v2/v3 specification compliance.
121
+ - Merge-on-Read (MOR) read and write workflows with equality/positional deletes.
122
+ - Puffin format index blob creation and attachment.
123
+ - REST catalog, AWS Glue, and Hive Metastore transaction commit verification.
124
+
125
+ #### 4. Performance Verification & Comparative Benchmarks (7 files | 981 SLOC)
126
+ - Direct comparison suites vs. Qdrant (`test_vs_qdrant.py`, `test_qdrant_direct_comparison.py`).
127
+ - Scan latency baselines, cold-read latency benchmarks, and parallel search scaling.
128
+
129
+ #### 5. Concurrency, WAL, Durability & Chaos (10 files | 837 SLOC)
130
+ - Multi-threaded writer contention and optimistic concurrency control.
131
+ - Chaos testing: simulated power losses during WAL flush, torn writes, crash recovery, and stale file cleanup.
132
+
133
+ #### 6. SQL Engine & DataFusion Pushdown (7 files | 492 SLOC)
134
+ - pgvector SQL operator semantics (`<->`, `<#>`, `<=>`).
135
+ - SQL UDF GPU acceleration and BM25 full-text pushdown.
136
+ - Complex aggregations, filtering, and ordering.
137
+
138
+ #### 7. Python PyO3 SDK & Integrations (15 files | 1,300 SLOC)
139
+ - Fluent client API verification, PyArrow schema consistency, docstrings, and export routines.
140
+ - Full real-world ingestion flows using NYC Taxi and Wikipedia datasets.
141
+
142
+ ---
143
+
144
+ ### C. Inline Unit Tests Breakdown (`#[cfg(test)]` in `src/`)
145
+
146
+ Unit tests written directly alongside production Rust modules total **5,513 SLOC** across 40 files:
147
+
148
+ | Module / Component | Test Files | Unit Test SLOC | Production SLOC | Major Features Tested |
149
+ |:---|---:|---:|---:|:---|
150
+ | **SQL Engine** (`src/core/sql/`) | 9 | **1,840** | 1,827 | Literal parsers (1,269 lines), vector operators (257 lines), function evaluation |
151
+ | **Search Engine** (`hyperstreamdb-search/`) | 7 | **1,081** | 2,307 | Query inference (387 lines), search handlers (312 lines), index caching, state |
152
+ | **Vector Index** (`src/core/index/`) | 11 | **903** | 4,655 | HNSW IO serialization (220 lines), distance calculations, quantization |
153
+ | **Execution Planner & Query Engine** | 2 | **305** | 1,546 | Plan generation and scoring in `query.rs` (302 lines) |
154
+ | **Compaction & Table Merge** | 2 | **436** | 603 | Segment compaction (205 lines), merge conflict resolution (231 lines) |
155
+ | **WAL, Storage & Cache** | 3 | **474** | 634 | WAL replay (174 lines), block cache eviction (153 lines), storage backends (147 lines) |
156
+ | **Table, Reader & Segments** | 3 | **304** | 3,540 | Segment state machines, Parquet reader filtering, table lock semantics |
157
+ | **Catalog & Locking** | 3 | **170** | 607 | In-memory catalog commit logic, concurrency primitives |
158
+ | **TOTAL INLINE UNIT TESTS** | **40** | **5,513** | — | |
159
+
160
+ ---
161
+
162
+ ### D. Sub-crate & Connector Dedicated Tests
163
+
164
+ | Project / Sub-crate | File | SLOC | Total Lines | Purpose |
165
+ |:---|:---|---:|---:|:---|
166
+ | `hyperstreamdb-search` | `tests/test_search_api.py` | **589** | 775 | Python HTTP client testing hybrid search endpoints |
167
+ | `trino-hyperstream` | `src/test/.../TrinoConnectorTest.java` | **225** | 306 | Trino SPI split generation and predicate pushdown |
168
+ | `hyperstreamdb-flight` | `tests/test_flight_service.rs` | **113** | 134 | Native Rust Arrow Flight DoGet / DoPut integration |
169
+ | `hyperstreamdb-flight` | `tests/test_flight_client.py` | **26** | 40 | Python pyarrow.flight client verification |
170
+ | `scripts/manual_tests` | `test_multi_cloud.py` | **132** | 212 | S3, GCS, and Azure multi-cloud integration tests |
171
+ | `spark-hyperstream` | `src/test/.../SparkMergeIntegrationTest.scala` | **76** | 101 | Spark DataFrame write/merge integration |
172
+ | `dbt-hyperstreamdb` | `test_project/models/*.sql` | **38** | 43 | dbt incremental, macro, and vector models |
173
+ | Standalone | `test_bloom.rs` | **6** | 6 | Bloom filter false-positive verification |
174
+ | **TOTAL** | **11 files** | **1,205** | **1,617** | |
175
+
176
+ ---
177
+
178
+ ## 6. Hardware Acceleration Shaders & Kernels
179
+
180
+ The core engine includes dedicated GPU and compute shaders across 4 vendor targets:
181
+
182
+ | Target Platform | File Extension | Files | SLOC (Code) | Total Lines | Implementations |
183
+ |:---|:---|---:|---:|---:|:---|
184
+ | **NVIDIA CUDA** | `.cu` | 8 | **235** | 434 | L2, Inner Product, Cosine, Hamming distance kernels |
185
+ | **Apple Metal** | `.metal` | 7 | **155** | 230 | MSL shaders for Apple Silicon MPS execution |
186
+ | **Khronos OpenCL** | `.cl` | 7 | **134** | 178 | Cross-vendor portable GPU compute kernels |
187
+ | **WebGPU / WGPU** | `.wgsl` | 1 | **77** | 94 | Cross-platform WGPU compute shader |
188
+ | **TOTAL GPU KERNELS** | | **23** | **601** | **936** | |
189
+
190
+ ---
191
+
192
+ ## 7. Connectors & External Integrations
193
+
194
+ | Ecosystem Connector | Primary Language | Source Files | SLOC (Code) | Test SLOC | Target System |
195
+ |:---|:---|---:|---:|---:|:---|
196
+ | **Trino Connector** | Java | 11 | **615** | 225 | Trino / Presto distributed SQL engine |
197
+ | **Spark Connector** | Scala | 18 | **541** | 76 | Apache Spark 3.x DataSourceV2 connector |
198
+ | **Python Client / SDK** | Python | 2 | **506** | — | High-level user-facing Python SDK |
199
+ | **dbt Adapter** | Python + SQL | 13 | **444** | 38 | dbt plugin for analytics engineering |
200
+ | **Arrow Flight** | Rust + Python | 5 | **583** | 139 | High-performance Arrow Flight RPC service |
201
+ | **TOTAL CONNECTORS** | | **49** | **2,689** | **478** | |
202
+
203
+ ---
204
+
205
+ ## 8. Methodology & Counting Standards
206
+
207
+ - **SLOC (Source Lines of Code)**: Measures actual executable code statements. Blank lines and comments (both single-line and multi-line blocks) are excluded.
208
+ - **Comments & Documentation**: Includes docstrings (`"""`), Rust doc comments (`///`, `//!`), and standard comments (`//`, `#`, `/* ... */`, `--`).
209
+ - **Inline Tests**: Rust unit test blocks demarcated by `#[cfg(test)] mod tests { ... }` within production source files were parsed, isolated, and categorized under test metrics rather than production metrics to present an accurate architectural distribution.
210
+ - **Excluded Non-Code Artifacts**: Build caches (`docs/build/`), test runner state (`.hypothesis/`), and Jupyter checkpoints (`.ipynb_checkpoints/`) were excluded from source metrics.
@@ -2,6 +2,15 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 4
4
4
 
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.25.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
5
14
  [[package]]
6
15
  name = "adler2"
7
16
  version = "2.0.1"
@@ -110,7 +119,7 @@ version = "1.1.5"
110
119
  source = "registry+https://github.com/rust-lang/crates.io-index"
111
120
  checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
112
121
  dependencies = [
113
- "windows-sys 0.60.2",
122
+ "windows-sys 0.61.2",
114
123
  ]
115
124
 
116
125
  [[package]]
@@ -121,7 +130,7 @@ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
121
130
  dependencies = [
122
131
  "anstyle",
123
132
  "once_cell_polyfill",
124
- "windows-sys 0.60.2",
133
+ "windows-sys 0.61.2",
125
134
  ]
126
135
 
127
136
  [[package]]
@@ -1015,6 +1024,7 @@ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
1015
1024
  dependencies = [
1016
1025
  "async-trait",
1017
1026
  "axum-core 0.4.5",
1027
+ "axum-macros",
1018
1028
  "bytes",
1019
1029
  "futures-util",
1020
1030
  "http 1.4.2",
@@ -1122,6 +1132,32 @@ dependencies = [
1122
1132
  "tower-service",
1123
1133
  ]
1124
1134
 
1135
+ [[package]]
1136
+ name = "axum-macros"
1137
+ version = "0.4.2"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce"
1140
+ dependencies = [
1141
+ "proc-macro2",
1142
+ "quote",
1143
+ "syn 2.0.118",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "backtrace"
1148
+ version = "0.3.76"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
1151
+ dependencies = [
1152
+ "addr2line",
1153
+ "cfg-if",
1154
+ "libc",
1155
+ "miniz_oxide",
1156
+ "object",
1157
+ "rustc-demangle",
1158
+ "windows-link",
1159
+ ]
1160
+
1125
1161
  [[package]]
1126
1162
  name = "base64"
1127
1163
  version = "0.21.7"
@@ -2597,6 +2633,22 @@ version = "0.5.8"
2597
2633
  source = "registry+https://github.com/rust-lang/crates.io-index"
2598
2634
  checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
2599
2635
 
2636
+ [[package]]
2637
+ name = "dhat"
2638
+ version = "0.3.3"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "98cd11d84628e233de0ce467de10b8633f4ddaecafadefc86e13b84b8739b827"
2641
+ dependencies = [
2642
+ "backtrace",
2643
+ "lazy_static",
2644
+ "mintex",
2645
+ "parking_lot",
2646
+ "rustc-hash 1.1.0",
2647
+ "serde",
2648
+ "serde_json",
2649
+ "thousands",
2650
+ ]
2651
+
2600
2652
  [[package]]
2601
2653
  name = "digest"
2602
2654
  version = "0.10.7"
@@ -2739,7 +2791,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
2791
  checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
2740
2792
  dependencies = [
2741
2793
  "libc",
2742
- "windows-sys 0.52.0",
2794
+ "windows-sys 0.61.2",
2743
2795
  ]
2744
2796
 
2745
2797
  [[package]]
@@ -3104,6 +3156,12 @@ dependencies = [
3104
3156
  "rand_core 0.10.1",
3105
3157
  ]
3106
3158
 
3159
+ [[package]]
3160
+ name = "gimli"
3161
+ version = "0.32.3"
3162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3163
+ checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
3164
+
3107
3165
  [[package]]
3108
3166
  name = "gl_generator"
3109
3167
  version = "0.14.0"
@@ -3592,7 +3650,7 @@ dependencies = [
3592
3650
  "libc",
3593
3651
  "percent-encoding",
3594
3652
  "pin-project-lite",
3595
- "socket2 0.5.10",
3653
+ "socket2 0.6.4",
3596
3654
  "tokio",
3597
3655
  "tower-service",
3598
3656
  "tracing",
@@ -3600,7 +3658,7 @@ dependencies = [
3600
3658
 
3601
3659
  [[package]]
3602
3660
  name = "hyperstreamdb"
3603
- version = "0.6.0"
3661
+ version = "0.7.1"
3604
3662
  dependencies = [
3605
3663
  "ahash",
3606
3664
  "anyhow",
@@ -3628,6 +3686,7 @@ dependencies = [
3628
3686
  "datafusion-functions",
3629
3687
  "datafusion-functions-aggregate",
3630
3688
  "datafusion-functions-aggregate-common",
3689
+ "dhat",
3631
3690
  "dirs",
3632
3691
  "ed25519-dalek",
3633
3692
  "env_logger",
@@ -3688,7 +3747,7 @@ dependencies = [
3688
3747
 
3689
3748
  [[package]]
3690
3749
  name = "hyperstreamdb-flight"
3691
- version = "0.6.0"
3750
+ version = "0.7.0"
3692
3751
  dependencies = [
3693
3752
  "arrow",
3694
3753
  "arrow-flight",
@@ -3703,16 +3762,18 @@ dependencies = [
3703
3762
 
3704
3763
  [[package]]
3705
3764
  name = "hyperstreamdb-search"
3706
- version = "0.6.0"
3765
+ version = "0.7.0"
3707
3766
  dependencies = [
3708
3767
  "anyhow",
3709
3768
  "arrow",
3710
3769
  "axum 0.7.9",
3711
3770
  "chrono",
3771
+ "dhat",
3712
3772
  "futures",
3713
3773
  "hyperstreamdb",
3714
3774
  "object_store",
3715
3775
  "prometheus",
3776
+ "rayon",
3716
3777
  "serde",
3717
3778
  "serde_json",
3718
3779
  "tempfile",
@@ -3910,7 +3971,7 @@ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
3910
3971
  dependencies = [
3911
3972
  "hermit-abi",
3912
3973
  "libc",
3913
- "windows-sys 0.52.0",
3974
+ "windows-sys 0.61.2",
3914
3975
  ]
3915
3976
 
3916
3977
  [[package]]
@@ -4489,6 +4550,12 @@ dependencies = [
4489
4550
  "simd-adler32",
4490
4551
  ]
4491
4552
 
4553
+ [[package]]
4554
+ name = "mintex"
4555
+ version = "0.1.4"
4556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4557
+ checksum = "c505b3e17ed6b70a7ed2e67fbb2c560ee327353556120d6e72f5232b6880d536"
4558
+
4492
4559
  [[package]]
4493
4560
  name = "mio"
4494
4561
  version = "1.2.1"
@@ -4669,7 +4736,7 @@ version = "0.50.3"
4669
4736
  source = "registry+https://github.com/rust-lang/crates.io-index"
4670
4737
  checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
4671
4738
  dependencies = [
4672
- "windows-sys 0.59.0",
4739
+ "windows-sys 0.61.2",
4673
4740
  ]
4674
4741
 
4675
4742
  [[package]]
@@ -5541,7 +5608,7 @@ dependencies = [
5541
5608
  "quinn-udp",
5542
5609
  "rustc-hash 2.1.2",
5543
5610
  "rustls 0.23.41",
5544
- "socket2 0.5.10",
5611
+ "socket2 0.6.4",
5545
5612
  "thiserror 2.0.18",
5546
5613
  "tokio",
5547
5614
  "tracing",
@@ -5578,7 +5645,7 @@ dependencies = [
5578
5645
  "cfg_aliases 0.2.1",
5579
5646
  "libc",
5580
5647
  "once_cell",
5581
- "socket2 0.5.10",
5648
+ "socket2 0.6.4",
5582
5649
  "tracing",
5583
5650
  "windows-sys 0.60.2",
5584
5651
  ]
@@ -6075,6 +6142,12 @@ dependencies = [
6075
6142
  "zeroize",
6076
6143
  ]
6077
6144
 
6145
+ [[package]]
6146
+ name = "rustc-demangle"
6147
+ version = "0.1.28"
6148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6149
+ checksum = "b74b56ffa8bb2830709a538c2cbcae9aa062db0d2a42563bfb09bdaae44020eb"
6150
+
6078
6151
  [[package]]
6079
6152
  name = "rustc-hash"
6080
6153
  version = "1.1.0"
@@ -6109,7 +6182,7 @@ dependencies = [
6109
6182
  "errno",
6110
6183
  "libc",
6111
6184
  "linux-raw-sys",
6112
- "windows-sys 0.52.0",
6185
+ "windows-sys 0.61.2",
6113
6186
  ]
6114
6187
 
6115
6188
  [[package]]
@@ -6546,7 +6619,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
6546
6619
  checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
6547
6620
  dependencies = [
6548
6621
  "libc",
6549
- "windows-sys 0.60.2",
6622
+ "windows-sys 0.61.2",
6550
6623
  ]
6551
6624
 
6552
6625
  [[package]]
@@ -6851,7 +6924,7 @@ dependencies = [
6851
6924
  "cfg-if",
6852
6925
  "libc",
6853
6926
  "psm",
6854
- "windows-sys 0.60.2",
6927
+ "windows-sys 0.61.2",
6855
6928
  ]
6856
6929
 
6857
6930
  [[package]]
@@ -6980,10 +7053,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
6980
7053
  checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
6981
7054
  dependencies = [
6982
7055
  "fastrand",
6983
- "getrandom 0.3.4",
7056
+ "getrandom 0.4.3",
6984
7057
  "once_cell",
6985
7058
  "rustix",
6986
- "windows-sys 0.52.0",
7059
+ "windows-sys 0.61.2",
6987
7060
  ]
6988
7061
 
6989
7062
  [[package]]
@@ -7035,6 +7108,12 @@ dependencies = [
7035
7108
  "syn 2.0.118",
7036
7109
  ]
7037
7110
 
7111
+ [[package]]
7112
+ name = "thousands"
7113
+ version = "0.2.0"
7114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
7115
+ checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820"
7116
+
7038
7117
  [[package]]
7039
7118
  name = "thread_local"
7040
7119
  version = "1.1.9"
@@ -8066,7 +8145,7 @@ version = "0.1.11"
8066
8145
  source = "registry+https://github.com/rust-lang/crates.io-index"
8067
8146
  checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
8068
8147
  dependencies = [
8069
- "windows-sys 0.48.0",
8148
+ "windows-sys 0.61.2",
8070
8149
  ]
8071
8150
 
8072
8151
  [[package]]