From c1cb7b74b11fcbcec6fff34659f1ebd8e31de6c8 Mon Sep 17 00:00:00 2001 From: hakiamri <117269156+Hakimovich99@users.noreply.github.com> Date: Mon, 20 Nov 2023 13:56:36 +0100 Subject: [PATCH] Update fondant_component.yaml (#647) minor detail: set n_rows_to_load default value to None to be able to easily load the whole parquet file --- components/load_from_parquet/fondant_component.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/load_from_parquet/fondant_component.yaml b/components/load_from_parquet/fondant_component.yaml index 10118cb62..5cc5796fa 100644 --- a/components/load_from_parquet/fondant_component.yaml +++ b/components/load_from_parquet/fondant_component.yaml @@ -21,7 +21,8 @@ args: n_rows_to_load: description: Optional argument that defines the number of rows to load. Useful for testing pipeline runs on a small scale type: int + default: None index_column: description: Column to set index to in the load component, if not specified a default globally unique index will be set type: str - default: None \ No newline at end of file + default: None