-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update scheduling-overview.md , tiflash-intro.md and tispark-int… (#804)
- Loading branch information
1 parent
c021b19
commit ebdfc4c
Showing
3 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## 第11章 TiSpark 简介与实战 | ||
|
||
TiSpark 是 PingCAP 为解决用户复杂 OLAP 需求而推出的产品。它能够让 Spark SQL 直接运行在分布式存储引擎 TiKV 上,和 TiDB 一起为用户提供了一站式解决 HTAP (Hybrid Transactional/Analytical Processing) 解决方案。 | ||
|
||
在这部分内容中,首先向大家介绍 TiSpark 的总体架构和基本原理,然后介绍 TiSpark 的部署和使用方法,接下来向大家介绍 TiSpark 如何运行在 PingCAP 为复杂分析型场景而研发的列式存储引擎 TiFlash 的基本知识,最后介绍 TiSpark 融合到已有大数据生态体系的方法。 | ||
|
||
|
||
## 目录 | ||
|
||
- [11.1 TiSpark 架构与原理](tispark-architecture.md) | ||
- [11.2 TiSpark 的使用](tispark-in-action.md) | ||
- [11.3 TiSpark on TiFlash](tispark-on-tiflash.md) | ||
- [11.4 TiSpark 结合大数据体系](tispark-on-bigdata.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# 第9章 TiFlash 简介与 HTAP 实战 | ||
|
||
近年来,随着企业数字化转型的不断深入和发展,数据逐渐成为企业最重要的资产。对于每一个企业来说,都需要关注数据从产生、存储、分析到利用,并发挥其巨大价值的整个过程。此外,随着企业之间竞争的不断加剧,对数据的产生到发挥其价值的时间延迟要求越来越短。 | ||
|
||
作为存储和处理数据最重要的基础软件——数据库系统,一般可以按照负载类型分成 OLTP 型数据库和 OLAP 数据库。在一个企业中,这两种类型的数据库通常是并存的,分别支撑这两种负载类型的应用系统。目前,很多企业的这两种类型的系统之间是通过较为复杂的 ETL 过程“打通的”,数据在时效性上具有比较大的 T+N 延时,这越来越难以满足企业在数据处理和分析方面对时效性的要求。 | ||
|
||
|
||
近几年,HTAP 是比较热的一个概念,它是最有希望解决目前问题的方法。顾名思义, HTAP 是混合 OLTP 和 OLAP 业务,具备同时解决这种两种问题能力的系统。2014 年 Garnter 公司给出了严格的定义:混合事务/分析处理 (HTAP) 是一种新兴的应用体系结构,它打破了事务处理和分析之间的 “墙” 。它支持更多的”信息分析“和 “实时业务” 的决策。 | ||
|
||
|
||
TiDB 是一个具有优异交易处理能力的分布式 NewSQL 产品,同时也具备了良好的分析能力,又是一款优秀的 HTAP 数据数据库产品。在这部分内容中,首先向大家介绍 TiDB HTAP 的主要特点,然后介绍其实现 HTAP 能力的关键技术之一的 TiFlash 列式存储引擎的架构和基本原理,最后向大家介绍 TiFlash 如何使用。 | ||
|
||
|
||
## 目录 | ||
|
||
- [9.1 TiDB HTAP 的特点](tidb-htap.md) | ||
- [9.2 TiFlash 架构与原理](tiflash-architecture.md) | ||
- [9.3 TiFlash 的使用](tiflash-in-action.md) |