synfinatic

runtime.properties

Jan 10th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 KB | None | 0 0
  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, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. #
  18.  
  19. ####################################################
  20. #### This is used for falcon packaging only. ####
  21. ####################################################
  22.  
  23. *.domain=${falcon.app.type}
  24.  
  25. #### To configure falcon servers with prism ####
  26. #prism should have the following properties
  27. *.all.colos=eng
  28. *.falcon.eng.endpoint=http://localhost:16444
  29.  
  30. # falcon server should have the following properties
  31. falcon.current.colo=eng
  32.  
  33. #default number of results per call, if numResults option is not specified then this value is used.
  34. *.webservices.default.results.per.page=10
  35.  
  36. # retry count - to fetch the status from the workflow engine
  37. *.workflow.status.retry.count=30
  38.  
  39. # Default configs to handle replication for late arriving feeds.
  40. *.feed.late.allowed=true
  41. *.feed.late.frequency=hours(3)
  42. *.feed.late.policy=exp-backoff
  43.  
  44. # If true, do not run retention past feedCluster validity end time.
  45. # This will retain recent instances beyond feedCluster validity end time.
  46. *.falcon.retention.keep.instances.beyond.validity=true
  47.  
  48. # If true, Falcon skips oozie dryrun while scheduling entities.
  49. *.falcon.skip.dryrun=false
  50.  
  51. # If set to false, the post processing action of Oozie workflows will not generate JMS notification for Falcon.
  52. # If you are setting this to false, ensure you have enabled Oozie JMS notifications in oozie-site.xml.
  53. # Else, all features such as failure retry, late data handling and metadata service will be disabled for
  54. # all entities on the Falcon server.
  55. *.falcon.jms.notification.enabled=true
  56.  
  57. # Default configs to handle retry for instances(process and feed).
  58. *.feed.retry.attempts=3
  59. *.feed.retry.frequency=minutes(5)
  60. *.feed.retry.policy=exp-backoff
  61. *.feed.retry.onTimeout=false
  62.  
  63. ######### Proxyuser Configuration Start #########
  64.  
  65. #List of hosts the '#USER#' user is allowed to perform 'doAs 'operations from. The '#USER#' must be replaced with the
  66. #username of the user who is allowed to perform 'doAs' operations. The value can be the '*' wildcard or a list of
  67. #comma separated hostnames
  68.  
  69. *.falcon.service.ProxyUserService.proxyuser.#USER#.hosts=*
  70.  
  71. #List of groups the '#USER#' user is allowed to 'doAs 'operations. The '#USER#' must be replaced with the
  72. #username of the user who is allowed to perform 'doAs' operations. The value can be the '*' wildcard or a list of
  73. #comma separated groups
  74.  
  75. *.falcon.service.ProxyUserService.proxyuser.#USER#.groups=*
  76.  
  77. ######### Proxyuser Configuration End #########
  78.  
  79. ######### Scheduler Configuration Start #######
  80. ## Polling frequencies for processes based on frequency.
  81. #*.falcon.scheduler.minutely.process.polling.frequency.millis=
  82. #*.falcon.scheduler.hourly.process.polling.frequency.millis=
  83. #*.falcon.scheduler.daily.process.polling.frequency.millis=
  84. #*.falcon.scheduler.monthly.process.polling.frequency.millis=
  85. ######### Scheduler Configuration End #######
  86.  
  87. ### Timeout factor for processes ###
  88. instance.timeout.factor=5
Add Comment
Please, Sign In to add comment