summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/client/operation.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [yt/cpp/mapreduce] YT-23616: Move Transaction and Operation methods to ↵hiddenpath2024-12-161-27/+69
| | | | | | THttpRawClient commit_hash:b093be44005f3d9da9779444cbbc32b93f7372ee
* Remove excessive mutationId argumenthiddenpath2024-12-141-2/+1
| | | | commit_hash:4f4f0d451f00b683572fc77efbae9119e2ee40de
* yt/cpp/mapreduce: move Create to THttpRawClienthiddenpath2024-12-131-21/+33
| | | | commit_hash:9ca8428c322034064576bb56f74e704425ce7de9
* yt/cpp/mapreduce: move Get, TryGet, Exists, MultisetAttributes to THttpRawClienthiddenpath2024-12-131-8/+23
| | | | commit_hash:bd2228f98fa92de408ca850f9bc1608fdf99e7f5
* YT-23442: set nirvana context in operation specermolovd2024-11-291-10/+28
| | | | commit_hash:0c8ecc6b08a1735f8aa861055d52c1ba152aa710
* YT-23568: Skip checking table existence if table is located on different clusterv-a-zolotov2024-11-281-0/+1
| | | | commit_hash:b5a8081be739437ebced2083440e22295ce64255
* YT-23568: `create` attribute in RichYPathermolovd2024-11-261-6/+9
| | | | | | | | | | * Changelog entry Type: feature Component: cpp-sdk Add support for `create` attribute in RichYPath. Don't create paths explicitly if `create` attribute is specified. commit_hash:52e77ce4cf5e21fae6d6e510ffb0edba35ec2a1d
* YT-23422: do not write command line into attributes of operationsermolovd2024-11-231-4/+2
| | | | | | | | | * Changelog entry Type: feature Component: cpp-sdk C++ SDK doesn't write launching process command line to operation attributes. commit_hash:c50cbc2a31f5a3b733833767fe94019a0d7615d3
* add nirvana block url to started by blockermolovd2024-11-091-53/+94
| | | | commit_hash:0468f946ddc0d3a27c085e6e5ec4ce8121c4024d
* Use lowercase Data, Empty and Size in some code-generationsmikhnenko2024-10-281-6/+6
| | | | | [nodiff:caesar] commit_hash:13085d3e582f02071258318908bea6ef9c424fcb
* Use lower case for TString methods Data, Size and Empty in ysite, yt, ytech, ↵mikhnenko2024-10-091-2/+2
| | | | | | | | yweb Если вы считаете, что это pr сломал ваши тесты - смело откатываете.\ Если проблема нетривиальная - приходите в [саппорт](https://nda.ya.ru/t/a1JIzEbo78mtfQ) commit_hash:dee982cfbb70b978ace5417b4619e78212000179
* GLOBAL OTBIVKA FIX ୧༼ಠ益ಠ༽୨pavook2024-08-221-1/+1
| | | | | | | | | | Make all "otbivka" exactly 80 symbols. Command: ```bash sed -i 's#^//////////////\+$#////////////////////////////////////////////////////////////////////////////////#g' $(find yt \( -name '*.cpp' -or -name '*.h' -or -name '*.proto' \) -not -path 'yt/yt/experiments/private/tabletvis/imgui/*') ``` 30a0ba9f42ba1909d3cee11fe12bba14c7c8b039
* YT-21308: Minor codestyle tweakapachee2024-06-171-3/+3
| | | | | Fix indent a6a3500f712f343a6127243f63bb9d798e358fb3
* YT-21308: Add redirect_stdout_to_stderr flag for C++ clientapachee2024-05-241-1/+2
| | | | | Adds redirect_stdout_to_stderr spec option for operations that allows writing to stdout as if it was stderr. 6a8ac5f21955a79848d86f72715628c7b8bb65c4
* Library import 7 (#937)AlexSm2024-01-111-9/+9
|
* Y_VERIFY->Y_ABORT_UNLESS at ^ytilnurkh2023-10-091-19/+19
| | | | https://clubs.at.yandex-team.ru/arcadia/29404
* support disk_request in user job specermolovd2023-09-281-0/+17
|
* Add `layer_paths` user job spec option to the C++ interfacegaltsev2023-09-061-0/+3
|
* YT-19445: do not write sort_by if it's emptyermolovd2023-08-091-1/+3
|
* YT-19210: expose YQL shared library for YT.max422023-07-291-0/+2981
| | | | After this, a new target libyqlplugin.so appears. in open-source cmake build. Diff in open-source YDB repo looks like the following: https://paste.yandex-team.ru/f302bdb4-7ef2-4362-91c7-6ca45f329264
* Revert "YT-19324: move YT provider to ydb/library/yql"max422023-06-301-2981/+0
| | | | This reverts commit ca272f12fdd0e8d5c3e957fc87939148f1caaf72, reversing changes made to 49f8acfc8b0b5c0071b804423bcf53fda26c7c12.
* YT-19324: move YT provider to ydb/library/yqlmax422023-06-301-0/+2981
This commit is formed by the following script: https://paste.yandex-team.ru/6f92e4b8-efc5-4d34-948b-15ee2accd7e7/text. This commit has zero effect on all projects that depend on YQL. The summary of changes: - `yql/providers/yt -> ydb/library/yql/providers/yt `- the whole implementation of YT provider is moved into YDB code base for further export as a part of YT YQL plugin shared library; - `yql/providers/stat/{expr_nodes,uploader} -> ydb/library/yql/providers/stat/{expr_nodes,uploader}` - a small interface without implementation and the description of stat expr nodes; - `yql/core/extract_predicate/ut -> ydb/library/yql/core/extract_predicate/ut`; - `yql/core/{ut,ut_common} -> ydb/library/yql/core/{ut,ut_common}`; - `yql/core` is gone; - `yql/library/url_preprocessing -> ydb/library/yql/core/url_preprocessing`. **NB**: all new targets inside `ydb/` are under `IF (NOT CMAKE_EXPORT)` clause which disables them from open-source cmake generation and ya make build. They will be enabled in the subsequent commits.