Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Intermediate changes | robot-piglet | 2023-07-07 | 1 | -0/+4 | |
| | ||||||
* | Introduce TLazyMultiValueFormatter | ifsmirnov | 2023-07-06 | 3 | -0/+81 | |
| | ||||||
* | Revert commit rXXXXXX, Revert commit rXXXXXX,use profile tags for any method ↵ | ivanmorozov | 2023-07-05 | 5 | -50/+46 | |
| | | | | actor name generation | |||||
* | Revert commit rXXXXXX,use profile tags for any method actor name generation | ivanmorozov | 2023-07-05 | 5 | -46/+50 | |
| | ||||||
* | use profile tags for any method actor name generation | ivanmorozov | 2023-07-05 | 5 | -50/+46 | |
| | ||||||
* | Fix tsan race in TExecutor::GetMaxQueueSizeAndClear | snaury | 2023-07-04 | 1 | -1/+1 | |
| | ||||||
* | Fix misaligned arena block size in TEvUploadRowsRequest causing ubsan failures | snaury | 2023-07-04 | 1 | -0/+5 | |
| | ||||||
* | Fix critical TRcBuf issue | alexvru | 2023-07-03 | 1 | -2/+5 | |
| | ||||||
* | Intermediate changes | robot-piglet | 2023-07-03 | 1 | -1/+1 | |
| | ||||||
* | client-cpp for unified-agent: changing log level | aleksei-le | 2023-07-03 | 1 | -18/+18 | |
| | ||||||
* | Replace the functions for the `Levenshtein` and the `Damerau–Levenshtein` ↵ | akinshchikov | 2023-07-03 | 2 | -8/+47 | |
| | | | | | | distances with the memory effective version. YQL UDFs `String::LevensteinDistance` and `Unicode::LevensteinDistance` use `NLevenshtein::Distance` inside. The previous version of `NLevenshtein::Distance` uses O(nm) space instead of O(min(n, m)). | |||||
* | Intermediate changes | robot-piglet | 2023-06-30 | 3 | -16/+43 | |
| | ||||||
* | Intermediate changes | robot-piglet | 2023-06-30 | 5 | -51/+20 | |
| | ||||||
* | Revert "YT-19324: move YT provider to ydb/library/yql" | max42 | 2023-06-30 | 143 | -20706/+0 | |
| | | | | This reverts commit ca272f12fdd0e8d5c3e957fc87939148f1caaf72, reversing changes made to 49f8acfc8b0b5c0071b804423bcf53fda26c7c12. | |||||
* | deallocation on destroy | ivanmorozov | 2023-06-30 | 1 | -2/+4 | |
| | ||||||
* | YT-19324: move YT provider to ydb/library/yql | max42 | 2023-06-30 | 143 | -0/+20706 | |
| | | | | | | | | | | | | | | 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. | |||||
* | improve macros for default component determination instead of 0 | ivanmorozov | 2023-06-29 | 2 | -12/+34 | |
| | ||||||
* | contextable logging | ivanmorozov | 2023-06-29 | 2 | -54/+209 | |
| | ||||||
* | YQ Connector: support managed ClickHouse | vitalyisaev | 2023-06-29 | 8 | -0/+294 | |
| | | | Со стороны dqrun можно обратиться к инстансу коннектора, который работает на streaming стенде, и извлечь данные из облачного CH. | |||||
* | Improve monitoring | alexvru | 2023-06-28 | 2 | -18/+13 | |
| | ||||||
* | fix gen_tld.py on non-unicode locale encodings | Nikita Kozlovskiy | 2023-06-28 | 1 | -11/+14 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix gen_tld.py on non-unicode locale encodings In python versions prior to 3.7, as well as when using non-unicode locale encodings, the `gen_tld.py` script fails: ``` ydb/ydb/library/cpp/tld % git rev-parse head 97b1a695d3be4edc08550d3ae7d200f6d9f3d42e ydb/ydb/library/cpp/tld % LC_CTYPE=C ~/.pyenv/versions/3.6.15/bin/python gen_tld.py tlds-alpha-by-domain.txt|md5 Traceback (most recent call last): File "gen_tld.py", line 57, in <module> main() File "gen_tld.py", line 39, in main sys.stdout.write('%s*/\n' % str.rstrip()) UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-2: ordinal not in range(128) ``` This pull request fixes this behevaiour by explicit set output encoding to utf-8. To ensure that I do not break anything, I checked the MD5 hash of the generated file before and after making my changes: ``` ydb/ydb/library/cpp/tld % git rev-parse head 97b1a695d3be4edc08550d3ae7d200f6d9f3d42e ydb/ydb/library/cpp/tld % python3 gen_tld.py tlds-alpha-by-domain.txt|md5 564242d355d842db790977df3642a405 ``` After ``` ydb/ydb/library/cpp/tld % git rev-parse head 1096dd7f034c573aabdf3bac2dc4b181a6688c71 ydb/ydb/library/cpp/tld % python3 gen_tld.py tlds-alpha-by-domain.txt|md5 564242d355d842db790977df3642a405 ydb/ydb/library/cpp/tld % LC_CTYPE=C ~/.pyenv/versions/3.6.15/bin/python gen_tld.py tlds-alpha-by-domain.txt|md5 564242d355d842db790977df3642a405 ``` Pull Request resolved: #279 | |||||
* | 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 | |
| | ||||||
* | Remove unused ADDINCL | alexv-smirnov | 2023-06-27 | 5 | -14/+0 | |
| | | | To ensure no differences between cmakelists generation in Arcadia and GitHub | |||||
* | Tunable backlog size for IC | alexvru | 2023-06-27 | 2 | -1/+3 | |
| | ||||||
* | fix destructor usage with tls context | ivanmorozov | 2023-06-27 | 1 | -4/+3 | |
| | ||||||
* | [unified agent] fix printf specifiers for 32 bit arch / | gluk47 | 2023-06-26 | 1 | -13/+13 | |
| | ||||||
* | Support TEvVGet in separate rope | alexvru | 2023-06-26 | 6 | -0/+11 | |
| | ||||||
* | Support IZeroCopyInput over TRope | aneporada | 2023-06-26 | 2 | -0/+77 | |
| | | | initial | |||||
* | Fix coroutine event serializer | alexvru | 2023-06-26 | 1 | -1/+5 | |
| | ||||||
* | Fix coroutine event serializer | alexvru | 2023-06-24 | 5 | -48/+36 | |
| | ||||||
* | Require semicolon after Y_DECLARE*_FLAGS | bulatman | 2023-06-24 | 2 | -4/+4 | |
| | ||||||
* | Regression test | alexvru | 2023-06-23 | 7 | -2/+115 | |
| | ||||||
* | [begemot] arm32 support: enable atomic instrinsics / | gluk47 | 2023-06-22 | 1 | -1/+1 | |
| | ||||||
* | Specify service.name for tracing | a-sumin | 2023-06-22 | 2 | -4/+9 | |
| | ||||||
* | [begemot] monlib: fix alignment for 32-bit arch / | gluk47 | 2023-06-22 | 1 | -1/+1 | |
| | | | | | | `pair<..., ui64>` is aligned by 8 bytes, whereas `TExplicitHistogramSnapshot` contains only ui32 which does not have to be 8-byte-aligned. This patch fixes a static assert from the line 203: `alignof(TExplicitHistogramSnapshot) == alignof(TBucket)` | |||||
* | Fix CloseOnIdle peer termination | alexvru | 2023-06-21 | 2 | -1/+11 | |
| | ||||||
* | Fix build for win, | kruall | 2023-06-19 | 1 | -3/+3 | |
| | ||||||
* | Add exchangin threads when cpu usage around limit, | kruall | 2023-06-19 | 5 | -8/+85 | |
| | ||||||
* | Randomize ping intervals a bit | alexvru | 2023-06-19 | 1 | -0/+2 | |
| | ||||||
* | use controller directly instead of actor/events | ivanmorozov | 2023-06-16 | 1 | -0/+34 | |
| | ||||||
* | Fix CloseOnIdle logic | alexvru | 2023-06-16 | 3 | -52/+64 | |
| | ||||||
* | allow to use arena allocated protobuf messages | gvit | 2023-06-15 | 1 | -10/+53 | |
| | ||||||
* | Query service handle client lost | robdrynkin | 2023-06-15 | 2 | -0/+6 | |
| | ||||||
* | fix build with enabled PROFILE_MEMORY_ALLOCATIONS | uzhas | 2023-06-14 | 2 | -2/+4 | |
| | ||||||
* | add ymake export to ydb | alexv-smirnov | 2023-06-13 | 526 | -0/+7891 | |
| | ||||||
* | Intermediate changes | robot-piglet | 2023-06-11 | 1 | -0/+10 | |
| | ||||||
* | Remove extra semicolon (library) | bulatman | 2023-06-10 | 55 | -99/+88 | |
| | ||||||
* | Require semicolon after saveload macroses | bulatman | 2023-06-08 | 3 | -7/+8 | |
| | ||||||
* | YT-19300: Various helpers for TStrongTypedef | kvk1920 | 2023-06-08 | 2 | -1/+57 | |
| |