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

refactor(meta): separate stream graph building into modules & add unit tests for scheduler #7807

Merged
merged 7 commits into from
Feb 9, 2023
Merged
Show file tree
Hide file tree
Changes from 6 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
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ clap = { version = "3", features = ["derive", "env"] }
crc32fast = "1"
crepe = "0.1"
derivative = "2"
easy-ext = "1"
either = "1"
enum-as-inner = "0.5"
etcd-client = { version = "0.2", package = "madsim-etcd-client" }
Expand Down
2 changes: 0 additions & 2 deletions src/meta/src/stream/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
// limitations under the License.

mod scale;
mod scheduler;
mod source_manager;
mod stream_graph;
mod stream_manager;
Expand All @@ -22,7 +21,6 @@ mod test_fragmenter;
mod test_scale;

pub use scale::*;
pub use scheduler::*;
pub use source_manager::*;
pub use stream_graph::*;
pub use stream_manager::*;
59 changes: 0 additions & 59 deletions src/meta/src/stream/scheduler.rs

This file was deleted.

Loading