Skip to content

Commit b60ce63

Browse files
committed
node: validate copying deployment before activating
1 parent 9fc23b5 commit b60ce63

File tree

2 files changed

+27
-5
lines changed

2 files changed

+27
-5
lines changed

node/src/bin/manager.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ impl Context {
938938
store
939939
}
940940

941-
fn pools(self) -> HashMap<Shard, ConnectionPool> {
941+
fn pools(&self) -> HashMap<Shard, ConnectionPool> {
942942
let (_, pools) = self.store_and_pools();
943943
pools
944944
}
@@ -1327,7 +1327,9 @@ async fn main() -> anyhow::Result<()> {
13271327
.await
13281328
}
13291329
Activate { deployment, shard } => {
1330-
commands::copy::activate(ctx.subgraph_store(), deployment, shard)
1330+
let pools = ctx.pools();
1331+
let store = ctx.subgraph_store();
1332+
commands::copy::activate(&pools, store, deployment, shard)
13311333
}
13321334
List => commands::copy::list(ctx.pools()),
13331335
Status { dst } => commands::copy::status(ctx.pools(), &dst),

node/src/manager/commands/copy.rs

+23-3
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,12 @@ pub async fn create(
154154
Ok(())
155155
}
156156

157-
pub fn activate(store: Arc<SubgraphStore>, deployment: String, shard: String) -> Result<(), Error> {
157+
pub fn activate(
158+
pools: &HashMap<Shard, ConnectionPool>,
159+
store: Arc<SubgraphStore>,
160+
deployment: String,
161+
shard: String,
162+
) -> Result<(), Error> {
158163
let shard = Shard::new(shard)?;
159164
let deployment =
160165
DeploymentHash::new(deployment).map_err(|s| anyhow!("illegal deployment hash `{}`", s))?;
@@ -167,8 +172,23 @@ pub fn activate(store: Arc<SubgraphStore>, deployment: String, shard: String) ->
167172
shard
168173
)
169174
})?;
170-
store.activate(&deployment)?;
171-
println!("activated copy {}", deployment);
175+
176+
let (state, _, _) = match CopyState::find(pools, &shard, deployment.id.0)? {
177+
Some((state, tables, on_sync)) => (state, tables, on_sync),
178+
None => {
179+
println!(
180+
"copying is queued but has not started or no copy operation for {} exists",
181+
deployment.id.0
182+
);
183+
return Ok(());
184+
}
185+
};
186+
if state.finished_at.is_some() {
187+
store.activate(&deployment)?;
188+
println!("activated copy {}", deployment);
189+
} else {
190+
println!("copying is not finished yet");
191+
}
172192
Ok(())
173193
}
174194

0 commit comments

Comments
 (0)