bacalhau-project / bacalhau

Compute over Data framework for public, transparent, and optionally verifiable computation
https://docs.bacalhau.org
Apache License 2.0
706 stars 89 forks source link

improve watcher creation pattern and manager naming #4713

Closed wdbaruni closed 1 day ago

wdbaruni commented 1 day ago

This PR introduces several important changes to the watcher package to unblock changes related to NCL protocol:

  1. Introduce two-step watcher creation pattern:

    • Split watcher creation and handler configuration for better control
    • Enables explicit handler setup before starting
    • This pattern is needed to create an NCL dispatcher that manages the watcher's handler, and restart the watcher when needed
    • Add validation to prevent starting without handler
    • Improve error handling for invalid states
  2. Fix watcher restart behavior after checkpoints:

    • Ensure proper state restoration when restarting
    • Maintain correct sequence position after checkpoint, and restart from the latest checkpoint and not latest processed event
    • Add tests to verify checkpoint/restart behavior
  3. Rename Registry to Manager:

    • More accurately represents its role in managing watcher lifecycles
    • Ensures consistent terminology throughout the codebase
  4. Additional improvements:

    • Add documentation for new creation pattern
    • Update tests to cover new scenarios
    • Improve error messages and validation

Summary by CodeRabbit

Release Notes

coderabbitai[bot] commented 1 day ago

[!NOTE] Currently processing new changes in this PR. This may take a few minutes, please wait...

📥 Commits Reviewing files that changed from the base of the PR and between b9ffe3de84fe093a8b634839c647578920b0bc91 and f7856e347b6ae0bc387e5558ffa68250be44158c.
📒 Files selected for processing (3) * `pkg/lib/watcher/manager.go` (1 hunks) * `pkg/lib/watcher/types.go` (3 hunks) * `pkg/lib/watcher/watcher_test.go` (27 hunks)
 __________________________________________
< Performing energy-intensive code review. >
 ------------------------------------------
  \
   \   (\__/)
       (•ㅅ•)
       /   づ

Walkthrough

The pull request introduces significant changes to the Watcher Library, primarily renaming the "Registry" component to "Manager" across various files. This includes updates to method signatures, documentation, and the introduction of new error handling capabilities. Additionally, new configuration options for creating watchers are added, enhancing flexibility. The changes also involve the addition of a new manager type to manage multiple watchers, along with comprehensive test coverage for the new functionality. Several files related to the old registry implementation have been removed, reflecting a complete transition to the new manager-based architecture.

Changes

File Change Summary
pkg/lib/watcher/README.md Updated terminology from "Registry" to "Manager"; modified method signatures and usage examples; added new configuration options for watchers.
pkg/lib/watcher/errors.go Added new error variables: ErrNoHandler and ErrHandlerExists.
pkg/lib/watcher/manager.go Introduced manager type; added methods for creating, looking up, and stopping watchers; included lifecycle management functionality.
pkg/lib/watcher/manager_test.go Added a comprehensive test suite for the manager functionality, covering various scenarios.
pkg/lib/watcher/mocks.go Updated mock types; renamed methods to align with the new Manager interface.
pkg/lib/watcher/options.go Enhanced watchOptions struct with new fields and functions for handler and auto-start configurations.
pkg/lib/watcher/registry.go Removed file; previously managed watchers using the Registry type.
pkg/lib/watcher/registry_test.go Removed file; contained tests for the old Registry functionality.
pkg/lib/watcher/serializer.go Updated comments to reflect "Manager" instead of "Registry".
pkg/lib/watcher/types.go Expanded Watcher interface; replaced Registry interface with Manager interface.
pkg/lib/watcher/watcher.go Modified watcher struct; updated methods for improved functionality and error handling.
pkg/lib/watcher/watcher_test.go Refactored test suite to improve context management and error handling.
pkg/node/compute.go Updated Compute struct to use watcher.Manager; modified watcher setup logic.
pkg/node/requester.go Changed watcher management from Registry to Manager; refined watcher initialization logic.
pkg/orchestrator/evaluation/watcher_test.go Updated test suite to use watcher.Manager instead of watcher.Registry.

Possibly related PRs

Suggested reviewers

🐇 In the world of watchers, new terms we embrace,
From "Registry" to "Manager," we quicken our pace.
With handlers and options, our watchers now thrive,
In this vibrant new structure, our code comes alive!
So hop along, friends, let’s celebrate this cheer,
For clarity and structure, the future is clear! 🐇✨


🪧 Tips ### Chat There are 3 ways to chat with [CodeRabbit](https://coderabbit.ai): - Review comments: Directly reply to a review comment made by CodeRabbit. Example: - `I pushed a fix in commit , 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 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. ### CodeRabbit Configuration File (`.coderabbit.yaml`) - You can programmatically configure CodeRabbit by adding a `.coderabbit.yaml` file to the root of your repository. - Please see the [configuration documentation](https://docs.coderabbit.ai/guides/configure-coderabbit) for more information. - If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: `# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json` ### Documentation and Community - Visit our [Documentation](https://docs.coderabbit.ai) for detailed information on how to use CodeRabbit. - Join our [Discord Community](http://discord.gg/coderabbit) to get help, request features, and share feedback. - Follow us on [X/Twitter](https://twitter.com/coderabbitai) for updates and announcements.