Repository: ambari Updated Branches: refs/heads/trunk 2516a059a -> 4d38f5fb4
AMBARI-17823: Increase default interval between retries for oozie actions. (Venkat Ranganathan via Swapan Shridhar) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/4d38f5fb Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/4d38f5fb Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/4d38f5fb Branch: refs/heads/trunk Commit: 4d38f5fb40d2592504ffc7e9d7d7a27c1d2bf011 Parents: 2516a05 Author: Swapan Shridhar <[email protected]> Authored: Thu Jul 21 15:39:22 2016 -0700 Committer: Swapan Shridhar <[email protected]> Committed: Thu Jul 21 15:39:22 2016 -0700 ---------------------------------------------------------------------- .../services/OOZIE/configuration/oozie-site.xml | 34 ++++++++++++++++++++ 1 file changed, 34 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/4d38f5fb/ambari-server/src/main/resources/stacks/HDP/2.5/services/OOZIE/configuration/oozie-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.5/services/OOZIE/configuration/oozie-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.5/services/OOZIE/configuration/oozie-site.xml new file mode 100644 index 0000000..c0b3f5d --- /dev/null +++ b/ambari-server/src/main/resources/stacks/HDP/2.5/services/OOZIE/configuration/oozie-site.xml @@ -0,0 +1,34 @@ +<?xml version="1.0"?> +<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> +<!-- +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +--> +<configuration supports_final="false"> + <property> + <name>oozie.action.retry.interval</name> + <value>30</value> + <description> + The interval between retries of an action in case of failure + </description> + <value-attributes> + <type>custom</type> + </value-attributes> + <on-ambari-upgrade add="true"/> + </property> +</configuration>
