summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/client/init.cpp
Commit message (Collapse)AuthorAgeFilesLines
* YT-23645: mapreduce client can use yt/core log managerermolovd2024-11-281-9/+13
| | | | commit_hash:7007a3c7f56a6f271073811160f00f03162aaaa6
* Open log file in append mode by defaultermolovd2024-11-251-1/+1
| | | | commit_hash:477d8692ac2c591d770fdf64664aa0be17d7d7b9
* YT-23422: do not write command line into attributes of operationsermolovd2024-11-231-3/+1
| | | | | | | | | * Changelog entry Type: feature Component: cpp-sdk C++ SDK doesn't write launching process command line to operation attributes. commit_hash:c50cbc2a31f5a3b733833767fe94019a0d7615d3
* YT-23262: initialize client with JoblessInitialize if user didn'termolovd2024-11-081-0/+14
| | | | commit_hash:439622e771e7b7010609aa9974e9b82dcb0163ca
* YT-23262: send all logs to fileermolovd2024-11-021-1/+27
| | | | commit_hash:af0cfccef62a612208772fef9f0778b48ab16fda
* Use lower case for TString methods Data, Size and Empty in ysite, yt, ytech, ↵mikhnenko2024-10-091-1/+1
| | | | | | | | yweb Если вы считаете, что это pr сломал ваши тесты - смело откатываете.\ Если проблема нетривиальная - приходите в [саппорт](https://nda.ya.ru/t/a1JIzEbo78mtfQ) commit_hash:dee982cfbb70b978ace5417b4619e78212000179
* YT-22268: Support YT_LOG_PATH in c++ apiwhatsername2024-07-151-1/+3
| | | | | Проверил руками на тестах yt roren eb7589ac6894bffb1ebcd1d092f4eed6ca4cd975
* YT-19210: expose YQL shared library for YT.max422023-07-291-0/+280
| | | | 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-280/+0
| | | | This reverts commit ca272f12fdd0e8d5c3e957fc87939148f1caaf72, reversing changes made to 49f8acfc8b0b5c0071b804423bcf53fda26c7c12.
* YT-19324: move YT provider to ydb/library/yqlmax422023-06-301-0/+280
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.