Skip to content

Commit c3591ed

Browse files
Remove transaction from ingestion redis (#480)
1 parent 7586da6 commit c3591ed

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ingestion/src/main/java/feast/store/serving/redis/RedisCustomIO.java

-2
Original file line numberDiff line numberDiff line change
@@ -238,15 +238,13 @@ private void executeBatch() throws Exception {
238238
new Retriable() {
239239
@Override
240240
public void execute() {
241-
pipeline.multi();
242241
mutations.forEach(
243242
mutation -> {
244243
writeRecord(mutation);
245244
if (mutation.getExpiryMillis() != null && mutation.getExpiryMillis() > 0) {
246245
pipeline.pexpire(mutation.getKey(), mutation.getExpiryMillis());
247246
}
248247
});
249-
pipeline.exec();
250248
pipeline.sync();
251249
mutations.clear();
252250
}

0 commit comments

Comments
 (0)