blob: e316f9772d880b694faeee6d001dc56bc088c118 [file] [log] [blame]
// 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 <stdint.h>
#include <string>
#include <stout/bytes.hpp>
#include "master/constants.hpp"
namespace mesos {
namespace internal {
namespace master {
const int MAX_OFFERS_PER_FRAMEWORK = 50;
const double MIN_CPUS = 0.01;
const Bytes MIN_MEM = Megabytes(32);
const Duration DEFAULT_HEARTBEAT_INTERVAL = Seconds(15);
const Duration DEFAULT_SLAVE_PING_TIMEOUT = Seconds(15);
const size_t DEFAULT_MAX_SLAVE_PING_TIMEOUTS = 5;
const Duration MIN_SLAVE_REREGISTER_TIMEOUT = Minutes(10);
const double RECOVERY_SLAVE_REMOVAL_PERCENT_LIMIT = 1.0; // 100%.
const size_t MAX_REMOVED_SLAVES = 100000;
const size_t DEFAULT_MAX_COMPLETED_FRAMEWORKS = 50;
const size_t DEFAULT_MAX_COMPLETED_TASKS_PER_FRAMEWORK = 1000;
const Duration WHITELIST_WATCH_INTERVAL = Seconds(5);
const uint32_t TASK_LIMIT = 100;
const std::string MASTER_INFO_LABEL = "info";
const std::string MASTER_INFO_JSON_LABEL = "json.info";
const Duration ZOOKEEPER_SESSION_TIMEOUT = Seconds(10);
const std::string DEFAULT_AUTHENTICATOR = "crammd5";
const std::string DEFAULT_ALLOCATOR = "HierarchicalDRF";
const Duration DEFAULT_ALLOCATION_INTERVAL = Seconds(1);
const std::string DEFAULT_AUTHORIZER = "local";
const std::string DEFAULT_HTTP_AUTHENTICATOR = "basic";
const std::string DEFAULT_HTTP_AUTHENTICATION_REALM = "mesos";
} // namespace master {
} // namespace internal {
} // namespace mesos {