aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* logbroker out: use CloseHandleraleksei-le2024-08-181-0/+7
| | | | | Всегда ожидает Close event от СДК, но проверяет таймаут ожидания. Проверка активности соединения, по таймауту сделает реконект. Немного снижено потребление cpu. 4c41128e833c27cea3d1eb0a90c086d1a328f282
* Update contrib/restricted/boost/config to 1.86.0robot-contrib2024-08-182-4/+4
| | | | 24a2930acfb4a2f49aa83ac8072982c36b58b861
* YT-22593: Switch to std::string in TSecurityManagerbabenko2024-08-184-10/+27
| | | | 67e522b085acbd31d2e74ebee17799f8d6087da4
* %d -> %vbabenko2024-08-183-3/+5
| | | | 364336e60306fcbd143a1652ba234cb9d3ece8f6
* Set SpacesInLineCommentPrefix to 1 in /utildmasloff2024-08-17100-305/+305
| | | | | Set SpacesInLineCommentPrefix to 1 in /util 3853f9ec5143722c1bebd8dc0ffc9b61a6c17657
* Intermediate changesrobot-piglet2024-08-1714-28/+28
|
* Update contrib/restricted/boost/lexical_cast to 1.86.0robot-contrib2024-08-176-296/+195
| | | | c3619440b31905731e88ad8f27cb90fb5fd9c91a
* Update Python 3 to 3.12.5shadchin2024-08-17118-22471/+22762
| | | | | https://docs.python.org/release/3.12.5/whatsnew/changelog.html#python-3-12-5-final de86cdeacd3a8653b9ec36e87975886fafcf6dc2
* YT-22593: Replace TString with std::string for YTree map keysbabenko2024-08-1711-41/+48
| | | | cfad05c1366e859aadbfc3777aafc13e955757b0
* YT-22157: Add HLL(4) to chunk metaorlovorlov2024-08-1714-10/+629
| | | | | | | | | | | | | | | - Use lower precision to reduce size effect on meta - Put HLL into a separate meta extension TLargeColumnarStatisticsExt - Compress extension data with Zlib - Clear new extension from TVersionedChunkMeta Logic that produces new extension is protected by the following flags: - TChunkWriterOptions::EnableLargeStatistics option - TableWriterEnableLargeStatistics in TOperationSpecBase - TableWriterEnableLargeStatistics in native connection config the flag fill be rolled as a spec template, and as an rpc proxy dynconfig change. 4ca52347756971a47355f95ba17b05675e961c7e
* YT-15939: Replication collocation optionsakozhikhov2024-08-163-9/+28
| | | | bde1508e2f78e25933120823a3bfce2969065497
* Intermediate changesrobot-piglet2024-08-1611-33/+24
|
* Allow to use clang < 13 as a CUDA host compiler (as intended for CUDA < 11.8).akhropov2024-08-161-1/+1
| | | | f8fbe3627553dc1353ece3c098bb5df2ab788b92
* YT-21553: Add long-polling for replication cards cacheosidorkin2024-08-167-3/+51
| | | | 7129a02dcf5cb894b9786834aeb3a0737a53b392
* Update contrib/libs/apache/orc to 2.0.2robot-contrib2024-08-163-4/+4
| | | | 0d57d21dc1144a597e06aef31cda5393837f1e58
* YT: Replace local function with YT_DEFINE_GLOBALbulatman2024-08-161-8/+3
| | | | 09844011ee4a54b01116b906c48f9656d032166b
* Remove fix_elf from link_dyn_libhiddenpath2024-08-161-11/+0
| | | | dfc8799dabb18df54b1ac354a9ceb9c27c2e1be2
* Intermediate changesrobot-piglet2024-08-16722-1/+1445
|
* Export python deepmerge library instead of mergedeep to ↵rekby2024-08-1664-844/+1484
| | | | | | github.com/ydb-platform/ydb for support python2 98bbe613ba94337077da6f6bb9b519768fdef800
* Intermediate changesrobot-piglet2024-08-1634-0/+68
|
* Remove fix-elf from ymake.core.confhiddenpath2024-08-166-3648/+0
| | | | bd2fb0cb2bbfb52feae17c48694ca01ef959bb8f
* feat(npm): npm target with peerzaverden2024-08-1610-27/+180
| | | | 861cdb3f890da6b591920637785f8de1d1267b6e
* check the lifetime bounds of stream adaptersswarmer2024-08-166-10/+10
| | | | f4e1f5605822d2c05fd582aeb7104301b7ca73c7
* Intermediate changesrobot-piglet2024-08-165-9/+9
|
* Update contrib/restricted/boost/program_options to 1.86.0robot-contrib2024-08-152-13/+13
| | | | 5b0ca73a4ff83de015d9402c61d3eba99038ad97
* YT-21233: Split error into error and stripped_error to rid the latter of ↵arkady-e1ppa2024-08-1551-1605/+3156
| | | | | | | | | | | | | | deps on global variables What happened: 1. error contents has been split into stripped_error and error. stripped_error contains the error itself (with attributes for now) and macros; error contains stripped_error and some extensions, namely, functions to get fiberId, hostname and traceid/spanid and all functions used to (de-)serialize error. This means that you cannot print error if you only include stripped_error, therefore you are likely to still require the entire error.h at the moment. 2. Mechanic for gathering origin attributes has been moved to newly created library/cpp/yt/error thus having no dependency on fibers, net or tracing. stripped_error uses these attributes as extendable semi-erased (meaning, you still would have to add a field and recompile the entire thing, but you don't have to introduce an extra dependency) storage for a bunch of attributes 3. Parsing of said attributes is done in error file (and not stripped_error). P.S. So far the plan is to eventually move stripped_error (once dependency on core/ytree/attributes is eliminated) without any actual change to dependency graph of anything outside of core (e.g. you would still have to include misc/error.h to use it). Next step would be re-teaching the error how to print, which would move some more methods from core to the standalone module. After that one could finally depend on the error itself and not the entire core. Annotations: [nodiff:caesar] 66615172181355821241d2e5f8e4a0f15e0ea791
* Intermediate changesrobot-piglet2024-08-15110-0/+220
|
* YT-21993: Check compilation of a refcounted abstract class in Phoenix v2galtsev2024-08-152-1/+17
| | | | 808994a8e6d0f64eb17e639514cf2b4cc3b12f54
* Intermediate changesrobot-piglet2024-08-1519-38/+38
|
* DeprecatedField -> VirtualField; also support saving virtual fieldsbabenko2024-08-158-65/+273
| | | | 488c5618adaa789790af173bbb63fb9354af45a8
* Intermediate changesrobot-piglet2024-08-1510-20/+20
|
* TS_PACKAGE by globvturov2024-08-152-1/+9
| | | | | Добавляем возможность описывать список файлов для TS_PACKAGE с помощью GLOB'ов b10e0775708047bb73326dbce495e367903c3323
* Intermediate changesrobot-piglet2024-08-152-4/+4
|
* Intermediate changesrobot-piglet2024-08-154-8/+8
|
* YT-21942: Automate selection of buffer row countarkady-e1ppa2024-08-152-1/+57
| | | | ee58dd90305b5dd3c29edfc95a3ddb7c2395d2bf
* Move base macroses back to ymake.core.conf - these are not settingsspreis2024-08-152-5/+6
| | | | 146de6d7a3ab889737001e8501cbfb1b4de2913f
* Backport grpc fix (late errno read)maxim-yurchuk2024-08-151-3/+4
| | | | | https://github.com/grpc/grpc/commit/abbaa20223c95255f36a1bc70b3505e9daa006a2 -- коммит который бэкпортится, доп инфа в тикете 66e2b3bb0cc6c90cb9387ff0e5766abd2780b5c7
* supported #DOUBLE_QUOTE# and #BACKSLASH# placeholdersasmyasnikov2024-08-151-1/+6
| | | | | | | | Данный PR - это выжимка из [PR](https://github.com/ydb-platform/ydb/pull/2977) внешнего [контрибьютора](https://github.com/OrlovPavel ). Ему для решения основной задачи (перевод грамматики YQL с ANTLRv3 на ANTLRv4) пришлось поправить файл build/scripts/configure_file.py в проекте github.com/ydb-platform/ydb. Собственно, в проекте YDB запрещено вносить правки в build/..., т.к. эта папка синкается ТОЛЬКО из Аркадии в гитхаб, в обратную сторону синка нет. Из-за этого мы не можем принять PR от внешнего контрибьютора. В качестве решения - я хочу занести данный фикс в Аркадию и дождаться синка из Аркадии в гитхаб, по-rebase-ить PR контрибьютора и тогда его уже можно будет мерджить. Сама проблема, которую решает данный фикс, описана в тикете 158ceea6282b8df7c8b62a43ffece62a8d9f70ca
* YT: Add reserve to container deserializationdgolear2024-08-151-0/+6
| | | | 16d29b1b377145b9464d5280244b000f207c4563
* [yt/yt/core] Add TBoundedAsyncStreamPipenadya732024-08-145-16/+301
| | | | 6aa88a1c73ee8fb7fa669994cefd9bc31065446b
* Intermediate changesrobot-piglet2024-08-14169-2109/+2794
|
* Intermediate changesrobot-piglet2024-08-147-18/+18
|
* Intermediate changesrobot-piglet2024-08-141-1/+1
|
* Exclude blacklists from configure hashdimdim112024-08-141-2/+1
| | | | | Exclude blacklists from configure hash 07196be3efb3ba6e30eaf8c4cffc0751f8b28fed
* Automatic release build for test_tool, os_ya, ya_bin, os_test_toolrobot-ya-builder2024-08-144-20/+24
| | | | | | | | | | From hash: [071be62dac16d3b65f24a5ef1c261b82508a41b2](https://a.yandex-team.ru/arcadia/commit/071be62dac16d3b65f24a5ef1c261b82508a41b2) From revision: [14622029](https://a.yandex-team.ru/arcadia/commit/rXXXXXX) [CI flow](https://a.yandex-team.ru/projects/ya_make/ci/releases/flow?dir=devtools%2Fya&id=release-ya-bin2-ya-bin3-tts&version=457) Flow triggered by user: [say](https://staff.yandex-team.ru/say) Update tools: test_tool, os_ya, ya_bin, os_test_tool 77f3543131819bf559d40c621445098d27d1d8be
* Move some vars to settings.confspreis2024-08-142-24/+26
| | | | de509a9a86b97b4bcfbd95d33c8f9205308ea957
* [yt/yt/core] YT-22539: Add TBoundedNonblockingQueuenadya732024-08-143-5/+248
| | | | 9faaa9fb1ce67dff6871693b7dda3024a9ff2ce9
* (1of3) Refactor opensource replacementdimdim112024-08-142-42/+29
| | | | | Refactor opensource replacement a0c25750dcdcf70f3c41ff614b5b3bcf34b532cf
* Intermediate changesrobot-piglet2024-08-1412-60/+136
|
* Automatic release build for ymake, os_ymakerobot-ya-builder2024-08-143-10/+20
| | | | | | | | | | From hash: [bbcccf6f75c6dada13af51b80ac48408c3af4c03](https://a.yandex-team.ru/arcadia/commit/bbcccf6f75c6dada13af51b80ac48408c3af4c03) From revision: [14627570](https://a.yandex-team.ru/arcadia/commit/rXXXXXX) [CI flow](https://a.yandex-team.ru/projects/ya_make/ci/releases/flow?dir=devtools%2Fya&id=release-ymake&version=217) Flow triggered by user: [dimdim11](https://staff.yandex-team.ru/dimdim11) Update tools: ymake, os_ymake 7f3524a1095192b1870cbecdc1e60288d174e057