Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge/stable 24 2/query float test asan #8196

This pull request is big! We’re only showing the most recent 250 commits.

Commits on Feb 21, 2024

  1. Configuration menu
    Copy the full SHA
    321f683 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    09dbd42 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5e91e28 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0872878 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    08d5b07 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

  1. Stable-24-1 cs patch 2 (ydb-platform#2145)

    Co-authored-by: nsofya <[email protected]>
    ivanmorozov333 and nsofya authored Feb 22, 2024
    Configuration menu
    Copy the full SHA
    7d89162 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fd4ca58 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    288a80b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fd0b1ac View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    14c6dfb View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2024

  1. Configuration menu
    Copy the full SHA
    5cd47d3 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. Configuration menu
    Copy the full SHA
    6a51e53 View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. Configuration menu
    Copy the full SHA
    18848f2 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2024

  1. Stable-24-1 CS patch (ydb-platform#2363)

    Co-authored-by: nsofya <[email protected]>
    Co-authored-by: nsofya <[email protected]>
    3 people authored Mar 1, 2024
    Configuration menu
    Copy the full SHA
    385b62e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b7a3970 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d2983fe View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5f8846d View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2024

  1. Configuration menu
    Copy the full SHA
    fba36c0 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. Configuration menu
    Copy the full SHA
    960afca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f2b72c6 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2024

  1. Configuration menu
    Copy the full SHA
    5b10401 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c9a38da View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    07bfc08 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c591cd0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fad6d73 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c735d22 View commit details
    Browse the repository at this point in the history
  7. schemeboard: pass describe-result as an opaque payload (ydb-platform#…

    …2391)
    
    Cherry-pick 3819aed from main (ydb-platform#2083).
    
    Make schemeboard replicas consume less CPU, especially when processing rapid updates for tables with huge amount of partitions.
    
    Schema information on a path exist in the form of `DescribeSchemeResult` object: schemeshard generates those objects and publishes them to the schemeboard, schemeboard notifies scheme-caches on the nodes about path info changes. So schemeshard generates `DescribeSchemeResult`, scheme-cache serves `DescribeSchemeResult` to the consumers. But schemeboard components in-between do not require the full content of a TEvDescribeSchemeResult to operate efficiently.
    
    This update enables the schemeboard to transmit `DescribeSchemeResult` through as an opaque payload rather than as a fully detailed protobuf object. Thus reducing the unnecessary memory management and serialization/deserialization overhead.
    ijon authored Mar 5, 2024
    Configuration menu
    Copy the full SHA
    a607285 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5635e2b View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2024

  1. Invalidate query compilation cache entries with outdated VIEWs (ydb-p…

    …latform#1960) (ydb-platform#2479)
    
    KIKIMR-21002
    
    In this PR we add the following algorithm for invalidating cache entries for outdated VIEWs:
    
    1. Store path ids and schema versions of the views that were used in the query in the cache entries, so they can be accessed later.
    2. Whenever we retrieve a compilation result from cache, send a request for SchemeCache to check if the schema version of the views used in this query (if any) has not changed since we compiled this query.
    3. Send a recompilation request if any view is outdated.
    
    There are two important things to note about this solution:
    
    - We make a SchemeCache request for each repeated query and there is a lot of these in an OLTP-focused database like YDB. However, we have already been sending these request for preliminary (this is not the last check of schema version mismatch (at least for tables)) cache invalidation for tables, so views should not incur an additional performance impact here.
    - This solution does not guarantee strong consistency for queries using views, because query cache invalidation will not happen instantly after the view definition is updated. The node should get an update from the SchemeCache, which takes some time.
    jepett0 authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    0378eff View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

  1. Configuration menu
    Copy the full SHA
    4192b14 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c206738 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    52d299a View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2024

  1. Configuration menu
    Copy the full SHA
    7444062 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    179a3cb View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2024

  1. Configuration menu
    Copy the full SHA
    f24b02a View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. Configuration menu
    Copy the full SHA
    6a84178 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    623524f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ed139af View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3f93680 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8688b17 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d9f2880 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b3004c6 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. Use empty parsing context to build view's select in CREATE VIEW state…

    …ment (ydb-platform#2049) (ydb-platform#2595)
    
    Based on: ydb-platform#2049
    
    KIKIMR-20891
    
    CREATE VIEW statement parses (and validates) the select statement saved in the view. It should be parsed in a context isolated from the statements executed before the CREATE VIEW statement (we haven't decided yet on the exact scope of the context of the view's select statement, see [KIKIMR-20656](https://st.yandex-team.ru/KIKIMR-20656)). It is pretty obvious that one should be able to execute the following statement in one go ("one go" = one press of a "run" button in YDB UI):
    ```sql
    -- create view NecessaryInnerView with (security_invoker = true) as select 1;
    -- create view ContextTestingView with (security_invoker = true) as select * from `/local/NecessaryInnerView`; -- where `/local/...` is your cluster name
    
    drop view ContextTestingView;
    create view ContextTestingView with (security_invoker = true) as select * from `/local/NecessaryInnerView`;
    ```
    
    However, executing both drop view and create view in one go currently produces and error:
    ```
    DropObject is not yet implemented for intent determination transformer
    ```
    which indicates that the context of the inner query:
    ```sql
    select * from `/local/NecessaryInnerView`
    ```
    is polluted by the previous:
    ```sql
    drop view ContextTestingView;
    ```
    statement.
    
    This problem is fixed by using an empty parsing context for parsing view's inner select statement during handling of CREATE VIEW statement.
    jepett0 authored Mar 13, 2024
    Configuration menu
    Copy the full SHA
    c205eed View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2024

  1. Configuration menu
    Copy the full SHA
    a510fe8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9986dce View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c1ad21b View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2024

  1. Configuration menu
    Copy the full SHA
    6d4a423 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cceacdc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    53c016c View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2024

  1. Configuration menu
    Copy the full SHA
    9edd757 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2024

  1. Configuration menu
    Copy the full SHA
    bba277c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5ac0c0b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0aaa317 View commit details
    Browse the repository at this point in the history
  4. Update CMakeLists

    mvgorbunov committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    ccfeb7a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    45a24af View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2024

  1. Merge query service fixes to stable 24 1 (ydb-platform#2930)

    Co-authored-by: Daniil Cherednik <[email protected]>
    Co-authored-by: spuchin <[email protected]>
    3 people authored Mar 19, 2024
    Configuration menu
    Copy the full SHA
    7e50ccf View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. Configuration menu
    Copy the full SHA
    8d1f4fa View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2024

  1. Configuration menu
    Copy the full SHA
    fe6d594 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. Configuration menu
    Copy the full SHA
    112be1a View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. Update CMakeLists

    mvgorbunov committed Mar 25, 2024
    Configuration menu
    Copy the full SHA
    9a7d761 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7023b13 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2024

  1. Configuration menu
    Copy the full SHA
    6fbfd4a View commit details
    Browse the repository at this point in the history
  2. Cherry pick fix leak (ydb-platform#3167)

    Co-authored-by: Oleg Doronin <[email protected]>
    ildar-khisambeev and dorooleg authored Mar 26, 2024
    Configuration menu
    Copy the full SHA
    d563efb View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2024

  1. Configuration menu
    Copy the full SHA
    a762c76 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2024

  1. Configuration menu
    Copy the full SHA
    93f4928 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bb2692a View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2024

  1. Configuration menu
    Copy the full SHA
    da40f72 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2024

  1. Configuration menu
    Copy the full SHA
    7050857 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d547c4c View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2024

  1. Configuration menu
    Copy the full SHA
    2631f5b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c301eca View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2024

  1. Configuration menu
    Copy the full SHA
    9acd579 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2024

  1. Configuration menu
    Copy the full SHA
    b6a279d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d14df37 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    295aafd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d39295a View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2024

  1. Configuration menu
    Copy the full SHA
    89bfbfd View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2024

  1. Configuration menu
    Copy the full SHA
    0585aac View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2024

  1. Configuration menu
    Copy the full SHA
    e2f14c4 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. Configuration menu
    Copy the full SHA
    0ef6729 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2024

  1. Configuration menu
    Copy the full SHA
    68050f5 View commit details
    Browse the repository at this point in the history
  2. Cherry pick print sensitive (ydb-platform#3698)

    Co-authored-by: Nikolay Shestakov <[email protected]>
    ildar-khisambeev and nshestakov authored Apr 15, 2024
    Configuration menu
    Copy the full SHA
    3527639 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. Configuration menu
    Copy the full SHA
    b571990 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. YMQ Verify fix (ydb-platform#3945)

    Co-authored-by: Sergey Veselov <[email protected]>
    alexnick88 and siarheivesialou authored Apr 19, 2024
    Configuration menu
    Copy the full SHA
    1520164 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2024

  1. Configuration menu
    Copy the full SHA
    36fc0ee View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2024

  1. Configuration menu
    Copy the full SHA
    b1eb036 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Configuration menu
    Copy the full SHA
    ff2698f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    34c57d8 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2024

  1. Configuration menu
    Copy the full SHA
    be291e7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6fc3848 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b614914 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2024

  1. Configuration menu
    Copy the full SHA
    00c0e54 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    43a34f7 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

  1. Configuration menu
    Copy the full SHA
    eae74a3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    be2fb17 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2024

  1. Fix viewer content type header parsing (ydb-platform#4205) (ydb-platf…

    …orm#4280)
    
    Changelog entry
    
    According to HTTP 1.1 header name must be case insensitive
    Changelog category
    
    Bugfix
    dcherednik authored May 6, 2024
    Configuration menu
    Copy the full SHA
    ec017a1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    11b0174 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. Configuration menu
    Copy the full SHA
    ed0f418 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    024dde8 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. Configuration menu
    Copy the full SHA
    c1f7310 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9c47d51 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    966cbdf View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. Configuration menu
    Copy the full SHA
    adbde26 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2024

  1. Configuration menu
    Copy the full SHA
    da78771 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d655aaa View commit details
    Browse the repository at this point in the history

Commits on May 16, 2024

  1. Configuration menu
    Copy the full SHA
    f275821 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    920ac4a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    97c9e87 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2024

  1. Configuration menu
    Copy the full SHA
    6e76cc8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    82d69fe View commit details
    Browse the repository at this point in the history

Commits on May 21, 2024

  1. Configuration menu
    Copy the full SHA
    7525b05 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f18362a View commit details
    Browse the repository at this point in the history

Commits on May 22, 2024

  1. fix read sequence checker (ydb-platform#4725)

    Co-authored-by: Ivan Morozov <[email protected]>
    ivanmorozov333 and Ivan Morozov authored May 22, 2024
    Configuration menu
    Copy the full SHA
    75a1178 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2024

  1. Configuration menu
    Copy the full SHA
    d132765 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0a189e0 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. Configuration menu
    Copy the full SHA
    f6cc07b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a862c28 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    660046f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1ef008a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5296d28 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    13c6e2a View commit details
    Browse the repository at this point in the history

Commits on May 28, 2024

  1. Configuration menu
    Copy the full SHA
    e7f9bdd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6694845 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2024

  1. Configuration menu
    Copy the full SHA
    53f75b6 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2024

  1. Configuration menu
    Copy the full SHA
    216adeb View commit details
    Browse the repository at this point in the history

Commits on May 31, 2024

  1. Configuration menu
    Copy the full SHA
    9a2ef83 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2024

  1. Configuration menu
    Copy the full SHA
    4dd5b42 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. Configuration menu
    Copy the full SHA
    62b7bff View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c165555 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    178cf6e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4d22497 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. Knn UDF for Exact vector search (ydb-platform#4524)

    Co-authored-by: azevaykin <[email protected]>
    Co-authored-by: Valerii Mironov <[email protected]>
    3 people authored Jun 4, 2024
    Configuration menu
    Copy the full SHA
    ea2ef69 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2024

  1. UI refresh action cherrypick to 24-1 (ydb-platform#5174)

    Co-authored-by: Vladimir Lewandowski <[email protected]>
    antonkovalenko and vovaspace authored Jun 6, 2024
    Configuration menu
    Copy the full SHA
    ec1169f View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2024

  1. Configuration menu
    Copy the full SHA
    924dab5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9961fa1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3e4dc18 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    46c1851 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    63b8e66 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fbdeb3c View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2024

  1. Configuration menu
    Copy the full SHA
    99f0004 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9525b0f View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2024

  1. Configuration menu
    Copy the full SHA
    f1632b2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0224081 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2024

  1. Configuration menu
    Copy the full SHA
    53eadb0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a4d6dd0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    65d320a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    03d6c36 View commit details
    Browse the repository at this point in the history
  5. Enable cmake workflow to build a specified target (ydb-platform#1533)

    * Update action.yml
    
    * Update build_and_test_provisioned.yml
    alexv-smirnov committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    e7331b5 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b055137 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b3c9a1d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    639057c View commit details
    Browse the repository at this point in the history
  9. CMake regeneration workflow (ydb-platform#1774)

    * Update sync_cmakebuild.yml
    
    * Update sync_cmakebuild.yml
    
    * Update sync_cmakebuild.yml
    
    * Update sync_cmakebuild.yml
    
    * Update sync_cmakebuild.yml
    
    * Update sync_cmakebuild.yml
    
    * Update sync_cmakebuild.yml
    
    * Update sync_cmakebuild.yml
    
    * Update sync_cmakebuild.yml
    
    * Update sync_cmakebuild.yml
    
    * Update sync_cmakebuild.yml
    
    * Update sync_cmakebuild.yml
    
    * Update sync_cmakebuild.yml
    
    * Update sync_cmakebuild.yml
    alexv-smirnov committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    dcaed53 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    71bcc18 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    ab6d829 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    5d5831a View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    ac65d2f View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    e6fe015 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    27e586e View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    e7f90d9 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    7255ed8 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    6862187 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    cd8d537 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    bc09048 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    7bd3b4b View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    690eb6c View commit details
    Browse the repository at this point in the history
  23. Merge pull request ydb-platform#5519 from alexv-smirnov/bumpwf-stable…

    …-24-1
    
    bumpwf stable 24 1
    alexv-smirnov authored Jun 13, 2024
    Configuration menu
    Copy the full SHA
    e86c9e3 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2024

  1. Merge CI updates

    alexv-smirnov committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    5bbdffe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d5bffd8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7487d61 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    309333d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fbfd87d View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2024

  1. Merge stable-24-1-16-analytics into stable-24-1 (ydb-platform#5596)

    Co-authored-by: Vitalii Gridnev <[email protected]>
    Co-authored-by: Andrey Neporada <[email protected]>
    Co-authored-by: niksaveliev <[email protected]>
    Co-authored-by: Sergey Veselov <[email protected]>
    Co-authored-by: alexnick88 <[email protected]>
    Co-authored-by: Ilnaz Nizametdinov <[email protected]>
    Co-authored-by: Iuliia Sidorina <[email protected]>
    Co-authored-by: kungurtsev <[email protected]>
    Co-authored-by: Nikolay Shestakov <[email protected]>
    Co-authored-by: azevaykin <[email protected]>
    Co-authored-by: DimasKovas <[email protected]>
    Co-authored-by: ijon <[email protected]>
    Co-authored-by: vporyadke <[email protected]>
    Co-authored-by: kruall <[email protected]>
    Co-authored-by: ivanmorozov333 <[email protected]>
    Co-authored-by: Alexander Rutkovsky <[email protected]>
    Co-authored-by: ildar-khisambeev <[email protected]>
    Co-authored-by: nsofya <[email protected]>
    Co-authored-by: nsofya <[email protected]>
    Co-authored-by: Sofya Novozhilova <[email protected]>
    Co-authored-by: Олег <[email protected]>
    Co-authored-by: Ivan Morozov <[email protected]>
    Co-authored-by: Andrei Rykov <[email protected]>
    Co-authored-by: qyryq <[email protected]>
    Co-authored-by: Daniil Cherednik <[email protected]>
    Co-authored-by: Aleksei Borzenkov <[email protected]>
    Configuration menu
    Copy the full SHA
    1339035 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2024

  1. Configuration menu
    Copy the full SHA
    20c3a09 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2024

  1. Configuration menu
    Copy the full SHA
    5dbb7c6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3f7e472 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a355430 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    49e8858 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9242688 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2024

  1. Configuration menu
    Copy the full SHA
    77ab287 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6ba01d9 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2024

  1. Configuration menu
    Copy the full SHA
    ec0e415 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    92c5497 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e9c10b4 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2024

  1. Configuration menu
    Copy the full SHA
    baf13aa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cd38084 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4ed949f View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

  1. Configuration menu
    Copy the full SHA
    80c100f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    05c091d View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2024

  1. Configuration menu
    Copy the full SHA
    80faa0c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b3bb4fc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bf20799 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2024

  1. Configuration menu
    Copy the full SHA
    cc5295f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0d291e2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0fd1389 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2024

  1. Configuration menu
    Copy the full SHA
    b8d7c3a View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

  1. Olap perf to 24-2 (ydb-platform#5950)

    Co-authored-by: ivanmorozov333 <[email protected]>
    zverevgeny and ivanmorozov333 authored Jul 1, 2024
    Configuration menu
    Copy the full SHA
    f173d0f View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

  1. Configuration menu
    Copy the full SHA
    9d04ce3 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2024

  1. Configuration menu
    Copy the full SHA
    7e83af2 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2024

  1. Configuration menu
    Copy the full SHA
    dfc8e0f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    736a48a View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2024

  1. Configuration menu
    Copy the full SHA
    d23fc6e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e160dd7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    410a6dd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    98858b7 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2024

  1. Configuration menu
    Copy the full SHA
    979d449 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2024

  1. Configuration menu
    Copy the full SHA
    640af98 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2f4c86d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ef7b8bc View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2024

  1. Configuration menu
    Copy the full SHA
    28859b5 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2024

  1. 24-2: Fix bugs in: change exchange split, removing schema snapshots &…

    … emitting of resolved timestamps (ydb-platform#6615)
    CyberROFL authored Jul 14, 2024
    Configuration menu
    Copy the full SHA
    090c0ad View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2024

  1. Changed memory calculation for TEvFreeItems (merge from main ydb-plat…

    …form#6625) (ydb-platform#6695)
    
    Co-authored-by: mregrock <[email protected]>
    Co-authored-by: Egor Kulin <[email protected]>
    3 people authored Jul 16, 2024
    Configuration menu
    Copy the full SHA
    5ec8b8c View commit details
    Browse the repository at this point in the history
  2. Merge UUID related fixes for export (ydb-platform#6697)

    Co-authored-by: Semyon Danilov <[email protected]>
    dcherednik and SammyVimes authored Jul 16, 2024
    Configuration menu
    Copy the full SHA
    0abd28e View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2024

  1. Merge from 24-2-4-analytics-2 (ydb-platform#6774)

    Co-authored-by: Tony-Romanov <[email protected]>
    Co-authored-by: ivanmorozov333 <[email protected]>
    3 people authored Jul 18, 2024
    Configuration menu
    Copy the full SHA
    696b497 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ef60ef3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1a59bb5 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. Configuration menu
    Copy the full SHA
    db03207 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c934c0a View commit details
    Browse the repository at this point in the history
  3. 24-2: schemeshard: reject operations with too big local tx commit (yd…

    …b-platform#6760) (ydb-platform#6850)
    
    merged ebee36a from main
    
    Add commit redo size check for successfully ignited operations as a precaution measure to avoid infinite loop of schemeshard hitting local tx commit redo size limit, restarting, attempting to propose persisted operation again, hitting commit redo size limit again, restarting and so on.
    
    This could happen with inherently massive operations such as copy-tables used as a starting step of database export/backup.
    
    Coping large number of tables with huge number of partitions can result in so large TTxOperationPropose local transaction that its size would hit the limit imposed by the tablet executor. Tablet violating that limit is considered broken and will be immediately stopped. See ydb/core/tablet_flat/flat_executor.cpp, NTabletFlatExecutor::TExecutor::ExecuteTransaction().
    
    KIKIMR-21751
    ijon authored Jul 22, 2024
    Configuration menu
    Copy the full SHA
    80bf6ef View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2024

  1. Configuration menu
    Copy the full SHA
    b044918 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2024

  1. Configuration menu
    Copy the full SHA
    00126fe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4eb6288 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2024

  1. Configuration menu
    Copy the full SHA
    1cbae05 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    546620e View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. Configuration menu
    Copy the full SHA
    81ddfd5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b1c552b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    43079bb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9908fdd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c1bd94c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    921d67c View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2024

  1. Configuration menu
    Copy the full SHA
    f5c8236 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. Configuration menu
    Copy the full SHA
    c68c520 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. Configuration menu
    Copy the full SHA
    20af1f5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b5c55a4 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Configuration menu
    Copy the full SHA
    2d3a63b View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2024

  1. Configuration menu
    Copy the full SHA
    b665ef7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7af4fdf View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. Configuration menu
    Copy the full SHA
    e098cea View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5d0978a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7a54545 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2024

  1. Configuration menu
    Copy the full SHA
    96bcf2e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    27ed671 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. Configuration menu
    Copy the full SHA
    3e82d9a View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2024

  1. Configuration menu
    Copy the full SHA
    50d35f9 View commit details
    Browse the repository at this point in the history
  2. Fix TNodeRegistrationResult (ydb-platform#7815)

    (cherry picked from commit 5851c81)
    UgnineSirdis committed Aug 16, 2024
    Configuration menu
    Copy the full SHA
    b8096fa View commit details
    Browse the repository at this point in the history
  3. Support client cert in WhoAmI (ydb-platform#7816)

    (cherry picked from commit c26bd91)
    UgnineSirdis committed Aug 16, 2024
    Configuration menu
    Copy the full SHA
    dec6996 View commit details
    Browse the repository at this point in the history
  4. Config option for node registration token (ydb-platform#7754)

    (cherry picked from commit 0ce24a5)
    UgnineSirdis committed Aug 16, 2024
    Configuration menu
    Copy the full SHA
    1060128 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4a5d67e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e870050 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2024

  1. Merge pull request ydb-platform#7940 from UgnineSirdis/stable-24-2-mt…

    …ls-features
    
    Merge mTLS features to stable-24-2
    UgnineSirdis authored Aug 20, 2024
    Configuration menu
    Copy the full SHA
    54e5a53 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2024

  1. asan fix

    StekPerepolnen committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    4070649 View commit details
    Browse the repository at this point in the history