[笔记]清晰思考-(英) 汤姆·查特菲尔德;赵军
198-199, 标注, 2025 年 1 月 4 日星期六 下午 9:45:57
最重要的是,要不断问自己,在复杂的情况面前,坚持严谨意味着什么,并把诚实的怀疑作为你学习的核心。
242-243, 标注, 2025 年 1 月 5 日星期日 下午 9:25:45
198-199, 标注, 2025 年 1 月 4 日星期六 下午 9:45:57
最重要的是,要不断问自己,在复杂的情况面前,坚持严谨意味着什么,并把诚实的怀疑作为你学习的核心。
242-243, 标注, 2025 年 1 月 5 日星期日 下午 9:25:45
本文为摘录(或转载),侵删,原文为: https://clickhouse.com/docs/en/sql-reference/data-types/lowcardinality
https://clickhouse.com/docs/en/sql-reference/data-types/lowcardinality
Changes the internal representation of other data types to be dictionary-encoded.
|
|
Parameters:
data_type
String
, FixedString
, Date
, DateTime
, and numbers
excepting Decimal
.allow_suspicious_low_cardinality_types
setting description.LowCardinality is a superstructure that changes a data storage method and rules of data processing. ClickHouse applies dictionary coding to LowCardinality-columns. Operating with dictionary encoded data significantly increases performance of SELECT queries for many applications.
本文为摘录(或转载),侵删,原文为: https://segmentfault.com/a/1190000042326071
作者:冯浩桉,StarRocks 核心研发工程师,StarRocks Committer
本文为摘录(或转载),侵删,原文为: https://segmentfault.com/a/1190000042739883
作者:贺凯,StarRocks Committer
导读:欢迎来到 StarRocks 技术内幕系列文章,我们将为你全方位揭晓 StarRocks 背后的技术原理和实践细节,助你逐步上手这款明星开源数据库产品。
本文为摘录(或转载),侵删,原文为: https://my.oschina.net/u/5658056/blog/5519656
本文为摘录(或转载),侵删,原文为: https://docs.starrocks.io/zh/docs/introduction/Features/
StarRocks 采用 MPP (Massively Parallel Processing) 分布式执行框架。在 MPP 执行框架中,一条查询请求会被拆分成多个物理计算单元,在多机并行执行。每个执行节点拥有独享的资源(CPU、内存)。 MPP 执行框架能够使得单个查询请求可以充分利用所有执行节点的资源,所以单个查询的性能可以随着集群的水平扩展而不断提升。