| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| |
|
|
|
|
| |
This reverts commit b5399faf1a9757b07a2d2ee25bd16b8a27be7939, reversing
changes made to d7e3e35dd1a856c587d7a9eb2e0dd180d3cf39ed.
82c6dea5d3958fc85ee39e7bcc23c6ec24d6aee9
|
| |
|
|
| |
85671f0cf4f45b4f015fa2cc0d195b81c16c6e8a
|
| |
|
|
|
|
| |
тестирование HLL на случайно сгенерированных данных:
p=10 показывает худшую погрешность в 9.9% (равномерное распределение на отрезке [0, 10^6), 10 HLL-групп, 1М значений, 631К уникальных
b5399faf1a9757b07a2d2ee25bd16b8a27be7939
|
| |
|
|
|
|
| |
Похоже в rXXXXXX по ошибке перенесли комментарий из `Abort()` в `Finish()`:
https://a.yandex-team.ru/arcadia/commit/rXXXXXX#file-mapreduce/yt/interface/io.h:L208
c182c2732c309d8c5371e3ef8071ecd07aa54928
|
| |
|
|
|
| |
Adds redirect_stdout_to_stderr spec option for operations that allows writing to stdout as if it was stderr.
6a8ac5f21955a79848d86f72715628c7b8bb65c4
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
I left only these typos:
```cpp
# Build.
build/scripts/link_sbom.py
61: res["properties"].append({'name': 'has_uncommited_changes', 'value': True})
# Contrib.
contrib/clickhouse/src/Coordination/KeeperLogStore.h
19: /// Read log storage from filesystem starting from last_commited_log_index
20: void init(uint64_t last_commited_log_index, uint64_t logs_to_keep);
contrib/clickhouse/src/Coordination/KeeperStateManager.h
36: void loadLogStore(uint64_t last_commited_index, uint64_t logs_to_keep);
contrib/clickhouse/src/Coordination/Changelog.h
100: void readChangelogAndInitWriter(uint64_t last_commited_log_index, uint64_t logs_to_keep);
contrib/clickhouse/src/Databases/DatabaseReplicatedSettings.h
13: M(UInt64, wait_entry_commited_timeout_sec, 3600, "Replicas will try to cancel query if timeout exceed, but initiator host has not executed it yet", 0) \
contrib/clickhouse/src/Databases/DatabaseReplicatedWorker.cpp
337: size_t max_iterations = database->db_settings.wait_entry_commited_timeout_sec;
contrib/python/pytest-benchmark/pytest_benchmark/utils.py
77: parts.append("uncommited-changes")
contrib/libs/poco/Data/include/Poco/Data/Transaction.h
57: /// commited automatically. If no error occurs, rollback is disabled and does
85: /// Rolls back the current database transaction if it has not been commited
contrib/clickhouse/src/Storages/StorageMergeTree.cpp
2061: /// and we should be able to rollback already added (Precomitted) parts
# Kinda contrib.
yt/spark/spark/sql/core/src/test/scala/org/apache/spark/sql/execution/streaming/state/StateStoreSuite.scala
1048: // Reload the store from the commited version and repeat the above test.
# Metrics tag :(
yt/yt/server/master/security_server/security_manager.cpp
595: TWithTagGuard guard(&buffer, "status", "commited");
599: TWithTagGuard guard(&buffer, "status", "uncommited");
```
The only backwards incompatible place is:
https://github.com/ytsaurus/ytsaurus/blob/091bcf82fe4fc8d9a967eb36beddf5767e92e659/yt/python/yt/wrapper/dynamic_table_commands.py#L26-L27
---
9f6a944af13ef3fbf3f25c15b2c2d3982ed7e39b
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/566
Co-authored-by: ignat <[email protected]>
|
| |
|
|
|
| |
Pass table index via SkiffRowHints
73ade54789f2bab159368dfcc876b0a6121b4e7a
|
| |
|
|
|
|
|
| |
in Retry()
Don't ignore backoff and pass actual exception in Retry()
b821c02fd21c9f8115cd2a4896372a9fda69e5f6
|
| |
|
|
| |
404e999bcffb20d5497161a98f48f566b5245704
|
| |
|
|
| |
e6d585180289325f8082f42f85a60478194ba266
|
| |
|
|
| |
5c990fdee5899ef1cfcc5429f3631998277cd218
|
| |
|
|
| |
d547e94dc63865b96a5cdfbe9866d87b11a57193
|
| |
|
|
| |
7ae047ef618cc44d7dd3e817dc27f2336d9e38c3
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
After this PR yt/cpp and yt/yt/core are possible to be built both with Arcadia protobuf (that uses TString as a string) and vanilla protobuf (that uses std::string as a string). To achieve so, a couple of interoperability primitives are introduced.
* `TProtobufString` is an alias to protobuf string type, i.e. it can be `TString` or `std::string` depending on the protobuf implementation.
* `IsVanillaProtobuf` and `IsArcadiaProtobuf` are the constexpr boolean values that allow to check protobuf implementation both in the compile time and runtime.
The most challenging interoperability issue solved here is a string copy between protobuf message and C++ code that has a form of `TString str = msg.str()`. This code works perfect with Arcadia protobuf but does not work with vanilla protobuf. To solve it, a previously introduced primitive `FromProto<TString>` is used. This expression makes the most efficient cast possible between protobuf string and C++ string. Internally, it is just a copy in both cases. Since TString is CoW by default, this expression is almost zero-cost (actually it's just one atomic operation), so no degradation is expected for YTsaurus server builds. The most hot code is handled differently to avoid even atomic operations (see `GetRequestTargetYPath`). In case of vanilla protobuf string is copied, however there are no places in C++ SDK where it might be a problem. If such issues would appear, performance-critial code can be rewritten in `GetRequestTargetYPath`-style.
---
1a6f3e02cb6e83915102c24b73bc8734f6a48e74
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/466
|
| |
|
|
| |
febae4e49cd0f600bf21616025f210e99235cfdc
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
| |
default
Executed command: `./erm --verbose --profile update @yatool/prebuilder`
|
| |
|
|
| |
Relates: https://st.yandex-team.ru/, https://st.yandex-team.ru/
|
| | |
|
| |
|
|
|
| |
* Library import 5, delete go dependencies
* Fix yt client
|
| | |
|
| |
|
|
| |
Update tools: yexport, os-yexport
|
| |
|
|
| |
before sending to network
|
| |
|
|
|
|
| |
add options
YT-20315: Support retries of cross cell copying
|
| |
|
|
|
|
|
|
|
|
|
|
| |
I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=en
Fix for https://github.com/ytsaurus/ytsaurus/issues/173
---
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/174
Co-authored-by: ermolovd <[email protected]>
|
| |
|
|
|
| |
This reverts commit 9b45f88f366c2a170ab826922dd6eeaa64ea4192, reversing
changes made to d6dc5a658da5b61fd71e72f1a60479989c5c64c5.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
| |
Example
YT_PROXY=https://freud.yt.yandex.net
|
| | |
|
| |
|
|
|
|
|
|
| |
test with acquire ram buffers
Add test on write with acquiring hard limit on file writer
Implement acquire ram buffers setting for parallel file writer
|
| | |
|
| |
|
|
|
|
| |
add using http-proxy for reading table from YT
Нам нужна возможность ходить в YT через HTTP proxy для чтения таблиц, используя С++ клиент не из контура Яндекса, к сожалению, сейчас такой возможности нет. В этом ПР черновик изменения, которого нам достаточно
https://a.yandex-team.ru/review/4676436/details - тут это же изменение в YT + коммит с тем, как мы планируем использовать
|
| |
|
|
| |
https://clubs.at.yandex-team.ru/arcadia/29404
|
| | |
|
| |
|
|
| |
https://clubs.at.yandex-team.ru/arcadia/29404
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|