From c1bc448892b3053e410ecffb59c123408e2c34eb Mon Sep 17 00:00:00 2001 From: Julio Anthony Leonard Date: Mon, 24 Feb 2020 14:27:23 +0700 Subject: [PATCH] Remove transaction from ingestion redis --- .../src/main/java/feast/store/serving/redis/RedisCustomIO.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/ingestion/src/main/java/feast/store/serving/redis/RedisCustomIO.java b/ingestion/src/main/java/feast/store/serving/redis/RedisCustomIO.java index 8c142b66c9..8541baaffc 100644 --- a/ingestion/src/main/java/feast/store/serving/redis/RedisCustomIO.java +++ b/ingestion/src/main/java/feast/store/serving/redis/RedisCustomIO.java @@ -238,7 +238,6 @@ private void executeBatch() throws Exception { new Retriable() { @Override public void execute() { - pipeline.multi(); mutations.forEach( mutation -> { writeRecord(mutation); @@ -246,7 +245,6 @@ public void execute() { pipeline.pexpire(mutation.getKey(), mutation.getExpiryMillis()); } }); - pipeline.exec(); pipeline.sync(); mutations.clear(); }