File: run_pump.sh.tpl

package info (click to toggle)
tiup 1.16.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 6,384 kB
  • sloc: sh: 1,988; makefile: 138; sql: 16
file content (23 lines) | stat: -rw-r--r-- 596 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
set -e

# WARNING: This file was auto-generated. Do not edit!
#          All your edit might be overwritten!
DEPLOY_DIR={{.DeployDir}}

cd "${DEPLOY_DIR}" || exit 1

{{- if .NumaNode}}
exec numactl --cpunodebind={{.NumaNode}} --membind={{.NumaNode}} bin/pump \
{{- else}}
exec bin/pump \
{{- end}}
{{- if .NodeID}}
    --node-id="{{.NodeID}}" \
{{- end}}
    --addr="{{.Addr}}" \
    --advertise-addr="{{.AdvertiseAddr}}" \
    --pd-urls="{{.PD}}" \
    --data-dir="{{.DataDir}}" \
    --log-file="{{.LogDir}}/pump.log" \
    --config=conf/pump.toml 2>> "{{.LogDir}}/pump_stderr.log"