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 50ad62e commit 36064ffCopy full SHA for 36064ff
Makefile.toml
@@ -624,6 +624,17 @@ alias = "kill-risedev"
624
[tasks.k]
625
alias = "kill-risedev"
626
627
+[tasks.kill-risingwave-components]
628
+category = "RiseDev - Start/Stop"
629
+description = "Kill RisingWave components only."
630
+script = '''
631
+#!/usr/bin/env bash
632
+
633
+tmux list-windows -F '#{window_name} #{pane_id}' \
634
+| grep -E '(compute|meta|frontend|compactor|connector)' \
635
+| sed -E 's/.* (%[0-9])/\1/' | xargs -I {} tmux send-keys -t {} C-c C-d
636
+'''
637
638
[tasks.down]
639
category = "RiseDev - Start/Stop"
640
description = "Kill RisingWave dev cluster and clean the data"
0 commit comments