1
0

Take 2: Refactor hoodie-common and create right abstractions for Hoodie Storage V2.0

- Refactored timelines to be a single timeline for all active events and one for archived events. CommitTimeline and other timelines can be inferred by applying a filter on the activeTimelime
- Introduced HoodieInstant to abstract different types of action, commit time and if isInFlight
- Implemented other review comments
This commit is contained in:
Prasanna Rajaperumal
2017-01-18 01:00:36 -08:00
parent 8ee777a9bb
commit ccd8cb2407
46 changed files with 1194 additions and 1106 deletions

View File

@@ -16,12 +16,12 @@
package com.uber.hoodie.common.model;
public enum HoodieStorageType {
public enum HoodieFileFormat {
PARQUET(".parquet");
private final String extension;
HoodieStorageType(String extension) {
HoodieFileFormat(String extension) {
this.extension = extension;
}