mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-15 18:50:29 -06:00
141 lines
3.7 KiB
Bash
141 lines
3.7 KiB
Bash
SERVER_REQS_INSTALLED="FALSE"
|
|
SERVER_PID=""
|
|
DEFAULT_DB=""
|
|
|
|
# wait_for_connection(<PORT>, <TIMEOUT IN MS>) attempts to connect to the sql-server at the specified
|
|
# port on localhost, using the $SQL_USER (or 'dolt' if unspecified) as the user name, and trying once
|
|
# per second until the millisecond timeout is reached. If a connection is successfully established,
|
|
# this function returns 0. If a connection was not able to be established within the timeout period,
|
|
# this function returns 1.
|
|
wait_for_connection() {
|
|
port=$1
|
|
timeout=$2
|
|
user=${SQL_USER:-dolt}
|
|
end_time=$((SECONDS+($timeout/1000)))
|
|
|
|
while [ $SECONDS -lt $end_time ]; do
|
|
run dolt sql-client -u $user --host localhost --port $port --use-db "$DEFAULT_DB" --timeout 1 -q "SELECT 1;"
|
|
if [ $status -eq 0 ]; then
|
|
echo "Connected successfully!"
|
|
return 0
|
|
fi
|
|
sleep 1
|
|
done
|
|
|
|
echo "Failed to connect to database $DEFAULT_DB on port $port within $timeout ms."
|
|
return 1
|
|
}
|
|
|
|
start_sql_server() {
|
|
DEFAULT_DB="$1"
|
|
logFile="$2"
|
|
PORT=$( definePORT )
|
|
if [[ $logFile ]]
|
|
then
|
|
dolt sql-server --host 0.0.0.0 --port=$PORT --user "${SQL_USER:-dolt}" --socket "dolt.$PORT.sock" > $logFile 2>&1 &
|
|
else
|
|
dolt sql-server --host 0.0.0.0 --port=$PORT --user "${SQL_USER:-dolt}" --socket "dolt.$PORT.sock" &
|
|
fi
|
|
SERVER_PID=$!
|
|
wait_for_connection $PORT 5000
|
|
}
|
|
|
|
# like start_sql_server, but the second argument is a string with all
|
|
# arguments to dolt-sql-server (excluding --port, which is defined in
|
|
# this func)
|
|
start_sql_server_with_args() {
|
|
DEFAULT_DB=""
|
|
PORT=$( definePORT )
|
|
dolt sql-server "$@" --port=$PORT --socket "dolt.$PORT.sock" &
|
|
SERVER_PID=$!
|
|
wait_for_connection $PORT 5000
|
|
}
|
|
|
|
start_sql_server_with_config() {
|
|
DEFAULT_DB="$1"
|
|
PORT=$( definePORT )
|
|
echo "
|
|
log_level: debug
|
|
|
|
user:
|
|
name: dolt
|
|
|
|
listener:
|
|
host: 0.0.0.0
|
|
port: $PORT
|
|
max_connections: 10
|
|
|
|
behavior:
|
|
autocommit: false
|
|
" > .cliconfig.yaml
|
|
cat "$2" >> .cliconfig.yaml
|
|
dolt sql-server --config .cliconfig.yaml --socket "dolt.$PORT.sock" &
|
|
SERVER_PID=$!
|
|
wait_for_connection $PORT 5000
|
|
}
|
|
|
|
start_sql_multi_user_server() {
|
|
DEFAULT_DB="$1"
|
|
PORT=$( definePORT )
|
|
echo "
|
|
log_level: debug
|
|
|
|
user:
|
|
name: dolt
|
|
|
|
listener:
|
|
host: 0.0.0.0
|
|
port: $PORT
|
|
max_connections: 10
|
|
|
|
behavior:
|
|
autocommit: false
|
|
" > .cliconfig.yaml
|
|
dolt sql-server --config .cliconfig.yaml --socket "dolt.$PORT.sock" &
|
|
SERVER_PID=$!
|
|
wait_for_connection $PORT 5000
|
|
}
|
|
|
|
start_multi_db_server() {
|
|
DEFAULT_DB="$1"
|
|
PORT=$( definePORT )
|
|
dolt sql-server --host 0.0.0.0 --port=$PORT --user dolt --data-dir ./ --socket "dolt.$PORT.sock" &
|
|
SERVER_PID=$!
|
|
wait_for_connection $PORT 5000
|
|
}
|
|
|
|
# stop_sql_server stops the SQL server. For cases where it's important
|
|
# to wait for the process to exit after the kill signal (e.g. waiting
|
|
# for an async replication push), pass 1.
|
|
# kill the process if it's still running
|
|
stop_sql_server() {
|
|
# Clean up any mysql.sock file in the default, global location
|
|
if [ -f "/tmp/mysql.sock" ]; then rm -f /tmp/mysql.sock; fi
|
|
if [ -f "/tmp/dolt.$PORT.sock" ]; then rm -f /tmp/dolt.$PORT.sock; fi
|
|
|
|
wait=$1
|
|
if [ ! -z "$SERVER_PID" ]; then
|
|
# ignore failures of kill command in the case the server is already dead
|
|
run kill $SERVER_PID
|
|
if [ $wait ]; then
|
|
while ps -p $SERVER_PID > /dev/null; do
|
|
sleep .1;
|
|
done
|
|
fi;
|
|
fi
|
|
SERVER_PID=
|
|
}
|
|
|
|
definePORT() {
|
|
getPORT=""
|
|
for i in {0..9}
|
|
do
|
|
let getPORT="($$ + $i) % (65536-1024) + 1024"
|
|
portinuse=$(lsof -i -P -n | grep LISTEN | grep $getPORT | wc -l)
|
|
if [ $portinuse -eq 0 ]; then
|
|
echo "$getPORT"
|
|
break
|
|
fi
|
|
done
|
|
}
|