owner
stringclasses
14 values
repo
stringclasses
14 values
id
int64
116k
4.61B
issue_number
int32
1
181k
author
stringlengths
1
39
body
stringlengths
1
262k
created_at
timestamp[us]date
2000-06-06 02:40:44
2026-06-02 20:16:18
updated_at
timestamp[us]date
2000-06-06 02:40:44
2026-06-02 20:22:56
reactions
unknown
author_association
stringclasses
5 values
ClickHouse
ClickHouse
278,432,160
469
marklit
Looks like I'll need to transform the blanks to ``\N``. Switching to tabs and using TSV format for importing is raising the same issues.
2017-02-08T19:17:56
2017-02-08T19:17:56
{}
NONE
ClickHouse
ClickHouse
278,850,685
360
aadim
Hi! I'm trying to build Clickhouse on Sierra and have the following error `cmake .. -DUSE_STATIC_LIBRARIES=0 -DNO_WERROR=1 -DCMAKE_CXX_COMPILER=`which g++-6` -DCMAKE_C_COMPILER=`which gcc-6`` `make -j 2 clickhouse` ``` [ 79%] Building CXX object dbms/CMakeFiles/dbms.dir/src/Dictionaries/DictionarySource...
2017-02-10T03:48:49
2017-02-10T03:48:49
{}
NONE
ClickHouse
ClickHouse
279,170,032
481
alexey-milovidov
autotests
2017-02-11T19:34:40
2017-02-11T19:34:40
{}
MEMBER
ClickHouse
ClickHouse
279,262,404
478
alexey-milovidov
12. "Use cases" are using too small font size and outweights near elements.
2017-02-12T23:35:14
2017-02-12T23:37:00
{}
MEMBER
ClickHouse
ClickHouse
279,794,185
412
alexey-milovidov
No problem and thank you for investigating.
2017-02-14T18:33:54
2017-02-14T18:33:54
{}
MEMBER
ClickHouse
ClickHouse
280,043,941
495
jarwin123
clickhouse have some User Defined Function?
2017-02-15T15:35:41
2017-02-15T15:35:41
{}
NONE
ClickHouse
ClickHouse
280,054,080
495
jarwin123
yes ,in same machine. the error: [root@localhost build]# clickhouse-client ClickHouse client version 1.1.54164. Connecting to localhost:9000. Connected to ClickHouse server version 1.1.54164. /usr/share/zoneinfo/CST: No such file or directory Poco::Exception: Exception: Cannot load time zone CST use this c...
2017-02-15T16:08:32
2017-02-15T16:10:16
{}
NONE
ClickHouse
ClickHouse
278,441,014
469
marklit
If you could that would be great. In the mean time I've put together a Python script to transform the data: ```python import sys for line in sys.stdin: print ','.join([item if len(item.strip()) else '\N' for item in line.strip().split(',')]) ``` I'm running the import now and it s...
2017-02-08T19:49:06
2017-02-08T19:49:06
{ "heart": 1 }
NONE
ClickHouse
ClickHouse
279,261,550
478
alexey-milovidov
1. We need to replace Telegram logo with something reasonable. 2. The page looks bad when browser window resized to 2560 pixels horizontally. Need to specify max-width. 3. ClickHouse and menu items on top must be aligned on same line at bottom. 4. Padding at right of top menu items should be more. 5. Padding from l...
2017-02-12T23:28:01
2017-02-12T23:28:01
{}
MEMBER
ClickHouse
ClickHouse
279,428,573
479
alexey-milovidov
> How about add support Consul as drop-in replacement ZooKeeper? It is difficult, because we are using ZooKeeper specific functionality like watches, ephemeral nodes, sequential nodes. Implementing common abstraction on top of ZooKeeper and Consul seems very hard. Porting code to Consul is possible, but it is n...
2017-02-13T15:41:01
2017-02-13T15:41:01
{ "+1": 8, "confused": 12 }
MEMBER
ClickHouse
ClickHouse
280,042,354
495
ztlpn
For ClickHouse to function properly, server timezone must be set to one of [TZ database timezones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). These correspond to files in /usr/share/zoneinfo/. For CST the corresponding name is probably 'US/Central' or 'America/Chicago'. How did you configure the ...
2017-02-15T15:30:18
2017-02-15T15:32:55
{}
CONTRIBUTOR
ClickHouse
ClickHouse
280,047,673
495
jarwin123
no, i cannot change timezone,maybe poco library have some problem!
2017-02-15T15:47:32
2017-02-15T15:47:32
{}
NONE
ClickHouse
ClickHouse
280,067,377
495
ztlpn
I can't figure out where this erroneous timezone string 'CST' is coming from. Please provide additional information: 1. Which Unix flavor/Linux distribution do you use? 2. What happens when you erase timezone parameter from ClickHouse configs and start clickhouse-server? If it fails to start, what is the error messag...
2017-02-15T16:51:13
2017-02-15T16:51:13
{}
CONTRIBUTOR
ClickHouse
ClickHouse
277,910,024
436
alexey-milovidov
All Ok. Only small changes required.
2017-02-07T06:05:48
2017-02-07T06:05:48
{}
MEMBER
ClickHouse
ClickHouse
279,397,334
467
ludv1x
1) Suppose that you want to store pairs of (`user`, `user_visit_time`) in your distributed db 2) You have many `local` (or replicated) tables on each server with such data 3) The data is updated periodically, you insert several thousands pairs each `n` minutes 4) In addition to your data stored in many `local` table...
2017-02-13T13:50:47
2017-02-13T13:53:16
{ "+1": 11 }
CONTRIBUTOR
ClickHouse
ClickHouse
279,675,551
360
proller
Can you try with 1.1.54160.0.0 or 0.0.1.1.54160 ? or problem in too big 54160 ?
2017-02-14T10:55:05
2017-02-14T10:55:05
{}
CONTRIBUTOR
ClickHouse
ClickHouse
280,050,065
495
jarwin123
yes ,i add '<timezone>Asia/Shanghai</timezone>' in /etc/clickhouse-server/config.xml, clickhouse-server can run ,but clickhouse-client cannot run. i modify dbms/src/Client/Client.cpp 307 setenv("TZ", "Asia/Shanghai",1); 308 tzset(); 309 DateLUT::instance(); now clickhouse-client can run now.
2017-02-15T15:55:15
2017-02-15T15:56:12
{}
NONE
ClickHouse
ClickHouse
277,594,118
360
hatarist
"Include not found" errors aren't that critical. It tells you that it couldn't find a configuration section "clickhouse_remote_servers". It's because it's defined in the `config.xml`: ``` <remote_servers incl="clickhouse_remote_servers" /> ``` [reference](https://clickhouse.yandex/reference_en.html#Configuratio...
2017-02-06T06:09:05
2017-02-06T06:12:32
{}
CONTRIBUTOR
ClickHouse
ClickHouse
278,392,317
414
proller
https://github.com/yandex/ClickHouse/commit/083e9cc3aa0886b599d5d6994b8d49bd066d8c39 https://github.com/yandex/ClickHouse/commit/131283de5bc8c80988a31d65b17829d6af062b42
2017-02-08T17:08:04
2017-02-08T17:08:04
{}
CONTRIBUTOR
ClickHouse
ClickHouse
278,637,553
412
proller
Also in current master possible to build with -DUSE_INTERNAL_ZLIB_LIBRARY=0 it will use your system zlib
2017-02-09T13:17:18
2017-02-09T13:17:33
{}
CONTRIBUTOR
ClickHouse
ClickHouse
278,970,334
475
ekonkov
autotests
2017-02-10T15:12:35
2017-02-10T15:12:35
{}
CONTRIBUTOR
ClickHouse
ClickHouse
279,163,760
482
alexey-milovidov
autotests
2017-02-11T17:59:23
2017-02-11T17:59:23
{}
MEMBER
ClickHouse
ClickHouse
279,237,563
414
proller
X-ClickHouse-Progress works only with internal patched poco. if https://github.com/pocoproject/poco/pull/1574 will be accepted - we will make this header working for next poco versions (2.0+ ?)
2017-02-12T18:26:31
2017-02-12T18:26:49
{}
CONTRIBUTOR
ClickHouse
ClickHouse
279,262,002
478
alexey-milovidov
9. Colors are too contrast/oppressive. Need to be more smooth.
2017-02-12T23:31:43
2017-02-12T23:31:43
{}
MEMBER
ClickHouse
ClickHouse
279,262,818
478
alexey-milovidov
13. Contacts menu item is using animation. I don't like animation.
2017-02-12T23:38:42
2017-02-12T23:38:42
{}
MEMBER
ClickHouse
ClickHouse
279,487,723
488
alexey-milovidov
Cannot merge as is because of following issues: 1. It works only with String attributes. 2. The function is not efficient, it is implemented as brute force. So function is usable only for diagnostic purposes. 3. It has quite strange functionality of passing multiple values, concatenated with `|` delimiter. 4. The...
2017-02-13T19:00:14
2017-02-13T19:00:14
{}
MEMBER
ClickHouse
ClickHouse
280,043,545
495
jarwin123
[root@localhost ~]# ls -l /etc/localtime lrwxrwxrwx. 1 root root 35 Aug 19 2015 /etc/localtime -> ../usr/share/zoneinfo/Asia/Shanghai [root@localhost ~]# echo $TZ
2017-02-15T15:34:12
2017-02-15T15:34:12
{}
NONE
ClickHouse
ClickHouse
280,557,883
291
vavrusa
I finally got some time to debug it, it works correctly when `libclang-dev` is installed. Thanks!
2017-02-17T05:38:00
2017-02-17T05:38:00
{}
CONTRIBUTOR
ClickHouse
ClickHouse
277,593,900
220
kolossus2
@proller Добрый день! Да, помогло в <listen_host> установка IPv4-адреса (и 127.0.0.1 и реальный адрес). Спасибо!
2017-02-06T06:07:03
2017-02-06T06:07:03
{}
NONE
ClickHouse
ClickHouse
277,919,311
414
alexey-milovidov
In fact, the patch is not ready. Proller will take care of it in few days.
2017-02-07T07:12:25
2017-02-07T07:12:25
{}
MEMBER
ClickHouse
ClickHouse
278,383,686
414
jbfavre
Ok, no problem. Thanks for the info :)
2017-02-08T16:42:48
2017-02-08T16:42:48
{}
NONE
ClickHouse
ClickHouse
278,532,617
300
alexey-milovidov
The reason was incorrect implementation of move-assignment in Field. The issue was presented only in cases when column of String or Array type was used in primary key.
2017-02-09T02:55:39
2017-02-09T02:55:39
{}
MEMBER
ClickHouse
ClickHouse
279,159,948
481
alexey-milovidov
autotests
2017-02-11T17:04:41
2017-02-11T17:04:41
{}
MEMBER
ClickHouse
ClickHouse
280,623,140
503
ludv1x
Could you provide example of data (or its format description) which you try to load?
2017-02-17T11:12:51
2017-02-17T11:12:51
{}
CONTRIBUTOR
ClickHouse
ClickHouse
277,593,726
360
jacktang
It works! Thank you @proller 👍 And I copied file config.xml and users.xml to `build` dir and tried `sudo ./dbms/src/Server/clickhouse`. It produced ``` Include not found: clickhouse_remote_servers Include not found: clickhouse_compression 2017.02.06 14:01:24.925983 [ 1 ] <Warning> Application: Logging to con...
2017-02-06T06:05:37
2017-02-06T06:05:37
{}
NONE
ClickHouse
ClickHouse
278,982,865
474
ekonkov
autotests
2017-02-10T15:59:01
2017-02-10T15:59:01
{}
CONTRIBUTOR
ClickHouse
ClickHouse
280,326,702
499
robot-metrika-test
Can one of the admins verify this patch?
2017-02-16T13:13:02
2017-02-16T13:13:02
{}
NONE
ClickHouse
ClickHouse
280,334,792
499
proller
Эта строка не работает на убунте 14. с dash 0.5.7-4ubuntu1 но работает на более новых. ``` [ `grep -E "^#.*" $CLICKHOUSE_CRONFILE` = `cat $CLICKHOUSE_CRONFILE` ]; # ./clickhouse-server status ./clickhouse-server: line 240: [: too many arguments clickhouse-server: process unexpectedly terminated ```
2017-02-16T13:49:56
2017-02-16T13:49:56
{}
CONTRIBUTOR
ClickHouse
ClickHouse
280,634,622
499
proller
Осталась одна малозначимая строчка с [[ , проще ее исправить. Ну и баш в инит скриптах использовать не принято.
2017-02-17T12:16:49
2017-02-17T12:16:49
{}
CONTRIBUTOR
ClickHouse
ClickHouse
278,939,128
474
VOkunev
autotests
2017-02-10T13:14:20
2017-02-10T13:14:20
{}
CONTRIBUTOR
ClickHouse
ClickHouse
278,982,986
476
ekonkov
autotests
2017-02-10T15:59:23
2017-02-10T15:59:23
{}
CONTRIBUTOR
ClickHouse
ClickHouse
279,023,326
474
alexey-milovidov
autotests
2017-02-10T18:20:04
2017-02-10T18:20:04
{}
MEMBER
ClickHouse
ClickHouse
279,399,932
360
proller
@aadim please try with this commit https://github.com/yandex/ClickHouse/commit/f8d2f19280a532e3e142939c93532b4934f8b098
2017-02-13T14:01:23
2017-02-13T14:01:23
{}
CONTRIBUTOR
ClickHouse
ClickHouse
279,566,413
412
rohitagarwal003
So, I had been putting off reproducing this for sometime (as we started running our inserters without compression and it wasn't hurting.) However, during the weekend, while debugging some other issue I realized that this bug was NOT a problem with ClickHouse or zlib. It was a bug in our inserter. When our inserter i...
2017-02-14T00:15:40
2017-02-14T00:15:40
{}
CONTRIBUTOR
ClickHouse
ClickHouse
279,696,079
360
proller
please try now https://github.com/yandex/ClickHouse/commit/b5b64ceb2b67aebbd7eb4d79b1809caf547b57d1
2017-02-14T12:35:19
2017-02-14T12:35:19
{}
CONTRIBUTOR
ClickHouse
ClickHouse
280,048,459
495
ztlpn
I mean, did you change ClickHouse config and set timezone parameter there?
2017-02-15T15:49:58
2017-02-15T15:49:58
{}
CONTRIBUTOR
ClickHouse
ClickHouse
280,408,874
500
alexey-milovidov
Changes are fine, thanks! ``` chown: cannot access '/etc/clickhouse-server': No such file or directory ``` Probably there are some build errors above this line. Could you please find them and copy-paste here?
2017-02-16T18:01:44
2017-02-16T18:01:44
{}
MEMBER
ClickHouse
ClickHouse
279,390,292
414
jbfavre
Great, will have a look at it. My own todo is how to make `00281_gcc_clang_sizeof_packed` pass without Clickhouse being installed. Also, I think UNBUNDLED, USE_INTERNAL_* and USE_STATIC_LIBRARIES might have some impact in `./dbms/src/Interpreters/Compiler.cpp` because of libray headers not being at the same place, ...
2017-02-13T13:20:20
2017-02-13T13:20:20
{}
NONE
ClickHouse
ClickHouse
279,609,204
360
aadim
I had an error ``` ld: malformed 64-bit a.b.c.d.e version number: 1.1.54160 collect2: error: ld returned 1 exit status make[3]: *** [dbms/libclickhouse.1.1.54160.dylib] Error 1 ``` so I just changed the version in libs/libcommon/cmake/version.cmake to comply with this rule: 1.1.54.160 and built the rest succ...
2017-02-14T05:03:47
2017-02-14T05:03:47
{}
NONE
ClickHouse
ClickHouse
280,628,475
506
ludv1x
Yes, table aliases isn't supported yet. You could manually set aliases for columns of both tables in subqueries, and use these subqueris in JOIN, like [here](https://github.com/yandex/ClickHouse/blob/master/dbms/tests/queries/0_stateless/00057_join_aliases.sql#L1).
2017-02-17T11:42:08
2017-02-17T11:42:08
{}
CONTRIBUTOR
ClickHouse
ClickHouse
277,542,639
293
alikrubin
Sounds great. However, what about the order inside group? For example: SELECT project, path, sum_hits FROM ( SELECT project, path, sum(hits) AS sum_hits FROM wikistat WHERE (date >= '2008-01-01') AND (date <= '2008-01-02') GROUP BY pr...
2017-02-05T19:29:07
2017-02-05T19:29:44
{}
NONE
ClickHouse
ClickHouse
278,512,601
293
alexey-milovidov
You could just write `ORDER BY project, sum_hits DESC LIMIT 2 BY project LIMIT 10`.
2017-02-09T00:54:18
2017-02-09T00:55:46
{}
MEMBER
ClickHouse
ClickHouse
279,122,599
360
jacktang
As the mainstream, my compiling errror is ``` [ 92%] Building CXX object dbms/CMakeFiles/dbms.dir/src/Storages/VirtualColumnFactory.cpp.o [ 92%] Building CXX object dbms/CMakeFiles/dbms.dir/src/Storages/Distributed/DirectoryMonitor.cpp.o /Users/jacktang/Code/ClickHouse/dbms/src/Storages/Distributed/DirectoryMonitor...
2017-02-11T05:22:31
2017-02-11T05:22:31
{}
NONE
ClickHouse
ClickHouse
279,394,665
478
blinkov
1-2 done. 3 — the idea was to align them on middle line, not bottom. Tuned a bit. 4-8 done. 9 — colors are from logo and Yandex brand, we shouldn't invent our own. Though there was one shade of gray slightly darker than in original to be more readable — reverted this. 10 — done. 11-13 — the slow scroll i...
2017-02-13T13:38:27
2017-02-13T13:38:27
{}
CONTRIBUTOR
ClickHouse
ClickHouse
277,510,601
360
proller
libmysqlclient.a should not be used when -DUSE_STATIC_LIBRARIES=0 can you delete whole build dir or CMakeCache.txt and rebuild again with same params?
2017-02-05T10:41:15
2017-02-05T10:41:15
{}
CONTRIBUTOR
ClickHouse
ClickHouse
277,904,694
456
alexey-milovidov
See https://github.com/yandex/ClickHouse/commit/26646001e378fa219f341a27ac92f31887b187ef
2017-02-07T05:21:58
2017-02-07T05:21:58
{}
MEMBER
ClickHouse
ClickHouse
278,437,651
469
alexey-milovidov
Yes. Although we can introduce option to treat empty as NULL rather quickly (few days).
2017-02-08T19:37:18
2017-02-08T19:37:18
{ "+1": 3 }
MEMBER
ClickHouse
ClickHouse
278,983,072
477
ekonkov
autotests
2017-02-10T15:59:40
2017-02-10T15:59:40
{}
CONTRIBUTOR
ClickHouse
ClickHouse
277,502,551
360
jacktang
Thanks @proller. I ran command ``` cmake .. -DCMAKE_CXX_COMPILER=`which g++-6` -DCMAKE_C_COMPILER=`which gcc-6` -DUSE_STATIC_LIBRARIES=0 -DNO_WERROR=1 ``` and it finally completed compiling 🍻 . And error in linking libmysqlclient.a ``` [100%] Linking CXX static library libclickhouse-server.a [100%] Built tar...
2017-02-05T07:28:07
2017-02-13T04:20:13
{}
NONE
ClickHouse
ClickHouse
279,476,683
487
alexey-milovidov
Yes, this is perfectly Ok. I will add to the master. Thanks!
2017-02-13T18:21:34
2017-02-13T18:39:23
{}
MEMBER
ClickHouse
ClickHouse
279,762,006
492
alexey-milovidov
Please resolve conflict.
2017-02-14T16:41:12
2017-02-14T16:41:12
{}
MEMBER
ClickHouse
ClickHouse
280,007,225
495
jarwin123
[root@localhost ~]# date Wed Feb 15 21:13:27 CST 2017 [root@localhost ~]# date -u Wed Feb 15 13:13:29 UTC 2017 [root@localhost ~]#
2017-02-15T13:13:45
2017-02-15T13:13:45
{}
NONE
ClickHouse
ClickHouse
280,199,381
495
jarwin123
@ztlpn 1.[root@localhost ~]# lsb_release -a LSB Version: :core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:printing-4.1-noarch Distributor ID: CentOS Description: CentOS Linux release 7.1.1503 (Core) Relea...
2017-02-16T01:23:23
2017-02-16T01:23:42
{}
NONE
ClickHouse
ClickHouse
277,482,103
414
jbfavre
As far as I can see, both `00302_http_compression` & `00416_progress_in_http_headers` fail because Header `Content-Encoding: gzip` is sent **after** HTTP headers. Same goes for `X-ClickHouse-Progress` one. Therefore, the `gzip -d` pipe fails since ther's a mix of compressed and uncompressed data. I'm not sure weth...
2017-02-04T22:16:36
2017-02-05T08:11:20
{}
NONE
ClickHouse
ClickHouse
277,664,301
455
artpaul
@tobia Thanks for reporting the error. The fix is trivial.
2017-02-06T12:13:36
2017-02-06T12:13:36
{}
CONTRIBUTOR
ClickHouse
ClickHouse
277,905,802
453
alexey-milovidov
https://github.com/yandex/ClickHouse/commit/ccb827077bd38e53e27d8e44004f279b906dd119
2017-02-07T05:31:32
2017-02-07T05:31:32
{}
MEMBER
ClickHouse
ClickHouse
278,423,881
469
marklit
Thanks for the explanation. I'll use ``sed`` to convert the data to TSV format. Just in case it's helpful for anyone looking at this issue in the future this is the command I'm running: ```bash time (gunzip -c /home/mark/trips/trips_x*.csv.gz | \ sed 's/,/\t/g' | \ clickhouse-client \ ...
2017-02-08T18:48:41
2017-02-08T18:48:41
{ "+1": 2 }
NONE
ClickHouse
ClickHouse
278,927,935
360
proller
something wrong with unixodbc please show last strings before fail: make VERBOSE=1 clickhouse and ls -la /usr/local/include/sqlext.h
2017-02-10T12:08:10
2017-02-10T12:08:10
{}
CONTRIBUTOR
ClickHouse
ClickHouse
279,055,081
480
robot-metrika-test
Can one of the admins verify this patch?
2017-02-10T20:18:03
2017-02-10T20:18:03
{}
NONE
ClickHouse
ClickHouse
279,262,159
478
alexey-milovidov
10. Quick start and main message above is not aligned vertically (top, bottom lines) with items at right.
2017-02-12T23:33:01
2017-02-12T23:33:01
{}
MEMBER
ClickHouse
ClickHouse
279,375,607
414
proller
also note new UNBUNDLED cmake option (makes USE_INTERNAL_* = 0 with fallback if not found) and with USE_STATIC_LIBRARIES=0 now generated one big libclickhouse.so and small all executables my current todo: make options USE_INTERNAL_*=0 for all libs in contrib/
2017-02-13T12:29:20
2017-02-13T12:29:20
{}
CONTRIBUTOR
ClickHouse
ClickHouse
279,807,052
360
aadim
it's OK now! thanks
2017-02-14T19:20:02
2017-02-14T19:20:02
{}
NONE
ClickHouse
ClickHouse
280,427,476
500
corpix
No, this is postinst script in `clickhouse-server-base_1.1.54165_amd64.deb` I am pretty sure [this line](https://github.com/yandex/ClickHouse/blob/bc9f872/debian/clickhouse-server-base.postinst#L72) is a problem. While searching for this I have noticed [this PR](https://github.com/yandex/ClickHouse/pull/501/files) f...
2017-02-16T19:08:23
2017-02-16T19:08:54
{}
CONTRIBUTOR
ClickHouse
ClickHouse
277,453,651
414
jbfavre
Both commits also works for v1.1.54144-stable, with same tests failing.. But removing `USE_STATIC_LIBRARIES=0` build flag leads to another error. Investigating
2017-02-04T15:38:11
2017-02-04T15:38:11
{}
NONE
ClickHouse
ClickHouse
278,058,635
436
ludv1x
Updated
2017-02-07T16:42:22
2017-02-07T16:42:22
{}
CONTRIBUTOR
ClickHouse
ClickHouse
279,237,636
414
jbfavre
I'll patch the reference file then, so that the test pass. Thanks for the information !
2017-02-12T18:27:56
2017-02-12T18:27:56
{}
NONE
ClickHouse
ClickHouse
280,052,404
495
ztlpn
Modifying the source code should not be necessary. Do you run clickhouse-client on the same machine as clickhouse-server? What was the exact error message when clickhouse-client failed to start?
2017-02-15T16:02:56
2017-02-15T16:02:56
{}
CONTRIBUTOR
ClickHouse
ClickHouse
280,330,139
499
alexey-milovidov
Изменения почему-то получились основаны не на master ветке. Нужно посмотреть в master ветку и заново сделать изменения, если нужно.
2017-02-16T13:28:36
2017-02-16T13:28:36
{}
MEMBER
ClickHouse
ClickHouse
278,047,929
459
alexey-milovidov
Ok, but I don't like the name of variable `has_db`.
2017-02-07T16:11:27
2017-02-07T16:11:27
{}
MEMBER
ClickHouse
ClickHouse
278,171,566
464
proller
https://github.com/yandex/ClickHouse/commit/045fd6f55db37059c97c0c276e8914b096e1f6bb
2017-02-07T22:56:11
2017-02-07T22:56:11
{ "+1": 1 }
CONTRIBUTOR
ClickHouse
ClickHouse
279,237,398
414
jbfavre
Also tested with `v1.1.54162-testing`. Test `00416_progress_in_http_headers` fails because Clickhouse doen't send `X-ClickHouse` headers ``` curl -vsS 'http://localhost:8123/?max_block_size=1&send_progress_in_http_headers=1&http_headers_progress_interval_ms=0' -d 'SELECT number FROM system.numbers LIMIT 10' 2>&1 ...
2017-02-12T18:24:03
2017-02-12T18:24:03
{}
NONE
ClickHouse
ClickHouse
279,262,226
478
alexey-milovidov
11. Filling "Fault tolerant" item with dark-gray is not motivated.
2017-02-12T23:33:44
2017-02-12T23:33:44
{}
MEMBER
ClickHouse
ClickHouse
279,679,958
360
aadim
I think the 54160 is too big. Here's the similar issue fixed by taking a smaller number: https://github.com/assimp/assimp/issues/107
2017-02-14T11:16:33
2017-02-14T11:16:33
{}
NONE
ClickHouse
ClickHouse
279,851,280
494
alexey-milovidov
Ok, thanks!
2017-02-14T22:06:05
2017-02-14T22:06:05
{}
MEMBER
ClickHouse
ClickHouse
280,635,512
364
ztlpn
Available in v1.1.54165
2017-02-17T12:22:08
2017-02-17T12:22:08
{}
CONTRIBUTOR
ClickHouse
ClickHouse
278,938,018
475
robot-metrika-test
Can one of the admins verify this patch?
2017-02-10T13:08:03
2017-02-10T13:08:03
{}
NONE
ClickHouse
ClickHouse
278,966,646
478
robot-metrika-test
Can one of the admins verify this patch?
2017-02-10T14:58:03
2017-02-10T14:58:03
{}
NONE
ClickHouse
ClickHouse
279,021,715
476
alexey-milovidov
autotests
2017-02-10T18:13:43
2017-02-10T18:13:43
{}
MEMBER
ClickHouse
ClickHouse
279,172,286
482
alexey-milovidov
autotests
2017-02-11T20:09:53
2017-02-11T20:09:53
{}
MEMBER
ClickHouse
ClickHouse
280,579,060
499
Civil
Может быть вам просто поменять #!/bin/sh -> #!/bin/bash? Я думаю что bash вероятно есть в любом дистрибутиве в котором имеет смысл запускать clickhouse.
2017-02-17T07:48:58
2017-02-17T07:48:58
{}
CONTRIBUTOR
ClickHouse
ClickHouse
278,416,711
469
alexey-milovidov
CSV format doesn't treat empty as NULL to avoid ambiguity with empty strings. We should add an option to treat empty as NULL. Please note, that NULLs support is still shallow. We use NULLs only to import data and to convert to non-Nullable types before any further data analysis. I suggest to use TSV (TabSeparate...
2017-02-08T18:23:10
2017-02-08T18:23:10
{}
MEMBER
ClickHouse
ClickHouse
278,955,664
379
jacktang
hi @alpha, you are right. I am looking for some grouping aggregates :) And thanks for the link, it looks so interesting. These days I read InfluxDB reference, and I found InfluxQL had implemented the similar aggregates. The basic sample is ``` SELECT <function>(<field_key>) FROM_clause WHERE <time_range> GROUP ...
2017-02-10T14:33:10
2017-02-10T14:33:10
{}
NONE
ClickHouse
ClickHouse
279,036,986
360
aadim
``` make VERBOSE=1 clickhouse ... [ 61%] Building CXX object dbms/CMakeFiles/dbms.dir/src/Dictionaries/DictionarySourceFactory.cpp.o cd /Users/dima/ClickHouse/build/dbms && /usr/local/bin/g++-6 -DBOOST_SYSTEM_NO_DEPRECATED -I/Users/dima/ClickHouse/build/contrib/libre2 -I/Users/dima/ClickHouse/contrib/libre2 -I/...
2017-02-10T19:09:18
2017-02-10T19:09:44
{}
NONE
ClickHouse
ClickHouse
279,209,822
360
artpaul
@jacktang please try with this commit https://github.com/yandex/ClickHouse/commit/f8a0f55335877ef9bfb0ec1e8388e2e2cf775606
2017-02-12T10:41:47
2017-02-12T11:23:15
{}
CONTRIBUTOR
ClickHouse
ClickHouse
279,221,886
414
jbfavre
Sucessfully tested with `v1.1.54159-stable`. Works well, except for test `00416_progress_in_http_headers` I had to patch it to remove some curl calls because of `send_progress_in_http_headers` not being implemented in `v1.1.54159-stable`: ``` $ curl -sS 'http://localhost:8123/?max_block_size=1&send_progress_in_http...
2017-02-12T14:24:47
2017-02-12T14:24:47
{}
NONE
ClickHouse
ClickHouse
279,484,319
488
alexey-milovidov
autotests
2017-02-13T18:48:54
2017-02-13T18:48:54
{}
MEMBER
ClickHouse
ClickHouse
280,047,002
495
ztlpn
Did you change `timezone` config parameter to `CST`? I guess you mean China Standard Time then, not US Central Standard Time, so default server timezone (which is Asia/Shanghai) should be OK.
2017-02-15T15:45:26
2017-02-15T15:45:26
{}
CONTRIBUTOR
ClickHouse
ClickHouse
280,327,068
499
proller
Тут откат вчерашнего фикса.
2017-02-16T13:14:42
2017-02-16T13:14:42
{}
CONTRIBUTOR
ClickHouse
ClickHouse
280,344,743
495
ztlpn
Ok, I've been able to reproduce, thanks for reporting!
2017-02-16T14:29:22
2017-02-16T14:29:22
{}
CONTRIBUTOR
ClickHouse
ClickHouse
280,390,628
500
robot-metrika-test
Can one of the admins verify this patch?
2017-02-16T16:58:02
2017-02-16T16:58:02
{}
NONE