This is an automated email from the ASF dual-hosted git repository.
wuzhiguo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/bigtop-manager.git
The following commit(s) were added to refs/heads/main by this push:
new 4e6144ac BIGTOP-4503: SparkThriftServer status check failure because
of incorrect pid file (#274)
4e6144ac is described below
commit 4e6144ac946e8d5de0a61fea05669e24bd0a29c0
Author: Chenhuab <[email protected]>
AuthorDate: Fri Sep 26 14:53:35 2025 +0800
BIGTOP-4503: SparkThriftServer status check failure because of incorrect
pid file (#274)
---
.../manager/stack/bigtop/v3_3_0/spark/SparkThriftServerScript.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/bigtop-manager-stack/bigtop-manager-stack-bigtop/src/main/java/org/apache/bigtop/manager/stack/bigtop/v3_3_0/spark/SparkThriftServerScript.java
b/bigtop-manager-stack/bigtop-manager-stack-bigtop/src/main/java/org/apache/bigtop/manager/stack/bigtop/v3_3_0/spark/SparkThriftServerScript.java
index b65dd9d0..6b0deca9 100644
---
a/bigtop-manager-stack/bigtop-manager-stack-bigtop/src/main/java/org/apache/bigtop/manager/stack/bigtop/v3_3_0/spark/SparkThriftServerScript.java
+++
b/bigtop-manager-stack/bigtop-manager-stack-bigtop/src/main/java/org/apache/bigtop/manager/stack/bigtop/v3_3_0/spark/SparkThriftServerScript.java
@@ -77,7 +77,7 @@ public class SparkThriftServerScript extends
AbstractServerScript {
@Override
public ShellResult status(Params params) {
SparkParams sparkParams = (SparkParams) params;
- return
LinuxOSUtils.checkProcess(sparkParams.getSparkHistoryServerPidFile());
+ return
LinuxOSUtils.checkProcess(sparkParams.getSparkThriftServerPidFile());
}
@Override