Skip to content

Commit

Permalink
[#5633] remove the key-value storage backend logic
Browse files Browse the repository at this point in the history
  • Loading branch information
pithecuse527 committed Nov 27, 2024
1 parent 77136b6 commit d533bb3
Show file tree
Hide file tree
Showing 73 changed files with 49 additions and 8,112 deletions.
1 change: 0 additions & 1 deletion LICENSE.bin
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,6 @@

JSR305
LevelDB JNI
RocksDB JNI
JCraft
Javolution
ANTLR4
Expand Down
1 change: 0 additions & 1 deletion LICENSE.rest
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,6 @@
JSR305
LevelDB JNI
Protobuf
RocksDB JNI
Stax2 API
XMLenc

Expand Down
88 changes: 43 additions & 45 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -301,51 +301,49 @@ subprojects {
}
}

if (project.name != "meta") {
apply(plugin = "net.ltgt.errorprone")
dependencies {
errorprone("com.google.errorprone:error_prone_core:2.10.0")
}

tasks.withType<JavaCompile>().configureEach {
options.errorprone.isEnabled.set(true)
options.errorprone.disableWarningsInGeneratedCode.set(true)
options.errorprone.disable(
"AlmostJavadoc",
"CanonicalDuration",
"CheckReturnValue",
"ComparableType",
"ConstantOverflow",
"DoubleBraceInitialization",
"EqualsUnsafeCast",
"EmptyBlockTag",
"FutureReturnValueIgnored",
"InconsistentCapitalization",
"InconsistentHashCode",
"JavaTimeDefaultTimeZone",
"JdkObsolete",
"LockNotBeforeTry",
"MissingSummary",
"MissingOverride",
"MutableConstantField",
"NonOverridingEquals",
"ObjectEqualsForPrimitives",
"OperatorPrecedence",
"ReturnValueIgnored",
"SameNameButDifferent",
"StaticAssignmentInConstructor",
"StringSplitter",
"ThreadPriorityCheck",
"ThrowIfUncheckedKnownChecked",
"TypeParameterUnusedInFormals",
"UnicodeEscape",
"UnnecessaryParentheses",
"UnsafeReflectiveConstructionCast",
"UnusedMethod",
"VariableNameSameAsType",
"WaitNotInLoop"
)
}
apply(plugin = "net.ltgt.errorprone")
dependencies {
errorprone("com.google.errorprone:error_prone_core:2.10.0")
}

tasks.withType<JavaCompile>().configureEach {
options.errorprone.isEnabled.set(true)
options.errorprone.disableWarningsInGeneratedCode.set(true)
options.errorprone.disable(
"AlmostJavadoc",
"CanonicalDuration",
"CheckReturnValue",
"ComparableType",
"ConstantOverflow",
"DoubleBraceInitialization",
"EqualsUnsafeCast",
"EmptyBlockTag",
"FutureReturnValueIgnored",
"InconsistentCapitalization",
"InconsistentHashCode",
"JavaTimeDefaultTimeZone",
"JdkObsolete",
"LockNotBeforeTry",
"MissingSummary",
"MissingOverride",
"MutableConstantField",
"NonOverridingEquals",
"ObjectEqualsForPrimitives",
"OperatorPrecedence",
"ReturnValueIgnored",
"SameNameButDifferent",
"StaticAssignmentInConstructor",
"StringSplitter",
"ThreadPriorityCheck",
"ThrowIfUncheckedKnownChecked",
"TypeParameterUnusedInFormals",
"UnicodeEscape",
"UnnecessaryParentheses",
"UnsafeReflectiveConstructionCast",
"UnusedMethod",
"VariableNameSameAsType",
"WaitNotInLoop"
)
}

tasks.withType<Javadoc> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,7 @@
package org.apache.gravitino.catalog.kafka;

import static org.apache.gravitino.Catalog.Type.MESSAGING;
import static org.apache.gravitino.Configs.DEFAULT_ENTITY_KV_STORE;
import static org.apache.gravitino.Configs.DEFAULT_ENTITY_RELATIONAL_STORE;
import static org.apache.gravitino.Configs.ENTITY_KV_ROCKSDB_BACKEND_PATH;
import static org.apache.gravitino.Configs.ENTITY_KV_STORE;
import static org.apache.gravitino.Configs.ENTITY_RELATIONAL_JDBC_BACKEND_DRIVER;
import static org.apache.gravitino.Configs.ENTITY_RELATIONAL_JDBC_BACKEND_PASSWORD;
import static org.apache.gravitino.Configs.ENTITY_RELATIONAL_JDBC_BACKEND_PATH;
Expand Down Expand Up @@ -126,12 +123,7 @@ public PropertiesMetadata topicPropertiesMetadata() throws UnsupportedOperationE
@BeforeAll
public static void setUp() {
Config config = Mockito.mock(Config.class);
Mockito.when(config.get(ENTITY_STORE)).thenReturn("kv");
Mockito.when(config.get(ENTITY_KV_STORE)).thenReturn(DEFAULT_ENTITY_KV_STORE);
Mockito.when(config.get(Configs.ENTITY_SERDE)).thenReturn("proto");
Mockito.when(config.get(ENTITY_KV_ROCKSDB_BACKEND_PATH)).thenReturn(STORE_PATH);

Assertions.assertEquals(STORE_PATH, config.get(ENTITY_KV_ROCKSDB_BACKEND_PATH));
Mockito.when(config.get(STORE_TRANSACTION_MAX_SKEW_TIME)).thenReturn(1000L);
Mockito.when(config.get(STORE_DELETE_AFTER_TIME)).thenReturn(20 * 60 * 1000L);

Expand Down
2 changes: 0 additions & 2 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ dependencies {
implementation(project(":api"))
implementation(project(":common"))
implementation(project(":catalogs:catalog-common"))
implementation(project(":meta"))
implementation(libs.bundles.log4j)
implementation(libs.bundles.metrics)
implementation(libs.bundles.prometheus)
Expand All @@ -41,7 +40,6 @@ dependencies {
exclude("com.google.guava", "guava")
.because("Brings in Guava for Android, which we don't want (and breaks multimaps).")
}
implementation(libs.rocksdbjni)

annotationProcessor(libs.lombok)

Expand Down
4 changes: 0 additions & 4 deletions core/src/main/java/org/apache/gravitino/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,6 @@ public abstract class Config {
// Constant Array to hold all deprecated configuration keys, when a configuration is deprecated,
// we should add it here.
private final DeprecatedConfig[] deprecatedConfigs = {
new DeprecatedConfig(
"gravitino.entity.store.kv.deleteAfterTimeMs",
"0.5.0",
"Please use gravitino.entity.store.deleteAfterTimeMs instead."),
new DeprecatedConfig(
"gravitino.authenticator", "0.6.0", "Please use gravitino.authenticators instead.")
};
Expand Down
54 changes: 2 additions & 52 deletions core/src/main/java/org/apache/gravitino/Configs.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,9 @@ public class Configs {

private Configs() {}

public static final String KV_STORE_KEY = "kv";
public static final String RELATIONAL_ENTITY_STORE = "relational";
public static final String ENTITY_STORE_KEY = "gravitino.entity.store";

public static final String DEFAULT_ENTITY_KV_STORE = "RocksDBKvBackend";
public static final String ENTITY_KV_STORE_KEY = "gravitino.entity.store.kv";

public static final String DEFAULT_ENTITY_RELATIONAL_STORE = "JDBCBackend";
public static final String ENTITY_RELATIONAL_STORE_KEY = "gravitino.entity.store.relational";

Expand All @@ -55,18 +51,13 @@ private Configs() {}
public static final String ENTITY_RELATIONAL_JDBC_BACKEND_STORAGE_PATH_KEY =
"gravitino.entity.store.relational.storagePath";

public static final String ENTITY_KV_ROCKSDB_BACKEND_PATH_KEY =
"gravitino.entity.store.kv.rocksdbPath";

public static final Long DEFAULT_KV_DELETE_AFTER_TIME = 604800000L; // 7 days
public static final String KV_DELETE_AFTER_TIME_KEY =
"gravitino.entity.store.kv.deleteAfterTimeMs";
public static final Long DEFAULT_DELETE_AFTER_TIME = 604800000L; // 7 days

// Config for data keep time after soft deletion, in milliseconds.
public static final String STORE_DELETE_AFTER_TIME_KEY =
"gravitino.entity.store.deleteAfterTimeMs";
// using the fallback default value
public static final Long DEFAULT_STORE_DELETE_AFTER_TIME = DEFAULT_KV_DELETE_AFTER_TIME;
public static final Long DEFAULT_STORE_DELETE_AFTER_TIME = DEFAULT_DELETE_AFTER_TIME;
// The maximum allowed keep time for data deletion, in milliseconds. Equivalent to 30 days.
public static final Long MAX_DELETE_TIME_ALLOW = 1000 * 60 * 60 * 24 * 30L;
// The minimum allowed keep time for data deletion, in milliseconds. Equivalent to 10 minutes.
Expand All @@ -82,10 +73,6 @@ private Configs() {}
// The minimum allowed count of versions to be retained
public static final Long MIN_VERSION_RETENTION_COUNT = 1L;

// Default path for RocksDB backend is "${GRAVITINO_HOME}/data/rocksdb"
public static final String DEFAULT_KV_ROCKSDB_BACKEND_PATH =
String.join(File.separator, System.getenv("GRAVITINO_HOME"), "data", "rocksdb");

public static final String DEFAULT_RELATIONAL_JDBC_BACKEND_PATH =
String.join(File.separator, System.getenv("GRAVITINO_HOME"), "data", "jdbc");

Expand All @@ -111,13 +98,6 @@ private Configs() {}
.stringConf()
.createWithDefault(RELATIONAL_ENTITY_STORE);

public static final ConfigEntry<String> ENTITY_KV_STORE =
new ConfigBuilder(ENTITY_KV_STORE_KEY)
.doc("Detailed implementation of Kv storage")
.version(ConfigConstants.VERSION_0_1_0)
.stringConf()
.createWithDefault(DEFAULT_ENTITY_KV_STORE);

public static final ConfigEntry<String> ENTITY_RELATIONAL_STORE =
new ConfigBuilder(ENTITY_RELATIONAL_STORE_KEY)
.doc("Detailed implementation of relational storage")
Expand Down Expand Up @@ -168,17 +148,6 @@ private Configs() {}
.stringConf()
.createWithDefault(DEFAULT_RELATIONAL_JDBC_BACKEND_PATH);

public static final ConfigEntry<String> ENTITY_KV_ROCKSDB_BACKEND_PATH =
new ConfigBuilder(ENTITY_KV_ROCKSDB_BACKEND_PATH_KEY)
.doc(
"The storage path for RocksDB storage implementation. It supports both absolute and"
+ " relative path, if the value is a relative path, the final path is "
+ "`${GRAVITINO_HOME}/${PATH_YOU_HAVA_SET}`, default value is "
+ "`${GRAVITINO_HOME}/data/rocksdb`")
.version(ConfigConstants.VERSION_0_1_0)
.stringConf()
.createWithDefault(DEFAULT_KV_ROCKSDB_BACKEND_PATH);

public static final ConfigEntry<String> ENTITY_SERDE =
new ConfigBuilder("gravitino.entity.serde")
.doc("The entity SerDe to use")
Expand Down Expand Up @@ -232,24 +201,6 @@ private Configs() {}
.longConf()
.createWithDefault(2000L);

public static final ConfigEntry<Long> KV_DELETE_AFTER_TIME =
new ConfigBuilder(KV_DELETE_AFTER_TIME_KEY)
.doc(
String.format(
"The maximum time in milliseconds that the deleted data and old version data is kept, "
+ "max delete time allow is %s ms(30 days), "
+ "min delete time allow is %s ms(10 minutes)",
MAX_DELETE_TIME_ALLOW, MIN_DELETE_TIME_ALLOW))
.version(ConfigConstants.VERSION_0_5_0)
.deprecated()
.longConf()
.checkValue(
v -> v >= MIN_DELETE_TIME_ALLOW && v <= MAX_DELETE_TIME_ALLOW,
String.format(
"The value of %s is out of range, which must be between %s and %s",
KV_DELETE_AFTER_TIME_KEY, MIN_DELETE_TIME_ALLOW, MAX_DELETE_TIME_ALLOW))
.createWithDefault(DEFAULT_KV_DELETE_AFTER_TIME);

public static final ConfigEntry<Long> STORE_DELETE_AFTER_TIME =
new ConfigBuilder(STORE_DELETE_AFTER_TIME_KEY)
.doc(
Expand All @@ -259,7 +210,6 @@ private Configs() {}
+ "min delete time allow is %s ms(10 minutes)",
MAX_DELETE_TIME_ALLOW, MIN_DELETE_TIME_ALLOW))
.version(ConfigConstants.VERSION_0_5_0)
.alternatives(Lists.newArrayList(KV_DELETE_AFTER_TIME_KEY))
.longConf()
.checkValue(
v -> v >= MIN_DELETE_TIME_ALLOW && v <= MAX_DELETE_TIME_ALLOW,
Expand Down
68 changes: 0 additions & 68 deletions core/src/main/java/org/apache/gravitino/EntitySerDe.java

This file was deleted.

Loading

0 comments on commit d533bb3

Please sign in to comment.