【问题标题】:Profiling a Corda Application分析 Corda 应用程序
【发布时间】:2018-06-11 23:30:18
【问题描述】:

我正在尝试针对 CorDapp 运行一些检测/分析 - 对于这个问题,这里的示例 cordapp:https://github.com/corda/cordapp-example.git version release-3。

但是,当我尝试根据 jvm runtime 从 corda shell 将 VisualVM 附加到正在运行的 PID 时,我收到如下错误:

(来自 VisualVM 的 Profile 选项卡)

Mon Jun 11 15:17:36 BST 2018>>> Profiler Agent: JNI OnLoad Initializing... Profiler Agent: JNI OnLoad Initialized successfully Profiler Agent: Waiting for connection on port 5140 (Protocol version: 18) Profiler Agent: Established connection with the tool Profiler Agent: Local accelerated session Profiler Agent Error: Exception when handling command from client: java.io.InvalidClassException: filter status: REJECTED Profiler Agent: Connection with agent closed

或(从采样器选项卡)

CPU sampling: Not available. Cannot access threads in target application. Check the logfile for details (use Help | About | Logfile).

日志文件给了我这个有用的错误:

WARNING [org.netbeans.modules.profiler.NetBeansProfiler]: IDEAppStatusHandler - error: {)} *** Profiler error (Mon Jun 11 15:17:59 BST 2018): exception while trying to get response from the target JVM: java.net.SocketException: Connection reset INFO [com.sun.tools.visualvm.sampler.cpu.ThreadInfoProvider]: mxbeans.getThreadMXBean() returns null for Application [id: localhost-10884, pid: 10884, host: localhost]

我在 MacOS 和 Ubuntu 上都试过了,但我遇到了同样的问题 - 所以我认为这不是 Java 安装问题。

任何指针!?

【问题讨论】:

    标签: corda


    【解决方案1】:

    VisualVM 使用 Java 序列化。出于安全原因,Corda 禁止 Java 序列化。

    https://github.com/corda/corda/blob/release-V3/node/src/main/kotlin/net/corda/node/internal/NodeStartup.kt#L204:

    open protected fun banJavaSerialisation(conf: NodeConfiguration) {
        SerialFilter.install(if (conf.notary?.bftSMaRt != null) ::bftSMaRtSerialFilter else ::defaultSerialFilter)
    }
    

    【讨论】:

    • 不出所料,@Joel 再次正确 - 通过禁用节点启动的这一部分意味着 VisualVM 可以附加到节点和配置文件。
    猜你喜欢
    • 2011-01-14
    • 2012-03-21
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多