common.properties.tpl 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. #
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements. See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. # user data local directory path, please make sure the directory exists and have read write permissions
  18. data.basedir.path=${DATA_BASEDIR_PATH}
  19. # resource storage type: HDFS, S3, NONE
  20. resource.storage.type=${RESOURCE_STORAGE_TYPE}
  21. # resource store on HDFS/S3 path, resource file will store to this hadoop hdfs path, self configuration, please make sure the directory exists on hdfs and have read write permissions. "/dolphinscheduler" is recommended
  22. resource.upload.path=${RESOURCE_UPLOAD_PATH}
  23. # whether to startup kerberos
  24. hadoop.security.authentication.startup.state=${HADOOP_SECURITY_AUTHENTICATION_STARTUP_STATE}
  25. # java.security.krb5.conf path
  26. java.security.krb5.conf.path=${JAVA_SECURITY_KRB5_CONF_PATH}
  27. # login user from keytab username
  28. login.user.keytab.username=${LOGIN_USER_KEYTAB_USERNAME}
  29. # login user from keytab path
  30. login.user.keytab.path=${LOGIN_USER_KEYTAB_PATH}
  31. # kerberos expire time, the unit is hour
  32. kerberos.expire.time=${KERBEROS_EXPIRE_TIME}
  33. # resource view suffixs
  34. #resource.view.suffixs=txt,log,sh,bat,conf,cfg,py,java,sql,xml,hql,properties,json,yml,yaml,ini,js
  35. # if resource.storage.type=HDFS, the user must have the permission to create directories under the HDFS root path
  36. hdfs.root.user=${HDFS_ROOT_USER}
  37. # if resource.storage.type=S3, the value like: s3a://dolphinscheduler; if resource.storage.type=HDFS and namenode HA is enabled, you need to copy core-site.xml and hdfs-site.xml to conf dir
  38. fs.defaultFS=${FS_DEFAULT_FS}
  39. # if resource.storage.type=S3, s3 endpoint
  40. fs.s3a.endpoint=${FS_S3A_ENDPOINT}
  41. # if resource.storage.type=S3, s3 access key
  42. fs.s3a.access.key=${FS_S3A_ACCESS_KEY}
  43. # if resource.storage.type=S3, s3 secret key
  44. fs.s3a.secret.key=${FS_S3A_SECRET_KEY}
  45. # resourcemanager port, the default value is 8088 if not specified
  46. resource.manager.httpaddress.port=${RESOURCE_MANAGER_HTTPADDRESS_PORT}
  47. # if resourcemanager HA is enabled, please set the HA IPs; if resourcemanager is single, keep this value empty
  48. yarn.resourcemanager.ha.rm.ids=${YARN_RESOURCEMANAGER_HA_RM_IDS}
  49. # if resourcemanager HA is enabled or not use resourcemanager, please keep the default value; If resourcemanager is single, you only need to replace ds1 to actual resourcemanager hostname
  50. yarn.application.status.address=${YARN_APPLICATION_STATUS_ADDRESS}
  51. # job history status url when application number threshold is reached(default 10000, maybe it was set to 1000)
  52. yarn.job.history.status.address=${YARN_JOB_HISTORY_STATUS_ADDRESS}
  53. # datasource encryption enable
  54. datasource.encryption.enable=${DATASOURCE_ENCRYPTION_ENABLE}
  55. # datasource encryption salt
  56. datasource.encryption.salt=${DATASOURCE_ENCRYPTION_SALT}
  57. # use sudo or not, if set true, executing user is tenant user and deploy user needs sudo permissions; if set false, executing user is the deploy user and doesn't need sudo permissions
  58. sudo.enable=${SUDO_ENABLE}
  59. # network interface preferred like eth0, default: empty
  60. #dolphin.scheduler.network.interface.preferred=
  61. # network IP gets priority, default: inner outer
  62. #dolphin.scheduler.network.priority.strategy=default
  63. # system env path
  64. #dolphinscheduler.env.path=env/dolphinscheduler_env.sh
  65. # development state
  66. development.state=false