0
工作後,我的性能測試的流程需要火腿顯示器要經過下列步驟操作:創建火腿不序列化+反序列化
- ,
- 系列化
- 反序列化的停止
- 反序列化副本
但是下面的方案不起作用(步驟4沒有效果)。
您能否爲我提供解決方法?
證明與代碼:
public class Main {
protected static void monitorSomething() throws InterruptedException, IOException, ClassNotFoundException{
Monitor outerMonitor = MonitorFactory.start("outerMonitor");
for (int i=1; i<=10; i++) {
Monitor inner = MonitorFactory.start("myInnerMonitor");
Monitor serializedMonitorSource = MonitorFactory.start("serializedMonitor");
Thread.sleep(100+i);
byte[] serialized = serialize(serializedMonitorSource);
Monitor serializedMonitorDestination = (Monitor)deserialize(serialized);
serializedMonitorDestination.stop();
inner.stop();
}
outerMonitor.stop();
MonitorFactory.start("mySecondMonitor")
.stop();
}
protected static void printPerformanceMeasurements(){
for(Object monitor: MonitorFactory.getMap().values()){
System.out.println(monitor);
}
}
public static void main(String[] args) throws InterruptedException, IOException, ClassNotFoundException {
monitorSomething();
printPerformanceMeasurements();
}
private static byte[] serialize(Serializable serializable) throws IOException {
try (ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutput out = new ObjectOutputStream(bos)) {
out.writeObject(serializable);
byte[] messageBytes = bos.toByteArray();
return messageBytes;
}
}
private static Object deserialize(byte[] bytes) throws IOException, ClassNotFoundException{
try (ByteArrayInputStream bis = new ByteArrayInputStream(bytes);
ObjectInput in = new ObjectInputStream(bis)) {
return in.readObject();
}
}
}
輸出:即無serializedMonitor的被測量
JAMon Label=myInnerMonitor, Units=ms.: (LastValue=114.0, Hits=10.0, Avg=114.2, Total=1142.0, Min=105.0, Max=136.0, Active=0.0, Avg Active=1.0, Max Active=1.0, First Access=Thu Feb 25 22:01:38 EET 2016, Last Access=Thu Feb 25 22:01:39 EET 2016)
JAMon Label=outerMonitor, Units=ms.: (LastValue=1143.0, Hits=1.0, Avg=1143.0, Total=1143.0, Min=1143.0, Max=1143.0, Active=0.0, Avg Active=1.0, Max Active=1.0, First Access=Thu Feb 25 22:01:39 EET 2016, Last Access=Thu Feb 25 22:01:39 EET 2016)
JAMon Label=mySecondMonitor, Units=ms.: (LastValue=0.0, Hits=1.0, Avg=0.0, Total=0.0, Min=0.0, Max=0.0, Active=0.0, Avg Active=1.0, Max Active=1.0, First Access=Thu Feb 25 22:01:39 EET 2016, Last Access=Thu Feb 25 22:01:39 EET 2016)
JAMon Label=serializedMonitor, Units=ms.: (LastValue=0.0, Hits=0.0, Avg=0.0, Total=0.0, Min=1.7976931348623157E308, Max=-1.7976931348623157E308, Active=10.0, Avg Active=0.0, Max Active=0.0, First Access=Thu Jan 01 02:00:00 EET 1970, Last Access=Thu Jan 01 02:00:00 EET 1970)
JAMon Label=com.jamonapi.Exceptions, Units=Exception: (LastValue=0.0, Hits=0.0, Avg=0.0, Total=0.0, Min=1.7976931348623157E308, Max=-1.7976931348623157E308, Active=0.0, Avg Active=0.0, Max Active=0.0, First Access=Thu Jan 01 02:00:00 EET 1970, Last Access=Thu Jan 01 02:00:00 EET 1970)
注(活性= 10)
因爲反序列化後沒有相對於當前火腿實例。反序列化後,你有一個序列化的所有東西的新實例。 –
10倍的重播。如何解決這個問題? – joro
解決方法是什麼?你不應該首先序列化這些東西。 –