mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 00:02:19 +00:00
33521505db
* feat(ducklake): scheduled lake maintenance (snapshot expiry, compaction, orphan cleanup) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(ducklake): review fixes — starts_with not LIKE, CE license-lapse escape Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * docs(ducklake): auth-contract docs + _unchecked rename per codex review Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * refactor(ducklake): move maintenance payload construction into EE module Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(ducklake): fall through to script resolution for non-managed reserved-prefix schedules Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * docs(ducklake): document accepted pre-existing-schedule limitation on the reserved prefix Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(ducklake): CE save-off clears the managed schedule row and queued occurrence Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * chore: update ee-repo-ref to 2fab310d4f50ed7c34857d69c9b854f4491bf217 This commit updates the EE repository reference after PR #645 was merged in windmill-ee-private. Previous ee-repo-ref: fff1fd830a36beba732486f05941ec243cf6b640 New ee-repo-ref: 2fab310d4f50ed7c34857d69c9b854f4491bf217 Automated by sync-ee-ref workflow. --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com> Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
47 lines
1.3 KiB
Rust
47 lines
1.3 KiB
Rust
/*
|
|
* Author: Ruben Fiszel
|
|
* Copyright: Windmill Labs, Inc 2022
|
|
* This file and its contents are licensed under the AGPLv3 License.
|
|
* Please see the included NOTICE for copyright information and
|
|
* LICENSE-AGPL for a copy of the license.
|
|
*/
|
|
|
|
pub mod asset_dispatch;
|
|
#[cfg(feature = "private")]
|
|
pub mod cascade_ee;
|
|
pub mod cascade_oss;
|
|
#[cfg(feature = "private")]
|
|
pub use cascade_ee as cascade;
|
|
#[cfg(not(feature = "private"))]
|
|
pub use cascade_oss as cascade;
|
|
#[cfg(feature = "private")]
|
|
pub mod ducklake_maintenance_ee;
|
|
pub mod ducklake_maintenance_oss;
|
|
#[cfg(feature = "private")]
|
|
pub use ducklake_maintenance_ee as ducklake_maintenance;
|
|
#[cfg(not(feature = "private"))]
|
|
pub use ducklake_maintenance_oss as ducklake_maintenance;
|
|
#[cfg(feature = "private")]
|
|
pub mod freshness_watchdog_ee;
|
|
pub mod freshness_watchdog_oss;
|
|
#[cfg(feature = "private")]
|
|
pub use freshness_watchdog_ee as freshness_watchdog;
|
|
#[cfg(not(feature = "private"))]
|
|
pub use freshness_watchdog_oss as freshness_watchdog;
|
|
pub mod jobs;
|
|
#[cfg(feature = "private")]
|
|
pub mod jobs_ee;
|
|
pub mod jobs_oss;
|
|
pub mod schedule;
|
|
pub use jobs::*;
|
|
pub mod flow_status;
|
|
pub mod tags;
|
|
pub mod workspace_fairness;
|
|
#[cfg(feature = "private")]
|
|
pub mod workspace_fairness_ee;
|
|
|
|
#[cfg(feature = "cloud")]
|
|
pub mod cloud_usage;
|
|
#[cfg(feature = "cloud")]
|
|
pub use cloud_usage::init_usage_buffer;
|