summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Drop abseil patch as std::bind_front works nowthegeorg2022-10-111-1/+1
|
* fix rate intervalsmonster2022-10-116-292/+1079
|
* remove XML_PARSE_NOENT flaguzhas2022-10-111-1/+1
|
* simultaneous log pipelines control and sharding prepareivanmorozov2022-10-111-4/+4
|
* an option to split Aggregate to lower ones without AggApply expansion (part1 ↵vvvv2022-10-117-17/+133
| | | | - without distincts)
* fix UNINIT coverity issueuzhas2022-10-111-1/+1
|
* [review] [YDB] Logs docs check translatealextarazanov2022-10-114-3/+44
|
* + bzip2a-romanov2022-10-114-1/+84
|
* [review] [YDB] ydb cli workload kv check translatealextarazanov2022-10-112-71/+81
|
* [review] [YDB] Changelog check transatealextarazanov2022-10-111-33/+33
|
* ydb docs cli profile create non-interactivealexv-smirnov2022-10-113-25/+98
|
* [review] [YDB] ydb topic alter check translatealextarazanov2022-10-112-6/+13
|
* [util]TLazyValue: remove operator bool and Definedtldr2022-10-112-15/+11
|
* Update perfect_forward.h to make std::bind_front compile on Windowsthegeorg2022-10-111-52/+51
| | | This is a partial backport of [commit 5a4f177c](https://github.com/llvm/llvm-project/commit/5a4f177c949e5ff56bc6af9c0145e2d0c1b29c4d) from upstream.
* [review] [YDB] Small fixes check translatealextarazanov2022-10-111-9/+7
|
* new hopping syntaxd-mokhnatkin2022-10-1116-163/+459
|
* [review] [YDB] Topic Go SDK Check translatealextarazanov2022-10-111-8/+183
|
* implementation of Aggregate phases in peepholevvvv2022-10-1012-163/+380
|
* Fix TypeLen usage in GetTypeWeightgalaxycrab2022-10-101-8/+15
|
* [relaxed_escaper] Speed upsobols2022-10-101-15/+19
|
* Fixed processing of incorrect databasebrgayazov2022-10-101-5/+6
|
* always fill flag "truncated" in jsonuzhas2022-10-103-2/+13
|
* TRequestActor for control plane storage requestsgalaxycrab2022-10-1011-188/+239
| | | Рефакторинг состоит в том, чтобы сделать возможным/удобным создание специальных акторов для обработки запроса в control plane storage. Сейчас практически все запросы в control plane storage обрабатываются как один вызов метода для доступа к базе и в колбеке на фьючу отправка ответа клиенту. Это не позволяет нам вставить какие-то акторные действия перед запросом в базу. Сделал рефакторинг, чтобы такие действия были возможны. Далее в планах в качестве основного кода для данного тикета вставить создание ресурса квотировщика перед запросом в базу на создание квери.
* Fix json-array formats consisting of several partspnv12022-10-101-4/+7
|
* add test to reproduce the buggvit2022-10-105-6/+113
|
* add more cases for parsing date types from jsonuzhas2022-10-102-4/+4
|
* [review] [YDB] "Random function description" check translatealextarazanov2022-10-101-2/+11
|
* Fix optional types in join columnsaakulaga2022-10-103-7/+19
| | | Fix optional types in join columns
* use api to partition tableswhcrc2022-10-101-0/+1
|
* Use TContiguousData rooms interface in vdisk/pdiskinnokentii2022-10-105-7/+123
| | | | | | | separate concerns add tracing add tracing calls
* Added commands profile update and profile replacebrgayazov2022-10-09111-16692/+218
|
* Fix a warning when compiling util/ with nvcc 10.xdfyz2022-10-081-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.pbtxtthegeorg2022-10-083-3/+4
|
* fix db counters racesmonster2022-10-071-51/+84
|
* Revert commit rXXXXXXsvartmetal2022-10-075-112/+123
|
* use Scalar instead of ui64 as mark in ColumnShard enginechertus2022-10-0732-622/+1600
|
* Add full message name to error about unknown field in json2protobulatman2022-10-071-1/+1
|
* [util] Fix TFunctionRef under MSVCsskvor2022-10-073-6/+23
|
* + brotlia-romanov2022-10-074-1/+95
|
* fix wrong json renderingxenoxeno2022-10-071-1/+1
|
* refresh ydb ui from githubkovalad2022-10-0794-165/+188
| | | refresh ydb ui from github
* Memory reference tracking restylingsavrus2022-10-078-48/+105
|
* health checker testsandrew-rykov2022-10-072-42/+176
|
* remove fq from vieweruzhas2022-10-0647-1287/+165
|
* typecheck for explicit phases of GROUP BYvvvv2022-10-067-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 counterilnaz2022-10-065-5/+41
|
* Update Java SDK documentationalexandr2682022-10-0630-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 zstda-romanov2022-10-068-14/+224
|
* (refactoring) Reduce copy-paste: common helper methodsilnaz2022-10-061-50/+41
|
* Introduce serverless names to labeled countersmokhotskii2022-10-0621-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