Skip to content

Commit 7e5bc26

Browse files
authored
Updated write to cluster (#47)
* Updated write to cluster * Updated version nr
1 parent fa8b2b2 commit 7e5bc26

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

aligned/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
from aligned.exposed_model.interface import ExposedModel
4646
from aligned.schemas.feature import FeatureLocation
4747

48-
__version__ = "0.0.134"
48+
__version__ = "0.0.135"
4949

5050
__all__ = [
5151
"ContractStore",

aligned/sources/redis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ async def insert(self, job: RetrievalJob, request: RetrievalRequest) -> None:
236236
redis = self.config.redis()
237237
data = await job.to_lazy_polars()
238238

239-
async with redis.pipeline(transaction=True) as pipe:
239+
async with redis.pipeline(transaction=False) as pipe:
240240
# Run one query per row
241241
filter_entity_query: pl.Expr = pl.lit(True)
242242
for entity_name in request.entity_names:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aligned"
3-
version = "0.0.134"
3+
version = "0.0.135"
44
description = "A data management and lineage tool for ML applications."
55
authors = ["Mats E. Mollestad <mats@mollestad.no>"]
66
license = "FSL-1.1-ALv2"

0 commit comments

Comments
 (0)