public static Properties serverProperties()

in geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/GeodeProperties.java [49:68]


  public static Properties serverProperties() {
    final Properties properties = new Properties();

    properties.setProperty(CONSERVE_SOCKETS, valueOf(false));
    properties.setProperty(ENABLE_TIME_STATISTICS, valueOf(true));
    properties.setProperty(LOG_DISK_SPACE_LIMIT, valueOf(100));
    properties.setProperty(LOG_FILE_SIZE_LIMIT, valueOf(10));
    properties.setProperty(LOG_LEVEL, "config");
    properties.setProperty(REMOVE_UNRESPONSIVE_CLIENT, valueOf(true));
    properties.setProperty(STATISTIC_SAMPLING_ENABLED, valueOf(true));
    properties.setProperty(ARCHIVE_DISK_SPACE_LIMIT, valueOf(150));
    properties.setProperty(ARCHIVE_FILE_SIZE_LIMIT, valueOf(10));
    properties.setProperty(DISTRIBUTED_SYSTEM_ID, valueOf(0));
    properties.setProperty(ENABLE_CLUSTER_CONFIGURATION, valueOf(false));
    properties.setProperty(USE_CLUSTER_CONFIGURATION, valueOf(false));
    properties.setProperty(SERIALIZABLE_OBJECT_FILTER, "benchmark.geode.data.**");
    properties.setProperty(MEMBER_TIMEOUT, valueOf(600000));

    return withOptions(properties);
  }