forked from pinpoint-apm/pinpoint
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pinpoint-apm#10605] Added cleanup inactive applications batch job
- Loading branch information
youngjin.kim2
committed
Jan 24, 2024
1 parent
ce264f6
commit e4c7628
Showing
14 changed files
with
498 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
batch/src/main/java/com/navercorp/pinpoint/batch/common/StartupJobLauncher.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Copyright 2024 NAVER Corp. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.navercorp.pinpoint.batch.common; | ||
|
||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
import org.springframework.beans.factory.InitializingBean; | ||
|
||
import java.util.List; | ||
import java.util.Objects; | ||
|
||
/** | ||
* @author youngjin.kim2 | ||
*/ | ||
public class StartupJobLauncher implements InitializingBean { | ||
|
||
private static final Logger logger = LogManager.getLogger(StartupJobLauncher.class); | ||
|
||
private final BatchJobLauncher launcher; | ||
private final List<String> jobs; | ||
|
||
public StartupJobLauncher(BatchJobLauncher launcher, List<String> jobs) { | ||
this.launcher = Objects.requireNonNull(launcher, "launcher"); | ||
this.jobs = Objects.requireNonNull(jobs, "jobs"); | ||
} | ||
|
||
@Override | ||
public void afterPropertiesSet() { | ||
if (this.jobs.isEmpty()) { | ||
logger.info("No startup jobs to launch"); | ||
return; | ||
} | ||
|
||
logger.info("Startup job launcher started"); | ||
for (String job : jobs) { | ||
logger.info("Launching job {}", job); | ||
launcher.run(job, BatchJobLauncher.createTimeParameter()); | ||
} | ||
logger.info("Startup job launcher finished"); | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
...java/com/navercorp/pinpoint/batch/configuration/CleanupInactiveApplicationsJobConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* Copyright 2024 NAVER Corp. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.navercorp.pinpoint.batch.configuration; | ||
|
||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.annotation.ImportResource; | ||
|
||
/** | ||
* @author youngjin.kim2 | ||
*/ | ||
@ImportResource({ "classpath:job/applicationContext-cleanupInactiveApplicationsJob.xml" }) | ||
@Configuration(proxyBeanMethods = false) | ||
public class CleanupInactiveApplicationsJobConfig { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
batch/src/main/java/com/navercorp/pinpoint/batch/job/ApplicationEmptyFilter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright 2024 NAVER Corp. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.navercorp.pinpoint.batch.job; | ||
|
||
import com.navercorp.pinpoint.batch.service.ApplicationService; | ||
import jakarta.annotation.Nonnull; | ||
import org.springframework.batch.item.ItemProcessor; | ||
|
||
import java.util.Objects; | ||
|
||
/** | ||
* @author youngjin.kim2 | ||
*/ | ||
public class ApplicationEmptyFilter implements ItemProcessor<String, String> { | ||
|
||
private final ApplicationService applicationService; | ||
|
||
public ApplicationEmptyFilter(ApplicationService applicationService) { | ||
this.applicationService = Objects.requireNonNull(applicationService, "applicationService"); | ||
} | ||
|
||
@Override | ||
public String process(@Nonnull String s) throws Exception { | ||
if (isApplicationEmpty(s)) { | ||
return s; | ||
} | ||
return null; | ||
} | ||
|
||
private boolean isApplicationEmpty(String applicationName) { | ||
return this.applicationService.isApplicationEmpty(applicationName); | ||
} | ||
} |
87 changes: 87 additions & 0 deletions
87
batch/src/main/java/com/navercorp/pinpoint/batch/job/ApplicationReader.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/* | ||
* Copyright 2024 NAVER Corp. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.navercorp.pinpoint.batch.job; | ||
|
||
import com.navercorp.pinpoint.batch.service.ApplicationService; | ||
import jakarta.annotation.Nonnull; | ||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
import org.springframework.batch.item.ExecutionContext; | ||
import org.springframework.batch.item.ItemStreamException; | ||
import org.springframework.batch.item.ItemStreamReader; | ||
|
||
import java.util.List; | ||
import java.util.Objects; | ||
|
||
/** | ||
* @author youngjin.kim2 | ||
*/ | ||
public class ApplicationReader implements ItemStreamReader<String> { | ||
|
||
private static final Logger logger = LogManager.getLogger(ApplicationReader.class); | ||
private static final String CURRENT_INDEX = "current.index"; | ||
|
||
private final ApplicationService applicationService; | ||
|
||
private List<String> applicationNames; | ||
int currentIndex = 0; | ||
|
||
public ApplicationReader(ApplicationService applicationService) { | ||
this.applicationService = Objects.requireNonNull(applicationService, "applicationService"); | ||
} | ||
|
||
@Override | ||
public String read() { | ||
if (currentIndex < applicationNames.size()) { | ||
return applicationNames.get(currentIndex++); | ||
} else { | ||
return null; | ||
} | ||
} | ||
|
||
@Override | ||
public void open(@Nonnull ExecutionContext executionContext) throws ItemStreamException { | ||
logger.info("Opened application reader"); | ||
this.applicationNames = getAllApplications(); | ||
logger.info("Application reader has {} applications", applicationNames.size()); | ||
if (executionContext.containsKey(CURRENT_INDEX)) { | ||
this.currentIndex = executionContext.getInt(CURRENT_INDEX); | ||
logger.info("Application reader starts from index {}", currentIndex); | ||
} else { | ||
this.currentIndex = 0; | ||
logger.info("Application reader starts from beginning"); | ||
} | ||
} | ||
|
||
@Override | ||
public void update(@Nonnull ExecutionContext executionContext) throws ItemStreamException { | ||
executionContext.putInt(CURRENT_INDEX, this.currentIndex); | ||
} | ||
|
||
@Override | ||
public void close() throws ItemStreamException { | ||
logger.info("Closing application reader"); | ||
} | ||
|
||
private List<String> getAllApplications() { | ||
return this.applicationService.getApplicationNames() | ||
.stream() | ||
.sorted() | ||
.toList(); | ||
} | ||
|
||
} |
Oops, something went wrong.