pub struct HybridPhysicalPlanner { /* private fields */ }Expand description
Hybrid physical planner that produces DataFusion ExecutionPlan trees.
Routes graph operations to custom ExecutionPlan implementations
and relational operations to native DataFusion operators.
§Example
let planner = HybridPhysicalPlanner::new(
session_ctx,
storage,
l0,
property_manager,
schema,
params,
);
let execution_plan = planner.plan(&logical_plan)?;Implementations§
Source§impl HybridPhysicalPlanner
impl HybridPhysicalPlanner
Sourcepub fn new(
session_ctx: Arc<RwLock<SessionContext>>,
storage: Arc<StorageManager>,
l0: Arc<RwLock<L0Buffer>>,
property_manager: Arc<PropertyManager>,
schema: Arc<UniSchema>,
params: HashMap<String, Value>,
) -> Self
pub fn new( session_ctx: Arc<RwLock<SessionContext>>, storage: Arc<StorageManager>, l0: Arc<RwLock<L0Buffer>>, property_manager: Arc<PropertyManager>, schema: Arc<UniSchema>, params: HashMap<String, Value>, ) -> Self
Create a new hybrid physical planner.
§Arguments
session_ctx- DataFusion session contextstorage- Storage manager for dataset accessl0- Current L0 buffer for MVCCproperty_manager- Property manager for lazy loadingschema- Uni schema for lookups
Sourcepub fn with_plugin_registry(self, plugin_registry: Arc<PluginRegistry>) -> Self
pub fn with_plugin_registry(self, plugin_registry: Arc<PluginRegistry>) -> Self
Replace the plugin registry used for Locy aggregate resolution.
The default registry contains only the built-in aggregates from
uni-plugin-builtin. Hosts that have registered additional Locy
aggregates should pass their full uni_plugin::PluginRegistry here
so user-declared aggregates resolve at plan time.
Sourcepub fn with_l0_context(
session_ctx: Arc<RwLock<SessionContext>>,
storage: Arc<StorageManager>,
l0_context: L0Context,
property_manager: Arc<PropertyManager>,
schema: Arc<UniSchema>,
params: HashMap<String, Value>,
outer_values: HashMap<String, Value>,
) -> Self
pub fn with_l0_context( session_ctx: Arc<RwLock<SessionContext>>, storage: Arc<StorageManager>, l0_context: L0Context, property_manager: Arc<PropertyManager>, schema: Arc<UniSchema>, params: HashMap<String, Value>, outer_values: HashMap<String, Value>, ) -> Self
Create planner with full L0 context.
Sourcepub fn with_writer(self, writer: Arc<Writer>) -> Self
pub fn with_writer(self, writer: Arc<Writer>) -> Self
Attach the outer transaction’s writer handle so declared
WRITE-mode procedures invoked through this plan can run
their Cypher bodies via the write-enabled inner-query host
(FU-1 / M11 #6).
Sourcepub fn set_outer_entity_vars(&mut self, vars: HashSet<String>)
pub fn set_outer_entity_vars(&mut self, vars: HashSet<String>)
Set the algorithm registry for uni.algo.* procedure dispatch.
Rebuilds the inner GraphExecutionContext with the registry attached.
Set outer entity variable names for nested EXISTS correlated reference detection.
pub fn with_algo_registry(self, registry: Arc<AlgorithmRegistry>) -> Self
Sourcepub fn with_procedure_registry(self, registry: Arc<ProcedureRegistry>) -> Self
pub fn with_procedure_registry(self, registry: Arc<ProcedureRegistry>) -> Self
Set the external procedure registry for test/user-defined procedures.
Rebuilds the inner GraphExecutionContext with the registry attached.
Sourcepub fn with_xervo_runtime(self, runtime: Arc<ModelRuntime>) -> Self
pub fn with_xervo_runtime(self, runtime: Arc<ModelRuntime>) -> Self
Set Uni-Xervo runtime used by query-time vector auto-embedding.
Sourcepub fn with_mutation_context(self, ctx: Arc<MutationContext>) -> Self
pub fn with_mutation_context(self, ctx: Arc<MutationContext>) -> Self
Set the mutation context for write operations.
Sourcepub fn graph_ctx(&self) -> &Arc<GraphExecutionContext> ⓘ
pub fn graph_ctx(&self) -> &Arc<GraphExecutionContext> ⓘ
Return the graph execution context (for columnar subplan execution).
Sourcepub fn session_ctx(&self) -> &Arc<RwLock<SessionContext>> ⓘ
pub fn session_ctx(&self) -> &Arc<RwLock<SessionContext>> ⓘ
Return the DataFusion session context (for columnar subplan execution).
Sourcepub fn storage(&self) -> &Arc<StorageManager> ⓘ
pub fn storage(&self) -> &Arc<StorageManager> ⓘ
Return the storage manager (for columnar subplan execution).
Sourcepub fn schema_info(&self) -> &Arc<UniSchema> ⓘ
pub fn schema_info(&self) -> &Arc<UniSchema> ⓘ
Return the schema (for columnar subplan execution).
Sourcepub fn plan(&self, logical: &LogicalPlan) -> Result<Arc<dyn ExecutionPlan>>
pub fn plan(&self, logical: &LogicalPlan) -> Result<Arc<dyn ExecutionPlan>>
Sourcepub fn plan_with_properties(
&self,
logical: &LogicalPlan,
extra_properties: HashMap<String, HashSet<String>>,
) -> Result<Arc<dyn ExecutionPlan>>
pub fn plan_with_properties( &self, logical: &LogicalPlan, extra_properties: HashMap<String, HashSet<String>>, ) -> Result<Arc<dyn ExecutionPlan>>
Plan a LogicalPlan with additional property requirements.
Merges extra_properties into the auto-collected properties from the plan tree.
Used by MERGE execution to ensure structural projections are applied for
variables that need full node/edge Maps in the output.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for HybridPhysicalPlanner
impl !RefUnwindSafe for HybridPhysicalPlanner
impl !UnwindSafe for HybridPhysicalPlanner
impl Send for HybridPhysicalPlanner
impl Sync for HybridPhysicalPlanner
impl Unpin for HybridPhysicalPlanner
impl UnsafeUnpin for HybridPhysicalPlanner
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
impl<T> MaybeSend for Twhere
T: Send,
impl<T> MaybeSend for Twhere
T: Send,
Source§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
Source§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
Source§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
out indicating that a T is niched.Source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.impl<T> PluginState for T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.