summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce
Commit message (Collapse)AuthorAgeFilesLines
* YT-26145: TConfig serializationachains4 days5-7/+308
| | | | | | | | | * Changelog entry Type: feature Component: cpp-sdk Add serialization / deserialization methods for TConfig class commit_hash:b8dbd0cb04aa88fb629e6f2b855a3e7b1bad0ded
* YT-26196: increase stream timeouts for reading tables with rpcermolovd5 days1-0/+8
| | | | commit_hash:bacf65d689e829af8ae1db6d8b6860ae4e551010
* YT-15805: introduce tz-types into type infoermolovd7 days4-1/+66
| | | | | | | | | | | | | | | | | #### Добавление поддержки временных типов с часовым поясом (TZ-типы) 📝 - 🧱 Добавлены новые примитивные типы для представления даты, даты-времени и меток времени с часовым поясом: `TzDate32`, `TzDatetime64`, `TzTimestamp64`. - 🧪 В модульные тесты добавлены проверки корректности создания и идентификации новых временных типов. - 📦 Обновлена логика сериализации/десериализации: TZ-типы отображаются в строковый формат при работе с различными протоколами (Skiff, protobuf, JSON). - ⚠️ В местах чтения данных добавлена заглушка, которая выбрасывает исключение при попытке обработки новых типов — это временное решение до реализации полной поддержки. - 🔧 Упрощена иерархия классов примитивных типов за счёт использования шаблона `TPrimitiveTypeBase`. - 🗂️ Изменён подход к обработке неизвестных типов в нескольких компонентах: вместо явного перечисления всех поддерживаемых типов теперь используется `default` ветка с общим обработчиком. --- **Оценить качество описания можно [здесь](https://nda.ya.ru/t/_MxIaV0Q7FnCMG** <a href="https://nda.ya.ru/t/qa0kX64r7DqvtN"><font size="2">Autodescription by Code Assistant</font></a> commit_hash:265cf034372d36f60988238e273cbfe532c2a4e5
* YT-25583: Disable appending debug arguments by defaultrp-19 days1-1/+1
| | | | | Disable appending debug arguments by default commit_hash:52024039c1124ba43f07a2d8927b0ea5295a9617
* Add table_collocation supportsay14 days2-0/+3
| | | | | | | | | * Changelog entry Type: feature Component: cpp-sdk Add table_collocation support commit_hash:70150205f53cbf945a970ccdd270f0e90b70ca59
* YT-25583: Rename parameter to enable_debug_command_line_arguments in C++ SDKrp-12025-09-094-5/+5
| | | | | Rename append_debug_options to enable_debug_command_line_arguments commit_hash:af73e8a4e566209d657fefadb1e90fe133b85de5
* YT-25583: Fix appending debug options to command jobsrp-12025-09-041-1/+1
| | | | | Check if command job when appending debug options commit_hash:b9bb785bc0c7f25f175b41935a492f85e5a57562
* YT-26083: Support LinkNodes with attributes via rpcachains2025-09-041-4/+0
| | | | | | | | | * Changelog entry Type: feature Component: proxy Support LinkNodes with attributes via rpc commit_hash:c45c720ee7b9977cb5b68e79ff37878f4ee83280
* YT-23616: RPC proxy tests for C++ clientachains2025-09-0313-0/+4169
| | | | | | | | | * Changelog entry Type: fix Component: cpp-sdk Enable misc tests for RPC proxy, various fixes commit_hash:c3c716503a2e106731ad99b66ec57ea00baf0304
* YT-23616: support rpc write tableachains2025-08-285-41/+29
| | | | | | | | | * Changelog entry Type: feature Component: cpp-sdk Support write table via RPC Proxy in C\+\+ client commit_hash:fccc00849eafded757e3f1332da1fe209a127ec9
* [yt/cpp/mapreduce] YT-25894: Support $remaining_row_bytes in SkiffRow readersnadya732025-08-195-17/+36
| | | | commit_hash:f2670aa725e0acbd8cda1c6ccb7efc01c5f95ef5
* YT-25583: Add option for appending job and operation ID to C++ SDKrp-12025-08-154-1/+11
| | | | commit_hash:3f55bcd34959d43b20bd79997b6f88b9fb5eaeb6
* fix coverity issueuzhas2025-08-081-1/+1
| | | | commit_hash:18fc7d830f15be711fda8f9e13f7acc6e2518e1d
* [yt/cpp/mapreduce] Add GetAlerts in IOperationnadya732025-07-303-10/+41
| | | | commit_hash:79c12c795b4cd3461e20543dafe5c16f47fa7b4b
* [yt/cpp/mapreduce] Fix data race in TAbortableHttpResponsenadya732025-07-211-0/+1
| | | | commit_hash:784446f0f7eaf4cec48cebac3c8fee94ab17eb36
* YQL-20130: Adding alerts filterpanikku2025-07-031-0/+1
| | | | | Для пробрасывания алертов нужен фильтр под них чтобы не нагружать большими запросами commit_hash:3cac6ac4b55444504723647b567f7452d52c3773
* YT-23616: Introduce WriteFile RPC implementationhiddenpath2025-06-275-7/+53
| | | | commit_hash:627b3fd7979f64a7365a590bca09a1c53c23464a
* Fix YT parallel table writer hang after Abortrraed2025-06-181-0/+4
| | | | commit_hash:a5ac90256dbdaeb37858aeacaf24931ed10c8d4d
* Allow passing ProxyUrlAliasingRules to clients directlyngc2242025-06-133-12/+40
| | | | commit_hash:5493d9ed32b24050fa5feb08fe13097302ca0a23
* Simplify multiproxy APIhiddenpath2025-06-074-19/+9
| | | | | | | | | | | | | | | | | | | | | | | | | This pull request refactors the RPC client creation process to enhance clarity and flexibility. The previous method of specifying the Unix domain socket path directly in ``` CreateRpcClient( "socketPath", TCreateClientOptions() .UseProxyUnixDomainSocket(true) .MultiproxyTargetCluster("clusterName")); ``` has been changed to ``` CreateRpcClient( "clusterName", TCreateClientOptions() .JobUnixDomainSocketPath("socketPath")); ``` Also fixes a minor bug, when serverName was set to socket path instead of cluster name. commit_hash:d2e19d713304fd99c864377203642cff7a4652e7
* Remove unused ExtendGenericError methodhiddenpath2025-06-042-16/+0
| | | | commit_hash:70f08c3d0ef32d71b24bb9b41e770a7f9910ff60
* Add a todo to remove the LogUseCore optionhiddenpath2025-06-041-5/+4
| | | | commit_hash:2af1e11b5ae48afa30c1762d0170f3089a2e117f
* Fix style of namespacehiddenpath2025-06-021-1/+1
| | | | commit_hash:979d1b6765ed3cc3e4cc9875306f2454ffad7096
* Drop Sequoia retries in non-native clientkvk19202025-05-312-14/+0
| | | | commit_hash:57d91f37a7ee671db070142a51c437103bb881ba
* Introduce suppress access tracking optionshiddenpath2025-05-304-21/+90
| | | | commit_hash:1b44475c0447374091b3f13cd7e2126757874ebb
* YT-24245: Add MultiproxyTargetCluster optionhiddenpath2025-05-273-0/+9
| | | | commit_hash:4ad0d709eab6a3191e6cccd54f85765ae80cf3b2
* Revert commit rXXXXXX, YT-25104: Switch to new retryful writer by defaultbuyval012025-05-211-1/+1
| | | | commit_hash:244578d9961943bfc97269bde987d0bb12c3f133
* YT-25104: Switch to new retryful writer by defaulthiddenpath2025-05-201-1/+1
| | | | commit_hash:f3ff128095511d3566e4895001e0fd899acaeb07
* YT-25104: Align new writer behaviour with the oldest oneshiddenpath2025-05-203-2/+6
| | | | commit_hash:a33872f7bf427339504d82c86c97504eb38757d9
* YT-25059: Introduce log levels as constantshiddenpath2025-05-161-0/+9
| | | | | | | This pull request updates the log level setting mechanism within NYT::TConfig from a explicit string-based approach to an enum-like approach. The modification changes assignment from `NYT::TConfig::Get()->LogLevel = "info";` to `NYT::TConfig::Get()->LogLevel = NYT::NLogLevel::Info;` This minimizes typos and misconfigurations as well as aligns with planned removal of enum ELogLevel (for the sake yt/core migration). commit_hash:cf8d9629e4cc27e6a44f089edfc4c158f11e4baf
* YT-22593: Drop redundant casts introduced in rXXXXXXbabenko2025-05-161-1/+1
| | | | | This becomes possible after rXXXXXX commit_hash:a2b2f00538a8aad5fec5774b927890240db3e72b
* Log client version only with debug levelhiddenpath2025-05-151-1/+1
| | | | commit_hash:565828a02846edaf6fff1ae3f2648a450adf992a
* YT-22593: Migrate HTTP headers to std::stringbabenko2025-05-122-3/+3
| | | | | [diff:runtime] commit_hash:262b2e671526b138d7a9631daf5d34400fc2208c
* YT-23645: Enable yt/core logger as defaulthiddenpath2025-05-122-2/+2
| | | | commit_hash:e2d621c2e844e927b6ed8188d628e3207441352f
* YT-24500: Introduce structured logginghiddenpath2025-05-036-0/+85
| | | | commit_hash:e6ea4db1e3a66694223008fec3b5064a4d58a8e1
* YT-10317: Throw error on max_compresssed_data_size_per_job violationapollo13212025-04-301-3/+4
| | | | commit_hash:a25a8948b4adb3b8a9453d784b6560b4b64bc0d8
* YT-23616: Split TRetryfulWriter implementation into rpc and httphiddenpath2025-04-237-34/+82
| | | | commit_hash:2b01b1b2387f71903fc29f3364d1e5f46f35a703
* YT-22593: Migrate auth to std::stringbabenko2025-04-231-1/+1
| | | | commit_hash:5c78798b304a05a90b7e9a5b2bcdc1d3454d9f77
* YT-23645: Do not override user configuration of loggerhiddenpath2025-04-221-1/+4
| | | | commit_hash:a4522facabf7d730438dfc794abddedb0838d79e
* YT-24322: Retry cannot read from socket input stream errorhiddenpath2025-04-212-1/+2
| | | | commit_hash:bdfb86ce1915fd5c298250f4973acf6343a3e226
* Don't wait Yt poller thread shutdown under lockudovichenko-r2025-04-211-4/+8
| | | | commit_hash:1ddf88b71f3418bee4e3621d13b822ef59dc8e9d
* YT-23616: Dispatch on some dyntable methodshiddenpath2025-04-184-87/+42
| | | | commit_hash:c279c66b6d18c54f7f1794d2a0ba851119dd59c8
* YT-23616: Add RPC implementation of LookupRows, DeleteRows and InsertRows ↵hiddenpath2025-04-172-4/+2
| | | | | | methods commit_hash:c71f62e346bef766379d7b3c3ac2933bb96ac543
* YT-6812, YT-24298: Introducing attributes and events to list_jobsbystrovserg2025-04-092-12/+57
| | | | commit_hash:9395b2e879d30ba83d17dcc8c94af4618a13d2a7
* Add EnableRpcProxyInJobProxy option to TUserJobSpechiddenpath2025-04-082-0/+10
| | | | commit_hash:066f704ba92da58c63ac8af6f9032f6c2672a9be
* Add 'Alias' to TOperationSpecBaseyurial2025-04-022-0/+6
| | | | commit_hash:1414ded4e1a06aa5c10b8be0bb67d2bf3608f211
* YT-20969: C++ methods for reading table partitionsermolovd2025-04-0215-3/+283
| | | | | | | | | * Changelog entry Type: feature Component: cpp-mapreduce-sdk Introduce methods for reading table partition commit_hash:ab818edd21ccb2a9c5f3d5f010686c3314532192
* Change UnixDomainSocket option into booleanhiddenpath2025-04-024-7/+11
| | | | commit_hash:b2716bf7efedb55f6a99c800356dfaaeab6abaff
* YT-24660: Add retry for timeout generic errorhiddenpath2025-03-311-0/+1
| | | | commit_hash:865fce03f413e78b138e4e92b9d11d11be696d02
* YT-23616: Add ProxyUnixDomainSocket client optionhiddenpath2025-03-284-1/+8
| | | | commit_hash:1f6882f7cda53ebe7e544d255f657f027af5b553