MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / instance_snapshot

Method instance_snapshot

src/adapter/src/coord.rs:4214–4219  ·  view source on GitHub ↗

Return a reference-less snapshot to the indicated compute instance.

(
        &self,
        id: ComputeInstanceId,
    )

Source from the content-addressed store, hash-verified

4212
4213 /// Return a reference-less snapshot to the indicated compute instance.
4214 pub fn instance_snapshot(
4215 &self,
4216 id: ComputeInstanceId,
4217 ) -> Result<ComputeInstanceSnapshot, InstanceMissing> {
4218 ComputeInstanceSnapshot::new(&self.controller, id)
4219 }
4220
4221 /// Call into the compute controller to install a finalized dataflow, and
4222 /// initialize the read policies for its exported readable objects.

Calls

no outgoing calls