docsdev.js 60 KB

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