Skip to content

Commit

Permalink
Update blog
Browse files Browse the repository at this point in the history
  • Loading branch information
lewiszlw committed Sep 23, 2024
1 parent 0ed22af commit 2c944c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title = "DataFusion 查询引擎两阶段并行哈希分组聚合"
date = 2024-08-23
+++

分组聚合功能是任何分析引擎的核心功能,可在海量数据上创建出可以理解的摘要。DataFusion 分析引擎采用了先进的两阶段并行哈希分组聚合技术,高度并行且向量化执行。
分组聚合功能是任何分析引擎的核心功能,可在海量数据上创建出可以理解的摘要。DataFusion 分析引擎采用了先进的两阶段并行哈希分组聚合技术(two-phase parallel hash partitioned grouping),高度并行且向量化执行。

## 多种聚合方案
DataFusion 支持多种聚合方案,在不同情况下会选择最优方案。
Expand Down
3 changes: 1 addition & 2 deletions content/blog/2024-09-12-smol-async-runtime/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
+++
title = "smol 异步运行时剖析"
title = "Rust 异步运行时 smol 剖析"
date = 2024-09-12
draft = true
+++

[smol] 是一个微型且快速的 Rust 异步运行时,它由许多微型的 crate 组成(比如 polling / async-io / async-executor 等),每个 crate 相对独立,非常适合学习 Rust 异步运行时是如何一步步构建的。
Expand Down
4 changes: 2 additions & 2 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ <h2>

<ul>
{% for page in section.pages %}
{% if loop.index > 3 %}{% break %}{% endif %}
{% if loop.index > 5 %}{% break %}{% endif %}
<li><a href="{{ page.path | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
Expand All @@ -28,7 +28,7 @@ <h2>
{% set section = get_section(path="blog/_index.md") %}
<ul>
{% for page in section.pages %}
{% if loop.index > 3 %}{% break %}{% endif %}
{% if loop.index > 5 %}{% break %}{% endif %}
<li><a href="{{ page.path | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
Expand Down

0 comments on commit 2c944c8

Please sign in to comment.