Skip to content

Commit

Permalink
[blog](update) Update auto-increment Blog and fix sidebar issue (apac…
Browse files Browse the repository at this point in the history
  • Loading branch information
KassieZ authored Apr 8, 2024
1 parent b3df4dc commit 738553c
Show file tree
Hide file tree
Showing 11 changed files with 430 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
'date': '2024-02-22',
'author': 'Apache Doris',
'tags': ['Best Practice'],
'picked': "true",
'order': "4",
"image": '/images/a-financial-anti-fraud-solution-based-on-the-apache-doris-data-warehouse.png'
}

Expand Down
412 changes: 412 additions & 0 deletions blog/auto-increment-columns-in-databases.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
'author': 'Apache Doris',
'tags': ['Best Practice'],
'picked': "true",
'order': "3",
'order': "4",
"image": '/images/breaking-down-data-silos-with-an-apache-doris-based-cdp.png'
}

Expand Down
2 changes: 1 addition & 1 deletion blog/release-note-2.1.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
'author': 'Apache Doris',
'tags': ['Release Notes'],
'picked': "true",
'order': "1",
'order': "2",
"image": '/images/2.1.1.png'
}
---
Expand Down
2 changes: 1 addition & 1 deletion blog/variant-in-apache-doris-2.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
'author': 'Apache Doris',
'tags': ['Tech Sharing'],
'picked': "true",
'order': "2",
'order': "3",
"image": '/images/variant-in-apache-doris-2.1.png'
}
---
Expand Down
3 changes: 2 additions & 1 deletion sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -1218,6 +1218,7 @@
"sql-manual/sql-reference/Show-Statements/SHOW-PROPERTY",
"sql-manual/sql-reference/Show-Statements/SHOW-TRIGGERS",
"sql-manual/sql-reference/Show-Statements/SHOW-PROCESSLIST",
"sql-manual/sql-reference/Show-Statements/SHOW-PRIVILEGES",
"sql-manual/sql-reference/Show-Statements/SHOW-TRASH",
"sql-manual/sql-reference/Show-Statements/SHOW-VIEW",
"sql-manual/sql-reference/Show-Statements/SHOW-TRANSACTION",
Expand Down Expand Up @@ -1335,7 +1336,7 @@
"admin-manual/privilege-ldap/user-privilege",
"admin-manual/privilege-ldap/ldap",
"admin-manual/privilege-ldap/ranger",
"admin-manual/privilege-ldap/authentication-and-authorization.md"
"admin-manual/privilege-ldap/authentication-and-authorization"
]
},
{
Expand Down
8 changes: 4 additions & 4 deletions src/components/recent-blogs/recent-blogs.data.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
export const RECENT_BLOGS_POSTS = [
{
label: 'Auto-increment columns in databases: a simple magic that makes a big difference',
link: 'https://doris.apache.org/blog/auto-increment-columns-in-databases',
},
{
label: `Variant in Apache Doris 2.1.0: a new data type 8 times faster than JSON for semi-structured data analysis`,
link: 'https://doris.apache.org/blog/variant-in-apache-doris-2.1',
Expand All @@ -11,9 +15,5 @@ export const RECENT_BLOGS_POSTS = [
label: 'Breaking down data silos with a unified data warehouse: an Apache Doris-based CDP',
link: 'https://doris.apache.org/blog/breaking-down-data-silos-with-an-apache-doris-based-cdp',
},
{
label: 'A financial anti-fraud solution based on the Apache Doris data warehouses',
link: 'https://doris.apache.org/blog/a-financial-anti-fraud-solution-based-on-the-apache-doris-data-warehouse',
},

];
14 changes: 7 additions & 7 deletions src/constant/newsletter.data.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
export const NEWSLETTER_DATA = [
{
tags: ['Tech Sharing'],
title: "Auto-increment columns in databases: a simple magic that makes a big difference",
content: `Auto-increment columns in Apache Doris accelerates dictionary encoding and pagination without damaging data writing performance. This is an introduction to its usage, applicable scenarios, and implementation details.`,
to: '/blog/auto-increment-columns-in-databases',
image: 'auto-increment-columns-in-databases.png',
},
{
tags: ['Release Notes'],
title: "Apache Doris 2.1.1 just released",
Expand All @@ -20,13 +27,6 @@ export const NEWSLETTER_DATA = [
to: '/blog/breaking-down-data-silos-with-an-apache-doris-based-cdp',
image: 'breaking-down-data-silos-with-an-apache-doris-based-cdp.png',
},
{
tags: ['Best Practice'],
title: "A financial anti-fraud solution based on the Apache Doris data warehouse",
content: `Financial fraud prevention is a race against time. This post will get into details about how a retail bank builds their fraud risk management platform based on Apache Doris and how it performs.`,
to: '/blog/a-financial-anti-fraud-solution-based-on-the-apache-doris-data-warehouse',
image: 'a-financial-anti-fraud-solution-based-on-the-apache-doris-data-warehouse.png',
},
// {
// tags: ['Best Practice'],
// title: "The financial sector's choice: fast, secure, and highly available real-time data warehousing based on Apache Doris",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion versioned_sidebars/version-2.1-sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -1214,6 +1214,7 @@
"sql-manual/sql-reference/Show-Statements/SHOW-PROPERTY",
"sql-manual/sql-reference/Show-Statements/SHOW-TRIGGERS",
"sql-manual/sql-reference/Show-Statements/SHOW-PROCESSLIST",
"sql-manual/sql-reference/Show-Statements/SHOW-PRIVILEGES",
"sql-manual/sql-reference/Show-Statements/SHOW-TRASH",
"sql-manual/sql-reference/Show-Statements/SHOW-VIEW",
"sql-manual/sql-reference/Show-Statements/SHOW-TRANSACTION",
Expand Down Expand Up @@ -1331,7 +1332,7 @@
"admin-manual/privilege-ldap/user-privilege",
"admin-manual/privilege-ldap/ldap",
"admin-manual/privilege-ldap/ranger",
"admin-manual/privilege-ldap/authentication-and-authorization.md"
"admin-manual/privilege-ldap/authentication-and-authorization"
]
},
{
Expand Down

0 comments on commit 738553c

Please sign in to comment.