- JShell with its special commands
- the new folder structure
- and many more
A short summary of the new feature can be found
at https://blogs.oracle.com/java-platform-group/introducing-java-se-10
or you can take a look a the release notes:
http://www.oracle.com/technetwork/java/javase/10-relnote-issues-4108729.html#NewFeature
My favourites are:
- JEP 307 Parallel Full GC for G1 Improves
G1 worst-case latencies by making the full GC parallel. The G1 garbage
collector is designed to avoid full collections, but when the concurrent
collections can't reclaim memory fast enough a fall back full GC will
occur. The old implementation of the full GC for G1 used a single
threaded mark-sweep-compact algorithm. With JEP 307 the full GC has been
parallelized and now use the same amount of parallel worker threads as
the young and mixed collections.
See JDK-8172890
- JDK-8146115 Improve docker container detection and resource configuration usage
The
JVM has been modified to be aware that it is running in a Docker
container and will extract container specific configuration information
instead of querying the operating system. The information being
extracted is the number of CPUs and total memory that have been
allocated to the container. The total number of CPUs available to the
Java process is calculated from any specified cpu sets, cpu shares or
cpu quotas. This support is only available on Linux-based platforms.
This new support is enabled by default and can be disabled in the
command line with the JVM option:
-XX:-UseContainerSupport
In addition, this change adds a JVM option that provides the ability to specify the number of CPUs that the JVM will use:
-XX:ActiveProcessorCount=count
This count overrides any other automatic CPU detection logic in the JVM.
- JDK-8186248 Allow more flexibility in selecting Heap % of available RAM
Three
new JVM options have been added to allow Docker container users to gain
more fine grained control over the amount of system memory that will be
used for the Java Heap:
-XX:InitialRAMPercentage
-XX:MaxRAMPercentage
-XX:MinRAMPercentage
These options replace the deprecated Fraction forms (
-XX:InitialRAMFraction
, -XX:MaxRAMFraction
, and -XX:MinRAMFraction
).- JDK-8179498 attach in Linux should be relative to /proc/pid/root and namespace aware
This
bug fix corrects the attach mechanism when trying to attach from a host
process to a Java process that is running in a Docker container.
Related posts:- Docker on Ubuntu
- Running through a tutorial / investigating the processes
- Creating a small linux for my docker cluster (Alpine Linux)
- How to build a docker swarm
- Creating a minimal webserver container and deploying it to docker swarm
- Setting up a tomcat with docker
- Running a swarm with multiple managers
- Mysql inside a docker container - persistency with docker volumes
- How to change the configuration of a standard docker container(e.g. changing tomcats memory settings)
No comments:
Post a Comment