我有一个性能用例,通过该用例,我需要确定花费300毫秒以上的某些process()
调用EntryProcessor
。我尝试使用SlowOperationDetector
以下配置。
true true 60000 60000 300
我给出了一个示例测试代码,该代码在内部睡眠1秒钟process()
。
public static void main(String args[]) { Config cfg = null; try { cfg = new FileSystemXmlConfig("C:\\workarea\\hazelcast\\hazelcast-perf.xml"); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } HazelcastInstance hazelcastInstance = Hazelcast.newHazelcastInstance(cfg); IMapemployeesMap = hazelcastInstance.getMap("anyMap"); employeesMap.put("100", new Employee(100)); SlowEntryProcessor slowEntryProcessor = new SlowEntryProcessor(); employeesMap.executeOnKey("100", slowEntryProcessor); } static public class SlowEntryProcessor implements EntryProcessor { private static final long serialVersionUID = 1L; @Override public EntryBackupProcessor getBackupProcessor() { return null; } @Override public Object process(Entry arg0) { System.out.println("About to sleep"); try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("done processing"); return null; } }
当配置的阈值小于1000ms时,我看不到任何日志。因此,在此示例中,我看不到任何缓慢的操作堆栈跟踪或日志。
如果将睡眠时间更改为2秒,并且将慢速操作阈值更改为1秒,则慢速操作检测器将启动并显示日志。
这是错误SlowOperationDetector
吗,还是我在这里错过了什么?