We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e33c91 commit 018114fCopy full SHA for 018114f
Makefile.toml
@@ -529,6 +529,17 @@ alias = "kill-risedev"
529
[tasks.k]
530
alias = "kill-risedev"
531
532
+[tasks.kill-risingwave-components]
533
+category = "RiseDev - Start/Stop"
534
+description = "Kill RisingWave components only."
535
+script = '''
536
+#!/usr/bin/env bash
537
+
538
+tmux list-windows -F '#{window_name} #{pane_id}' \
539
+| grep -E '(compute|meta|frontend|compactor|connector)' \
540
+| sed -E 's/.* (%[0-9])/\1/' | xargs -I {} tmux send-keys -t {} C-c C-d
541
+'''
542
543
[tasks.down]
544
category = "RiseDev - Start/Stop"
545
description = "Kill RisingWave dev cluster and clean the data"
0 commit comments