|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.flume.channel.AbstractChannel org.apache.flume.channel.BasicChannelSemantics org.apache.flume.channel.file.FileChannel
public class FileChannel
A durable Channel
implementation that uses the local file system for
its storage.
FileChannel works by writing all transactions to a set of directories specified in the configuration. Additionally, when a commit occurs the transaction is synced to disk. Pointers to events put on the channel are stored in memory. As such, each event on the queue will require 8 bytes of DirectMemory (non-heap). However, the channel will only allow a configurable number messages into the channel. The appropriate amount of direct memory for said capacity, must be allocated to the JVM via the JVM property: -XX:MaxDirectMemorySize
Memory Consumption:
Constructor Summary | |
---|---|
FileChannel()
|
Method Summary | |
---|---|
void |
configure(Context context)
Request the implementing class to (re)configure itself. |
protected BasicTransactionSemantics |
createTransaction()
Called to create new Transaction objects, which must
extend BasicTransactionSemantics . |
void |
setName(String name)
|
void |
start()
Starts a service or component. |
void |
stop()
Stops a service or component. |
String |
toString()
|
Methods inherited from class org.apache.flume.channel.BasicChannelSemantics |
---|
getTransaction, initialize, put, take |
Methods inherited from class org.apache.flume.channel.AbstractChannel |
---|
getLifecycleState, getName |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public FileChannel()
Method Detail |
---|
public void setName(String name)
setName
in interface NamedComponent
setName
in class AbstractChannel
public void configure(Context context)
Configurable
Request the implementing class to (re)configure itself.
When configuration parameters are changed, they must be reflected by the component asap.
There are no thread safety guarrantees on when configure might be called.
configure
in interface Configurable
configure
in class AbstractChannel
public void start()
LifecycleAware
Starts a service or component.
Implementations should determine the result of any start logic and effect
the return value of LifecycleAware.getLifecycleState()
accordingly.
start
in interface LifecycleAware
start
in class AbstractChannel
public void stop()
LifecycleAware
Stops a service or component.
Implementations should determine the result of any stop logic and effect
the return value of LifecycleAware.getLifecycleState()
accordingly.
stop
in interface LifecycleAware
stop
in class AbstractChannel
public String toString()
toString
in class Object
protected BasicTransactionSemantics createTransaction()
BasicChannelSemantics
Called to create new Transaction
objects, which must
extend BasicTransactionSemantics
. Each object is used
for only one transaction, but is stored in a thread-local and
retrieved by getTransaction
for the duration of that
transaction.
createTransaction
in class BasicChannelSemantics
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |