Azat Khuzhin
|
ca071381e1
|
Merge remote-tracking branch 'upstream/master' into writer-partial-buffer
|
2021-02-03 23:46:39 +03:00 |
|
Azat Khuzhin
|
46f5268135
|
Fix incorrect WriteBuffer interface usage in message brokers producers
WriteBufferToKafkaProducer and WriteBufferToRabbitMQProducer uses
WriteBuffer::set(nullptr, 0) which will leave the WriteBuffer in the
invalid state, since after this available() is 0 and next() will not
call nextImpl().
Stacktrace:
2021.02.02 05:27:16.248056 [ 97 ] {} <Fatal> BaseDaemon: ########################################
2021.02.02 05:27:16.248697 [ 97 ] {} <Fatal> BaseDaemon: (version 21.3.1.5880, build id: 03F265087EF651DC4D8E569775FE9E91FFA5DE76) (from thread 93) (query_id: 8c34c220-f66a-45d2-8f4f-01193cede98b) Received signal Segmentation fault (11)
2021.02.02 05:27:16.249030 [ 97 ] {} <Fatal> BaseDaemon: Address: NULL pointer. Access: write. Address not mapped to object.
2021.02.02 05:27:16.249623 [ 97 ] {} <Fatal> BaseDaemon: Stack trace: 0x12f3dbeb 0x12efd075 0x12efc90e 0x12ebb0e9 0x12ebe0cb 0x12e1da18 0x12a8c857 0x1219aa62 0x1218fc82 0x1218fdaa 0x11e3f120 0x12dfa3df 0x12df42a4 0x12e00fa8 0x158cdc63 0x158ce38f 0x15a36b72 0x15a35110 0x15a33918 0x8adf12d 0x7fb5e0fe3609 0x7fb5e0f0a293
2021.02.02 05:27:16.408985 [ 97 ] {} <Fatal> BaseDaemon: 5. ./obj-x86_64-linux-gnu/../src/IO/WriteHelpers.h:64: DB::JSONEachRowRowOutputFormat::writeRowStartDelimiter() @ 0x12f3dbeb in /usr/bin/clickhouse
2021.02.02 05:27:16.534797 [ 97 ] {} <Fatal> BaseDaemon: 6. ./obj-x86_64-linux-gnu/../src/Processors/Formats/IRowOutputFormat.cpp:80: DB::IRowOutputFormat::write(std::__1::vector<COW<DB::IColumn>::immutable_ptr<DB::IColumn>, std::__1::allocator<COW<DB::IColumn>::immutable_ptr<DB::IColumn> > > const&, unsigned long) @ 0x12efd075 in /usr/bin/clickhouse
2021.02.02 05:27:16.599210 [ 97 ] {} <Fatal> BaseDaemon: 7. ./obj-x86_64-linux-gnu/../src/Processors/Formats/IRowOutputFormat.cpp:0: DB::IRowOutputFormat::consume(DB::Chunk) @ 0x12efc90e in /usr/bin/clickhouse
2021.02.02 05:27:16.680733 [ 97 ] {} <Fatal> BaseDaemon: 8. ./obj-x86_64-linux-gnu/../contrib/libcxx/include/memory:3211: DB::IOutputFormat::write(DB::Block const&) @ 0x12ebb0e9 in /usr/bin/clickhouse
2021.02.02 05:27:16.798768 [ 97 ] {} <Fatal> BaseDaemon: 9. ./obj-x86_64-linux-gnu/../src/Processors/Formats/OutputStreamToOutputFormat.cpp:15: DB::OutputStreamToOutputFormat::write(DB::Block const&) @ 0x12ebe0cb in /usr/bin/clickhouse
2021.02.02 05:27:16.981593 [ 97 ] {} <Fatal> BaseDaemon: 10. ./obj-x86_64-linux-gnu/../src/DataStreams/MaterializingBlockOutputStream.h:0: DB::MaterializingBlockOutputStream::write(DB::Block const&) @ 0x12e1da18 in /usr/bin/clickhouse
2021.02.02 05:27:17.090383 [ 97 ] {} <Fatal> BaseDaemon: 11. ./obj-x86_64-linux-gnu/../src/Storages/RabbitMQ/RabbitMQBlockOutputStream.cpp:61: DB::RabbitMQBlockOutputStream::write(DB::Block const&) @ 0x12a8c857 in /usr/bin/clickhouse
2021.02.02 05:27:17.140425 [ 97 ] {} <Fatal> BaseDaemon: 12. ./obj-x86_64-linux-gnu/../src/DataStreams/AddingDefaultBlockOutputStream.cpp:0: DB::AddingDefaultBlockOutputStream::write(DB::Block const&) @ 0x1219aa62 in /usr/bin/clickhouse
2021.02.02 05:27:17.190282 [ 97 ] {} <Fatal> BaseDaemon: 13. ./obj-x86_64-linux-gnu/../src/DataStreams/SquashingBlockOutputStream.cpp:0: DB::SquashingBlockOutputStream::finalize() @ 0x1218fc82 in /usr/bin/clickhouse
2021.02.02 05:27:17.240052 [ 97 ] {} <Fatal> BaseDaemon: 14. ./obj-x86_64-linux-gnu/../contrib/libcxx/include/memory:2844: DB::SquashingBlockOutputStream::writeSuffix() @ 0x1218fdaa in /usr/bin/clickhouse
2021.02.02 05:27:17.294527 [ 97 ] {} <Fatal> BaseDaemon: 15. ./obj-x86_64-linux-gnu/../src/DataStreams/CountingBlockOutputStream.h:37: DB::CountingBlockOutputStream::writeSuffix() @ 0x11e3f120 in /usr/bin/clickhouse
2021.02.02 05:27:17.405442 [ 97 ] {} <Fatal> BaseDaemon: 16. ./obj-x86_64-linux-gnu/../src/Server/TCPHandler.cpp:521: DB::TCPHandler::processInsertQuery(DB::Settings const&) @ 0x12dfa3df in /usr/bin/clickhouse
2021.02.02 05:27:17.475822 [ 97 ] {} <Fatal> BaseDaemon: 17. ./obj-x86_64-linux-gnu/../src/Server/TCPHandler.cpp:0: DB::TCPHandler::runImpl() @ 0x12df42a4 in /usr/bin/clickhouse
2021.02.02 05:27:17.609845 [ 97 ] {} <Fatal> BaseDaemon: 18. ./obj-x86_64-linux-gnu/../src/Server/TCPHandler.cpp:1419: DB::TCPHandler::run() @ 0x12e00fa8 in /usr/bin/clickhouse
2021.02.02 05:27:17.695292 [ 97 ] {} <Fatal> BaseDaemon: 19. ./obj-x86_64-linux-gnu/../contrib/poco/Net/src/TCPServerConnection.cpp:57: Poco::Net::TCPServerConnection::start() @ 0x158cdc63 in /usr/bin/clickhouse
2021.02.02 05:27:17.833612 [ 97 ] {} <Fatal> BaseDaemon: 20. ./obj-x86_64-linux-gnu/../contrib/poco/Net/src/TCPServerDispatcher.cpp:0: Poco::Net::TCPServerDispatcher::run() @ 0x158ce38f in /usr/bin/clickhouse
2021.02.02 05:27:17.907391 [ 97 ] {} <Fatal> BaseDaemon: 21. ./obj-x86_64-linux-gnu/../contrib/poco/Foundation/include/Poco/ScopedLock.h:36: Poco::PooledThread::run() @ 0x15a36b72 in /usr/bin/clickhouse
2021.02.02 05:27:18.033949 [ 97 ] {} <Fatal> BaseDaemon: 22. ./obj-x86_64-linux-gnu/../contrib/poco/Foundation/src/Thread.cpp:56: Poco::(anonymous namespace)::RunnableHolder::run() @ 0x15a35110 in /usr/bin/clickhouse
2021.02.02 05:27:18.122761 [ 97 ] {} <Fatal> BaseDaemon: 23. ./obj-x86_64-linux-gnu/../contrib/poco/Foundation/include/Poco/SharedPtr.h:277: Poco::ThreadImpl::runnableEntry(void*) @ 0x15a33918 in /usr/bin/clickhouse
2021.02.02 05:27:18.283663 [ 97 ] {} <Fatal> BaseDaemon: 24. __tsan_thread_start_func @ 0x8adf12d in /usr/bin/clickhouse
2021.02.02 05:27:18.284153 [ 97 ] {} <Fatal> BaseDaemon: 25. start_thread @ 0x9609 in /usr/lib/x86_64-linux-gnu/libpthread-2.31.so
2021.02.02 05:27:18.284544 [ 97 ] {} <Fatal> BaseDaemon: 26. __clone @ 0x122293 in /usr/lib/x86_64-linux-gnu/libc-2.31.so
2021.02.02 05:27:21.675458 [ 97 ] {} <Fatal> BaseDaemon: Calculated checksum of the binary: B53B58DB6CF8186EEC9EA9273F135E44. There is no information about the reference checksum.
2021.02.02 05:27:28.078805 [ 1 ] {} <Fatal> Application: Child process was terminated by signal 11.
|
2021-02-03 23:46:28 +03:00 |
|
alexey-milovidov
|
9d8033d8d6
|
Merge pull request #20050 from azat/fix-tests-references
Fix tests *.reference files
|
2021-02-03 22:49:04 +03:00 |
|
Azat Khuzhin
|
cc43f92719
|
Fix tests *.reference files
Using:
sed -i 's/MergeTree with order/MergeTree with order/g' tests/queries/0_stateless/*.reference
Fixes: dc2afc4795 ("Fix double whitespace #18383")
|
2021-02-03 22:45:54 +03:00 |
|
alexey-milovidov
|
c715f0e2ed
|
Merge pull request #20044 from bharatnc/ncb/docs-fix-tracelog
Docs (system.trace_log) - fix unit for event_time_microseconds
|
2021-02-03 22:34:43 +03:00 |
|
alexey-milovidov
|
ca06d3b317
|
Merge branch 'master' into fix-rocksdb
|
2021-02-03 21:28:50 +03:00 |
|
alexey-milovidov
|
402c018d1e
|
Merge pull request #19947 from azat/dist-INSERT-block-structure-mismatch
Fix "Block structure mismatch" for INSERT into Distributed
|
2021-02-03 21:27:45 +03:00 |
|
alexey-milovidov
|
0aca4a740c
|
Update 01700_point_in_polygon_ubsan.sql
|
2021-02-03 21:26:03 +03:00 |
|
Alexey Milovidov
|
eb8b2e883a
|
Add a test
|
2021-02-03 21:25:04 +03:00 |
|
Alexey Milovidov
|
05c5c8ed80
|
Avoid UBSan report in pointInPolygon
|
2021-02-03 21:23:54 +03:00 |
|
Alexey Milovidov
|
dc2afc4795
|
Fix double whitespace #18383
|
2021-02-03 21:12:14 +03:00 |
|
alexey-milovidov
|
867f5a8975
|
Merge pull request #20029 from ClickHouse/remove-useless-code-5
Remove useless code
|
2021-02-03 21:06:43 +03:00 |
|
Alexey Milovidov
|
40939ff6ba
|
Fix data race in executable dictionary
|
2021-02-03 20:45:50 +03:00 |
|
bharatnc
|
dc6a9ab9f9
|
Docs - fix unit for event_time_microseconds system.trace_log
|
2021-02-03 09:38:02 -08:00 |
|
Nikolai Kochetov
|
c39c965612
|
Merge pull request #19962 from keen-wolf/timezoneOffset
Implement the timezoneOffset function
|
2021-02-03 20:37:34 +03:00 |
|
Alexey Milovidov
|
82ab793731
|
Fix missing type check in StorageEmbeddedRocksDB
|
2021-02-03 20:35:23 +03:00 |
|
Alexander Kuzmenkov
|
ec382d8812
|
BETWEEN CURRENT ROW AND CURRENT ROW
|
2021-02-03 17:55:40 +03:00 |
|
Alexander Kuzmenkov
|
35754abb4a
|
CURRENT ROW frame start for RANGE frame
|
2021-02-03 17:22:37 +03:00 |
|
Alexander Kuzmenkov
|
7c55ecf67d
|
cleanup
|
2021-02-03 16:41:59 +03:00 |
|
Alexander Kuzmenkov
|
bd6d7facf1
|
style
|
2021-02-03 16:33:50 +03:00 |
|
Alexander Kuzmenkov
|
d8a9d347fe
|
Merge pull request #20000 from ClickHouse/aku/perf
update perf tests
|
2021-02-03 16:06:58 +03:00 |
|
Alexander Kuzmenkov
|
f31d2206a7
|
more fuzzing and less bugs
|
2021-02-03 15:50:25 +03:00 |
|
Pavel Kovalenko
|
62e96c138e
|
Remove unused error code in DiskS3
|
2021-02-03 15:01:43 +03:00 |
|
alexey-milovidov
|
3b52b04008
|
Merge pull request #20033 from ClickHouse/aku/changelog
update changelog
|
2021-02-03 14:48:36 +03:00 |
|
Pavel Kovalenko
|
b6094859c7
|
Throw exception during restore DiskS3 if object doesn't have path in metadata.
|
2021-02-03 14:26:24 +03:00 |
|
Pavel Kovalenko
|
b7151aa754
|
Merge remote-tracking branch 'origin/master' into disk-s3-backup-restore-metadata
# Conflicts:
# src/Disks/DiskDecorator.h
# src/Disks/IDisk.h
# src/Disks/S3/DiskS3.cpp
|
2021-02-03 14:22:18 +03:00 |
|
alexey-milovidov
|
61df1dd872
|
Update CHANGELOG.md
|
2021-02-03 14:11:13 +03:00 |
|
alexey-milovidov
|
a976d682a9
|
Update CHANGELOG.md
|
2021-02-03 14:09:23 +03:00 |
|
alexey-milovidov
|
cd1f11c85a
|
Update string-search-functions.md
|
2021-02-03 14:07:14 +03:00 |
|
alexey-milovidov
|
e5fb59851d
|
Update string-search-functions.md
|
2021-02-03 14:06:57 +03:00 |
|
tavplubix
|
b24f73fd88
|
remove outdated comment
|
2021-02-03 13:27:41 +03:00 |
|
Alexander Kuzmenkov
|
5796b6fbf9
|
update changelog
|
2021-02-03 13:22:29 +03:00 |
|
tavplubix
|
50362840bb
|
Merge pull request #19924 from amosbird/ddlworker2
Initialize MaxDDLEntryID upon restarting
|
2021-02-03 13:22:22 +03:00 |
|
vdimir
|
bb9a7e89df
|
Merge pull request #19772 from gyuton/gyuton-DOCSUP-5931-Document_the_byteSize_function
DOCSUP-5931: Documented the byteSize function
|
2021-02-03 13:12:03 +03:00 |
|
Alexey Milovidov
|
02da869d10
|
Remove useless code
|
2021-02-03 12:46:41 +03:00 |
|
robot-clickhouse
|
def3c8fef7
|
Update version_date.tsv after release 20.12.5.18
|
2021-02-03 12:26:09 +03:00 |
|
Alexander Kuzmenkov
|
53052f7040
|
Update group_by_sundy_li.xml
|
2021-02-03 12:22:02 +03:00 |
|
Nikolai Kochetov
|
ebab5df236
|
Update ya.make
|
2021-02-03 12:13:44 +03:00 |
|
Alexander Kuzmenkov
|
bb45c5a8ff
|
Merge remote-tracking branch 'origin/master' into HEAD
|
2021-02-03 12:13:23 +03:00 |
|
Maksim Kita
|
ba45cf32ab
|
Merge pull request #19858 from kitaisreal/reinterpret-as-updated-to-big-integers
Function reinterpretAs updated to support big integers
|
2021-02-03 12:12:13 +03:00 |
|
Alexander Kuzmenkov
|
1b47cf08a9
|
Merge pull request #19921 from ClickHouse/aku/window-prototype-2
UNBOUNDED FOLLOWING frame end
|
2021-02-03 12:10:37 +03:00 |
|
Alexander Kuzmenkov
|
3c0a5d2226
|
fix invalid iterator addition
|
2021-02-03 12:09:31 +03:00 |
|
Alexander Kuzmenkov
|
dad4f82e0e
|
fix invalid iterator addition
|
2021-02-03 12:08:46 +03:00 |
|
robot-clickhouse
|
ebdea09ec0
|
Update version_date.tsv after release 21.1.3.32
|
2021-02-03 12:08:04 +03:00 |
|
robot-clickhouse
|
5e11e13351
|
Update version_date.tsv after release 20.11.7.16
|
2021-02-03 12:05:47 +03:00 |
|
George
|
b1a43b9d85
|
fixed link
|
2021-02-03 11:20:32 +03:00 |
|
George
|
004c33847e
|
Added original article
|
2021-02-03 11:17:33 +03:00 |
|
George
|
678f53eaef
|
Fixed a link
|
2021-02-03 11:15:25 +03:00 |
|
George
|
3d522e5da9
|
Updated description
|
2021-02-03 10:56:53 +03:00 |
|
alexey-milovidov
|
12be9d51a9
|
Merge pull request #20012 from ClickHouse/filimonov-docker-host-patch-1
Update entrypoint.sh
|
2021-02-03 10:36:00 +03:00 |
|