-
Notifications
You must be signed in to change notification settings - Fork 996
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replacing Jedis With Lettuce in ingestion and serving (#485)
* Replacing Jedis With Lettuce in ingestion and serving * Removing extra lines * Abstacting redis connection based on store * Check the connection before connecting as lettuce does the retry automatically * Running spotless * Throw Exception if the job store config is null * Handle No enum constant RuntimeException
- Loading branch information
1 parent
bc22fda
commit 517e4c6
Showing
20 changed files
with
561 additions
and
208 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
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
49 changes: 49 additions & 0 deletions
49
ingestion/src/main/java/feast/store/serving/redis/RedisIngestionClient.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,49 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* Copyright 2018-2020 The Feast Authors | ||
* | ||
* 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 | ||
* | ||
* https://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 or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package feast.store.serving.redis; | ||
|
||
import feast.retry.BackOffExecutor; | ||
import java.io.Serializable; | ||
|
||
public interface RedisIngestionClient extends Serializable { | ||
|
||
void setup(); | ||
|
||
BackOffExecutor getBackOffExecutor(); | ||
|
||
void shutdown(); | ||
|
||
void connect(); | ||
|
||
boolean isConnected(); | ||
|
||
void sync(); | ||
|
||
void pexpire(byte[] key, Long expiryMillis); | ||
|
||
void append(byte[] key, byte[] value); | ||
|
||
void set(byte[] key, byte[] value); | ||
|
||
void lpush(byte[] key, byte[] value); | ||
|
||
void rpush(byte[] key, byte[] value); | ||
|
||
void sadd(byte[] key, byte[] value); | ||
|
||
void zadd(byte[] key, Long score, byte[] value); | ||
} |
Oops, something went wrong.