1
0

Add CLI support inspect, schedule and run compaction

This commit is contained in:
Balaji Varadarajan
2018-06-05 18:26:01 -07:00
committed by vinoth chandar
parent 2e12c86d01
commit 594059a19c
7 changed files with 653 additions and 179 deletions

View File

@@ -149,6 +149,10 @@ public class HoodieInstant implements Serializable {
&& Objects.equals(timestamp, that.timestamp);
}
public State getState() {
return state;
}
@Override
public int hashCode() {
return Objects.hash(state, action, timestamp);