How to debug Apache Storm in Local Cluster/Mode through eclipse

前端 未结 3 1638
猫巷女王i
猫巷女王i 2021-01-16 12:44

Using the following Q&A I managed to get debugging enabled through eclipse on an Apache Storm cluster (running locally). How to debug Apache Storm in Eclipse?

My

3条回答
  •  执念已碎
    2021-01-16 13:32

    In local mode, you can use e.g.

    export STORM_JAR_JVM_OPTS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=localhost:8000"
    

    before calling the storm jar command to debug remotely with Eclipse.

提交回复
热议问题