Jonathan Ellis gmail.com> writes:
> You should look at the org.apache.cassandra.db.compaction package and
> read the original leveldb implementation notes at
> http://leveldb.googlecode.com/svn/trunk/doc/impl.html for more
> details.
>
There is an important rule in
http://leveldb.googlecode.co
Jonathan Ellis gmail.com> writes:
>
> I think you're confusing "temporary space used during a compaction
> operation" with "total i/o done by compaction."
>
> Leveled compaction *will* do more i/o than size-tiered, because it's
> enforcing tighter guarantees on how compacted the data is.
>
Hello,everyone!
In this
doc(http://www.datastax.com/dev/blog/leveled-compaction-in-apache-cassandra),I
found a conclusion "Only enough space for 10x the sstable size needs to be
reserved for temporary use by compaction".I don't know how can we got this
conclusion,but I guess the author of this d
> Do you mind opening a ticket on JIRA for this ?
Yes,if it is a mistake. Thanks!
In cassandra1.0.0, I found that OutboundTcpConnection will throw
RuntimeException when it encounters an IOException(in write()) .In this case,
OutboundTcpConnection as a thread will stop working--do not send any message to
other nodes.
This is not reasonable,isn't it?