hyperstreamdb 0.5.2__tar.gz → 0.5.4__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 (417) hide show
  1. hyperstreamdb-0.5.4/.cargo/audit.toml +11 -0
  2. hyperstreamdb-0.5.4/ADMIN_CLI.md +59 -0
  3. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/CHANGELOG.md +36 -1
  4. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/CONTRIBUTING.md +1 -1
  5. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/Cargo.lock +874 -847
  6. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/Cargo.toml +11 -2
  7. hyperstreamdb-0.5.4/ELASTICSEARCH_INTEGRATION_PLAN.md +121 -0
  8. hyperstreamdb-0.5.4/GETTING_STARTED.md +118 -0
  9. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/PKG-INFO +53 -92
  10. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/README.md +51 -91
  11. hyperstreamdb-0.5.4/ROADMAP.md +562 -0
  12. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/SECURITY.md +7 -12
  13. hyperstreamdb-0.5.4/benchmark_results/full_scan_baseline_20260620_173334.json +14 -0
  14. hyperstreamdb-0.5.4/benchmark_results/full_scan_baseline_20260620_173334.md +7 -0
  15. hyperstreamdb-0.5.4/benchmark_results/full_scan_baseline_20260620_192646.json +14 -0
  16. hyperstreamdb-0.5.4/benchmark_results/full_scan_baseline_20260620_192646.md +7 -0
  17. hyperstreamdb-0.5.4/benchmark_results/full_scan_baseline_20260623_173013.json +14 -0
  18. hyperstreamdb-0.5.4/benchmark_results/full_scan_baseline_20260623_173013.md +7 -0
  19. hyperstreamdb-0.5.4/benchmark_results/high_selectivity_filter_20260620_173332.json +14 -0
  20. hyperstreamdb-0.5.4/benchmark_results/high_selectivity_filter_20260620_173332.md +7 -0
  21. hyperstreamdb-0.5.4/benchmark_results/high_selectivity_filter_20260620_192645.json +14 -0
  22. hyperstreamdb-0.5.4/benchmark_results/high_selectivity_filter_20260620_192645.md +7 -0
  23. hyperstreamdb-0.5.4/benchmark_results/high_selectivity_filter_20260623_173011.json +14 -0
  24. hyperstreamdb-0.5.4/benchmark_results/high_selectivity_filter_20260623_173011.md +7 -0
  25. hyperstreamdb-0.5.4/benchmark_results/multi_filter_vector_20260620_173300.json +14 -0
  26. hyperstreamdb-0.5.4/benchmark_results/multi_filter_vector_20260620_173300.md +7 -0
  27. hyperstreamdb-0.5.4/benchmark_results/multi_filter_vector_20260620_192611.json +14 -0
  28. hyperstreamdb-0.5.4/benchmark_results/multi_filter_vector_20260620_192611.md +7 -0
  29. hyperstreamdb-0.5.4/benchmark_results/multi_filter_vector_20260623_172935.json +14 -0
  30. hyperstreamdb-0.5.4/benchmark_results/multi_filter_vector_20260623_172935.md +7 -0
  31. hyperstreamdb-0.5.4/benchmark_results/point_lookup_20260620_173332.json +14 -0
  32. hyperstreamdb-0.5.4/benchmark_results/point_lookup_20260620_173332.md +7 -0
  33. hyperstreamdb-0.5.4/benchmark_results/point_lookup_20260620_192644.json +14 -0
  34. hyperstreamdb-0.5.4/benchmark_results/point_lookup_20260620_192644.md +7 -0
  35. hyperstreamdb-0.5.4/benchmark_results/point_lookup_20260623_173011.json +14 -0
  36. hyperstreamdb-0.5.4/benchmark_results/point_lookup_20260623_173011.md +7 -0
  37. hyperstreamdb-0.5.4/benchmark_results/post_vs_pre_filter_20260620_173303.json +7 -0
  38. hyperstreamdb-0.5.4/benchmark_results/post_vs_pre_filter_20260620_173303.md +7 -0
  39. hyperstreamdb-0.5.4/benchmark_results/post_vs_pre_filter_20260620_192614.json +7 -0
  40. hyperstreamdb-0.5.4/benchmark_results/post_vs_pre_filter_20260620_192614.md +7 -0
  41. hyperstreamdb-0.5.4/benchmark_results/post_vs_pre_filter_20260623_172938.json +7 -0
  42. hyperstreamdb-0.5.4/benchmark_results/post_vs_pre_filter_20260623_172938.md +7 -0
  43. hyperstreamdb-0.5.4/benchmark_results/range_query_20260620_173333.json +14 -0
  44. hyperstreamdb-0.5.4/benchmark_results/range_query_20260620_173333.md +7 -0
  45. hyperstreamdb-0.5.4/benchmark_results/range_query_20260620_192646.json +14 -0
  46. hyperstreamdb-0.5.4/benchmark_results/range_query_20260620_192646.md +7 -0
  47. hyperstreamdb-0.5.4/benchmark_results/range_query_20260623_173012.json +14 -0
  48. hyperstreamdb-0.5.4/benchmark_results/range_query_20260623_173012.md +7 -0
  49. hyperstreamdb-0.5.4/clippy_output.txt +502 -0
  50. hyperstreamdb-0.5.4/docker-compose-hive.yml +104 -0
  51. hyperstreamdb-0.5.4/fix_deprecated.py +20 -0
  52. hyperstreamdb-0.5.4/hive-config/hive-site.xml +75 -0
  53. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/pyproject.toml +1 -0
  54. hyperstreamdb-0.5.4/src/bin/hyperstreamdb-admin.rs +107 -0
  55. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/bin/iceberg_rest.rs +1 -1
  56. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/catalog/hive.rs +33 -1
  57. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/compaction.rs +3 -0
  58. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/ffi.rs +0 -1
  59. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/iceberg/manifest.rs +2 -2
  60. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/iceberg/types.rs +1 -1
  61. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/gpu.rs +24 -13
  62. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/hnsw_rs/hnswio.rs +37 -37
  63. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/hnsw_rs/libext.rs +18 -14
  64. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/hnsw_rs/mod.rs +1 -0
  65. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/pq.rs +1 -1
  66. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/lock.rs +138 -51
  67. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/manifest/manager/commit.rs +3 -9
  68. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/manifest/manager/load.rs +1 -1
  69. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/manifest/manager/schema.rs +1 -4
  70. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/mod.rs +1 -0
  71. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/reader/filter.rs +7 -1
  72. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/storage.rs +26 -4
  73. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/table/mod.rs +5 -3
  74. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/table/write.rs +52 -26
  75. hyperstreamdb-0.5.4/src/core/telemetry.rs +26 -0
  76. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/lib.rs +11 -0
  77. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/catalog/glue.rs +8 -3
  78. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/catalog/hive.rs +8 -2
  79. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/catalog/nessie.rs +8 -9
  80. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/catalog/rest.rs +8 -3
  81. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/helpers.rs +3 -1
  82. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/table.rs +17 -0
  83. hyperstreamdb-0.5.4/tests/verify_admin_cli.sh +20 -0
  84. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-config/catalog/glue_catalog.properties +1 -1
  85. hyperstreamdb-0.5.4/trino-config/catalog/iceberg.properties +15 -0
  86. hyperstreamdb-0.5.4/trino-config/catalog/iceberg_hive.properties +11 -0
  87. hyperstreamdb-0.5.2/trino-config/catalog/iceberg.properties +0 -12
  88. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/.env.example +0 -0
  89. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/.gitattributes +0 -0
  90. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/.gitignore +0 -0
  91. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/.hypothesis/constants/32b327793848e7d8 +0 -0
  92. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/.hypothesis/constants/67b0a8ccf18bf5d2 +0 -0
  93. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/.hypothesis/constants/84828557b4ee7be4 +0 -0
  94. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/.instructions.md +0 -0
  95. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/.ipynb_checkpoints/Untitled-checkpoint.ipynb +0 -0
  96. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/.qwen/settings.json +0 -0
  97. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/.qwen/settings.json.orig +0 -0
  98. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/CNAME +0 -0
  99. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/Dockerfile +0 -0
  100. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/HyperStreamDB.png +0 -0
  101. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/LICENSE-APACHE +0 -0
  102. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/LICENSE-MIT +0 -0
  103. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/RUN_COMPLIANCE_TESTS.sh +0 -0
  104. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/STEERING.md +0 -0
  105. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/THIRDPARTY_NOTICES.md +0 -0
  106. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/Untitled.ipynb +0 -0
  107. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benches/bench_table.rs +0 -0
  108. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benches/performance.rs +0 -0
  109. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/BENCHMARK_REPORT.md +0 -0
  110. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/benchmark_charts.png +0 -0
  111. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/benchmark_results.csv +0 -0
  112. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/concurrent_queries_20260409_214245.json +0 -0
  113. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/concurrent_queries_20260409_214245.md +0 -0
  114. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/filtered_search_comparison_20260409_222607.json +0 -0
  115. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/filtered_search_comparison_20260409_222607.md +0 -0
  116. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/filtered_vector_search_20260409_214355.json +0 -0
  117. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/filtered_vector_search_20260409_214355.md +0 -0
  118. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/filtered_vector_search_20260409_220418.json +0 -0
  119. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/filtered_vector_search_20260409_220418.md +0 -0
  120. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/filtered_vector_search_20260409_222053.json +0 -0
  121. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/filtered_vector_search_20260409_222053.md +0 -0
  122. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/filtered_vector_search_20260409_225907.json +0 -0
  123. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/filtered_vector_search_20260409_225907.md +0 -0
  124. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/full_scan_baseline_20260409_222303.json +0 -0
  125. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/full_scan_baseline_20260409_222303.md +0 -0
  126. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/high_selectivity_filter_20260409_222302.json +0 -0
  127. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/high_selectivity_filter_20260409_222302.md +0 -0
  128. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/ingestion_comparison_20260409_222516.json +0 -0
  129. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/ingestion_comparison_20260409_222516.md +0 -0
  130. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/multi_filter_vector_20260409_214428.json +0 -0
  131. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/multi_filter_vector_20260409_214428.md +0 -0
  132. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/multi_filter_vector_20260409_220450.json +0 -0
  133. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/multi_filter_vector_20260409_220450.md +0 -0
  134. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/multi_filter_vector_20260409_222131.json +0 -0
  135. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/multi_filter_vector_20260409_222131.md +0 -0
  136. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/multi_filter_vector_20260409_225938.json +0 -0
  137. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/multi_filter_vector_20260409_225938.md +0 -0
  138. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/multi_filter_vector_20260409_231713.json +0 -0
  139. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/multi_filter_vector_20260409_231713.md +0 -0
  140. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/post_vs_pre_filter_20260409_214501.json +0 -0
  141. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/post_vs_pre_filter_20260409_214501.md +0 -0
  142. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/post_vs_pre_filter_20260409_220524.json +0 -0
  143. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/post_vs_pre_filter_20260409_220524.md +0 -0
  144. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/post_vs_pre_filter_20260409_222204.json +0 -0
  145. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/post_vs_pre_filter_20260409_222204.md +0 -0
  146. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/post_vs_pre_filter_20260409_230010.json +0 -0
  147. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/post_vs_pre_filter_20260409_230010.md +0 -0
  148. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/query_comparison_20260409_222541.json +0 -0
  149. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/query_comparison_20260409_222541.md +0 -0
  150. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/range_query_20260409_222302.json +0 -0
  151. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/range_query_20260409_222302.md +0 -0
  152. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/search_filtered_high_selectivity_20260409_214144.json +0 -0
  153. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/search_filtered_high_selectivity_20260409_214144.md +0 -0
  154. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/search_unfiltered_20260409_214028.json +0 -0
  155. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/benchmark_results/search_unfiltered_20260409_214028.md +0 -0
  156. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/book.toml +0 -0
  157. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/build-connectors.sh +0 -0
  158. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/build.rs +0 -0
  159. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/check_iceberg_compliance.py +0 -0
  160. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/clippy.toml +0 -0
  161. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/deny.toml +0 -0
  162. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docker-compose-minio-nessie.yml +0 -0
  163. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docker-compose.production.yml +0 -0
  164. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docker-compose.yml +0 -0
  165. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/.nojekyll +0 -0
  166. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/BENCHMARKING.md +0 -0
  167. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/COMPREHENSIVE_GUIDE.md +0 -0
  168. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/CONCURRENCY.md +0 -0
  169. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/CONFIGURATION.md +0 -0
  170. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/DORIS_OPTIMIZATION_PATTERNS.md +0 -0
  171. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/GPU_SETUP_GUIDE.md +0 -0
  172. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/ICEBERG_V2_V3_API.md +0 -0
  173. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/INSTALLATION.md +0 -0
  174. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/PGVECTOR_SQL_GUIDE.md +0 -0
  175. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/PYTHON_VECTOR_API.md +0 -0
  176. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/VECTOR_CONFIGURATION.md +0 -0
  177. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/api_reference.md +0 -0
  178. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/architecture.md +0 -0
  179. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/catalog_usage.md +0 -0
  180. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/index.md +0 -0
  181. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/integrations/README.md +0 -0
  182. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/integrations/java_jni.md +0 -0
  183. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/integrations/python.md +0 -0
  184. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/integrations/spark.md +0 -0
  185. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/integrations/trino.md +0 -0
  186. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/monitoring.md +0 -0
  187. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/requirements.txt +0 -0
  188. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/source/_static/HyperStreamDB.png +0 -0
  189. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/source/api/python.rst +0 -0
  190. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/source/api/rust.rst +0 -0
  191. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/source/conf.py +0 -0
  192. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/source/index.rst +0 -0
  193. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/source/roadmap.md +0 -0
  194. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/docs/task_status.md +0 -0
  195. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/marketing_site/index.html +0 -0
  196. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/marketing_site/styles.css +0 -0
  197. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/proptest-regressions/core/index/gpu.txt +0 -0
  198. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/proptest-regressions/core/sql/vector_literal.txt +0 -0
  199. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/proptest-regressions/core/sql/vector_udf.txt +0 -0
  200. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/python/hyperstreamdb/__init__.py +0 -0
  201. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/python/hyperstreamdb/embeddings.py +0 -0
  202. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/recovered_plan.txt +0 -0
  203. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/rust-toolchain.toml +0 -0
  204. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/scripts/fix_nb.py +0 -0
  205. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/scripts/split_table.py +0 -0
  206. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/scripts/update_cache.py +0 -0
  207. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/scripts/update_reader.py +0 -0
  208. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/scripts/update_schema_patch.py +0 -0
  209. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/scripts/update_schema_patch2.py +0 -0
  210. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/spark-hyperstream/.bloop/bloop.settings.json +0 -0
  211. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/spark-hyperstream/.bloop/spark-hyperstream-test.json +0 -0
  212. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/spark-hyperstream/.bloop/spark-hyperstream.json +0 -0
  213. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/spark-hyperstream/pom.xml +0 -0
  214. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/DefaultSource.java +0 -0
  215. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartition.java +0 -0
  216. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReader.java +0 -0
  217. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReaderFactory.java +0 -0
  218. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamScanBuilder.java +0 -0
  219. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamTable.java +0 -0
  220. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/spark-hyperstream/src/test/java/com/hyperstreamdb/spark/SparkConnectorTest.java +0 -0
  221. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/bin/gateway.rs +0 -0
  222. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/bin/hdb.rs +0 -0
  223. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/bin/probe_datafusion.rs +0 -0
  224. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/bin/setup_test_data.rs +0 -0
  225. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/bin/verify_layered_indexing.rs +0 -0
  226. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/cache.rs +0 -0
  227. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/catalog/config.rs +0 -0
  228. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/catalog/glue.rs +0 -0
  229. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/catalog/jdbc.rs +0 -0
  230. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/catalog/mod.rs +0 -0
  231. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/catalog/nessie.rs +0 -0
  232. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/catalog/rest.rs +0 -0
  233. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/catalog/unity.rs +0 -0
  234. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/clustering.rs +0 -0
  235. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/embeddings.rs +0 -0
  236. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/error.rs +0 -0
  237. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/iceberg/delete.rs +0 -0
  238. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/iceberg/iceberg_delete.rs +0 -0
  239. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/iceberg/mod.rs +0 -0
  240. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/iceberg/schema.rs +0 -0
  241. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/iceberg/transform.rs +0 -0
  242. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/iceberg/value.rs +0 -0
  243. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/iceberg/writer.rs +0 -0
  244. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/build_inverted.rs +0 -0
  245. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/build_vector.rs +0 -0
  246. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/cuda/cosine_distance.cu +0 -0
  247. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/cuda/hamming_distance.cu +0 -0
  248. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/cuda/inner_product.cu +0 -0
  249. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/cuda/jaccard_distance.cu +0 -0
  250. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/cuda/kmeans_assignment.cu +0 -0
  251. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/cuda/l1_distance.cu +0 -0
  252. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/cuda/l2_distance.cu +0 -0
  253. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/distance.rs +0 -0
  254. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/hnsw_ivf.rs +0 -0
  255. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/hnsw_rs/annhdf5.rs +0 -0
  256. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/hnsw_rs/api.rs +0 -0
  257. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/hnsw_rs/dist.rs +0 -0
  258. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/hnsw_rs/flatten.rs +0 -0
  259. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/hnsw_rs/hnsw.rs +0 -0
  260. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/hnsw_rs/prelude.rs +0 -0
  261. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/hnsw_rs/test.rs +0 -0
  262. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/ivf.rs +0 -0
  263. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/memory.rs +0 -0
  264. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/mod.rs +0 -0
  265. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/mps/cosine_distance.metal +0 -0
  266. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/mps/hamming_distance.metal +0 -0
  267. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/mps/inner_product.metal +0 -0
  268. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/mps/jaccard_distance.metal +0 -0
  269. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/mps/kmeans_assignment.metal +0 -0
  270. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/mps/l1_distance.metal +0 -0
  271. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/mps/l2_distance.metal +0 -0
  272. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/opencl/cosine_distance.cl +0 -0
  273. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/opencl/hamming_distance.cl +0 -0
  274. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/opencl/inner_product.cl +0 -0
  275. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/opencl/jaccard_distance.cl +0 -0
  276. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/opencl/kmeans_assignment.cl +0 -0
  277. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/opencl/l1_distance.cl +0 -0
  278. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/opencl/l2_distance.cl +0 -0
  279. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/tokenizer.rs +0 -0
  280. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/turboquant.rs +0 -0
  281. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/index/wgpu_kernel.wgsl +0 -0
  282. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/license.rs +0 -0
  283. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/maintenance.rs +0 -0
  284. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/manifest/manager/partition.rs +0 -0
  285. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/manifest/manager.rs +0 -0
  286. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/manifest/mod.rs +0 -0
  287. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/manifest/types.rs +0 -0
  288. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/merge.rs +0 -0
  289. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/metadata.rs +0 -0
  290. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/nessie.rs +0 -0
  291. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/planner/filter.rs +0 -0
  292. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/planner/pruning.rs +0 -0
  293. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/planner/vector_search.rs +0 -0
  294. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/planner.rs +0 -0
  295. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/puffin.rs +0 -0
  296. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/query.rs +0 -0
  297. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/reader/delete.rs +0 -0
  298. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/reader/mod.rs +0 -0
  299. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/reader/scan.rs +0 -0
  300. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/search/mod.rs +0 -0
  301. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/search/rrf.rs +0 -0
  302. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/segment.rs +0 -0
  303. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/literal/binary.rs +0 -0
  304. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/literal/dense.rs +0 -0
  305. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/literal/mod.rs +0 -0
  306. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/literal/sparse.rs +0 -0
  307. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/mod.rs +0 -0
  308. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/optimizer/config.rs +0 -0
  309. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/optimizer/index_join.rs +0 -0
  310. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/optimizer/vector_search/mod.rs +0 -0
  311. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/optimizer/vector_search/plan_detection.rs +0 -0
  312. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/optimizer/vector_search/plan_rewriter.rs +0 -0
  313. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/optimizer/vector_search/sort_expr_parser.rs +0 -0
  314. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/optimizer.rs +0 -0
  315. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/pgvector_rewriter.rs +0 -0
  316. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/physical_plan/index_join.rs +0 -0
  317. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/physical_plan/vector_merge.rs +0 -0
  318. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/physical_plan/vector_scan.rs +0 -0
  319. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/physical_plan.rs +0 -0
  320. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/session.rs +0 -0
  321. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/udf/aggregate.rs +0 -0
  322. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/udf/distance.rs +0 -0
  323. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/udf/mod.rs +0 -0
  324. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/udf/sparse.rs +0 -0
  325. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/udf/transform.rs +0 -0
  326. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/vector_literal.rs +0 -0
  327. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/vector_operators.rs +0 -0
  328. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/vector_udf/aggregate.rs +0 -0
  329. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/vector_udf/distance.rs +0 -0
  330. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/vector_udf/mod.rs +0 -0
  331. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/vector_udf/sparse.rs +0 -0
  332. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/vector_udf/transform.rs +0 -0
  333. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/sql/vector_udf.rs +0 -0
  334. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/table/builder.rs +0 -0
  335. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/table/fluent.rs +0 -0
  336. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/table/index_config.rs +0 -0
  337. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/table/primary_key.rs +0 -0
  338. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/table/read.rs +0 -0
  339. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/table/schema.rs +0 -0
  340. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/table/state.rs +0 -0
  341. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/table/stats.rs +0 -0
  342. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/core/wal.rs +0 -0
  343. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/enterprise/continuous_indexing.rs +0 -0
  344. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/enterprise/mod.rs +0 -0
  345. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/index.rs.old +0 -0
  346. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/catalog/jdbc.rs +0 -0
  347. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/catalog/mod.rs +0 -0
  348. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/catalog/unity.rs +0 -0
  349. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/manifest.rs +0 -0
  350. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/mod.rs +0 -0
  351. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/schema.rs +0 -0
  352. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/session.rs +0 -0
  353. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python/stats.rs +0 -0
  354. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python_binding.rs +0 -0
  355. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python_distance.rs +0 -0
  356. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/python_gpu_context.rs +0 -0
  357. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/telemetry/metrics.rs +0 -0
  358. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/telemetry/mod.rs +0 -0
  359. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/src/telemetry/tracing.rs +0 -0
  360. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/all_types_index_test.rs +0 -0
  361. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/bin/generate_iceberg_manifests.rs +0 -0
  362. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/bin/verify_iceberg_read_check.rs +0 -0
  363. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/check_mmh3.py +0 -0
  364. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/data/download_nyc_taxi.sh +0 -0
  365. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/data/generate_embeddings.py +0 -0
  366. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/data/generate_wikipedia.py +0 -0
  367. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/data/start_nessie.sh +0 -0
  368. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/datafusion_rust_test.rs +0 -0
  369. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/debug_murmur3.rs +0 -0
  370. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/fuzz_murmur3.rs +0 -0
  371. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/gpu_test_helpers.rs +0 -0
  372. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/integration_test_hnsw_ivf_native.rs +0 -0
  373. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/performance/README.md +0 -0
  374. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/prototype_merge.py +0 -0
  375. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/python/verify_docstrings.py +0 -0
  376. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/python/verify_fluent_api.py +0 -0
  377. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/python/verify_unified_ingest.py +0 -0
  378. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/schema_evolution_test.rs +0 -0
  379. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/stability.rs +0 -0
  380. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_all_algos.py +0 -0
  381. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_catalog_commit.rs +0 -0
  382. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_compliance.rs +0 -0
  383. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_delete_correctness.rs +0 -0
  384. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_iceberg_python_delete.sh +0 -0
  385. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_iceberg_rest.sh +0 -0
  386. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_iceberg_rest_create.sh +0 -0
  387. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_iceberg_rest_delete.sh +0 -0
  388. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_iceberg_rest_remove_index.sh +0 -0
  389. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_iceberg_rest_update.sh +0 -0
  390. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_metadata_creation.rs +0 -0
  391. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_mor_reads.rs +0 -0
  392. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_mor_writes.rs +0 -0
  393. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_partition_transforms.rs +0 -0
  394. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_partitioned_writes.rs +0 -0
  395. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_puffin_index.sh +0 -0
  396. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_rest_updates.sh +0 -0
  397. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/tests/verify_schema_compat.rs +0 -0
  398. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-config/.DS_Store +0 -0
  399. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-config/catalog/hyperstreamdb.properties +0 -0
  400. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-config/catalog/memory.properties +0 -0
  401. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-config/catalog/postgres.properties +0 -0
  402. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-config/config.properties +0 -0
  403. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-config/entrypoint.sh +0 -0
  404. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-config/jvm.config +0 -0
  405. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-config/node.properties +0 -0
  406. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-config.zip +0 -0
  407. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-hyperstream/pom.xml +0 -0
  408. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBColumnHandle.java +0 -0
  409. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBConnectorFactory.java +0 -0
  410. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBMetadata.java +0 -0
  411. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSource.java +0 -0
  412. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSourceProvider.java +0 -0
  413. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPlugin.java +0 -0
  414. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplit.java +0 -0
  415. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplitManager.java +0 -0
  416. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBTableHandle.java +0 -0
  417. {hyperstreamdb-0.5.2 → hyperstreamdb-0.5.4}/trino-hyperstream/src/test/java/com/hyperstreamdb/trino/TrinoConnectorTest.java +0 -0
@@ -0,0 +1,11 @@
1
+ [advisories]
2
+ ignore = [
3
+ "RUSTSEC-2026-0104",
4
+ "RUSTSEC-2026-0099",
5
+ "RUSTSEC-2026-0098",
6
+ "RUSTSEC-2026-0097",
7
+ "RUSTSEC-2024-0437",
8
+ "RUSTSEC-2026-0177",
9
+ "RUSTSEC-2026-0176",
10
+ "RUSTSEC-2023-0071"
11
+ ]
@@ -0,0 +1,59 @@
1
+ # HyperStreamDB Admin CLI
2
+
3
+ `hyperstreamdb-admin` is the official administrative tooling for HyperStreamDB. It provides cluster operators with safe, easy-to-use commands to manage storage, optimize performance, and clean up historical data.
4
+
5
+ ## Installation / Building
6
+ If you are compiling from source, the admin CLI is built alongside the main engine:
7
+ ```bash
8
+ cargo build --release --bin hyperstreamdb-admin
9
+ ```
10
+
11
+ The compiled binary will be located at `target/release/hyperstreamdb-admin`.
12
+
13
+ ## Commands
14
+
15
+ ### 1. `compact`
16
+ Over time, continuous ingestion can lead to fragmentation—creating hundreds or thousands of small data files (often called the "small files problem"). The `compact` command merges these small files into larger, optimized files. This significantly improves query performance by reducing metadata overhead and maximizing the efficiency of vectorized scans.
17
+
18
+ **Usage:**
19
+ ```bash
20
+ hyperstreamdb-admin compact --uri <TABLE_URI> [OPTIONS]
21
+ ```
22
+
23
+ **Options:**
24
+ - `--uri`, `-u`: **(Required)** The storage URI of the table you want to compact. (e.g., `file:///tmp/hdb`, `s3://my-bucket/table`)
25
+ - `--target-file-size`: **(Optional)** The ideal size for the compacted data files. The CLI accepts human-readable string values like `64MB`, `1GB`, `512K`. The default is `64MB`.
26
+
27
+ **Example:**
28
+ ```bash
29
+ hyperstreamdb-admin compact --uri "s3://production-data/events_table" --target-file-size 128MB
30
+ ```
31
+
32
+ ### 2. `vacuum`
33
+ HyperStreamDB relies on Multi-Version Concurrency Control (MVCC) and copy-on-write semantics. As data is updated, deleted, or compacted, old files are unlinked from the active manifest but remain on disk to allow time-travel queries and safe rollback.
34
+
35
+ The `vacuum` command permanently deletes these unreferenced historical files to reclaim physical storage space.
36
+
37
+ > [!WARNING]
38
+ > Running vacuum is irreversible. You will not be able to time-travel to versions older than the retention limit once vacuum completes.
39
+
40
+ **Usage:**
41
+ ```bash
42
+ hyperstreamdb-admin vacuum --uri <TABLE_URI> [OPTIONS]
43
+ ```
44
+
45
+ **Options:**
46
+ - `--uri`, `-u`: **(Required)** The storage URI of the table you want to vacuum.
47
+ - `--retain-versions`: **(Optional)** The number of historical manifest versions to keep. Any unreferenced data file not tied to the kept versions will be permanently deleted. Default is `10`.
48
+
49
+ **Example:**
50
+ ```bash
51
+ hyperstreamdb-admin vacuum --uri "s3://production-data/events_table" --retain-versions 5
52
+ ```
53
+
54
+ ## E2E Testing
55
+ The CLI is strictly tested for regressions. You can run the administrative automated bash test locally using:
56
+ ```bash
57
+ ./tests/verify_admin_cli.sh
58
+ ```
59
+ This test spins up a mock dataset, runs a compaction pass, and successfully vacuums the resulting orphaned files.
@@ -9,6 +9,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ---
11
11
 
12
+ ## [0.5.3] - 2026-06-21
13
+
14
+ ### Added
15
+ - Unified catalog table loading logic (`load_from_catalog`) across Glue, Hive, Nessie, and REST catalog wrappers in python bindings.
16
+ - Explicit commit-time flushing and background synchronization in integration tests (`test_turboquant_integration.py` and `test_wikipedia.py`).
17
+
18
+ ### Changed
19
+ - Fixed remote path routing in `flush_async` to correctly construct relative remote paths for staged files instead of using local staging paths.
20
+ - Upload data files synchronously relative to commit operation to avoid read-after-write race conditions in remote catalogs.
21
+ - Fixed a missing file upload call in the background indexing task for vector indexes.
22
+
23
+ ### Fixed
24
+ - Clippy compiler warnings and errors in HNSW/PQ modules.
25
+
26
+ ---
27
+
28
+ ## [0.5.2] - 2026-06-15
29
+
30
+ ### Changed
31
+ - Bumped version to 0.5.2.
32
+ - Resolved write buffer schema alignment & list array indexing bugs.
33
+
34
+ ---
35
+
36
+ ## [0.5.1] - 2026-06-07
37
+
38
+ ### Changed
39
+ - Optimized vector search.
40
+ - Fixed WAL tests.
41
+
42
+ ---
43
+
12
44
  ## [0.5.0] - 2026-06-03
13
45
 
14
46
  ### Added
@@ -292,7 +324,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
292
324
 
293
325
  ---
294
326
 
295
- [Unreleased]: https://github.com/rla3rd/hyperstreamdb/compare/v0.5.0...HEAD
327
+ [Unreleased]: https://github.com/rla3rd/hyperstreamdb/compare/v0.5.3...HEAD
328
+ [0.5.3]: https://github.com/rla3rd/hyperstreamdb/compare/v0.5.2...v0.5.3
329
+ [0.5.2]: https://github.com/rla3rd/hyperstreamdb/compare/v0.5.1...v0.5.2
330
+ [0.5.1]: https://github.com/rla3rd/hyperstreamdb/compare/v0.5.0...v0.5.1
296
331
  [0.5.0]: https://github.com/rla3rd/hyperstreamdb/compare/v0.4.1...v0.5.0
297
332
  [0.4.0]: https://github.com/rla3rd/hyperstreamdb/compare/v0.3.3...v0.4.0
298
333
  [0.3.3]: https://github.com/rla3rd/hyperstreamdb/compare/v0.3.2...v0.3.3
@@ -12,7 +12,7 @@ Before contributing, please read [STEERING.md](STEERING.md) for our development
12
12
 
13
13
  ### Prerequisites
14
14
 
15
- - **Rust** (stable, 1.75+) — install via [rustup](https://rustup.rs/)
15
+ - **Rust** (stable, 1.80+) — install via [rustup](https://rustup.rs/)
16
16
  - **Python** (3.10–3.14) — for binding development and testing
17
17
  - **Docker** — for integration tests against MinIO and Nessie
18
18
  - **Cargo** and **maturin** — for building Python wheels