Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Marathon small knowledge sharing how to debug marathon remotely

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

Purpose: after starting the marathon service on the centos server, you can use intellij idea for remote debugging on the window

Main environment:

1. I deploy the marathon service with reference to the way provided by https://mesosphere.github.io/marathon/docs/.

2. Marathon source code under down on https://github.com/mesosphere/marathon

If you don't want to modify the source code, you can down the source code of marathon and import it into intellijidea directly.

If you want to modify the source code and then debug remotely, you need to recompile the marathon source code, package it into a jar package, and replace the source code package under / marathon root directory / target/scala-2.11 on the server; in this case, make sure that the source code debugged locally is consistent with the source code running on the server.

What is the difference between remote debugging of marathon and remote debugging of spark?

Personal feelings, the main differences in one aspect:

After studying the remote debugging of spark at the end of last year, we need to add jvm parameters to the spark-class script, such as:

Declare JAVA_OPTS

While Marathon does this better, it doesn't need to be added.

Whether you are directly down source code from git, or download deployment package through https://mesosphere.github.io/marathon/

Debugging parameters are provided in the startup script bin/start, as shown in the following figure:

However, if you want to implement remote debugging, you need to change the value of the above parameter suspend=n from n to y, otherwise remote debugging will not work.

Specific steps:

1. Modify the startup script start

2. Update the command to start marathon service and change it to debug mode

In the startup script start

Therefore, change marathon's command to start the service to the following form

/ usr/local/marathon/bin/start-jvm-debug 9999-master zk://master001:2181,master002:2181,master003:2181/mesos--zk zk://master001:2181,master002:2181,master003:2181/marathon--framework_name marathon-- mesos_user root-mesos_role marathon_role--mesos_authentication_principal marathon_user

3. In intellij idea, change the way of starting marathon to remote debugging mode.

On the server, start the marathon service

5. On window, break point and start debug

6. Start debug remote debugging

Check to see if the log is printed on the server

OK!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report