Skip to content

Commit 79ea412

Browse files
committed
remove batch_size parameter
Signed-off-by: niklasvm <niklasvm@gmail.com>
1 parent f609cfb commit 79ea412

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

sdk/python/feast/infra/materialization/contrib/spark/spark_materialization_engine.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ class SparkMaterializationEngineConfig(FeastConfigBaseModel):
3939

4040
type: Literal["spark"] = "spark"
4141
""" Type selector"""
42-
batch_size: int
4342

4443

4544
@dataclass

sdk/python/tests/integration/materialization/contrib/spark/test_spark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def test_spark_materialization_consistency():
2828
# "path": "data/online_store.db"
2929
},
3030
offline_store_creator=SparkDataSourceCreator,
31-
batch_engine={"type": "spark", "batch_size": 10},
31+
batch_engine={"type": "spark"},
3232
)
3333
spark_environment = construct_test_environment(
3434
spark_config, None, entity_key_serialization_version=1

0 commit comments

Comments
 (0)