Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | YTORM-214: Add parsing enum from yson integer | kmokrov | 2023-10-17 | 1 | -5/+21 |
| | |||||
* | Y_VERIFY->Y_ABORT_UNLESS at ^l | ilnurkh | 2023-10-09 | 1 | -1/+1 |
| | | | | https://clubs.at.yandex-team.ru/arcadia/29404 | ||||
* | YT-19578: Move user_job_statistics to yt/cpp/mapreduce/library | ermolovd | 2023-10-02 | 9 | -294/+0 |
| | |||||
* | YT-19441: Support allocator in TCompactSet. | ponasenko-rs | 2023-09-27 | 2 | -34/+42 |
| | |||||
* | Small refactoring in TCompactSet. | ponasenko-rs | 2023-09-27 | 1 | -3/+3 |
| | |||||
* | Intermediate changes | robot-piglet | 2023-09-25 | 4 | -0/+295 |
| | |||||
* | Get rid of TClusterResourceLimits::operator+() | kvk1920 | 2023-09-22 | 1 | -12/+12 |
| | |||||
* | [Sync from ytsaurus/ytsaurus] Put attribute(weak) in a GCC-compatible position | Alexey Filinovich | 2023-09-07 | 1 | -2/+2 |
| | | | | | | | | | | I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en In addition to #89, there is one more minor fix. GCC doesn't allow putting `__attribute__((weak))` before the `extern "C"` and produces non-weak symbols. Proof: https://godbolt.org/z/h48fYsGMW --- Pull Request resolved: #96 | ||||
* | Intermediate changes | robot-piglet | 2023-09-03 | 10 | -247/+0 |
| | |||||
* | YT-19430: Add arrow writer | nadya02 | 2023-09-02 | 10 | -0/+247 |
| | | | | Add arrow writer | ||||
* | Removed the last typedefs in the codebase | sabdenovch | 2023-08-28 | 8 | -21/+21 |
| | | | | | removed a lot of typedefs and turned a couple of std::pairs into something more meaningful | ||||
* | YT-18571: Replace NYT::ToUnderlying with ::ToUnderlying from util/generic/cast.h | babenko | 2023-08-19 | 2 | -12/+2 |
| | |||||
* | Minor cosmetic changes | sabdenovch | 2023-08-18 | 1 | -1/+1 |
| | | | | | | | | Minor cosmetic changes space after for space after if | ||||
* | YT-19686: Add stubs for YT_USE_VANILLA_PROTOBUF | gritukan | 2023-08-13 | 1 | -0/+3 |
| | |||||
* | YT-19686: Support building TRef from std::string | gritukan | 2023-08-07 | 3 | -0/+9 |
| | |||||
* | Intermediate changes | robot-piglet | 2023-08-06 | 1 | -0/+9 |
| | |||||
* | Drop misused __LINE__ in macro | babenko | 2023-08-02 | 1 | -28/+28 |
| | |||||
* | YT-19210: expose YQL shared library for YT. | max42 | 2023-07-29 | 115 | -0/+5308 |
| | | | | 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 rXXXXXX (see discusstion in pr), will commit again more pci-dss ↵ | kulikov | 2023-07-27 | 25 | -705/+10 |
| | | | | friendly way | ||||
* | Add explicit sanitizer dependencies up to market | reshilkin | 2023-07-26 | 5 | -0/+5 |
| | |||||
* | Support h-format for escaped (but unquoted) strings | babenko | 2023-07-26 | 2 | -10/+32 |
| | |||||
* | try to get rid of locks and allocations for elastic queue thread pool | kulikov | 2023-07-21 | 25 | -10/+705 |
| | | | | | | | | | In case of heavy load and high rps current thread pool implementation seems to have problems at least with contention on lock inside condvar (long futex wait calls from http server listener thread), so try to implement something more efficient: - replace condvar with TEventCounter implementation without internal lock (pthread condvar maintains waiters wakeup order, thread pool doesn't need it); - introduce well-known bounded mpmc queue over ring buffer; - get rid of TDecrementingWrapper; - add options to turn on new pool in library/cpp/http/server and search/daemons (will remove after adoption); - make elastic queue ut check both versions; - workaround problems with android/arm build targets. | ||||
* | Introduce TLazyMultiValueFormatter | ifsmirnov | 2023-07-06 | 3 | -0/+81 |
| | |||||
* | Intermediate changes | robot-piglet | 2023-06-30 | 2 | -15/+40 |
| | |||||
* | Revert "YT-19324: move YT provider to ydb/library/yql" | max42 | 2023-06-30 | 51 | -3680/+0 |
| | | | | This reverts commit ca272f12fdd0e8d5c3e957fc87939148f1caaf72, reversing changes made to 49f8acfc8b0b5c0071b804423bcf53fda26c7c12. | ||||
* | YT-19324: move YT provider to ydb/library/yql | max42 | 2023-06-30 | 51 | -0/+3680 |
| | | | | | | | | | | | | | | 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. | ||||
* | YT: Escape back slash when format string with quotes | bulatman | 2023-06-28 | 2 | -0/+9 |
| | |||||
* | Strongly typed cell tag | kvk1920 | 2023-06-28 | 1 | -1/+0 |
| | |||||
* | add ymake export to ydb | alexv-smirnov | 2023-06-13 | 21 | -0/+403 |
| | |||||
* | Intermediate changes | robot-piglet | 2023-06-11 | 1 | -0/+10 |
| | |||||
* | YT-19300: Various helpers for TStrongTypedef | kvk1920 | 2023-06-08 | 2 | -1/+57 |
| | |||||
* | Copy cached responses in TObjectServiceCache | babenko | 2023-06-06 | 2 | -0/+19 |
| | |||||
* | YT-17341: Use TThreadName instead of TString to store thread name in error. | yuryalekseev | 2023-06-05 | 2 | -4/+15 |
| | |||||
* | Fix typos in library/cpp/yt | babenko | 2023-06-04 | 1 | -1/+1 |
| | |||||
* | Fix typos in library/cpp/yt | babenko | 2023-06-03 | 5 | -5/+5 |
| | |||||
* | Intermediate changes | robot-piglet | 2023-06-02 | 4 | -0/+214 |
| | |||||
* | YT: Fix ParseEnum when custom domain names used | bulatman | 2023-06-01 | 3 | -1/+39 |
| | |||||
* | Intermediate changes | robot-piglet | 2023-05-30 | 2 | -0/+113 |
| | |||||
* | YT-19191: Support system stl for yt/cpp/mapreduce client | nadya73 | 2023-05-25 | 2 | -3/+3 |
| | | | Support default stl for yt/cpp/mapreduce client | ||||
* | Intermediate changes | robot-piglet | 2023-05-23 | 1 | -2/+6 |
| | |||||
* | YT: Fix memory leak in New | bulatman | 2023-05-23 | 2 | -2/+19 |
| | |||||
* | YT-18571: Drop TStrongTypedef::operator= | babenko | 2023-05-20 | 2 | -22/+0 |
| | |||||
* | Enable more tests involving memory tagging | babenko | 2023-05-20 | 1 | -3/+7 |
| | |||||
* | YT-17341: Use thread name instead of thread id in error origins. | yuryalekseev | 2023-05-20 | 6 | -0/+65 |
| | |||||
* | Extract memory tag API to library | babenko | 2023-05-19 | 8 | -0/+137 |
| | |||||
* | Remove extra semicolons in yt | bulatman | 2023-05-16 | 4 | -8/+14 |
| | |||||
* | YT-17689: Move TFreeList to library/cpp/yt/memory | aleexfi | 2023-05-10 | 7 | -5/+459 |
| | | | Iteration no. 2. First one reverted due to YT-18997 | ||||
* | Support object key serialization | s-berdnikov | 2023-05-07 | 1 | -2/+1 |
| | |||||
* | Intermediate changes | robot-piglet | 2023-05-05 | 2 | -8/+12 |
| | |||||
* | YT-18920: Add `TryDecodeEnumValue()` | galtsev | 2023-05-04 | 3 | -23/+49 |
| |