You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2012/11/26 22:23:03 UTC

svn commit: r1413857 - in /incubator/mesos/branches/0.11.0/src: master/constants.cpp slave/constants.cpp

Author: benh
Date: Mon Nov 26 21:23:03 2012
New Revision: 1413857

URL: http://svn.apache.org/viewvc?rev=1413857&view=rev
Log:
Adding missing files to the distribution.

Added:
    incubator/mesos/branches/0.11.0/src/master/constants.cpp
    incubator/mesos/branches/0.11.0/src/slave/constants.cpp

Added: incubator/mesos/branches/0.11.0/src/master/constants.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/branches/0.11.0/src/master/constants.cpp?rev=1413857&view=auto
==============================================================================
--- incubator/mesos/branches/0.11.0/src/master/constants.cpp (added)
+++ incubator/mesos/branches/0.11.0/src/master/constants.cpp Mon Nov 26 21:23:03 2012
@@ -0,0 +1,40 @@
+/**
+ * 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.
+ */
+
+#include "common/units.hpp"
+
+#include "master/constants.hpp"
+
+namespace mesos {
+namespace internal {
+namespace master {
+
+const int MAX_OFFERS_PER_FRAMEWORK = 50;
+const uint32_t MIN_CPUS = 1;
+const uint32_t MIN_MEM = 32 * Megabyte;
+const uint32_t MAX_CPUS = 1000 * 1000;
+const uint32_t MAX_MEM = 1024 * 1024 * Megabyte;
+const Duration SLAVE_PING_TIMEOUT = Seconds(15.0);
+const uint32_t MAX_SLAVE_PING_TIMEOUTS = 5;
+const uint32_t MAX_COMPLETED_FRAMEWORKS = 50;
+const uint32_t MAX_COMPLETED_TASKS_PER_FRAMEWORK = 1000;
+const Duration WHITELIST_WATCH_INTERVAL = Seconds(5.0);
+
+} // namespace mesos {
+} // namespace internal {
+} // namespace master {

Added: incubator/mesos/branches/0.11.0/src/slave/constants.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/branches/0.11.0/src/slave/constants.cpp?rev=1413857&view=auto
==============================================================================
--- incubator/mesos/branches/0.11.0/src/slave/constants.cpp (added)
+++ incubator/mesos/branches/0.11.0/src/slave/constants.cpp Mon Nov 26 21:23:03 2012
@@ -0,0 +1,35 @@
+/**
+ * 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.
+ */
+
+#include "slave/constants.hpp"
+
+namespace mesos {
+namespace internal {
+namespace slave {
+
+const Duration EXECUTOR_SHUTDOWN_GRACE_PERIOD = Seconds(5.0);
+const Duration STATUS_UPDATE_RETRY_INTERVAL = Seconds(10.0);
+const Duration GC_DELAY = Weeks(1.0);
+const Duration DISK_WATCH_INTERVAL = Minutes(1.0);
+const uint32_t MAX_COMPLETED_FRAMEWORKS = 50;
+const uint32_t MAX_COMPLETED_EXECUTORS_PER_FRAMEWORK = 150;
+const uint32_t MAX_COMPLETED_TASKS_PER_EXECUTOR = 200;
+
+} // namespace slave {
+} // namespace internal {
+} // namespace mesos {