package org.apache.cassandra.config;
/*
*
* 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.
*
*/
import java.util.List;
public class Config
{
public String cluster_name = "Test Cluster";
public String authenticator;
public String authority;
/* Hashing strategy Random or OPHF */
public String partitioner;
public Boolean auto_bootstrap = false;
public Boolean hinted_handoff_enabled = true;
public String[] seeds;
public DiskAccessMode disk_access_mode = DiskAccessMode.auto;
/* Address where to run the job tracker */
public String job_tracker_host;
/* Job Jar Location */
public String job_jar_file_location;
/* initial token in the ring */
public String initial_token;
public Long rpc_timeout_in_ms = new Long(2000);
public Integer phi_convict_threshold = 8;
public Integer concurrent_reads = 8;
public Integer concurrent_writes = 32;
public Integer memtable_flush_writers = null; // will get set to the length of data dirs in DatabaseDescriptor
public Integer sliced_buffer_size_in_kb = 64;
public Integer storage_port = 7000;
public String listen_address;
public String rpc_address;
public Integer rpc_port = 9160;
public Integer thrift_max_message_length_in_mb = 16;
public Integer thrift_framed_transport_size_in_mb = 15;
public Boolean snapshot_before_compaction = false;
public Integer compaction_thread_priority = Thread.MIN_PRIORITY;
public Integer binary_memtable_throughput_in_mb = 256;
/* Number of minutes to keep a memtable in memory */
public Integer memtable_flush_after_mins = 60 * 60 * 1000;
/* Size of the memtable in memory before it is dumped */
public Integer memtable_throughput_in_mb = 64;
/* Number of objects in millions in the memtable before it is dumped */
public Double memtable_operations_in_millions = 0.1;
/* if the size of columns or super-columns are more than this, indexing will kick in */
public Integer column_index_size_in_kb = 64;
public Integer in_memory_compaction_limit_in_mb = 256;
public String[] data_file_directories;
// Commit Log
public String commitlog_directory;
public Integer commitlog_rotation_threshold_in_mb;
public CommitLogSync commitlog_sync;
public Double commitlog_sync_batch_window_in_ms;
public Integer commitlog_sync_period_in_ms;
public String endpoint_snitch;
public Boolean dynamic_snitch = false;
public String request_scheduler;
public RequestSchedulerId request_scheduler_id;
public RequestSchedulerOptions request_scheduler_options;
public List<RawKeyspace> keyspaces;
public static enum CommitLogSync {
periodic,
batch
}
public static enum DiskAccessMode {
auto,
mmap,
mmap_index_only,
standard,
}
public static enum RequestSchedulerId
{
keyspace
}
}