Skip to content

Commit 4a8d94c

Browse files
authored
fix(index): fixed broken doc links in the index page (#73)
1 parent 21ad60b commit 4a8d94c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/components/Blogs/index.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import Link from '@docusaurus/Link'
12
import clsx from 'clsx'
23
import styles from "./styles.module.css"
3-
import Link from '@docusaurus/Link'
44

55
type BlogPost = {
66
title: string
@@ -14,37 +14,37 @@ const posts: BlogPost[] = [
1414
title: "Data Compression Technology Explained Balance between Costs & Performance",
1515
image: "https://obportal.s3.ap-southeast-1.amazonaws.com/obc-blog/img/d105da79260f4d6a8a03571e4a2b17091682305027576.jpg",
1616
description: "With more and more data being generated, storage and maintenance costs are increasing accordingly. Data compression seems to be a natural choice to reduce storage costs.",
17-
link: "/blog/compression-ratio",
17+
link: "docs/blogs/showcases/compression-ratio",
1818
},
1919
{
2020
title: "Implementing a Vectorized Engine in a Distributed Database",
2121
image: "https://obportal.s3.ap-southeast-1.amazonaws.com/obc-blog/img/d105da79260f4d6a8a03571e4a2b17091682306489558.jpg",
2222
description: "When talking to customers, we found that many users want to perform OLAP tasks such as JOIN queries and aggregate analysis while they are processing online transactions. The SQL execution engine of a database must be highly productive in order to deal with OLAP tasks, which often involve the processing of massive data and complicated computing and queries, and are therefore time-consuming.",
23-
link: "/blog/vectorized-engine",
23+
link: "docs/blogs/showcases/vectorized-engine",
2424
},
2525
{
2626
title: "Flink CDC + OceanBase integration solution for full and incremental synchronization",
2727
image: "/img/ob-history.png",
2828
description: "OceanBase is a distributed database developed by Ant Group. The project was established in 2010 and developed iteratively. Its earliest application is to Taobao's favorites. In 2014, the OceanBase R&D Team moved from Taobao to Ant Group, mainly responsible for Alipay's internal de-IOE work. It means replacing the Oracle database used by Alipay. Currently, all the data in Ant Group databases have been migrated to OceanBase. On June 1, 2021, OceanBase was officially opened source to the public, and a MySQL-compatible version was launched.",
29-
link: "/blog/flink-cdc",
29+
link: "docs/blogs/showcases/flink-cdc",
3030
},
3131
{
3232
title: "Integrated Architecture of OceanBase Database",
3333
image: "https://obportal.s3.ap-southeast-1.amazonaws.com/obc-blog/img/d105da79260f4d6a8a03571e4a2b17091682302303091.jpg",
3434
description: "The architecture of OceanBase Database V4.0 allows you to deploy a distributed database or a MySQL-like standalone database in the same way that you are familiar with. If you deploy a standalone OceanBase database or a single-container tenant in an OceanBase cluster, the database provides the same efficiency and performance as a conventional standalone database does.",
35-
link: "/blog/integrated-architecture",
35+
link: "docs/blogs/showcases/integrated-architecture",
3636
},
3737
{
3838
title: "Integrated SQL Engine in OceanBase Database",
3939
image: "https://obportal.s3.ap-southeast-1.amazonaws.com/obc-blog/img/d105da79260f4d6a8a03571e4a2b17091682302303091.jpg",
4040
description: "In serial execution, if the table or partition involved is located on the local server, the execution process is exactly the same as that of an SQL statement on a local or standalone server. If the required data is stored on another server, OceanBase Database either fetches the remote data and processes it on the local server or performs remote execution. In remote execution, if all data required in a transaction is located on another server, OceanBase Database forwards the transaction to that server, which will access the storage, process the data, commit the transaction, and then return the results.",
41-
link: "/blog/integrated-sql-engine",
41+
link: "docs/blogs/showcases/integrated-sql-engine",
4242
},
4343
{
4444
title: "The architectural evolution of OceanBase Database",
4545
image: "https://obportal.s3.ap-southeast-1.amazonaws.com/obc-blog/img/d105da79260f4d6a8a03571e4a2b17091682302303091.jpg",
4646
description: "The development of the OceanBase Database started in 2010. The first version, OceanBase Database V0.5, consists of a storage layer and a computing layer, as shown in the figure below. The computing layer, which is stateless, provides SQL services, and the storage layer is a storage cluster of two types of servers.",
47-
link: "/blog/architectural-evolution",
47+
link: "docs/blogs/showcases/architectural-evolution",
4848
},
4949
]
5050

0 commit comments

Comments
 (0)