mirror of https://github.com/apache/cassandra
Merge branch cassandra-2.2 into cassandra-3.0
This commit is contained in:
commit
77e2205aed
|
|
@ -13,6 +13,7 @@
|
|||
* Fix invalid cell value skipping when reading from disk (CASSANDRA-16223)
|
||||
* Prevent invoking enable/disable gossip when not in NORMAL (CASSANDRA-16146)
|
||||
Merged from 2.2:
|
||||
* Remove OpenJDK log warning (CASSANDRA-15563)
|
||||
* Fix the histogram merge of the table metrics (CASSANDRA-16259)
|
||||
|
||||
3.0.23:
|
||||
|
|
|
|||
|
|
@ -181,13 +181,7 @@ public class StartupChecks
|
|||
logger.warn("32bit JVM detected. It is recommended to run Cassandra on a 64bit JVM for better performance.");
|
||||
|
||||
String javaVmName = System.getProperty("java.vm.name");
|
||||
if (javaVmName.contains("OpenJDK"))
|
||||
{
|
||||
// There is essentially no QA done on OpenJDK builds, and
|
||||
// clusters running OpenJDK have seen many heap and load issues.
|
||||
logger.warn("OpenJDK is not recommended. Please upgrade to the newest Oracle Java release");
|
||||
}
|
||||
else if (!javaVmName.contains("HotSpot"))
|
||||
if (!(javaVmName.contains("HotSpot") || javaVmName.contains("OpenJDK")))
|
||||
{
|
||||
logger.warn("Non-Oracle JVM detected. Some features, such as immediate unmap of compacted SSTables, may not work as intended");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue