Repository: cassandra Updated Branches: refs/heads/cassandra-2.1 5c364016a -> 02d1e7497 refs/heads/trunk 8a788e76a -> d224c0f87
Default flush dir to data dir. Patch by brandonwilliams, reviewed by yukim for CASSANDRA-7064 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/02d1e749 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/02d1e749 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/02d1e749 Branch: refs/heads/cassandra-2.1 Commit: 02d1e7497a9930120fac367ce82a3b22940acafb Parents: 5c36401 Author: Brandon Williams <[email protected]> Authored: Mon Apr 21 14:42:29 2014 -0500 Committer: Brandon Williams <[email protected]> Committed: Mon Apr 21 14:42:29 2014 -0500 ---------------------------------------------------------------------- conf/cassandra.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/02d1e749/conf/cassandra.yaml ---------------------------------------------------------------------- diff --git a/conf/cassandra.yaml b/conf/cassandra.yaml index 07afd05..2ef4523 100644 --- a/conf/cassandra.yaml +++ b/conf/cassandra.yaml @@ -102,8 +102,9 @@ commitlog_directory: /var/lib/cassandra/commitlog # location to write flushing sstables to. Ideally, this will also be # a separate spindle in HDD deployments. If you only have two spindles, -# have it share with the data spindle. -flush_directory: /var/lib/cassandra/flush +# have it share with the data spindle. By default, this will point at the data +# directory. +# flush_directory: /var/lib/cassandra/flush # policy for data disk failures: # stop_paranoid: shut down gossip and Thrift even for single-sstable errors.
