当前位置:  开发笔记 > 编程语言 > 正文

Hazelcast SlowOperationDetector可以识别执行时间少于1秒的操作

如何解决《HazelcastSlowOperationDetector可以识别执行时间少于1秒的操作》经验,为你挑选了0个好方法。

我有一个性能用例,通过该用例,我需要确定花费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);
    IMap employeesMap = 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吗,还是我在这里错过了什么?

推荐阅读
Chloemw
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有