Available Methods
- getEndpointSnitch ( )
- getTableDefinition ( )
- getWriteRpcTimeout ( )
- setPartitioner ( )
- getPartitioner ( )
- getKeyCacheKeysToSave ( )
- setEndpointSnitch ( )
- getCommitLogSegmentSize ( )
- getAllDataFileLocations ( )
- getPhiConvictThreshold ( )
- getDiskFailurePolicy ( )
- isReplacing ( )
- getCommitLogLocation ( )
- getRangeRpcTimeout ( )
- getClusterName ( )
Related Classes
- java.io.File
- java.util.concurrent.TimeUnit
- java.util.concurrent.atomic.AtomicInteger
- java.nio.ByteBuffer
- java.net.InetAddress
- java.util.concurrent.Callable
- org.junit.BeforeClass
- java.net.InetSocketAddress
- java.util.Queue
- com.google.common.collect.Lists
- java.util.concurrent.ThreadPoolExecutor
- com.google.common.collect.ImmutableMap
- java.io.DataInputStream
- com.google.common.collect.Sets
- java.nio.channels.SocketChannel
- java.util.concurrent.SynchronousQueue
- com.google.common.util.concurrent.RateLimiter
- com.datastax.driver.core.Cluster
- com.google.common.util.concurrent.Uninterruptibles
- org.apache.thrift.transport.TTransportException
- org.apache.kafka.connect.data.Schema
- org.apache.thrift.server.TServer
- org.apache.thrift.transport.TFramedTransport
- com.datastax.driver.core.TableMetadata
- org.apache.cassandra.exceptions.ConfigurationException
Java Code Examples for org.apache.cassandra.config.DatabaseDescriptor#getRangeRpcTimeout()
The following examples show how to use
org.apache.cassandra.config.DatabaseDescriptor#getRangeRpcTimeout() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AbstractRangeCommand.java From stratio-cassandra with Apache License 2.0 | 4 votes |
public long getTimeout() { return DatabaseDescriptor.getRangeRpcTimeout(); }
Example 2
Source File: StorageProxy.java From stratio-cassandra with Apache License 2.0 | votes |
public Long getRangeRpcTimeout() { return DatabaseDescriptor.getRangeRpcTimeout(); }