Viewing profile — qoega
qoega
HN member- Joined
- Wed, Jul 15, 2020, 12:59 PM UTC
- HN karma
- 17
- Public activity
- 47 items
- HN profile
- View on Hacker News ↗
About qoega
No profile information was provided.
Recent public activity
-
comment
Comment #44312603
It is meant for single reader/writer workload so not meant to be used as a service
-
comment
Comment #40514279
In ClickHouse it is just `INSERT INTO t FROM INFILE 'data.csv.gz'`. Any supported format, any encryption, autodetected from file name and sample data piece to get column types, del…
-
comment
Comment #39592874
Are you guy comparing 16vCPU/32GB vs 8vCPU/32GB and say yours is only 1.6 faster?
-
comment
Comment #39116269
Now you rarely use basic MapReduce primitives, you have another layer of abstraction that can run on infrastructure that was running MR jobs before. This infrastructure allows to e…
-
comment
Comment #37685528
You can even migrate your zookeeper to ClickHouse keeper. It requires small downtime, but you will have all your zookeeper data inside and your clients will just work when your kee…
-
comment
Comment #37678809
Did not expect to see issue I created
-
comment
Comment #37172967
Open-source ClickHouse also allows both real-time and large historical data.
-
comment
Comment #36098244
I think atwong just promotes his product https://news.ycombinator.com/threads?id=atwong
-
comment
Comment #35553070
It is nice to have an image of expected dashboard in readme.
-
comment
Comment #35253409
Passion and experience
-
comment
Comment #34327567
>It would also be good to see GEOS, GDAL and PROJ integrated into ClickHouse. You can just add feature requests like this to ClickHouse issue tracker. https://github.com/ClickHouse…
-
comment
Comment #34286981
There is no need to use clickhouse-local for 'local' analysis. It just the same ClickHouse, but it will not store any local data. Just use it as ETL tool. Something like this will …
-
comment
Comment #34283622
I don't know why exactly you need BigQuery in your scenario. If I wanted to have Postgres->ClickHouse it would take single INSERT SELECT from ClickHouse. If you need just CSV resul…
-
comment
Comment #34272647
Sure you can read from S3. You can define table that will look at your files like this https://clickhouse.com/docs/en/integrations/s3/s3-table-engi... Or just use s3 table function…
-
comment
Comment #33216335
Can you provide SingleStore result for TPC-H and TPC-DS? I can't find it. Why? [1] https://www.tpc.org/tpcds/results/tpcds_results5.asp?orderby... [2] https://www.tpc.org/tpch/resu…
-
comment
Comment #33101251
I think optimizations that you focus on for self-hosted ClickHouse are the same as for Cloud. In self-hosted it helps to improve your throughput/capacity with fixed allocated resou…
-
comment
Comment #33101155
License states the following. All other modifications are not standardized and you can't just compare systems. Otherwise there would be another standardized benchmark in the list y…
-
comment
Comment #33098954
I think ClickHouse Cloud Beta addressed exactly this concern. It separates storage and compute and deals with scaling. There is no sharding so you don't need to deal with scaling.
-
comment
Comment #33097919
You can't post results of TPC benchmarks without official audit. So it complicates posting results. You can't find common names that are usually compared with ClickHouse there [1].…
-
comment
Comment #33082032
I may assure you that 1WU is not 1 part. Not even close. You can check it using trial credits with your data. For example, I just checked that uploading 1.1GB example table(cell_to…
-
comment
Comment #32346498
You can consider that ClickHouse allows both to query a lot of supported external data sources(s3/hdfs/mysql/postgre/...) and to store data in pretty efficient columnar way with co…
-
comment
Comment #32096912
Many queries that did do not run had aggregations over strings like MIN/MAX. I don't know specifics why many Java based DBMS lack this aggregation functions.
-
comment
Comment #32096851
You can see that setup used is the one provided in a package: single-server/medium. It makes sense to improve setup, but I recommend to provide better configuration by default. I t…
-
comment
Comment #32087847
There are several existing benchmarks that test query optimisers with a lot of joins. It does not show performance of query engine, but more likely how good is your optimiser was t…
-
comment
Comment #31827415
It is that big only with debug symbols. If you take packaged version of ClickHouse it will be much smaller. Or just strip large binary manually if you already have it.