Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
zongkx committed Oct 15, 2024
1 parent 30aae64 commit 1324035
Show file tree
Hide file tree
Showing 26 changed files with 26 additions and 14 deletions.
32 changes: 20 additions & 12 deletions .vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,40 +8,48 @@ export default defineConfig({
ignoreDeadLinks: true,
themeConfig: {// https://vitepress.dev/reference/default-theme-config
nav: [
{text: 'blog', link: '/doc/blog/'},
{text: 'java', link: '/doc/java/'},
{text: 'db', link: '/doc/db/'},
{text: 'ops', link: '/doc/ops/'},
{text: 'js', link: '/doc/js/'},
{text: 'practice', link: '/doc/practice/'},

{text: 'js', link: '/doc/js/'}
],
search: {
provider: 'local'
},
// https://vitepress-sidebar.cdget.com/zhHans/guide/api#sortfolderto
sidebar: generateSidebar([{
sortMenusByName: true,
sortMenusByFileDatePrefix: true,
sortMenusOrderByDescending: true,
documentRootPath: '/doc/blog/',
hyphenToSpace: true,
resolvePath: '/doc/blog/',
collapseDepth: 4,
}, {
documentRootPath: '/doc/java/',
collapseDepth: 4, hyphenToSpace: true,
collapseDepth: 4,
hyphenToSpace: true,
resolvePath: '/doc/java/',
}, {
documentRootPath: '/doc/db/', hyphenToSpace: true,
documentRootPath: '/doc/db/',
hyphenToSpace: true,
resolvePath: '/doc/db/',
collapseDepth: 4,
}, {
documentRootPath: '/doc/ops/', hyphenToSpace: true,
documentRootPath: '/doc/ops/',
hyphenToSpace: true,
resolvePath: '/doc/ops/',
collapseDepth: 4,
}, {
documentRootPath: '/doc/js/', hyphenToSpace: true,
documentRootPath: '/doc/js/',
hyphenToSpace: true,
resolvePath: '/doc/js/',
collapseDepth: 4,
}, {
documentRootPath: '/doc/practice/', hyphenToSpace: true,
resolvePath: '/doc/practice/',
collapseDepth: 4,
}]),

socialLinks: [
{icon: 'github', link: 'https://github.com/vuejs/vitepress'}
{icon: 'github', link: 'https://github.com/zongkx'}
]
}
})
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 5 additions & 2 deletions doc/practice/反向ETL.md → doc/blog/202308-反向ETL.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@
反向etl区别与etl,其主要目的在于数据仓库到下游系统, etl更多的是为了 数仓的创建.
反向etl目的在于提供一个标准声明,方便下游app共享基础能力和扩展.
用途: 主数据订阅/第三方数据订阅等

## 核心组件

- easybatch 批处理
- easybatch 批处理
- xxljob 分布式调度
- pf4j 插件化开发
- dremio 数据湖(大于数仓,提供更强大的olap能力)

easybatch 批处理结合 xxljob调度即可实现 简单可靠的数据分发功能,配合数据湖/pf4j 插件开发,可以实现相当灵活的 :
反向etl功能/数据订阅.

easybatch 批处理结合 xxljob调度即可实现 简单可靠的数据分发功能,配合数据湖/pf4j 插件开发,可以实现相当灵活的 : 反向etl功能/数据订阅.
```java
public interface IBatch<SOURCE, SINK> {

Expand Down Expand Up @@ -67,6 +69,7 @@ public interface IBatch<SOURCE, SINK> {

}
```

```java
@Data
@AllArgsConstructor
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions doc/blog/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- [crossoverjie](https://crossoverjie.top/)
Empty file removed doc/practice/index.md
Empty file.

0 comments on commit 1324035

Please sign in to comment.