docsdev.js 60 KB

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