aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use TChecker to check limitsilnaz2022-09-193-42/+106
|
* fix.a-romanov2022-09-192-4/+12
|
* tests for correct limits and ssa usageivanmorozov2022-09-191-16/+330
|
* Fix truncated results in session_actorva-kuznecov2022-09-191-6/+22
|
* PR from branch users/mdartemenko/fix_whitespacesmdartemenko2022-09-197-63/+55
| | | | | Revert "move scan/full_scan fetch from reply in session_actor to compile_actor" This reverts commit 2823e7875f243a68929c7d325725e1f3fbb85af2, reversing changes made to cf96b119658d4b4a43f18537d6f81e3d9dfcbf1b.
* Sane handling of %x and %X for pointers in Formatbabenko2022-09-193-5/+38
|
* (no commit message)abcdef2022-09-1915-125/+786
|
* fix buffer ref on stack varuzhas2022-09-191-1608/+1609
|
* Check locks before commitva-kuznecov2022-09-191-0/+4
|
* fix broken linkkovalad2022-09-191-1/+1
|
* PR from branch users/mzinal/mzinal2022-09-1921-100/+483
| | | Data import and export enhancements for YDB CLI
* Exclude date_time and serialization from boost metaprojectbugaevskiy2022-09-191-0/+1
|
* generic block function executionvvvv2022-09-195-100/+106
|
* Conditional suppression for utility class constructormiroslav22022-09-192-0/+58
|
* Update boost/parameter, boost/lockfree and boost/accumulatorsrobot-contrib2022-09-19172-4773/+33276
| | | | | * Update contrib/restricted/boost/accumulators to 1.80.0 * Update contrib/restricted/boost/lockfree to 1.80.0 * Update contrib/restricted/boost/parameter to 1.80.0
* Fix tsan warnings in yt intrusive ptrayles2022-09-192-0/+25
| | | | | | | | | | | | | | | | | | | | | For example, https://github.com/google/sanitizers/issues/1352 - tsan is not working well with std::atomic_thread_fence Minimal reproducible example (and one that bothers most in every fiber-aware service): ``` auto threadPool = NYT::New<NYT::NConcurrency::TThreadPool>(2, "thread"); TVector<NYT::TFuture<void>> futures; for (size_t i = 0; i < 100000; ++i) { futures.emplace_back(BIND([]() { }).AsyncVia(threadPool->GetInvoker()).Run()); } for (auto& future : futures) { future.Get().ThrowOnError(); } ```
* limit usage for stop finally and additional statistics calculationivanmorozov2022-09-197-62/+135
| | | | incapsulate costs state into common manager switch on parallel scan for olap requests
* Add multiple PDisk main keys,serg-belyakov2022-09-1936-240/+549
| | | | | | | | | Add pdisk-key option to CLI Fix key obtaining Key change now works Change pdisk main key type to TMainKey (typedefed as TStackVec<NPDisk::TKey, 2>)
* Improve BlobDepot a bitalexvru2022-09-196-73/+110
|
* use blob cache for index insertschertus2022-09-196-14/+42
|
* Rebalancing autocheck partitions and distbuild clusters.robot-dts-analyst2022-09-192-3/+4
| | | The process of preparing changes https://sandbox.yandex-team.ru/task/1452983473/view
* Update contrib/restricted/boost/context to 1.80.0robot-contrib2022-09-1926-1856/+282
|
* Update contrib/restricted/boost/utility to 1.80.0robot-contrib2022-09-181-1/+1
|
* Update contrib/restricted/boost/utility to 1.79.0robot-contrib2022-09-1810-118/+346
|
* Add ydb auth get-token commandpnv12022-09-188-15/+114
|
* Exclude asio and coroutine from boost metaprojectbugaevskiy2022-09-182-11/+0
|
* fix ExportTypeToProto for empty tuple typeuzhas2022-09-182-1/+27
|
* [vendor] Add github.com/itchyny/gojq.verytable2022-09-181039-238929/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | ``` ya tool yo get github.com/itchyny/gojq go: downloading github.com/itchyny/gojq v0.12.9 go: downloading github.com/itchyny/timefmt-go v0.1.4 go: downloading github.com/mattn/go-isatty v0.0.16 go: downloading golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 go: added github.com/itchyny/gojq v0.12.9 go: added github.com/itchyny/timefmt-go v0.1.4 go: upgraded github.com/mattn/go-isatty v0.0.14 => v0.0.16 go: upgraded golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d => v0.0.0-20220829200755-d48e67d00261 ``` Тесты: ``` ya make -t -A ./vendor/github.com/itchyny/gojq Total 2 suites: 2 - GOOD Total 905 tests: 905 - GOOD Ok ``` Для двух тестов, использовавших локальные файлы добавил `TEST_CWD`.
* cost data request/response for column shardivanmorozov2022-09-1813-419/+1105
|
* Move block cache in to separate lib. Fix missed blobstorage PEERDIRs.dcherednik2022-09-1712-30/+54
|
* fix crash when format struct with no fields and empty tupleuzhas2022-09-172-11/+68
|
* Update contrib/restricted/boost/interprocess to 1.80.0robot-contrib2022-09-1789-2290/+9682
|
* do not crash on broken CSV in checkTypeValidnessuzhas2022-09-171-0/+3
|
* add tests to normalize pathuzhas2022-09-176-1/+147
|
* Update contrib/python/boto3/py3 to 1.24.75robot-contrib2022-09-17253-3115/+468
|
* Make quotas default and hard limits configurablegalaxycrab2022-09-172-5/+28
|
* Add params usage examples to ydb yql --help-expnv12022-09-161-0/+3
|
* Update boost/container, boost/move, boost/intrusive to 1.80.0robot-contrib2022-09-16151-5689/+9832
|
* Allocation error detalizationhor9112022-09-167-11/+12
|
* generic arrow function resolvervvvv2022-09-16162-50179/+2811
|
* fix.a-romanov2022-09-161-1/+7
|
* Fix get Etag on HTTP/1.1a-romanov2022-09-162-8/+6
|
* Validate output type for raw format.a-romanov2022-09-161-7/+25
|
* [] Fix casting structs/tuples with PG typesaneporada2022-09-161-4/+6
|
* batch using directlyivanmorozov2022-09-168-279/+370
|
* Bugfixkomels2022-09-161-1/+1
|
* add cache for RecordBatches from InsertTablechertus2022-09-1619-23/+201
|
* date for projection has been fixedhcpp2022-09-164-2/+31
|
* Add TContiguousDatainnokentii2022-09-1614-500/+1122
| | | extract TChunk as TContiguousData
* [] add possibility to log driver messagesshmel1k2022-09-163-4/+38
|