summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* KIKIMR-19038: defaults for QueryServiceConfigandrewproni2023-08-311-5/+5
|
* (no commit message)pg2023-08-311-1/+1
|
* fix buildivanmorozov2023-08-311-4/+8
|
* Proxy configuration for serverless BDtesseract2023-08-315-36/+176
|
* ci: PR comment posting with the testing resultsNikita Kozlovskiy2023-08-313-60/+158
| | | | | | ci: add comment posting to the pr with the test summary Pull Request resolved: #353
* ci: check failed ctests shard runs for yunit or gtest logsnkozlovskiy2023-08-313-5/+18
|
* KIKIMR-19093: helpers for arrow manipulation. and fix dependencies.ivanmorozov2023-08-3129-16/+161
|
* Intermediate changesrobot-piglet2023-08-311-464/+0
|
* Fix topic name in kafka metricssavnik2023-08-311-2/+3
|
* Actualize YDB-PHP-SDK docsilyakharev2023-08-3126-234/+1089
|
* YQL-16325 TupleLiteralBuilderzverevgeny2023-08-313-0/+53
|
* fix W605: Invalid escape sequence \\.artem-ios2023-08-311-1/+1
| | | | | | fix W605: Invalid escape sequence \\. [fail] test.py::py3_flake8 [default-linux-x86_64-release] (0.00s) ydb/library/yql/tools/mrjob/test/test.py:24: [W605] invalid escape sequence '\.'
* Counters in lease updatergrigoriypisar2023-08-318-16/+55
| | | | Passed counters and normalized lease updates.
* YQL-16429 YQL-16382 Disable yql_sys_order_bya-romanov2023-08-311-1/+1
|
* KIKIMR-19093: correct dependenciesivanmorozov2023-08-312-0/+2
|
* KIKIMR-19218: TSpecialKeys for unify store and reuse important batch recordsivanmorozov2023-08-317-0/+103
|
* Sanitizers fixaakulaga2023-08-313-14/+20
| | | | Sanitizers fix
* Make sure we don't emit AsScalar for unsupported block typesaneporada2023-08-316-11/+39
|
* Store metadata in PDisk KIKIMR-19031alexvru2023-08-3121-979/+1609
|
* Removed statistics and cost computation for EquiJoinpavelvelikhov2023-08-311-0/+4
| | | | Removed statistics and cost computation for EquiJoin
* Change kafka_proxy monitoring rootsavnik2023-08-311-1/+1
|
* Fix path comparison on Windowssomov2023-08-311-1/+1
|
* Update contrib/libs/postgresql to 15.4robot-contrib2023-08-315-19/+182
|
* Added secrets snapshot waitinggrigoriypisar2023-08-3120-84/+143
| | | | Added secrets snapshot waiting timeout.
* fix double -linkmode=externalsnermolaev2023-08-311-2/+3
|
* YQL-16358 Fix.a-romanov2023-08-311-7/+5
|
* Automatic release build for ya_bin3, ya_bin, test_tool, test_tool3robot-ya-builder2023-08-311-4/+4
| | | | | | | | | From hash: [785893c161b89d2c9660deac25e627fe01389dbb](https://a.yandex-team.ru/arcadia/commit/785893c161b89d2c9660deac25e627fe01389dbb) From revision: [12298702](https://a.yandex-team.ru/arcadia/commit/rXXXXXX) [CI flow](https://a.yandex-team.ru/projects/ya_make/ci/releases/flow?dir=devtools%2Fya&id=release-ya-bin2-ya-bin3-tts&version=222) Flow triggered by user: [prettyboy](https://staff.yandex-team.ru/prettyboy) Update tools: ya_bin3, ya_bin, test_tool, test_tool3
* Kafka metricssavnik2023-08-3125-144/+347
|
* Fix read without consumersavnik2023-08-314-14/+21
|
* Fail on bind error for Kafka porttesseract2023-08-315-19/+34
|
* (no commit message)pg2023-08-313-8/+7
|
* YT-19894: Don't use ReadLockWriteRow wire protocol command.ponasenko-rs2023-08-312-0/+14
|
* Add default branch for stat propagationaozeritsky2023-08-313-6/+44
|
* KIKIMR-19155: Add drop table to prepare ddlshumkovnd2023-08-307-47/+198
|
* Fix GROUP BY scalaraneporada2023-08-301-2/+6
|
* pragma s3.UseBlocksSource="true"; by defaulthor9112023-08-301-0/+8
|
* Partition (S3) to up to 120 rangeshor9112023-08-301-1/+8
|
* Added custom batch limiter to TNonblockingBatchmikari2023-08-3013-435/+658
|
* (no commit message)pg2023-08-301-1/+5
|
* Intermediate changesrobot-piglet2023-08-305-0/+213
|
* finally, allow more than one listener threadkulikov2023-08-303-24/+108
| | | | | | | | | | | | | | | | | | With single poller thread on incoming connections, every OS scheduler latency on this thread wakeup directly affects requests timings. With oneshot poll events, we can poll on the same poller from many threads, and, if one thread has stalled for some reason, some other will take it's work on the next incoming event. So: - make vector of listener threads instead of single one; - add nListenerThreads option; - stop request queues and listening sockets from the last finished thread; - check incoming options and set OneShotPoll if needed. There is a problem around removing connections on MaxConnections limit or ExpirationTimeout. There is no simple way to safely remove items from epoll (https://lwn.net/Articles/520012/) if it has raw pointers in event data. Try to handle it via postponed deletion of connection objects, wait until all listener threads are ready to reenter poller wait and there are no threads where deleted object can be used: - close socket immediately after remove from poller, but instead of immediate TClientConnection destruction, put it to "pending delete" list; - add cleanup state with thread mask, each bit stating that corresponding thread should reenter poller; - call Cleanup routine before each poller wait, it will switch to 0 current thread's bit for each pending connection; - when thread mask becomes all zero, really delete the connection; - force there is a timeout for poller wait, ensure that all threads do reenter; - add more configurations for some tests. There is no significant changes or overhead for standard case with single listener thread, cleanup and pending deletion are just skipped. Also there is no overhead for common case where removing connections is rare. Here is the same review with nListenerThreads = 4 by default https://a.yandex-team.ru/review/4413226.
* Moved udf_test and refactored test_frameworkvvvv2023-08-3028-1/+5821
| | | | | | | | | | | | | | | | | | | | | Локально упавший тест выполняется %% vvvv@mr-nvme-testing-08:~/repo/arcadia/statbox/nile/tests/yql/py2/part_2$ arc checkout move_udf_test_and_refactor_tf Switched to branch 'move_udf_test_and_refactor_tf' vvvv@mr-nvme-testing-08:~/repo/arcadia/statbox/nile/tests/yql/py2/part_2$ ya make -tA -F '*test_unchanged_table*' Warn[-WPluginErr]: in $B/statbox/nile/tests/yql/py2/part_2/libpy2-part_2.so: Requirement cpu is redefined 2 -> 4 Warn[-WPluginErr]: in $B/statbox/nile/tests/yql/py2/part_2/libpy2-part_2.so: Requirement ram is redefined 16 -> 9 Number of suites skipped by name: 2, by filter *test_unchanged_table* Total 1 suite: 1 - GOOD Total 4 tests: 4 - GOOD Ok %% судя по ошибке он flaky
* Proofread licenses in contrib/libs/webrtcthegeorg2023-08-301-0/+1
| | | | | | | | | | | | | ``` /* * http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html * Copyright Takuya OOURA, 1996-2001 * * You may use, copy, modify and distribute this code for any purpose (include * commercial use) and without fee. Please refer to this package when you modify * this code. */ ```
* Fix input variable missprintsvidyuk2023-08-302142-968/+79908
|
* Consider Google-Patent-License-Webrtc and Google-Patent-License-Webm ↵thegeorg2023-08-301-0/+1
| | | | as-Clause additions
* Use tcmalloc for dqrunaozeritsky2023-08-301-1/+5
|
* В аркадии вместо x64 jdk для windows лежит x32. ↵pazus2023-08-301-1/+1
| | | | Нужно заменить
* KIKIMR-19038: config support for QueryServiceandrewproni2023-08-3021-60/+113
|
* Fix WideToBlocks optimizers and improve type annotationaneporada2023-08-304-6/+28
| | | | initial
* YT-19872: Store protobuf scalar element typegrigminakov2023-08-306-8/+258
| | | | Added typing support