summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/interface/client.h
Commit message (Collapse)AuthorAgeFilesLines
* YT-23616: Add CreateRpcClient methodhiddenpath2025-02-191-0/+5
| | | | commit_hash:78db7b8cacb58da4b6e26dd810baa508a8abfda2
* YT-21081: fix temp tables for case when client is created with GlobalTxermolovd2025-02-191-2/+9
| | | | commit_hash:c49256f38de62e8d05359c16a70ea6b88220a9ba
* YT-23616: Add implementation of method for creating rpc clienthiddenpath2025-02-151-4/+2
| | | | commit_hash:5854a0271a0a2a26dc9891ff1502889edbf38a18
* YT-21938: Introduce get_job_traceomgronny2024-10-111-0/+12
| | | | | | | | | * Changelog entry\ Type: feature\ Component: proxy Add the handler that gets the job’s trace events. commit_hash:c9d1a6d57e886a266967d57065bd3948882808c7
* Fix typo: comitted, commited -> committedEgor Chunaev2024-05-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I left only these typos: ```cpp # Build. build/scripts/link_sbom.py 61: res["properties"].append({'name': 'has_uncommited_changes', 'value': True}) # Contrib. contrib/clickhouse/src/Coordination/KeeperLogStore.h 19: /// Read log storage from filesystem starting from last_commited_log_index 20: void init(uint64_t last_commited_log_index, uint64_t logs_to_keep); contrib/clickhouse/src/Coordination/KeeperStateManager.h 36: void loadLogStore(uint64_t last_commited_index, uint64_t logs_to_keep); contrib/clickhouse/src/Coordination/Changelog.h 100: void readChangelogAndInitWriter(uint64_t last_commited_log_index, uint64_t logs_to_keep); contrib/clickhouse/src/Databases/DatabaseReplicatedSettings.h 13: M(UInt64, wait_entry_commited_timeout_sec, 3600, "Replicas will try to cancel query if timeout exceed, but initiator host has not executed it yet", 0) \ contrib/clickhouse/src/Databases/DatabaseReplicatedWorker.cpp 337: size_t max_iterations = database->db_settings.wait_entry_commited_timeout_sec; contrib/python/pytest-benchmark/pytest_benchmark/utils.py 77: parts.append("uncommited-changes") contrib/libs/poco/Data/include/Poco/Data/Transaction.h 57: /// commited automatically. If no error occurs, rollback is disabled and does 85: /// Rolls back the current database transaction if it has not been commited contrib/clickhouse/src/Storages/StorageMergeTree.cpp 2061: /// and we should be able to rollback already added (Precomitted) parts # Kinda contrib. yt/spark/spark/sql/core/src/test/scala/org/apache/spark/sql/execution/streaming/state/StateStoreSuite.scala 1048: // Reload the store from the commited version and repeat the above test. # Metrics tag :( yt/yt/server/master/security_server/security_manager.cpp 595: TWithTagGuard guard(&buffer, "status", "commited"); 599: TWithTagGuard guard(&buffer, "status", "uncommited"); ``` The only backwards incompatible place is: https://github.com/ytsaurus/ytsaurus/blob/091bcf82fe4fc8d9a967eb36beddf5767e92e659/yt/python/yt/wrapper/dynamic_table_commands.py#L26-L27 --- 9f6a944af13ef3fbf3f25c15b2c2d3982ed7e39b Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/566 Co-authored-by: ignat <[email protected]>
* Possibility to get operation by its aliasermolovd2023-10-161-0/+8
|
* [yt/cpp/mapreduce] Fix documentation linksnadya732023-09-061-42/+42
|
* YT-19210: expose YQL shared library for YT.max422023-07-291-0/+568
| | | | 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-568/+0
| | | | This reverts commit ca272f12fdd0e8d5c3e957fc87939148f1caaf72, reversing changes made to 49f8acfc8b0b5c0071b804423bcf53fda26c7c12.
* YT-19324: move YT provider to ydb/library/yqlmax422023-06-301-0/+568
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.