Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip transformation of partition if partition is empty #908

Merged
merged 4 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions src/fondant/component/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,7 @@ def wrap_transform(
operation_spec: OperationSpec,
) -> t.Callable:
"""Factory that creates a function to wrap the component transform function. The wrapper:
- Skips the transformation if the received partition is empty
- Removes extra columns from the returned dataframe which are not defined in the component
spec `produces` section
- Sorts the columns from the returned dataframe according to the order in the component
Expand All @@ -491,14 +492,17 @@ def wrap_transform(
"""

def wrapped_transform(dataframe: pd.DataFrame) -> pd.DataFrame:
# Call transform method
dataframe = transform(dataframe)

# Drop columns not in specification
# Columns of operation specification
columns = [
name for name, field in operation_spec.operation_produces.items()
]

if not dataframe.empty:
dataframe = transform(dataframe)
else:
logger.info("Received empty partition, skipping transformation.")

# Drop columns not in specification
return dataframe[columns]

return wrapped_transform
Expand Down
29 changes: 29 additions & 0 deletions tests/component/test_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,3 +591,32 @@ def write(self, dataframe):
with mock.patch.object(MyWriteComponent, "write", write):
executor.execute(MyWriteComponent)
write.mock.assert_called_once()


def test_skipping_empty_partition():
# Create an empty dataframe to simulate empty partitions
input_df = pd.DataFrame.from_dict(
{
"image_height": [],
"image_width": [],
"caption_text": [],
},
)

def transform(dataframe: pd.DataFrame) -> pd.DataFrame:
msg = "This should not be called"
raise ValueError(msg)

wrapped_transform = PandasTransformExecutor.wrap_transform(
transform,
operation_spec=OperationSpec(
ComponentSpec(
name="dummy-spec",
image="dummy-image",
description="dummy-description",
),
),
)

output_df = wrapped_transform(input_df)
assert output_df.equals(pd.DataFrame())
Loading