Skip to content
Snippets Groups Projects
  1. Nov 24, 2023
    • Arseniy Volynets's avatar
      feat: support subqueries for global tables · 1909db81
      Arseniy Volynets authored
      - subqueries reading from global tables are supported
      - subqueries in queries which scan the global tables
      are allowed:
      `select a from global where b in (select c from segment)`
      
      However currently using global tables in join is not
      supported.
      1909db81
  2. Nov 23, 2023
  3. Nov 22, 2023
  4. Nov 20, 2023
  5. Nov 01, 2023
  6. Oct 31, 2023
  7. Oct 26, 2023
  8. Oct 25, 2023
  9. Oct 19, 2023
  10. Oct 13, 2023
  11. Sep 28, 2023
  12. Sep 27, 2023
  13. Sep 25, 2023
  14. Sep 22, 2023
  15. Sep 13, 2023
  16. Sep 12, 2023
    • EmirVildanov's avatar
      feat: refactor explain operator · 2c5c7fc6
      EmirVildanov authored
      2c5c7fc6
    • Arseniy Volynets's avatar
      fix: block vshard rebalancing during dql · 4a1bebf5
      Arseniy Volynets authored
      When reading from multiple storages it is
      possible that some requests will execute faster
      than the others. And it could lead to wrong
      results when vhard moved the buckets between
      nodes.
      
      For example: we execute `select * from t`
      on storage 1 and get the results. Vshard
      moves the data from storage 1 to stroage 2,
      and then we execute `select * from t` and in
      result we get the data (that moved) twice.
      
      This commit fixes it by using vshard's
      storage ref api. Now multi-node read requests
      first create the ref on each node which
      blocks vshard rebalancing. Then we call
      our stored procedure and remove the ref.
      4a1bebf5
  17. Sep 05, 2023
  18. Sep 04, 2023
  19. Aug 29, 2023
  20. Aug 24, 2023
  21. Aug 23, 2023
  22. Aug 22, 2023
Loading