mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
Merge branch 'master' into DOCAPI-4157-sample-factor
This commit is contained in:
commit
12740809d0
13
CHANGELOG.md
13
CHANGELOG.md
@ -1,3 +1,10 @@
|
|||||||
|
## ClickHouse release 19.3.5, 2019-02-21
|
||||||
|
|
||||||
|
### Bug fixes
|
||||||
|
* Fixed bug with large http insert queries processing. [#4454](https://github.com/yandex/ClickHouse/pull/4454) ([alesapin](https://github.com/alesapin))
|
||||||
|
* Fixed backward incompatibility with old versions due to wrong implementation of `send_logs_level` setting. [#4445](https://github.com/yandex/ClickHouse/pull/4445) ([alexey-milovidov](https://github.com/alexey-milovidov))
|
||||||
|
* Fixed backward incompatibility of table function `remote` introduced with column comments. [#4446](https://github.com/yandex/ClickHouse/pull/4446) ([alexey-milovidov](https://github.com/alexey-milovidov))
|
||||||
|
|
||||||
## ClickHouse release 19.3.4, 2019-02-16
|
## ClickHouse release 19.3.4, 2019-02-16
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
@ -116,6 +123,12 @@
|
|||||||
* Improved server shutdown time and ALTERs waiting time. [#4372](https://github.com/yandex/ClickHouse/pull/4372) ([alexey-milovidov](https://github.com/alexey-milovidov))
|
* Improved server shutdown time and ALTERs waiting time. [#4372](https://github.com/yandex/ClickHouse/pull/4372) ([alexey-milovidov](https://github.com/alexey-milovidov))
|
||||||
* Added info about the replicated_can_become_leader setting to system.replicas and add logging if the replica won't try to become leader. [#4379](https://github.com/yandex/ClickHouse/pull/4379) ([Alex Zatelepin](https://github.com/ztlpn))
|
* Added info about the replicated_can_become_leader setting to system.replicas and add logging if the replica won't try to become leader. [#4379](https://github.com/yandex/ClickHouse/pull/4379) ([Alex Zatelepin](https://github.com/ztlpn))
|
||||||
|
|
||||||
|
## ClickHouse release 19.1.9, 2019-02-21
|
||||||
|
|
||||||
|
### Bug fixes
|
||||||
|
* Fixed backward incompatibility with old versions due to wrong implementation of `send_logs_level` setting. [#4445](https://github.com/yandex/ClickHouse/pull/4445) ([alexey-milovidov](https://github.com/alexey-milovidov))
|
||||||
|
* Fixed backward incompatibility of table function `remote` introduced with column comments. [#4446](https://github.com/yandex/ClickHouse/pull/4446) ([alexey-milovidov](https://github.com/alexey-milovidov))
|
||||||
|
|
||||||
## ClickHouse release 19.1.8, 2019-02-16
|
## ClickHouse release 19.1.8, 2019-02-16
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
@ -1045,15 +1045,10 @@ void BaseDaemon::initialize(Application & self)
|
|||||||
/// 1 GiB by default. If more - it writes to disk too long.
|
/// 1 GiB by default. If more - it writes to disk too long.
|
||||||
rlim.rlim_cur = config().getUInt64("core_dump.size_limit", 1024 * 1024 * 1024);
|
rlim.rlim_cur = config().getUInt64("core_dump.size_limit", 1024 * 1024 * 1024);
|
||||||
|
|
||||||
if (setrlimit(RLIMIT_CORE, &rlim))
|
if (rlim.rlim_cur && setrlimit(RLIMIT_CORE, &rlim))
|
||||||
{
|
{
|
||||||
std::string message = "Cannot set max size of core file to " + std::to_string(rlim.rlim_cur);
|
|
||||||
#if !defined(ADDRESS_SANITIZER) && !defined(THREAD_SANITIZER) && !defined(MEMORY_SANITIZER) && !defined(SANITIZER) && !defined(__APPLE__)
|
|
||||||
throw Poco::Exception(message);
|
|
||||||
#else
|
|
||||||
/// It doesn't work under address/thread sanitizer. http://lists.llvm.org/pipermail/llvm-bugs/2013-April/027880.html
|
/// It doesn't work under address/thread sanitizer. http://lists.llvm.org/pipermail/llvm-bugs/2013-April/027880.html
|
||||||
std::cerr << message << std::endl;
|
std::cerr << "Cannot set max size of core file to " + std::to_string(rlim.rlim_cur) << std::endl;
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user