docsdev.js 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. *
  19. */
  20. export default {
  21. 'en-us': {
  22. sidemenu: [
  23. {
  24. title: 'About',
  25. children: [
  26. {
  27. title: 'Introduction',
  28. link: '/en-us/docs/dev/user_doc/about/introduction.html',
  29. },
  30. {
  31. title: 'Features',
  32. link: '/en-us/docs/dev/user_doc/about/features.html',
  33. },
  34. {
  35. title: 'Hardware Environment',
  36. link: '/en-us/docs/dev/user_doc/about/hardware.html',
  37. },
  38. {
  39. title: 'Glossary',
  40. link: '/en-us/docs/dev/user_doc/about/glossary.html',
  41. }
  42. ],
  43. },
  44. {
  45. title: 'Quick Start',
  46. children: [
  47. {
  48. title: 'Quick Start',
  49. link: '/en-us/docs/dev/user_doc/guide/start/quick-start.html',
  50. },
  51. {
  52. title: 'Docker Deployment',
  53. link: '/en-us/docs/dev/user_doc/guide/start/docker.html',
  54. },
  55. ],
  56. },
  57. {
  58. title: 'Introduction to Functions',
  59. children: [
  60. {
  61. title: 'Application Homepage',
  62. link: '/en-us/docs/dev/user_doc/guide/homepage.html',
  63. },
  64. {
  65. title: 'Project',
  66. children: [
  67. {
  68. title: 'Project List',
  69. link: '/en-us/docs/dev/user_doc/guide/project/project-list.html',
  70. },
  71. {
  72. title: 'Workflow Definition',
  73. link: '/en-us/docs/dev/user_doc/guide/project/workflow-definition.html',
  74. },
  75. {
  76. title: 'Workflow Instance',
  77. link: '/en-us/docs/dev/user_doc/guide/project/workflow-instance.html',
  78. },
  79. {
  80. title: 'Task Instance',
  81. link: '/en-us/docs/dev/user_doc/guide/project/task-instance.html',
  82. },
  83. {
  84. title: 'Task Definition',
  85. link: '/zh-cn/docs/dev/user_doc/guide/project/task-definition.html',
  86. },
  87. ]
  88. },
  89. {
  90. title: 'Task',
  91. children: [
  92. {
  93. title: 'Appendix',
  94. link: '/en-us/docs/dev/user_doc/guide/task/appendix.html',
  95. },
  96. {
  97. title: 'Shell',
  98. link: '/en-us/docs/dev/user_doc/guide/task/shell.html',
  99. },
  100. {
  101. title: 'SubProcess',
  102. link: '/en-us/docs/dev/user_doc/guide/task/sub-process.html',
  103. },
  104. {
  105. title: 'Dependent',
  106. link: '/en-us/docs/dev/user_doc/guide/task/dependent.html',
  107. },
  108. {
  109. title: 'Stored Procedure',
  110. link: '/en-us/docs/dev/user_doc/guide/task/stored-procedure.html',
  111. },
  112. {
  113. title: 'SQL',
  114. link: '/en-us/docs/dev/user_doc/guide/task/sql.html',
  115. },
  116. {
  117. title: 'Spark',
  118. link: '/en-us/docs/dev/user_doc/guide/task/spark.html',
  119. },
  120. {
  121. title: 'MapReduce',
  122. link: '/en-us/docs/dev/user_doc/guide/task/map-reduce.html',
  123. },
  124. {
  125. title: 'Python',
  126. link: '/en-us/docs/dev/user_doc/guide/task/python.html',
  127. },
  128. {
  129. title: 'Flink',
  130. link: '/en-us/docs/dev/user_doc/guide/task/flink.html',
  131. },
  132. {
  133. title: 'HTTP',
  134. link: '/en-us/docs/dev/user_doc/guide/task/http.html',
  135. },
  136. {
  137. title: 'DataX',
  138. link: '/en-us/docs/dev/user_doc/guide/task/datax.html',
  139. },
  140. {
  141. title: 'Pigeon',
  142. link: '/en-us/docs/dev/user_doc/guide/task/pigeon.html',
  143. },
  144. {
  145. title: 'Conditions',
  146. link: '/en-us/docs/dev/user_doc/guide/task/conditions.html',
  147. },
  148. {
  149. title: 'Switch',
  150. link: '/en-us/docs/dev/user_doc/guide/task/switch.html',
  151. },
  152. {
  153. title: 'SeaTunnel',
  154. link: '/en-us/docs/dev/user_doc/guide/task/seatunnel.html',
  155. },
  156. {
  157. title: 'Amazon EMR',
  158. link: '/en-us/docs/dev/user_doc/guide/task/emr.html',
  159. },
  160. {
  161. title: 'Apache Zeppelin',
  162. link: '/en-us/docs/dev/user_doc/guide/task/zeppelin.html',
  163. },
  164. {
  165. title: 'Jupyter',
  166. link: '/en-us/docs/dev/user_doc/guide/task/jupyter.html',
  167. },
  168. {
  169. title: 'Hive CLI',
  170. link: '/en-us/docs/dev/user_doc/guide/task/hive-cli.html',
  171. },
  172. {
  173. title: 'Kubernetes',
  174. link: '/en-us/docs/dev/user_doc/guide/task/kubernetes.html',
  175. },
  176. {
  177. title: 'MLflow',
  178. link: '/en-us/docs/dev/user_doc/guide/task/mlflow.html',
  179. },
  180. {
  181. title: 'Openmldb',
  182. link: '/en-us/docs/dev/user_doc/guide/task/openmldb.html',
  183. },
  184. {
  185. title: 'DVC',
  186. link: '/en-us/docs/dev/user_doc/guide/task/dvc.html',
  187. },
  188. {
  189. title: 'Dinky',
  190. link: '/en-us/docs/dev/user_doc/guide/task/dinky.html',
  191. },
  192. {
  193. title: 'Java',
  194. link: '/en-us/docs/dev/user_doc/guide/task/java.html',
  195. },
  196. {
  197. title: 'SageMaker',
  198. link: '/en-us/docs/dev/user_doc/guide/task/sagemaker.html',
  199. },
  200. {
  201. title: 'ChunJun',
  202. link: '/en-us/docs/dev/user_doc/guide/task/chunjun.html',
  203. },
  204. {
  205. title: 'Pytorch',
  206. link: '/en-us/docs/dev/user_doc/guide/task/pytorch.html',
  207. },
  208. {
  209. title: 'Amazon DMS',
  210. link: '/en-us/docs/dev/user_doc/guide/task/dms.html',
  211. },
  212. {
  213. title: 'AWS Datasync',
  214. link: '/en-us/docs/dev/user_doc/guide/task/datasync.html',
  215. },
  216. {
  217. title: 'Kubeflow',
  218. link: '/en-us/docs/dev/user_doc/guide/task/kubeflow.html',
  219. },
  220. ],
  221. },
  222. {
  223. title: 'Parameter',
  224. children: [
  225. {
  226. title: 'Built-in Parameter',
  227. link: '/en-us/docs/dev/user_doc/guide/parameter/built-in.html',
  228. },
  229. {
  230. title: 'Global Parameter',
  231. link: '/en-us/docs/dev/user_doc/guide/parameter/global.html',
  232. },
  233. {
  234. title: 'Local Parameter',
  235. link: '/en-us/docs/dev/user_doc/guide/parameter/local.html',
  236. },
  237. {
  238. title: 'Parameter Context',
  239. link: '/en-us/docs/dev/user_doc/guide/parameter/context.html',
  240. },
  241. {
  242. title: 'Parameter Priority',
  243. link: '/en-us/docs/dev/user_doc/guide/parameter/priority.html',
  244. },
  245. {
  246. title: 'File Parameter',
  247. link: '/en-us/docs/dev/user_doc/guide/parameter/file-parameter.html',
  248. },
  249. ],
  250. },
  251. {
  252. title: 'Data Source',
  253. children: [
  254. {
  255. title: 'MySQL',
  256. link: '/en-us/docs/dev/user_doc/guide/datasource/mysql.html',
  257. },
  258. {
  259. title: 'PostgreSQL',
  260. link: '/en-us/docs/dev/user_doc/guide/datasource/postgresql.html',
  261. },
  262. {
  263. title: 'HIVE',
  264. link: '/en-us/docs/dev/user_doc/guide/datasource/hive.html',
  265. },
  266. {
  267. title: 'Spark',
  268. link: '/en-us/docs/dev/user_doc/guide/datasource/spark.html',
  269. },
  270. {
  271. title: 'Presto',
  272. link: '/en-us/docs/dev/user_doc/guide/datasource/presto.html',
  273. },
  274. {
  275. title: 'SQL SERVER',
  276. link: '/en-us/docs/dev/user_doc/guide/datasource/sqlserver.html',
  277. },
  278. {
  279. title: 'Amazon Redshift',
  280. link: '/en-us/docs/dev/user_doc/guide/datasource/redshift.html',
  281. },
  282. {
  283. title: 'ClickHouse',
  284. link: '/en-us/docs/dev/user_doc/guide/datasource/clickhouse.html',
  285. },
  286. {
  287. title: 'IBM DB2',
  288. link: '/en-us/docs/dev/user_doc/guide/datasource/db2.html',
  289. },
  290. {
  291. title: 'Oracle',
  292. link: '/en-us/docs/dev/user_doc/guide/datasource/oracle.html',
  293. },
  294. {
  295. title: 'Amazon Athena',
  296. link: '/en-us/docs/dev/user_doc/guide/datasource/athena.html',
  297. },
  298. ],
  299. },
  300. {
  301. title: 'Alert',
  302. children: [
  303. {
  304. title: 'Alert Component User Guide ',
  305. link: '/en-us/docs/dev/user_doc/guide/alert/alert_plugin_user_guide.html',
  306. },
  307. {
  308. title: 'Email',
  309. link: '/en-us/docs/dev/user_doc/guide/alert/email.html',
  310. },
  311. {
  312. title: 'Telegram',
  313. link: '/en-us/docs/dev/user_doc/guide/alert/telegram.html',
  314. },
  315. {
  316. title: 'Ding Talk',
  317. link: '/en-us/docs/dev/user_doc/guide/alert/dingtalk.html',
  318. },
  319. {
  320. title: 'Enterprise Wechat',
  321. link: '/en-us/docs/dev/user_doc/guide/alert/enterprise-wechat.html',
  322. },
  323. {
  324. title: 'Enterprise Webexteams',
  325. link: '/en-us/docs/dev/user_doc/guide/alert/enterprise-webexteams.html',
  326. },
  327. {
  328. title: 'Script',
  329. link: '/en-us/docs/dev/user_doc/guide/alert/script.html',
  330. },
  331. {
  332. title: 'Http',
  333. link: '/en-us/docs/dev/user_doc/guide/alert/http.html',
  334. },
  335. {
  336. title: 'Feishu',
  337. link: '/en-us/docs/dev/user_doc/guide/alert/feishu.html',
  338. },
  339. {
  340. title: 'Slack',
  341. link: '/en-us/docs/dev/user_doc/guide/alert/slack.html',
  342. },
  343. ],
  344. },
  345. {
  346. title: 'Resource',
  347. children: [
  348. {
  349. title: 'Introduction',
  350. link: '/en-us/docs/dev/user_doc/guide/resource/intro.html'
  351. },
  352. {
  353. title: 'Configuration',
  354. link: '/en-us/docs/dev/user_doc/guide/resource/configuration.html'
  355. },
  356. {
  357. title: 'File Manage',
  358. link: '/en-us/docs/dev/user_doc/guide/resource/file-manage.html'
  359. },
  360. {
  361. title: 'UDF Manage',
  362. link: '/en-us/docs/dev/user_doc/guide/resource/udf-manage.html'
  363. },
  364. {
  365. title: 'Task Group Manage',
  366. link: '/en-us/docs/dev/user_doc/guide/resource/task-group.html'
  367. },
  368. ],
  369. },
  370. {
  371. title: 'Monitor',
  372. link: '/en-us/docs/dev/user_doc/guide/monitor.html',
  373. },
  374. {
  375. title: 'Security',
  376. link: '/en-us/docs/dev/user_doc/guide/security.html',
  377. },
  378. {
  379. title: 'Metrics',
  380. children: [
  381. {
  382. title: 'Metrics',
  383. link: '/en-us/docs/dev/user_doc/guide/metrics/metrics.html',
  384. }
  385. ],
  386. },
  387. {
  388. title: 'Data Quality',
  389. link: '/en-us/docs/dev/user_doc/guide/data-quality.html',
  390. },
  391. {
  392. title: 'Upgrade',
  393. children: [
  394. {
  395. title: 'Incompatible',
  396. link: '/en-us/docs/dev/user_doc/guide/upgrade/incompatible.html',
  397. },
  398. {
  399. title: 'Upgrade',
  400. link: '/en-us/docs/dev/user_doc/guide/upgrade/upgrade.html',
  401. },
  402. ],
  403. },
  404. {
  405. title: 'Expansion and Reduction',
  406. link: '/en-us/docs/dev/user_doc/guide/expansion-reduction.html',
  407. },
  408. {
  409. title: 'Demo',
  410. link: '/en-us/docs/dev/user_doc/guide/demo.html',
  411. },
  412. ],
  413. },
  414. {
  415. title: 'Installation',
  416. children: [
  417. {
  418. title: 'Standalone Deployment',
  419. link: '/en-us/docs/dev/user_doc/guide/installation/standalone.html',
  420. },
  421. {
  422. title: 'Pseudo Cluster Deployment',
  423. link: '/en-us/docs/dev/user_doc/guide/installation/pseudo-cluster.html',
  424. },
  425. {
  426. title: 'Cluster Deployment',
  427. link: '/en-us/docs/dev/user_doc/guide/installation/cluster.html',
  428. },
  429. {
  430. title: 'Kubernetes Deployment',
  431. link: '/en-us/docs/dev/user_doc/guide/installation/kubernetes.html',
  432. },
  433. {
  434. title: 'integration',
  435. children: [
  436. {
  437. title: 'Rainbond Deployment',
  438. link: '/en-us/docs/dev/user_doc/guide/integration/rainbond.html',
  439. },
  440. ],
  441. },
  442. ],
  443. },
  444. {
  445. title: 'Architecture Guide',
  446. children: [
  447. {
  448. title: 'Architecture Design',
  449. link: '/en-us/docs/dev/user_doc/architecture/design.html',
  450. },
  451. {
  452. title: 'Metadata',
  453. link: '/en-us/docs/dev/user_doc/architecture/metadata.html',
  454. },
  455. {
  456. title: 'Configuration File',
  457. link: '/en-us/docs/dev/user_doc/architecture/configuration.html',
  458. },
  459. {
  460. title: 'Task Structure',
  461. link: '/en-us/docs/dev/user_doc/architecture/task-structure.html',
  462. },
  463. {
  464. title: 'Load Balance',
  465. link: '/en-us/docs/dev/user_doc/architecture/load-balance.html',
  466. },
  467. {
  468. title: 'Cache',
  469. link: '/en-us/docs/dev/user_doc/architecture/cache.html',
  470. },
  471. ],
  472. },
  473. {
  474. title: 'API',
  475. children: [
  476. {
  477. title: 'Open API',
  478. link: '/en-us/docs/dev/user_doc/guide/open-api.html',
  479. },
  480. {
  481. title: 'PyDolphinScheduler',
  482. link: '/python/main/index.html',
  483. },
  484. {
  485. title: 'Health Check',
  486. link: '/en-us/docs/dev/user_doc/guide/healthcheck.html',
  487. },
  488. ],
  489. },
  490. {
  491. title: 'Contribution',
  492. children: [
  493. {
  494. title: 'Join',
  495. children: [
  496. {
  497. title: 'Security Report',
  498. link: '/en-us/docs/dev/user_doc/contribute/join/security.html',
  499. },
  500. {
  501. title: 'How to Become a Committer',
  502. link: '/en-us/docs/dev/user_doc/contribute/join/become-a-committer.html',
  503. },
  504. {
  505. title: 'Subscribe Mailing Lists',
  506. link: '/en-us/docs/dev/user_doc/contribute/join/subscribe.html',
  507. },
  508. {
  509. title: 'Participate in Contributing',
  510. link: '/en-us/docs/dev/user_doc/contribute/join/contribute.html',
  511. },
  512. {
  513. title: 'Code of Conduct',
  514. link: '/en-us/docs/dev/user_doc/contribute/join/code-conduct.html',
  515. },
  516. {
  517. title: 'Review Issue or Pull Requests',
  518. link: '/en-us/docs/dev/user_doc/contribute/join/review.html',
  519. },
  520. {
  521. title: 'E2E Contribution Guide',
  522. link: '/en-us/docs/dev/user_doc/contribute/join/e2e-guide.html',
  523. },
  524. {
  525. title: 'Submit Code',
  526. link: '/en-us/docs/dev/user_doc/contribute/join/submit-code.html',
  527. },
  528. {
  529. title: 'License Notice',
  530. link: '/en-us/docs/dev/user_doc/contribute/join/DS-License.html',
  531. },
  532. {
  533. title: 'Document Notice',
  534. link: '/en-us/docs/dev/user_doc/contribute/join/document.html',
  535. },
  536. {
  537. title: 'Issue Notice',
  538. link: '/en-us/docs/dev/user_doc/contribute/join/issue.html',
  539. },
  540. {
  541. title: 'Pull Request Notice',
  542. link: '/en-us/docs/dev/user_doc/contribute/join/pull-request.html',
  543. },
  544. {
  545. title: 'Commit Message Notice',
  546. link: '/en-us/docs/dev/user_doc/contribute/join/commit-message.html',
  547. },
  548. {
  549. title: 'Micro BenchMark Notice',
  550. link: '/en-us/docs/dev/user_doc/contribute/join/microbench.html',
  551. },
  552. {
  553. title: 'Unit Test Writing Guide',
  554. link: '/en-us/docs/dev/user_doc/contribute/join/unit-test.html',
  555. },
  556. ],
  557. },
  558. {
  559. title: 'Development Environment Setup',
  560. link: '/en-us/docs/dev/user_doc/contribute/development-environment-setup.html',
  561. },
  562. {
  563. title: 'Design Document',
  564. children: [
  565. // TODO not support multiply level for now
  566. // {
  567. // title: 'SPI',
  568. // children: [
  569. {
  570. title: 'Architecture Design',
  571. link: '/en-us/docs/dev/user_doc/contribute/architecture-design.html',
  572. },
  573. {
  574. title: 'Alert SPI',
  575. link: '/en-us/docs/dev/user_doc/contribute/backend/spi/alert.html',
  576. },
  577. {
  578. title: 'Registry SPI',
  579. link: '/en-us/docs/dev/user_doc/contribute/backend/spi/registry.html',
  580. },
  581. {
  582. title: 'Task SPI',
  583. link: '/en-us/docs/dev/user_doc/contribute/backend/spi/task.html',
  584. },
  585. {
  586. title: 'Datasource SPI',
  587. link: '/en-us/docs/dev/user_doc/contribute/backend/spi/datasource.html',
  588. },
  589. {
  590. title: 'Mechanism Design',
  591. link: '/en-us/docs/dev/user_doc/contribute/backend/mechanism/overview.html',
  592. },
  593. ],
  594. },
  595. {
  596. title: 'Guidelines',
  597. children: [
  598. {
  599. title: 'Frontend Development',
  600. link: '/en-us/docs/dev/user_doc/contribute/frontend-development.html',
  601. },
  602. {
  603. title: 'API Standard',
  604. link: '/en-us/docs/dev/user_doc/contribute/api-standard.html',
  605. },
  606. {
  607. title: 'E2E Automation Test',
  608. link: '/en-us/docs/dev/user_doc/contribute/e2e-test.html',
  609. },
  610. {
  611. title: 'API Automation Test',
  612. link: '/en-us/docs/dev/user_doc/contribute/api-test.html',
  613. },
  614. {
  615. title: 'Log Specification',
  616. link: '/en-us/docs/dev/user_doc/contribute/log-specification.html',
  617. },
  618. ],
  619. },
  620. {
  621. title: 'Release Guide',
  622. children: [
  623. {
  624. title: 'Release Preparation',
  625. link: '/en-us/docs/dev/user_doc/contribute/release/release-prepare.html',
  626. },
  627. {
  628. title: 'Release Guide',
  629. link: '/en-us/docs/dev/user_doc/contribute/release/release.html',
  630. },
  631. {
  632. title: 'Release Post',
  633. link: '/en-us/docs/dev/user_doc/contribute/release/release-post.html',
  634. },
  635. ],
  636. },
  637. {
  638. title: 'Questions & Communications',
  639. link: '/en-us/docs/dev/user_doc/contribute/have-questions.html',
  640. },
  641. ],
  642. },
  643. {
  644. title: 'DSIP',
  645. children: [
  646. {
  647. title: 'DSIP',
  648. link: '/en-us/docs/dev/user_doc/DSIP.html',
  649. },
  650. ],
  651. },
  652. {
  653. title: 'FAQ',
  654. children: [
  655. {
  656. title: 'General Setting',
  657. link: '/en-us/docs/dev/user_doc/guide/howto/general-setting.html',
  658. },
  659. {
  660. title: 'Datasource Setting',
  661. link: '/en-us/docs/dev/user_doc/guide/howto/datasource-setting.html',
  662. },
  663. {
  664. title: 'Others',
  665. link: '/en-us/docs/release/faq.html',
  666. }
  667. ],
  668. },
  669. {
  670. title: 'Older Versions',
  671. children: [
  672. {
  673. title: 'Older Versions',
  674. link: '/en-us/docs/release/history-versions.html',
  675. },
  676. ],
  677. },
  678. ],
  679. barText: 'Documentation',
  680. },
  681. 'zh-cn': {
  682. sidemenu: [
  683. {
  684. title: '关于Apache DolphinScheduler',
  685. children: [
  686. {
  687. title: '简介',
  688. link: '/zh-cn/docs/dev/user_doc/about/introduction.html',
  689. },
  690. {
  691. title: '特性',
  692. link: '/zh-cn/docs/dev/user_doc/about/features.html',
  693. },
  694. {
  695. title: '建议配置',
  696. link: '/zh-cn/docs/dev/user_doc/about/hardware.html',
  697. },
  698. {
  699. title: '名词解释',
  700. link: '/zh-cn/docs/dev/user_doc/about/glossary.html',
  701. },
  702. ],
  703. },
  704. {
  705. title: '快速上手',
  706. children: [
  707. {
  708. title: '快速上手',
  709. link: '/zh-cn/docs/dev/user_doc/guide/start/quick-start.html',
  710. },
  711. {
  712. title: 'Docker部署(Docker)',
  713. link: '/zh-cn/docs/dev/user_doc/guide/start/docker.html',
  714. },
  715. ],
  716. },
  717. {
  718. title: '功能介绍',
  719. children: [
  720. {
  721. title: '应用首页',
  722. link: '/zh-cn/docs/dev/user_doc/guide/homepage.html',
  723. },
  724. {
  725. title: '项目管理',
  726. children: [
  727. {
  728. title: '项目列表',
  729. link: '/zh-cn/docs/dev/user_doc/guide/project/project-list.html',
  730. },
  731. {
  732. title: '工作流定义',
  733. link: '/zh-cn/docs/dev/user_doc/guide/project/workflow-definition.html',
  734. },
  735. {
  736. title: '工作流实例',
  737. link: '/zh-cn/docs/dev/user_doc/guide/project/workflow-instance.html',
  738. },
  739. {
  740. title: '任务实例',
  741. link: '/zh-cn/docs/dev/user_doc/guide/project/task-instance.html',
  742. },
  743. {
  744. title: '任务定义',
  745. link: '/zh-cn/docs/dev/user_doc/guide/project/task-definition.html',
  746. },
  747. ]
  748. },
  749. {
  750. title: '任务类型',
  751. children: [
  752. {
  753. title: 'Appendix',
  754. link: '/zh-cn/docs/dev/user_doc/guide/task/appendix.html',
  755. },
  756. {
  757. title: 'Shell',
  758. link: '/zh-cn/docs/dev/user_doc/guide/task/shell.html',
  759. },
  760. {
  761. title: 'SubProcess',
  762. link: '/zh-cn/docs/dev/user_doc/guide/task/sub-process.html',
  763. },
  764. {
  765. title: 'Dependent',
  766. link: '/zh-cn/docs/dev/user_doc/guide/task/dependent.html',
  767. },
  768. {
  769. title: 'Stored Procedure',
  770. link: '/zh-cn/docs/dev/user_doc/guide/task/stored-procedure.html',
  771. },
  772. {
  773. title: 'SQL',
  774. link: '/zh-cn/docs/dev/user_doc/guide/task/sql.html',
  775. },
  776. {
  777. title: 'Spark',
  778. link: '/zh-cn/docs/dev/user_doc/guide/task/spark.html',
  779. },
  780. {
  781. title: 'MapReduce',
  782. link: '/zh-cn/docs/dev/user_doc/guide/task/map-reduce.html',
  783. },
  784. {
  785. title: 'Python',
  786. link: '/zh-cn/docs/dev/user_doc/guide/task/python.html',
  787. },
  788. {
  789. title: 'Flink',
  790. link: '/zh-cn/docs/dev/user_doc/guide/task/flink.html',
  791. },
  792. {
  793. title: 'HTTP',
  794. link: '/zh-cn/docs/dev/user_doc/guide/task/http.html',
  795. },
  796. {
  797. title: 'DataX',
  798. link: '/zh-cn/docs/dev/user_doc/guide/task/datax.html',
  799. },
  800. {
  801. title: 'Pigeon',
  802. link: '/zh-cn/docs/dev/user_doc/guide/task/pigeon.html',
  803. },
  804. {
  805. title: 'Conditions',
  806. link: '/zh-cn/docs/dev/user_doc/guide/task/conditions.html',
  807. },
  808. {
  809. title: 'Switch',
  810. link: '/zh-cn/docs/dev/user_doc/guide/task/switch.html',
  811. },
  812. {
  813. title: 'SeaTunnel',
  814. link: '/zh-cn/docs/dev/user_doc/guide/task/seatunnel.html',
  815. },
  816. {
  817. title: 'Amazon EMR',
  818. link: '/zh-cn/docs/dev/user_doc/guide/task/emr.html',
  819. },
  820. {
  821. title: 'Apache Zeppelin',
  822. link: '/zh-cn/docs/dev/user_doc/guide/task/zeppelin.html',
  823. },
  824. {
  825. title: 'Jupyter',
  826. link: '/zh-cn/docs/dev/user_doc/guide/task/jupyter.html',
  827. },
  828. {
  829. title: 'Hive CLI',
  830. link: '/zh-cn/docs/dev/user_doc/guide/task/hive-cli.html',
  831. },
  832. {
  833. title: 'Kubernetes',
  834. link: '/zh-cn/docs/dev/user_doc/guide/task/kubernetes.html',
  835. },
  836. {
  837. title: 'MLflow',
  838. link: '/zh-cn/docs/dev/user_doc/guide/task/mlflow.html',
  839. },
  840. {
  841. title: 'Openmldb',
  842. link: '/zh-cn/docs/dev/user_doc/guide/task/openmldb.html',
  843. },
  844. {
  845. title: 'DVC',
  846. link: '/zh-cn/docs/dev/user_doc/guide/task/dvc.html',
  847. },
  848. {
  849. title: 'Dinky',
  850. link: '/zh-cn/docs/dev/user_doc/guide/task/dinky.html',
  851. },
  852. {
  853. title: 'Java',
  854. link: '/zh-cn/docs/dev/user_doc/guide/task/java.html',
  855. },
  856. {
  857. title: 'SageMaker',
  858. link: '/zh-cn/docs/dev/user_doc/guide/task/sagemaker.html',
  859. },
  860. {
  861. title: 'ChunJun',
  862. link: '/zh-cn/docs/dev/user_doc/guide/task/chunjun.html',
  863. },
  864. {
  865. title: 'Pytorch',
  866. link: '/zh-cn/docs/dev/user_doc/guide/task/pytorch.html',
  867. },
  868. {
  869. title: 'Amazon DMS',
  870. link: '/zh-cn/docs/dev/user_doc/guide/task/dms.html',
  871. },
  872. {
  873. title: 'AWS Datasync',
  874. link: '/zh-cn/docs/dev/user_doc/guide/task/datasync.html',
  875. },
  876. {
  877. title: 'Kubeflow',
  878. link: '/zh-cn/docs/dev/user_doc/guide/task/kubeflow.html',
  879. },
  880. ],
  881. },
  882. {
  883. title: '参数',
  884. children: [
  885. {
  886. title: '内置参数',
  887. link: '/zh-cn/docs/dev/user_doc/guide/parameter/built-in.html',
  888. },
  889. {
  890. title: '全局参数',
  891. link: '/zh-cn/docs/dev/user_doc/guide/parameter/global.html',
  892. },
  893. {
  894. title: '本地参数',
  895. link: '/zh-cn/docs/dev/user_doc/guide/parameter/local.html',
  896. },
  897. {
  898. title: '参数传递',
  899. link: '/zh-cn/docs/dev/user_doc/guide/parameter/context.html',
  900. },
  901. {
  902. title: '参数优先级',
  903. link: '/zh-cn/docs/dev/user_doc/guide/parameter/priority.html',
  904. },
  905. {
  906. title: '文件参数传递',
  907. link: '/zh-cn/docs/dev/user_doc/guide/parameter/file-parameter.html',
  908. },
  909. ],
  910. },
  911. {
  912. title: '数据源中心',
  913. children: [
  914. {
  915. title: 'MySQL',
  916. link: '/zh-cn/docs/dev/user_doc/guide/datasource/mysql.html',
  917. },
  918. {
  919. title: 'PostgreSQL',
  920. link: '/zh-cn/docs/dev/user_doc/guide/datasource/postgresql.html',
  921. },
  922. {
  923. title: 'HIVE',
  924. link: '/zh-cn/docs/dev/user_doc/guide/datasource/hive.html',
  925. },
  926. {
  927. title: 'Spark',
  928. link: '/zh-cn/docs/dev/user_doc/guide/datasource/spark.html',
  929. },
  930. {
  931. title: 'Amazon Athena',
  932. link: '/zh-cn/docs/dev/user_doc/guide/datasource/athena.html',
  933. },
  934. ],
  935. },
  936. {
  937. title: '告警',
  938. children: [
  939. {
  940. title: '告警组件向导',
  941. link: '/zh-cn/docs/dev/user_doc/guide/alert/alert_plugin_user_guide.html',
  942. },
  943. {
  944. title: 'Email',
  945. link: '/zh-cn/docs/dev/user_doc/guide/alert/email.html',
  946. },
  947. {
  948. title: 'Telegram',
  949. link: '/zh-cn/docs/dev/user_doc/guide/alert/telegram.html',
  950. },
  951. {
  952. title: '钉钉告警',
  953. link: '/zh-cn/docs/dev/user_doc/guide/alert/dingtalk.html',
  954. },
  955. {
  956. title: '企业微信',
  957. link: '/zh-cn/docs/dev/user_doc/guide/alert/enterprise-wechat.html',
  958. },
  959. {
  960. title: 'Webexteams',
  961. link: '/zh-cn/docs/dev/user_doc/guide/alert/enterprise-webexteams.html',
  962. },
  963. {
  964. title: '脚本告警',
  965. link: '/zh-cn/docs/dev/user_doc/guide/alert/script.html',
  966. },
  967. {
  968. title: 'Http告警',
  969. link: '/zh-cn/docs/dev/user_doc/guide/alert/http.html',
  970. },
  971. {
  972. title: '飞书告警',
  973. link: '/zh-cn/docs/dev/user_doc/guide/alert/feishu.html',
  974. },
  975. {
  976. title: 'Slack告警',
  977. link: '/zh-cn/docs/dev/user_doc/guide/alert/slack.html',
  978. },
  979. ],
  980. },
  981. {
  982. title: '资源中心',
  983. children: [
  984. {
  985. title: '简介',
  986. link: '/zh-cn/docs/dev/user_doc/guide/resource/intro.html'
  987. },
  988. {
  989. title: '配置详情',
  990. link: '/zh-cn/docs/dev/user_doc/guide/resource/configuration.html'
  991. },
  992. {
  993. title: '文件管理',
  994. link: '/zh-cn/docs/dev/user_doc/guide/resource/file-manage.html'
  995. },
  996. {
  997. title: 'UDF 管理',
  998. link: '/zh-cn/docs/dev/user_doc/guide/resource/udf-manage.html'
  999. },
  1000. {
  1001. title: '任务组管理',
  1002. link: '/zh-cn/docs/dev/user_doc/guide/resource/task-group.html'
  1003. },
  1004. ],
  1005. },
  1006. {
  1007. title: '监控中心',
  1008. link: '/zh-cn/docs/dev/user_doc/guide/monitor.html',
  1009. },
  1010. {
  1011. title: '安全中心',
  1012. link: '/zh-cn/docs/dev/user_doc/guide/security.html',
  1013. },
  1014. {
  1015. title: '指标相关',
  1016. children: [
  1017. {
  1018. title: '指标',
  1019. link: '/zh-cn/docs/dev/user_doc/guide/metrics/metrics.html',
  1020. }
  1021. ],
  1022. },
  1023. {
  1024. title: '数据质量',
  1025. link: '/zh-cn/docs/dev/user_doc/guide/data-quality.html',
  1026. },
  1027. {
  1028. title: '升级',
  1029. children: [
  1030. {
  1031. title: '不向前兼容的更新',
  1032. link: '/zh-cn/docs/dev/user_doc/guide/upgrade/incompatible.html',
  1033. },
  1034. {
  1035. title: '升级步骤',
  1036. link: '/zh-cn/docs/dev/user_doc/guide/upgrade/upgrade.html',
  1037. },
  1038. ],
  1039. },
  1040. {
  1041. title: '扩/缩容',
  1042. link: '/zh-cn/docs/dev/user_doc/guide/expansion-reduction.html',
  1043. },
  1044. {
  1045. title: 'Demo',
  1046. link: '/zh-cn/docs/dev/user_doc/guide/demo.html',
  1047. },
  1048. ],
  1049. },
  1050. {
  1051. title: '部署指南',
  1052. children: [
  1053. {
  1054. title: '单机部署(Standalone)',
  1055. link: '/zh-cn/docs/dev/user_doc/guide/installation/standalone.html',
  1056. },
  1057. {
  1058. title: '伪集群部署(Pseudo-Cluster)',
  1059. link: '/zh-cn/docs/dev/user_doc/guide/installation/pseudo-cluster.html',
  1060. },
  1061. {
  1062. title: '集群部署(Cluster)',
  1063. link: '/zh-cn/docs/dev/user_doc/guide/installation/cluster.html',
  1064. },
  1065. {
  1066. title: 'Kubernetes部署(Kubernetes)',
  1067. link: '/zh-cn/docs/dev/user_doc/guide/installation/kubernetes.html',
  1068. },
  1069. {
  1070. title: '集成',
  1071. children: [
  1072. {
  1073. title: '基于Rainbond部署(Cluster)',
  1074. link: '/zh-cn/docs/dev/user_doc/guide/integration/rainbond.html',
  1075. },
  1076. ],
  1077. },
  1078. ],
  1079. },
  1080. {
  1081. title: '架构设计',
  1082. children: [
  1083. {
  1084. title: '元数据文档',
  1085. link: '/zh-cn/docs/dev/user_doc/architecture/metadata.html',
  1086. },
  1087. {
  1088. title: '架构设计',
  1089. link: '/zh-cn/docs/dev/user_doc/architecture/design.html',
  1090. },
  1091. {
  1092. title: '配置文件',
  1093. link: '/zh-cn/docs/dev/user_doc/architecture/configuration.html',
  1094. },
  1095. {
  1096. title: '任务结构',
  1097. link: '/zh-cn/docs/dev/user_doc/architecture/task-structure.html',
  1098. },
  1099. {
  1100. title: '负载均衡',
  1101. link: '/zh-cn/docs/dev/user_doc/architecture/load-balance.html',
  1102. },
  1103. {
  1104. title: '缓存',
  1105. link: '/zh-cn/docs/dev/user_doc/architecture/cache.html',
  1106. },
  1107. ],
  1108. },
  1109. {
  1110. title: 'API',
  1111. children: [
  1112. {
  1113. title: 'API调用',
  1114. link: '/zh-cn/docs/dev/user_doc/guide/open-api.html',
  1115. },
  1116. {
  1117. title: 'PyDolphinScheduler',
  1118. link: '/python/main/index.html',
  1119. },
  1120. {
  1121. title: '健康检查',
  1122. link: '/zh-cn/docs/dev/user_doc/guide/healthcheck.html',
  1123. },
  1124. ],
  1125. },
  1126. {
  1127. title: '贡献指南',
  1128. children: [
  1129. {
  1130. title: '如何参与',
  1131. children: [
  1132. {
  1133. title: '报告安全问题',
  1134. link: '/zh-cn/docs/dev/user_doc/contribute/join/security.html',
  1135. },
  1136. {
  1137. title: '如何成为 Committer',
  1138. link: '/zh-cn/docs/dev/user_doc/contribute/join/become-a-committer.html',
  1139. },
  1140. {
  1141. title: '订阅/取消订阅邮件列表',
  1142. link: '/zh-cn/docs/dev/user_doc/contribute/join/subscribe.html',
  1143. },
  1144. {
  1145. title: '参与贡献',
  1146. link: '/zh-cn/docs/dev/user_doc/contribute/join/contribute.html',
  1147. },
  1148. {
  1149. title: '行为准则',
  1150. link: '/zh-cn/docs/dev/user_doc/contribute/join/code-conduct.html',
  1151. },
  1152. {
  1153. title: 'Review Issue or Pull Requests',
  1154. link: '/zh-cn/docs/dev/user_doc/contribute/join/review.html',
  1155. },
  1156. {
  1157. title: 'E2E Contribution Guide',
  1158. link: '/zh-cn/docs/dev/user_doc/contribute/join/e2e-guide.html',
  1159. },
  1160. {
  1161. title: '提交代码',
  1162. link: '/zh-cn/docs/dev/user_doc/contribute/join/submit-code.html',
  1163. },
  1164. {
  1165. title: 'License须知',
  1166. link: '/zh-cn/docs/dev/user_doc/contribute/join/DS-License.html',
  1167. },
  1168. {
  1169. title: '文档须知',
  1170. link: '/zh-cn/docs/dev/user_doc/contribute/join/document.html',
  1171. },
  1172. {
  1173. title: 'Issue须知',
  1174. link: '/zh-cn/docs/dev/user_doc/contribute/join/issue.html',
  1175. },
  1176. {
  1177. title: 'Pull Request须知',
  1178. link: '/zh-cn/docs/dev/user_doc/contribute/join/pull-request.html',
  1179. },
  1180. {
  1181. title: 'Commit Message须知',
  1182. link: '/zh-cn/docs/dev/user_doc/contribute/join/commit-message.html',
  1183. },
  1184. {
  1185. title: '微基准测试须知',
  1186. link: '/zh-cn/docs/dev/user_doc/contribute/join/microbench.html',
  1187. },
  1188. {
  1189. title: '单元测试编写指南',
  1190. link: '/zh-cn/docs/dev/user_doc/contribute/join/unit-test.html',
  1191. },
  1192. ],
  1193. },
  1194. {
  1195. title: '环境搭建',
  1196. link: '/zh-cn/docs/dev/user_doc/contribute/development-environment-setup.html',
  1197. },
  1198. {
  1199. title: '设计文档',
  1200. children: [
  1201. // TODO not support multiply level for now
  1202. // {
  1203. // title: 'SPI',
  1204. // children: [
  1205. {
  1206. title: '架构设计',
  1207. link: '/zh-cn/docs/dev/user_doc/contribute/architecture-design.html',
  1208. },
  1209. {
  1210. title: 'Alert SPI',
  1211. link: '/zh-cn/docs/dev/user_doc/contribute/backend/spi/alert.html',
  1212. },
  1213. {
  1214. title: 'Registry SPI',
  1215. link: '/zh-cn/docs/dev/user_doc/contribute/backend/spi/registry.html',
  1216. },
  1217. {
  1218. title: 'Task SPI',
  1219. link: '/zh-cn/docs/dev/user_doc/contribute/backend/spi/task.html',
  1220. },
  1221. {
  1222. title: 'Datasource SPI',
  1223. link: '/zh-cn/docs/dev/user_doc/contribute/backend/spi/datasource.html',
  1224. },
  1225. {
  1226. title: '组件设计',
  1227. link: '/zh-cn/docs/dev/user_doc/contribute/backend/mechanism/overview.html',
  1228. },
  1229. ],
  1230. },
  1231. {
  1232. title: '规范',
  1233. children: [
  1234. {
  1235. title: '前端开发',
  1236. link: '/zh-cn/docs/dev/user_doc/contribute/frontend-development.html',
  1237. },
  1238. {
  1239. title: 'API规范',
  1240. link: '/zh-cn/docs/dev/user_doc/contribute/api-standard.html',
  1241. },
  1242. {
  1243. title: 'E2E 自动化测试',
  1244. link: '/zh-cn/docs/dev/user_doc/contribute/e2e-test.html',
  1245. },
  1246. {
  1247. title: 'API 自动化测试',
  1248. link: '/zh-cn/docs/dev/user_doc/contribute/api-test.html',
  1249. },
  1250. {
  1251. title: '日志规范',
  1252. link: '/zh-cn/docs/dev/user_doc/contribute/log-specification.html',
  1253. },
  1254. ],
  1255. },
  1256. {
  1257. title: '发版指南',
  1258. children: [
  1259. {
  1260. title: '发版准备',
  1261. link: '/zh-cn/docs/dev/user_doc/contribute/release/release-prepare.html',
  1262. },
  1263. {
  1264. title: '发版指南',
  1265. link: '/zh-cn/docs/dev/user_doc/contribute/release/release.html',
  1266. },
  1267. {
  1268. title: '发版后续',
  1269. link: '/zh-cn/docs/dev/user_doc/contribute/release/release-post.html',
  1270. },
  1271. ],
  1272. },
  1273. {
  1274. title: '问题与交流',
  1275. link: '/zh-cn/docs/dev/user_doc/contribute/have-questions.html',
  1276. },
  1277. ],
  1278. },
  1279. {
  1280. title: 'DSIP',
  1281. children: [
  1282. {
  1283. title: 'DSIP',
  1284. link: '/zh-cn/docs/dev/user_doc/DSIP.html',
  1285. },
  1286. ],
  1287. },
  1288. {
  1289. title: 'FAQ',
  1290. children: [
  1291. {
  1292. title: '通用设置',
  1293. link: '/zh-cn/docs/dev/user_doc/guide/howto/general-setting.html',
  1294. },
  1295. {
  1296. title: '数据源设置',
  1297. link: '/zh-cn/docs/dev/user_doc/guide/howto/datasource-setting.html',
  1298. },
  1299. {
  1300. title: '其他',
  1301. link: '/zh-cn/docs/release/faq.html',
  1302. },
  1303. ],
  1304. },
  1305. {
  1306. title: '历史版本',
  1307. children: [
  1308. {
  1309. title: '历史版本',
  1310. link: '/zh-cn/docs/release/history-versions.html',
  1311. },
  1312. ],
  1313. },
  1314. ],
  1315. barText: '文档',
  1316. },
  1317. };