docsdev.js 58 KB

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