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

Improve list and collection materializers performance #3375

Draft
wants to merge 7 commits into
base: develop
Choose a base branch
from

Conversation

strickvl
Copy link
Contributor

@strickvl strickvl commented Feb 24, 2025

Optimized Collection Materializers with Batch Compression

This PR significantly improves the performance of list and collection materializers, addressing a critical bottleneck in ZenML's artifact handling system.

Initial Improvements

  • Groups elements by type to reduce overhead of materializer initialization and type checking
  • Pre-allocates lists of the correct size when loading
  • Uses a more efficient metadata format with type grouping for faster retrieval

Major Batch Compression Enhancement

Technical Implementation

  • Batch Compression Architecture: Instead of writing each element to its own directory, elements are grouped by type and serialized into compressed batch files using gzip+pickle
  • Chunking Strategy: For very large collections, items are further divided into manageable chunks (configurable, default 100 elements per file) to avoid memory issues
  • Adaptive Sizing: Automatically adjusts chunk size based on element size to prevent memory issues with very large objects
  • Metadata Optimization: Enhanced metadata structure (v3 format) tracks batches, chunks, and element indices while maintaining backward compatibility
  • Efficient Loading: Implements chunk-based caching during loading to avoid redundant reads
  • Clean Error Handling: Comprehensive cleanup on failures to ensure no orphaned files
  • Cloud Storage Support: Properly handles cloud storage backends (S3, GCS, Azure) using ZenML's fileio utilities

Performance Impact

The impact on performance is substantial:

  • I/O Reduction: For a collection with 1000 elements, reduces file operations from 1000+ to potentially just 10-20
  • Network Overhead Reduction: Minimizes REST API calls when using cloud storage backends (S3, GCS, Azure)
  • Storage Efficiency: Compressed storage requires less space and network bandwidth
  • Reduced Latency: Batch operations dramatically reduce the overhead of individual file operations, especially impactful for high-latency storage systems

Configuration Options

  • Added environment variable ZENML_MATERIALIZER_COLLECTION_CHUNK_SIZE to configure chunk size (default: 100)
  • Comprehensive documentation added to environment variables reference and data handling guides

Compatibility

  • Full backward compatibility with existing v2 and pre-v2 formats
  • New artifacts use the v3 format automatically
  • Comprehensive test suite validates all serialization/deserialization paths

This change significantly improves user experience when working with large collections, especially in cloud environments where storage operations have higher latency.

Fixes #3371

🤖 Generated with Claude Code
Co-Authored-By: Claude [email protected]

This commit optimizes the way collections are materialized by:
1. Grouping elements by type to reduce overhead
2. Adding version metadata for backward compatibility
3. Optimizing the load process to handle both old and new formats

Fixes #3371

🤖 Generated with Claude Code
Co-Authored-By: Claude <[email protected]>
@strickvl strickvl added enhancement New feature or request internal To filter out internal PRs and issues labels Feb 24, 2025
@strickvl strickvl requested a review from schustmi February 24, 2025 19:52
Copy link
Contributor

coderabbitai bot commented Feb 24, 2025

Important

Review skipped

Auto reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

This implements a much more efficient approach to materializing collections by:
1. Grouping elements by type and serializing them in batches
2. Using compression (gzip + pickle) to reduce storage requirements
3. Implementing chunking for handling very large collections
4. Adding efficient chunk-based loading with caching

The v3 format significantly reduces I/O operations to artifact stores,
dramatically improving performance especially for cloud storage backends.

🤖 Generated with Claude Code
Co-Authored-By: Claude <[email protected]>
This fixes an issue where the batch compression implementation was using Python's
built-in gzip.open() directly with cloud storage URIs (like S3), which fails
because the built-in functions only support local file paths.

The solution:
1. Use ZenML's fileio utilities which support various backends
2. Implement in-memory compression/decompression using BytesIO buffers
3. Properly handle reading and writing to cloud storage

The changes ensure our optimized collection materialization works properly with
all storage backends, including S3, GCS, and Azure Blob Storage.

🤖 Generated with Claude Code
Co-Authored-By: Claude <[email protected]>
- Removed unused variables (save_time, load_time) in test functions
- Replaced with inline calculations that don't store results
- Fixed ruff F841 (local variable assigned but never used) errors
- Ran format.sh to ensure code follows project style

🤖 Generated with Claude Code
Co-Authored-By: Claude <[email protected]>
…mentation

- Add configurable chunk size via ZENML_MATERIALIZER_COLLECTION_CHUNK_SIZE env var
- Implement adaptive sizing logic for very large elements
- Update documentation to highlight optimization features
- Add tests for both default and adaptive sizing
- Add information to environment variables and big data docs

🤖 Generated with Claude Code
Co-Authored-By: Claude <[email protected]>
with gzip.GzipFile(
fileobj=f_buffer, mode="wb", compresslevel=6
) as f_gzip:
pickle.dump(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this needs a major rework: This code is not using ZenML materializers anymore and instead simply uses pickle for everything. If that was a good solution, instead of doing all this chunking we could just tell people to pickle the whole collection.

@strickvl strickvl marked this pull request as draft February 25, 2025 08:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request internal To filter out internal PRs and issues run-slow-ci
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants