summaryrefslogtreecommitdiffstats
path: root/yt/cpp
Commit message (Collapse)AuthorAgeFilesLines
* Don't ignore backoff and pass actual exception in Retry() (#3664)Savchenko Nadezhda2024-04-1816-44/+77
|
* Fix more problems with RetryfulWriterV2ermolovd2024-04-175-20/+43
| | | | 404e999bcffb20d5497161a98f48f566b5245704
* BufferMemory usage for retryful writer v2ermolovd2024-04-132-0/+7
| | | | ca66c0e73475f3596f6fb2e4e655f2ec378a71a9
* Fix crash in retryful writer v2ermolovd2024-04-121-2/+2
| | | | d95cdb95b36efff7cbf942996a10ee4ff755bbfc
* YT-18503: Mirror Cypress Tx to Sequoia Groundkvk19202024-04-072-1/+15
| | | | e6d585180289325f8082f42f85a60478194ba266
* Fix preedirs yt/cpp/mapreduce/library/table_schemanadya022024-04-045-122/+0
| | | | | fix preedirs 6bb186d9bd0ececb764c3e8596d8360098ad5124
* YT: Apply aliasing rules in CreateClientImplpechatnov2024-04-041-3/+1
| | | | | Поддерживаю алиасинг урлов для функции NYT::CreateClient c111a561639e4c8fdd73d9df66f41ec29e4dbe5e
* Cosmetic import_tablenadya022024-04-023-0/+106
| | | | | mv 6604fca1567d9e8ecae8905f5eaed912cb7c475d
* Use async tx pinger by default once againermolovd2024-04-011-1/+1
| | | | 5c990fdee5899ef1cfcc5429f3631998277cd218
* Fix commentermolovd2024-03-241-0/+1
| | | | d547e94dc63865b96a5cdfbe9866d87b11a57193
* YT-18458: Introduce wide types into mapreduce interfacewhatsername2024-03-215-0/+57
| | | | 7ae047ef618cc44d7dd3e817dc27f2336d9e38c3
* Support building yt/cpp and yt/yt/core with vanilla protobufGrigory Reznikov2024-03-198-39/+62
| | | | | | | | | | | | | | After this PR yt/cpp and yt/yt/core are possible to be built both with Arcadia protobuf (that uses TString as a string) and vanilla protobuf (that uses std::string as a string). To achieve so, a couple of interoperability primitives are introduced. * `TProtobufString` is an alias to protobuf string type, i.e. it can be `TString` or `std::string` depending on the protobuf implementation. * `IsVanillaProtobuf` and `IsArcadiaProtobuf` are the constexpr boolean values that allow to check protobuf implementation both in the compile time and runtime. The most challenging interoperability issue solved here is a string copy between protobuf message and C++ code that has a form of `TString str = msg.str()`. This code works perfect with Arcadia protobuf but does not work with vanilla protobuf. To solve it, a previously introduced primitive `FromProto<TString>` is used. This expression makes the most efficient cast possible between protobuf string and C++ string. Internally, it is just a copy in both cases. Since TString is CoW by default, this expression is almost zero-cost (actually it's just one atomic operation), so no degradation is expected for YTsaurus server builds. The most hot code is handled differently to avoid even atomic operations (see `GetRequestTargetYPath`). In case of vanilla protobuf string is copied, however there are no places in C++ SDK where it might be a problem. If such issues would appear, performance-critial code can be rewritten in `GetRequestTargetYPath`-style. --- 1a6f3e02cb6e83915102c24b73bc8734f6a48e74 Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/466
* YT-21141 Avoid content deduplication for files under 10MBorlovorlov2024-03-184-5/+12
| | | | febae4e49cd0f600bf21616025f210e99235cfdc
* Intermediate changesrobot-piglet2024-03-132-0/+7
|
* add job_profile.cppuzhas2024-03-101-0/+141
| | | | 8571dcd93f2c4adc97e84f5a92373149b0d6e0f9
* Intermediate changesrobot-piglet2024-03-101-5/+5
|
* Intermediate changesrobot-piglet2024-02-271-1/+33
|
* Intermediate changesrobot-piglet2024-02-151-1/+1
|
* Intermediate changesrobot-piglet2024-02-123-22/+10
|
* Intermediate changesrobot-piglet2024-02-071-4/+3
|
* Intermediate changesrobot-piglet2024-01-303-12/+0
|
* Intermediate changesrobot-piglet2024-01-251-0/+13
|
* YDB Import 552robot-ydb-importer2024-01-251-11/+4
|
* erm: Add new version for `@yatool/prebuilder`: `0.5.1` and set `0.5.1` as ↵robot-erm2024-01-259-8/+36
| | | | | | default Executed command: `./erm --verbose --profile update @yatool/prebuilder`
* feat contrib: aiogram 3armenqa2024-01-1963-2415/+0
| | | | Relates: https://st.yandex-team.ru/, https://st.yandex-team.ru/
* Library import 7 (#937)AlexSm2024-01-1112-105/+105
|
* Library import 5, delete go dependencies (#832)AlexSm2024-01-041-2/+2
| | | | | * Library import 5, delete go dependencies * Fix yt client
* Library import 2 (#639)AlexSm2023-12-221-5/+1
|
* External build system generator release 65robot-ya-builder2023-12-0510-30/+30
| | | | Update tools: yexport, os-yexport
* Increase timeout to decrease test flapsermolovd2023-12-051-2/+3
|
* ROREN-48: Use single table writer in TWriteProtoParDowhatsername2023-12-012-1/+41
|
* [yt/cpp/mapreduce] YT-20588: Add more logs for readers and fix client_reader ↵nadya732023-11-282-3/+7
| | | | retries
* YT-19269: table writer implementation that doesn't wait for complete buffer ↵ermolovd2023-11-2815-13/+657
| | | | before sending to network
* ROREN-48: Support multi table proto readwhatsername2023-11-282-7/+15
|
* YT-20315: Support retries of cross cell copyingnadya022023-11-245-8/+93
| | | | | | add options YT-20315: Support retries of cross cell copying
* Fix serialization of decimal type in TTableSchemaEgor Chunaev2023-11-233-4/+60
| | | | | | | | | | | | I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en Fix for https://github.com/ytsaurus/ytsaurus/issues/173 --- Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/174 Co-authored-by: ermolovd <[email protected]>
* Revert "YT-20315: Support retries of cross cell copying"ermolovd2023-11-235-93/+8
| | | | | This reverts commit 9b45f88f366c2a170ab826922dd6eeaa64ea4192, reversing changes made to d6dc5a658da5b61fd71e72f1a60479989c5c64c5.
* YT-18863 Support 'deleted' field in NYT::TTableSchemaorlovorlov2023-11-223-0/+17
|
* YT-20315: Support retries of cross cell copyingnadya022023-11-225-8/+93
|
* Fix ussues for SingleTableJobWriterwhatsername2023-11-212-15/+13
|
* add darwin-arm64 CMakeListsdcherednik2023-11-2020-0/+458
|
* Move MaxFailedJobCount to TOperationSpecBaseermolovd2023-11-161-3/+3
|
* YT-20029: Support url schema for YT_PROXYwhatsername2023-11-152-7/+29
| | | | | Example YT_PROXY=https://freud.yt.yandex.net
* YT: fix duplicated proxy in url for write_file requestslysheva2023-11-151-1/+4
| | | | YT: fix duplicated proxy in url for write_file request
* Comment about function deprecationermolovd2023-11-131-1/+6
|
* ROREN-48: Introduce SingleTableJobWriterwhatsername2023-11-132-20/+83
|
* Intermediate changesrobot-piglet2023-11-102-6/+52
|
* Add possibility to create groups in C++ clientermolovd2023-11-081-0/+1
|
* add acquire buffer size to parallel file writeralxmopo3ov2023-10-313-1/+13
| | | | | | | | test with acquire ram buffers Add test on write with acquiring hard limit on file writer Implement acquire ram buffers setting for parallel file writer
* YT: yamaking missing cppleasid2023-10-286-0/+6
|