Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[improve][HIP] HIP-01: Refactoring AbstractCollect #1930

Merged
merged 8 commits into from
May 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions hip/hip-01.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@


# HIP-01: Refactoring AbstractCollect


# Motivation

In the current situation, almost every collector needs to execute the preCheck method (with inconsistent names), and there are also redundant `try-catch` statements;

I suggest providing another `preCheck` method for `AbstractCollect` to separate the validate logic from the collector's logic, which would make the code structure clearer and also facilitate the writing of unit tests.

# Goals

## In Scope

Add a method `preCheck` to `AbstractCollect`.




# Detailed Design

## Design & Implementation Details

Add a method `preCheck` to the `org.apache.hertzbeat.collector.collect.AbstractCollect` class:

```java
public abstract class AbstractCollect {

/**
* @param metrics metric configuration
* @throws Exception when validation failed
*/
public abstract void preCheck(Metrics metrics) throws Exception;
}
```

Before calling the method `org.apache.hertzbeat.collector.collect.AbstractCollect#collect`, call the `preCheck` method and catch the exception.

Refactoring all `AbstractCollect` to implement the `preCheck` method.

Supplement the relevant unit tests.





# Links

<!--
Updated afterwards
-->
* Mailing List discussion thread: https://lists.apache.org/thread/cvvo7xg35fxq7kml5ggdrcdygrx6yvyj
* Mailing List voting thread: https://lists.apache.org/thread/1s7dhrb27qfdx1gsh29dvmo8frjbt619
Loading