Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use TContiguousData rooms interface in vdisk/pdisk | innokentii | 2022-10-10 | 5 | -7/+123 |
| | | | | | | | separate concerns add tracing add tracing calls | ||||
* | Added commands profile update and profile replace | brgayazov | 2022-10-09 | 111 | -16692/+218 |
| | |||||
* | Fix a warning when compiling util/ with nvcc 10.x | dfyz | 2022-10-08 | 1 | -1/+1 |
| | | | | | | | | | | | | nvcc10.1 is unable to compile `[[clang::reinitializes]]` and issues warning as follows: ``` util/generic/ptr.h(194): warning: attribute namespace "clang" is unrecognized util/generic/ptr.h(201): warning: attribute namespace "clang" is unrecognized [...] ``` nvcc11 compiles this code without any warnings. This PRs disable `[[clang::reinitialized]]` when compiling with nvcc10. | ||||
* | Fix reimport problems caused by boost removal from provides.pbtxt | thegeorg | 2022-10-08 | 3 | -3/+4 |
| | |||||
* | fix db counters races | monster | 2022-10-07 | 1 | -51/+84 |
| | |||||
* | Revert commit rXXXXXX | svartmetal | 2022-10-07 | 5 | -112/+123 |
| | |||||
* | use Scalar instead of ui64 as mark in ColumnShard engine | chertus | 2022-10-07 | 32 | -622/+1600 |
| | |||||
* | Add full message name to error about unknown field in json2proto | bulatman | 2022-10-07 | 1 | -1/+1 |
| | |||||
* | [util] Fix TFunctionRef under MSVC | sskvor | 2022-10-07 | 3 | -6/+23 |
| | |||||
* | + brotli | a-romanov | 2022-10-07 | 4 | -1/+95 |
| | |||||
* | fix wrong json rendering | xenoxeno | 2022-10-07 | 1 | -1/+1 |
| | |||||
* | refresh ydb ui from github | kovalad | 2022-10-07 | 94 | -165/+188 |
| | | | refresh ydb ui from github | ||||
* | Memory reference tracking restyling | savrus | 2022-10-07 | 8 | -48/+105 |
| | |||||
* | health checker tests | andrew-rykov | 2022-10-07 | 2 | -42/+176 |
| | |||||
* | remove fq from viewer | uzhas | 2022-10-06 | 47 | -1287/+165 |
| | |||||
* | typecheck for explicit phases of GROUP BY | vvvv | 2022-10-06 | 7 | -104/+303 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Пример запроса на котором проходит typecheck. Для агрегационных функций с несколькими параметрами в режиме over state, он используется из первого аргумента, при этом параметры - литералы (например limit для max_by) используются в том смысле, что их наличие влияет на тип state. Percentile особая функция, для нее в MergeFinalize можно построить из одного state много срезов по разным значениям percentile. %%(sql) --pragma EmitAggApply; $p = SELECT key,count(value) as a,avg(value) as b,percentile(value,0.1) as c, max_by(value,value) as e, sum_if(value,value>0) as f FROM AS_TABLE([<|key: 1, value: 2|>]) GROUP BY key with combine ; $p = PROCESS $p; select FormatType(TypeOf($p)); $p = SELECT key,count(a) as a,avg(b) as b,percentile(c,0.1) as c,max_by(e,e) as e, sum_if(f,f) as f FROM $p GROUP BY key with combinestate ; $p = PROCESS $p; select FormatType(TypeOf($p)); $p = SELECT key,count(a) as a,avg(b) as b,percentile(c,0.1) as c,max_by(e,e) as e, sum_if(f,f) as f FROM $p GROUP BY key with mergestate ; $p = PROCESS $p; select FormatType(TypeOf($p)); $p = SELECT key,count(a) as a,avg(b) as b,percentile(c,0.1) as c,percentile(c,0.2) as d,max_by(e,e) as e, sum_if(f,f) as f FROM $p GROUP BY key with mergefinalize ; $p = PROCESS $p; select FormatType(TypeOf($p)); $p = SELECT key,count(value) as a,avg(value) as b,percentile(value,0.1) as c,percentile(value,0.2) as d, max_by(value,value) as e, sum_if(value,value>0) as f FROM AS_TABLE([<|key: 1, value: 2|>]) GROUP BY key with finalize ; $p = PROCESS $p; select FormatType(TypeOf($p)); %% | ||||
* | Account RUs consumed by TopicService in common RUs counter | ilnaz | 2022-10-06 | 5 | -5/+41 |
| | |||||
* | Update Java SDK documentation | alexandr268 | 2022-10-06 | 30 | -291/+277 |
| | | | | | | | | Update java auth helpers Update links for YDB Java SDK Update en example Update en recipes Update ru java example Update ru java recipes | ||||
* | + xz zstd | a-romanov | 2022-10-06 | 8 | -14/+224 |
| | |||||
* | (refactoring) Reduce copy-paste: common helper methods | ilnaz | 2022-10-06 | 1 | -50/+41 |
| | |||||
* | Introduce serverless names to labeled counters | mokhotskii | 2022-10-06 | 21 | -965/+1195 |
| | | | | | 1. Move some classes from tablet_counters_aggregator to private folder 2. Move labled counters to a separate proto file 3. Add serverless_names to labeled counters | ||||
* | Fix SUM type annotation in case of AggApply. | aidarsamer | 2022-10-06 | 1 | -1/+1 |
| | | | Fix SUM type annotation in case of AggApply | ||||
* | Refactor yq.txt config name | galaxycrab | 2022-10-06 | 20 | -42/+53 |
| | |||||
* | Fix COUNT(*) for tables with pg types | galaxycrab | 2022-10-06 | 1 | -3/+10 |
| | |||||
* | Clean uncommitted changes on split and copy table | snaury | 2022-10-06 | 23 | -8/+534 |
| | |||||
* | Fix Mirror3dc max availability in CMS | t1mursadykov | 2022-10-06 | 2 | -0/+9 |
| | |||||
* | Remove TActorContext usage in YQ code | galaxycrab | 2022-10-06 | 14 | -176/+178 |
| | |||||
* | (refactoring) Little style guide changes | ilnaz | 2022-10-06 | 2 | -73/+89 |
| | |||||
* | connection id validation has been added for binding | hcpp | 2022-10-06 | 1 | -0/+10 |
| | |||||
* | abort hidden on DqEngine="disable" | whcrc | 2022-10-06 | 12 | -16/+37 |
| | |||||
* | Add missed peerdir. | dcherednik | 2022-10-06 | 2 | -0/+2 |
| | |||||
* | [vcs][library][ydb] move TAsyncSemaphore from ydb/library to ↵ | tldr | 2022-10-05 | 7 | -17/+212 |
| | | | | | library/cpp/threading Потребовалось для | ||||
* | [unittest] Add NOLINT for clang-tidy | sobols | 2022-10-05 | 1 | -8/+8 |
| | |||||
* | make interface headers for pg_wrapper | monster | 2022-10-05 | 48 | -86/+176 |
| | |||||
* | fix segfault | xenoxeno | 2022-10-05 | 1 | -0/+2 |
| | |||||
* | group by modes in SQL translation | vvvv | 2022-10-05 | 7 | -10/+79 |
| | |||||
* | add ut for http_router | uzhas | 2022-10-05 | 5 | -0/+172 |
| | |||||
* | Handle TaggedType in CastResult() | aneporada | 2022-10-05 | 1 | -0/+6 |
| | |||||
* | remove extra zeros from ResultSet/Precompute plan nodes | ulya-sidorina | 2022-10-05 | 3089 | -3093/+3105 |
| | | | refactor(kqp_query_plan): remove extra zeros from node typename | ||||
* | Fix SIGSEGV in InvalidateQuery | va-kuznecov | 2022-10-05 | 1 | -3/+5 |
| | |||||
* | dq, reduce/produce multi in | whcrc | 2022-10-05 | 7 | -53/+319 |
| | |||||
* | Common CreateLock | ilnaz | 2022-10-05 | 18 | -372/+316 |
| | |||||
* | fixed connection loss for topic-service | alexnick | 2022-10-05 | 2 | -20/+28 |
| | |||||
* | Ordering guarantees for distributed commits with write locks | snaury | 2022-10-05 | 15 | -74/+789 |
| | |||||
* | Fix undefined output on broadcast with no output channels. () | spuchin | 2022-10-05 | 3 | -5/+23 |
| | |||||
* | fix boost/context for x86_64 | dmfedin | 2022-10-05 | 1 | -1/+1 |
| | |||||
* | Update statistics before finish | hor911 | 2022-10-04 | 3 | -0/+15 |
| | |||||
* | Add missed peerdir. | dcherednik | 2022-10-04 | 2 | -0/+2 |
| | |||||
* | serve files from resources/media | trshkv | 2022-10-04 | 1 | -0/+1 |
| | |||||
* | metrics ttl parameter has been added to config | hcpp | 2022-10-04 | 10 | -34/+81 |
| |