This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push:
new 5245f632005b [feat] add kafka-doris-connector (#450)
5245f632005b is described below
commit 5245f632005b1daff6733e8ca2061061c2debfe9
Author: Jeffrey <[email protected]>
AuthorDate: Thu Mar 21 21:29:04 2024 +0800
[feat] add kafka-doris-connector (#450)
---
src/constant/download.data.ts | 12 ++++++++++++
src/pages/download/index.tsx | 4 ++++
2 files changed, 16 insertions(+)
diff --git a/src/constant/download.data.ts b/src/constant/download.data.ts
index 4f7be249daad..781230d15538 100644
--- a/src/constant/download.data.ts
+++ b/src/constant/download.data.ts
@@ -22,6 +22,7 @@ export enum SuffixEnum {
}
export enum ToolsEnum {
+ Kafka = 'Kafka Doris Connector',
Flink = 'Flink Doris Connector',
Spark = 'Spark Doris Connector',
StreamLoader = 'Doris Streamloader',
@@ -736,6 +737,17 @@ export const OLD_VERSIONS: Option[] = [
];
export const TOOL_VERSIONS = [
+ {
+ label: ToolsEnum.Kafka,
+ value: ToolsEnum.Kafka,
+ children: [
+ {
+ label: '1.0.0',
+ value: '1.0.0',
+ gz:
'https://repo1.maven.org/maven2/org/apache/doris/doris-kafka-connector/1.0.0/doris-kafka-connector-1.0.0.jar',
+ },
+ ],
+ },
{
label: ToolsEnum.Flink,
value: ToolsEnum.Flink,
diff --git a/src/pages/download/index.tsx b/src/pages/download/index.tsx
index 03ae4038951a..cfbae72ce3f9 100644
--- a/src/pages/download/index.tsx
+++ b/src/pages/download/index.tsx
@@ -308,6 +308,10 @@ export default function Download() {
</div>
<div className="flex">
<ul>
+ <li className="mt-2 flex items-center
space-x-2">
+ <CheckedIcon />
+ <div className="text-[#4C576C]
text-base">Kafka Doris Connector</div>
+ </li>
<li className="mt-2 flex items-center
space-x-2">
<CheckedIcon />
<div className="text-[#4C576C]
text-base">Flink Doris Connector</div>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]