Skip to content

Releases: ydb-platform/ydb

YDB Server 24.2.8

21 Sep 11:16
808cff9
Compare
Choose a tag to compare
Long domain name (#9108)

YDB Server 24.1.18

21 Sep 11:15
1339035
Compare
Choose a tag to compare
Merge stable-24-1-16-analytics into stable-24-1 (#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]>

YDB Server 23.4.11

21 Sep 11:13
Compare
Choose a tag to compare
Ydb stable 23-4-11

x-stable-origin-commit: 9cc0616f07997e08c92266a30796bc4ff25aea66

YDB CLI 2.8.0

19 Jan 15:48
ca629fb
Compare
Choose a tag to compare

Released on January 12, 2024. To update to version 2.8.0, select the Downloads section.

Features:

  • Added configuration management commands for the cluster ydb admin config and ydb admin volatile-config.

  • Added support for loading PostgreSQL-compatible data types by ydb import file csv|tsv|json command. Only for row-oriented tables.

  • Added support for directory load from an S3-compatible storage in the ydb import s3 command. Currently only available on Linux and Mac OS.

  • Added support for outputting the results of ydb table query execute, ydb yql and ydb scripting yql commands in the Apache Parquet format.

  • In the ydb workload commands, the --executer option has been added, which allows to specify which type of queries to use.

  • Added a column with median benchmark execution time in the statistics table of the ydb workload clickbench command.

  • (Experimental) Added the generic request type to the ydb table query execute command, allowing to perform DDL and DML operations, return with arbitrarily-sized results and support for MVCC. The command uses an experimental API, compatibility is not guaranteed.

  • (Experimental) In the ydb table query explain command, the --collect-diagnostics option has been added to collect query diagnostics and save it to a file. The command uses an experimental API, compatibility is not guaranteed.

Bug fixes:

  • Fixed an error displaying tables in pretty format with Unicode characters.

  • Fixed an error substituting the wrong primary key in the command ydb tools pg-convert.

Full Changelog: CLI_2.7.0...CLI_2.8.0

YDB Server 23.3.17

03 Jan 12:42
Compare
Choose a tag to compare

Bugfixes:

  • Fix InFlightTxCount become negative during split/merge
  • Allow compatibility between non-stable versions of different applications
  • Various stability improvements (segfault, handle balancer and boot queue events in StateInit, data race when reporting issue counters, memory leak in TRopeArena)
  • CPU overutilization in case of numerous topic consumers
  • Fix import multiple converted csv columns
  • Fix mem table merge when writing over committed deltas in tablets
  • Check errors during read_table_scan and export
  • Throttle datashard log messages

Features:

  • Enable ANSI settings for generic query
  • DML logging
  • Request unit trailing header for ScanQuery/ScanYql sctipts
  • Grpc KV api
  • Change default metering mode of topics to request units
  • Pqv0 support on server side
  • Allow to maintain unavailable nodes in tablets checker
  • Allow to reboot unavailable node
  • Add Lazy Histogram for grpc request

YDB CLI 2.7.0

17 Jan 16:12
Compare
Choose a tag to compare

Released on October 23, 2023. To update to version 2.7.0, select the Downloads section.

Features:

Bug fixes:

Full Changelog: CLI_2.6.0...CLI_2.7.0

YDB Server 23.3.13

21 Nov 13:07
Compare
Choose a tag to compare

YDB CLI 2.6.0

17 Jan 16:08
Compare
Choose a tag to compare

Released on September 7, 2023. To update to version 2.6.0, select the Downloads section.

Features:

Bug fixes:

Full Changelog: CLI_2.5.0...CLI_2.6.0

YDB Server 23.2.12

08 Sep 11:26
Compare
Choose a tag to compare

Functionality:

  • (Experimental) Implemented visibility of own changes. With this feature enabled you can read changed values from the current transaction, which has not been committed yet. This functionality also allows multiple modifying operations in one transaction on a table with secondary indexes. To enable this feature add enable_kqp_immediate_effects: true under table_service_config section into configuration file.
  • (Experimental) Implemented read iterators. This feature allows to separate reads and computations. Read iterators allow datashards to increase read queries throughput. To enable this feature add enable_kqp_data_query_source_read: true under table_service_config section into configuration file.

Embedded UI:

  • Navigation improvements:
    • Diagnostics and Development mode switches are moved to the left panel.
    • Every page has breadcrumbs.
    • Storage groups and nodes info are moved from left buttons to tabs on the database page.
  • Query history and saved queries are moved to tabs over the text editor area in query editor.
  • Info tab for scheme objects displays parameters using terms from CREATE or ALTER statements.
  • Added column tables support.

Performance:

  • For scan queries, you can now effectively search for individual rows using a primary key or secondary indexes. This can bring you a substantial performance gain in many cases. Similarly to regular queries, you need to explicitly specify its name in the query text using the VIEW keyword to use a secondary index.
  • (Experimental) Added an option to give control of the system tablets of the database (SchemeShard, Coordinators, Mediators, SysViewProcessor) to its own Hive instead of the root Hive, and do so immediately upon creating a new database. Without this flag, the system tablets of the new database are created in the root Hive, which can negatively impact its load. Enabling this flag makes databases completely isolated in terms of load, that may be particularly relevant for installations, consisting from a roughly hundred or more databases. To enable this feature add alter_database_create_hive_first: true under feature_flags section into configuration file.

Bug fixes:

  • Fixed a bug in the autoconfiguration of the actor system, resulting in all the load being placed on the system pool.
  • Fixed a bug that caused full scanning when searching by prefix of the primary key using LIKE.
  • Fixed bugs when interacting with datashard followers.
  • Fixed bugs when working with memory in column tables.
  • Fixed a bug in processing conditions for immediate transactions.
  • Fixed a bug in the operation of iterator-based reads on datasharrd followers.
  • Fixed a bug that caused cascading reinstallation of data delivery sessions to asynchronous indexes.
  • Fixed bugs in the optimizer for scanning queries.
  • Fixed a bug in the incorrect calculation of storage consumption by Hive after expanding the database.
  • Fixed a bug that caused operations to hang on non-existent iterators.
  • Fixed bugs when reading a range on a NOT NULL column.
  • Fixed a bug in the replication of VDisks.
  • Fixed a bug in the work of the run_interval option in TTL.

Full Changelog: 23.1.26...23.2.12

YDB CLI 2.5.0

27 Jul 14:15
Compare
Choose a tag to compare

Released on June 20, 2023. To update to version 2.5.0, select the Downloads section.

Features

  • For the ydb import file command, a parameter --timeout has been added that specifies the time within which the operation should be performed on the server.
  • Added a progress bar in commands ydb scheme rmdir --recursive and ydb import file.
  • Added the command ydb workload kv run read-rows, which loads the database with requests to read rows using a new experimental API call ReadRows (implemented only in the main branch), which performs faster key reading than select.
  • New parameters --warmup-time, --percentile, --topic have been added to the ydb workload topic, setting the test warm-up time, the percentile in the statistics output and the topic name, respectively.
  • Added the ydb workload tpch command to run the TPC-H benchmark.
  • Added the --ordered flag in the command ydb tools dump, which preserves the order by primary key in tables.

Performance

  • The data loading speed in the ydb import file command has been increased by adding parallel loading. The number of threads is set by the new parameter --threads.
  • A performance of the ydb import file json command has been increased by reducing the number of data copies.

Full Changelog: CLI_2.4.0...CLI_2.5.0