Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
699 views
in Technique[技术] by (71.8m points)

jvm - When multiple java programs run on the same machine

Each java application will run in a specific Java Virtual Machine Instance. I am really getting confused on below aspects and Googling has confused me even more. Different articles on different sites.

  1. If I have a web service written in java it will need a JVM instance to run.So can JVM be made a daemon process?

  2. If yes when we run any other java application it will use this instance of JVM or create a new one?

  3. Main memory available in any machine is constant. When we start n java processes simultaneously without providing any initial heap size how is the heap size distributed among processes?

  4. Is there any process that manages n number of JVM instances or is it managed by OS itself?

  5. When stop-the-world happens during an GC are other JVM instances(different threads I assume) affected?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

1) If I have a web service written in java it will need a JVM instance to run. So can JVM be made a daemon process?

Yes it can. How it is done depends on the O/S and on the web server container itself.

2) If yes when we run any other java application it will use this instance of JVM or create a new one?

No. Each Java application uses an independent JVM.

Each JVM is a separate process, and that means there is no sharing of stacks, heaps, etcetera. (Generally, the only things that might be shared are the read only segments that hold the code of the core JVM and native libraries ... in the same way that normal processes might share code segments.)

3) Main memory available in any machine is constant. When we start n java processes simultaneously without providing any initial heap size how is the heap size distributed among processes?

The mechanism for deciding how big to make the heap if you don't specify a size depends on the JVM / platform / version you are using, and whether you using the "client" or "server" model (for Hotspot JVMs). The heuristic doesn't take account of the number or size of other JVMs.

Reference: https://stackoverflow.com/a/4667635/139985

In practice, you would probably be better off specifying the heap size directly.

4) Is there any process that manages n number of JVM instances or is it managed by OS itself?

Neither. The number of JVM instances is determined by the actions of various things that can start processes; e.g. daemons scripts, command scripts, users typing commands at the command line, etcetera. Ultimately, the OS may refuse to start any more processes if it runs out of resources, but JVMs are not treated any different to other processes.

5) When stop-the-world happens during an GC are other JVM instances(different threads I assume) affected?

No. The JVMs are independent processes. They don't share any mutable state. Garbage collection operates on each JVM independently.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...