aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update YFM for ya make to latest versionrobot-infraui-ci2025-02-111-4/+4
| | | | | Update YFM for ya make to latest version commit_hash:d6cd544fc904bd6927dfa0481090b4c888e2a781
* Change "build/platform/yfm/ya.make"3y3k02025-02-111-4/+4
| | | | commit_hash:2ed018eb3255e3e6388532ede8473660a0f26ab2
* Intermediate changesrobot-piglet2025-02-119-37/+44
| | | | commit_hash:f3acde65f4eb25503f414d5262f52b496123bd96
* YT-24071: Fix propagating storage switchlukyan2025-02-112-29/+27
| | | | commit_hash:3ea26303230e115d67b95f4339f1d7bed992ee70
* Update YFM for ya make to latest versionrobot-infraui-ci2025-02-111-4/+4
| | | | | Update YFM for ya make to latest version commit_hash:aa633037241f5aad5ecfafde6acea918f3299fbc
* Intermediate changesrobot-piglet2025-02-112-2/+22
| | | | commit_hash:f1391dcd8e93065fec3a7cc60434b143e4ef2746
* Support SHOW CREATE TABLE statementshumkovnd2025-02-1110-1/+150
| | | | commit_hash:01d41da47d238ae4a86642bd8cdb8c245d9c503a
* YQL-19424: Use WideStream instead of WideFlow in WideToBlocks computation nodeimunkin2025-02-1128-390/+466
| | | | commit_hash:0c0bfb556ff1f51f3293899c0364cd56c3965c41
* Intermediate changesrobot-piglet2025-02-111-1/+0
| | | | commit_hash:2ae1939071b5b99cbe5b10aab160e8ba719e4dba
* Antlr4 by defaultvvvv2025-02-112-8/+4
| | | | commit_hash:4bb3d1eae5900487d115a0fab098dd0b7b240641
* Remove deps on pandasmaxim-yurchuk2025-02-115274-2257399/+0
| | | | | | | | | | <https://github.com/ydb-platform/ydb/pull/14418> <https://github.com/ydb-platform/ydb/pull/14419> \-- аналогичные правки в gh Хочу залить в обход синка, чтобы посмотреть удалится ли pandas в нашей gh репе через piglet commit_hash:abca127aa37d4dbb94b07e1e18cdb8eb5b711860
* Add Security tags in replay datamrlolthe1st2025-02-111-7/+22
| | | | | Add Security tags in replay data commit_hash:e5769db2bb2ad2c74abced100f3e178bce4697a3
* introduce batching for concatenateermolovd2025-02-112-12/+46
| | | | commit_hash:9db24e2e676d80f2972897ed8f5a9b84c4f8628c
* Use ${Python3_EXECUTABLE} in YT custom-runsdimdim112025-02-111-1/+1
| | | | | Use in YT custom-runs commit_hash:3a9e630b46d1d63a286ae18ce0e6d8fc680fe2ef
* Untitled commitpg2025-02-113-6/+24
| | | | commit_hash:738c0e3b90d7c428015a34c302c8bcba5b98b759
* Use custom_runs in CMakedimdim112025-02-118-164/+124
| | | | | Use custom_runs in CMake commit_hash:f8c16b70cc679bd47e7f053c28a3738a8e2a3b8d
* Disable symbols redefining for MAPSMOBI_BUILD_TARGETmikhnenko2025-02-113-3/+14
| | | | commit_hash:9424e37bc99e6d61ff8496bf319539c6f1786669
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2025-02-111-1/+1
| | | | commit_hash:d0427d7119c6d792a6a6a1723db7cea948a3d31f
* YT-22975: Per-row sequencerponasenko-rs2025-02-114-5/+98
| | | | | | | | | | | | | | | | Create per-tablet notion of a serialization type. This option can be changed only on unmounted dynamic table. New per-row serialization type could be enabled only on sorted dynamic tables and could be useful only for shared write locks. If per-row serialization type is enabled rows are serialized using per-row set of prepared and heap of serializing transactions on sorted store manager level. Old serialization only allows transaction to be serialized whole using per-cell set of prepared and heap of serializing transactions which means that non-conflicting prepared transactions are interfering during serialization. Most of changes are disabled as long as serialization type kept default (coarse). But wire commands are now kept in memory in a parsed form and save to snapshot has another bound using timestamps. * Changelog entry Type: feature Component: dynamic-tables Add option to decrease serialization time by serializing transaction within each lock group in each row separately. commit_hash:2c6bada00254a893c32b50e5b20d4d4bbbdd962b
* [util] GmTimeR: use LUT for the tm_yday -> tm_mday conversionswarmer2025-02-111-70/+31
| | | | | Replacing binary search with a look-up table. The performance of which does not depend on the branch predictor, and conversion works equally fast for any dates. commit_hash:fefe9665d0d4b51c2ae09ec2b2816aed30caa57b
* [util] GmTimeR: speedup a bittobo2025-02-101-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | perf before ``` ------------------------------------------------------------------------------- Benchmark Time CPU Iterations ------------------------------------------------------------------------------- BM_GmTimeR 3.61 ns 3.61 ns 194952699 BM_GmTimeRRandom/last_hour 5.04 ns 5.04 ns 136121940 BM_GmTimeRRandom/last_day 5.03 ns 5.03 ns 139883239 BM_GmTimeRRandom/last_month 8.03 ns 8.03 ns 87839823 BM_GmTimeRRandom/last_year 14.9 ns 14.9 ns 46401773 BM_GmTimeRRandom/last_decade 16.9 ns 16.9 ns 41439312 BM_GmTimeRRandom/last_half_centry 16.9 ns 16.9 ns 41225553 ``` perf after ``` ------------------------------------------------------------------------------- Benchmark Time CPU Iterations ------------------------------------------------------------------------------- BM_GmTimeR 3.27 ns 3.27 ns 215390890 BM_GmTimeRRandom/last_hour 4.52 ns 4.52 ns 154869504 BM_GmTimeRRandom/last_day 4.53 ns 4.53 ns 155409964 BM_GmTimeRRandom/last_month 7.24 ns 7.24 ns 96972146 BM_GmTimeRRandom/last_year 13.5 ns 13.5 ns 51957829 BM_GmTimeRRandom/last_decade 15.5 ns 15.5 ns 45192135 BM_GmTimeRRandom/last_half_centry 15.4 ns 15.4 ns 45526906 ``` commit_hash:ac9db56d93a25c3a3018cfbb6bc5800da3d001ee
* Contain command processing error reports, take 2, configurationvpozdyayev2025-02-101-0/+1
| | | | commit_hash:4b1f61b0e92742a829e0b3556f02b46b7e3631a0
* YT-24133: Introduce TAllocationGroupResources and send grouped allocation ↵eshcherbin2025-02-102-2/+15
| | | | | | resources to scheduler commit_hash:e175d842d02741748f030a47e11588c9776e2bb6
* Fix PhysicalOptimizer-MultiReduceFieldsSubsetudovichenko-r2025-02-101-4/+4
| | | | commit_hash:1e34b093f0bfce863588a645b6324aa5a8d966cd
* YQL-19555: Purge YQL_UDF_YDB_TEST moduleimunkin2025-02-101-17/+0
| | | | commit_hash:dddba661590f9b89006208d7c8b2b9c8496929f9
* go1.23 add sources, no switch yetpsydvl2025-02-101-1/+4
| | | | | | | | Покладка исходников без переключения версии Важные изменения в файле `contrib/go/_std_1.23/.yandex_meta/build.ym` Варка с плашкой (проверка на поломки) будет происходить в PR:7442358 после пересборки yolint поверх 1.23 commit_hash:1a66dac577f2507438f15c7b73ee5d404dc51ea1
* Enable building cpuinfo, ruy, spdlog, libcxx on WASM platformsvchigrin2025-02-101-6/+6
| | | | commit_hash:fc69825ebf1f26ae0fc6f39a92f2c42918e1c635
* Update contrib/libs/lzma to 5.6.4robot-contrib2025-02-1010-19/+92
| | | | commit_hash:509ecf098c2bdb4bf7273b95ff459ee74bd2a6bf
* Improve Unordered over Sort optimizeraneporada2025-02-1012-2/+186
| | | | commit_hash:943290d931b71f917670ac7a420f8eb736a3f5f5
* Nomore cuda 12.6.0. Use 12.6.3 insteadmikhnenko2025-02-101-1/+1
| | | | commit_hash:2e37e18191b9d80f543acfd41784710185f0c440
* feat grpc: Request body is malformed when using retryPolicy along with the ↵leonidlazarev2025-02-102-1/+36
| | | | | | | | | gzip compression Patch for issue 37742: Request body is malformed when using retryPolicy along with the gzip compression Tests: протестировано в тестинге commit_hash:d80d29f768bc26e1bcf6afa64b05cea476d4007d
* Intermediate changesrobot-piglet2025-02-101-1/+0
| | | | commit_hash:0fd8ddf7d53d3ac221cea10de93a81b4ab5a0c4a
* Update contrib/libs/libmysql_r to 8.0.40thegeorg2025-02-101-0/+1
| | | | commit_hash:0eb079bae1f0ce7698007f0ee5260bfcb2b8f91b
* Make all signature generators and validators friends of TSignaturepavook2025-02-105-35/+13
| | | | | | This commit replaces the weird solution with getters of private fields in generator and validator base classes. commit_hash:739f92ff784c82c59c6efcdc9293c9d18e7ae51f
* Intermediate changesrobot-piglet2025-02-1019-165/+806
| | | | commit_hash:a86388a6e90c994ada2733ee6dcbdeabb8baa708
* Fix unaligned load/store UB in bus and zstd compressionnadya732025-02-104-63/+5
| | | | commit_hash:55e574599005f5286f646ebba93d5550325708bc
* YQL-19553 CLI for yql lintervvvv2025-02-1016-38/+291
| | | | | init commit_hash:a21a71769ad2095e40909c69255a3cf38eabc179
* Intermediate changesrobot-piglet2025-02-101-0/+12
| | | | commit_hash:e0f0586ef3cc46dbd649319b49a2cedf797a226d
* RAPIDJSON_HAS_STDSTRING=1 by defaultilnurkh2025-02-101-1/+1
| | | | commit_hash:5598912aa715779c0a460fc7f071eed9055a9973
* YQL-19535: Provide block implementations for some functionsatarasov52025-02-1033-245/+865
| | | | | | | YQL-19535: Provide block operations YQL-19535: Specify tests for blocked operations commit_hash:032aa58fc3f44f0eba3d9b38def021178da949ce
* Enrich timed out request with timeout error codeakozhikhov2025-02-101-2/+4
| | | | commit_hash:e720e73443cf109803beebf1ce192e227428ff57
* add ParseDatabaseSettings in provdier/commonflown4qqqq2025-02-102-0/+37
| | | | | В прошлом ПРе добавлял ALTER DATABASE, но, когда началась имплементация в серверной части, понял, что нужно добавить код в provider'е commit_hash:e0ebd6efff34ca62a77286b23f61be21e501b999
* Use coordinator and worker in fmrGatewaycdzyura1712025-02-1035-11/+1710
| | | | | use coordinator and worker in fmrGateway commit_hash:a0977459dcbe041e5330c8959152be40fe18eea6
* Automatic release build for test_tool, ya_bin, os_ya, os_test_toolrobot-ya-builder2025-02-104-20/+22
| | | | | Update tools: test_tool, ya_bin, os_ya, os_test_tool commit_hash:bee6f5fde5f56c940811e33274c0ad8109821a11
* YQL-19535: Fix wrong scalar conversionatarasov52025-02-102-2/+26
| | | | commit_hash:997d731b3d106421ee68aa2e3e18f18b03ea7a66
* Automatic release build for ymake, os_ymakerobot-ya-builder2025-02-103-10/+20
| | | | | Update tools: ymake, os_ymake commit_hash:310af2da03d9a7b64002230263ad37bde0752a80
* Intermediate changesrobot-piglet2025-02-10109-12771/+14389
| | | | commit_hash:37322e8223adff96fffe40c174e3b150cdb2a5ad
* Intermediate changesrobot-piglet2025-02-097-18/+49
| | | | commit_hash:9d5db254f665362d1d5bfe280aa0646f83e28474
* Intermediate changesrobot-piglet2025-02-0926-127/+233
| | | | commit_hash:9f477c101838068c76e0d37a313a5e79a2888982
* YT-23616: Move RequestWithRetry to commonhiddenpath2025-02-0815-96/+92
| | | | commit_hash:d85d90291b5eb4cf0c68c9c1c2387124cb9927b2