Ho un codice semplice per un server echo multi-thread in Java (restituisce ciò che è stato restituito ai client). Sto profilando varie risorse del server incluse le statistiche del thread. Di seguito sono riportate alcune di queste statistiche in base al numero di client connessi. Le mie domande riguardano la linea di base (numero di client 0) rispetto alle non di base!Thread daemon, conteggio thread e conteggio totale thread iniziato
1) perché quando un singolo client si connette, il numero totale di thread aumenta di 2? (per il resto, ha senso incrementare di 1)
2) Quali sono i due thread non daemon ?! E perché il demone inizialmente incrementa di 1 e poi viene riparato?
Sono un po 'casuali ?!
# clients 0 1 2 3 4 5 6 7 8 9 10
Total Started Thread Count 15 18 19 20 21 22 23 24 25 26 27
Thread count 14 16 17 18 19 20 21 22 23 24 25
Peak thread count 14 16 17 18 19 20 21 22 23 24 25
Daemon thread count 12 13 13 13 13 13 13 13 13 13 13
Ecco il codice del server. Sto usando sia RMI (per i client ai messaggi di polling) che Server Socket (per i client di inviare messaggi). Se sono necessarie altre classi fammi sapere.
package test;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.ServerSocket;
import java.net.Socket;
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
import java.rmi.server.UnicastRemoteObject;
import java.util.Vector;
public class ServerRMI extends Thread implements Hello {
//centralized token manager runs polling server and socket server to receive updated tokens
static Vector<String> tokenList= new Vector<String>();
protected Socket clientSocket;
static int RMIRegistryPort=9001;
static int SocketServerPort=9010;
public static void main(String[] args) throws IOException {
try {
ServerRMI obj = new ServerRMI();
Hello stub = (Hello) UnicastRemoteObject.exportObject(obj, 0);
// Bind the remote object's stub in the registry
Registry registry = LocateRegistry.createRegistry(RMIRegistryPort);
registry.bind("Hello", stub);
System.err.println("Server ready");
} catch (Exception e) {
System.err.println("Server exception: " + e.toString());
e.printStackTrace();
}
ServerSocket serverSocket = null;
//initialize token list
//A needs to execute first
tokenList.add(0,"0");
try {
serverSocket = new ServerSocket(SocketServerPort);
System.out.println("Connection Socket Created");
try {
while (true) {
System.out.println("Waiting for Connection");
new ServerRMI(serverSocket.accept());
}
} catch (IOException e) {
System.err.println("Accept failed.");
}
} catch (IOException e) {
System.err.println("Could not listen on port: "+SocketServerPort);
} finally {
try {
serverSocket.close();
} catch (IOException e) {
System.err.println("Could not close port: "+SocketServerPort);
}
}
}
private ServerRMI(Socket clientSoc) {
clientSocket = clientSoc;
start();
}
public ServerRMI() {}{
// TODO Auto-generated constructor stub
}
public void run() {
System.out.println("New Communication Thread Started");
try {
PrintWriter out = new PrintWriter(clientSocket.getOutputStream(),
true);
BufferedReader in = new BufferedReader(new InputStreamReader(
clientSocket.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null) {
tokenList.add(0,inputLine);
System.out.println("Server received: " + inputLine);
// System.out.println(" ququ size: "+queue.size());
out.println(inputLine);
if (inputLine.equals("Bye."))
break;
}
out.close();
in.close();
clientSocket.close();
} catch (IOException e) {
System.err.println("Problem with Communication Server");
}
}
public String pollServer() {
if(!tokenList.isEmpty()){
String data = tokenList.get(0);
System.out.println("Poll data: "+data);
return data;
} else{
return tokenList.size()+"";
}
}
}
CAP della tua accetti prega – qwwdfsad
È possibile controllare le informazioni thread nel strumento di profiling che si sta utilizzando. Ad esempio, 'jconsole' o' jvisualvm' mostra tutte le informazioni sul thread nella scheda "Thread". Nel processo verranno eseguiti anche alcuni thread del profiler, che verranno aggiunti al conteggio. –
Non conosciamo il tuo codice, quindi non so come possiamo rispondere. Se fossi in te, farei un dump del thread quando # di client è 0, quando è 1 e li confronta, riceverai la tua risposta –