docsdev.js 59 KB

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