-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload_mysql.sh
executable file
·84 lines (75 loc) · 2.52 KB
/
load_mysql.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/bash
# See the NOTICE file distributed with this work for additional information
# regarding copyright ownership.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
#
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
user="root"
if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then
password=''
else
password="--password=${MYSQL_ROOT_PASSWORD}"
fi
port="-P ${MYSQL_PORT:-3306}"
mysql_connect="-u $user $password $port"
mysql="mysql $mysql_connect"
if [ -z "${ENSEMBL_CONTAINER}" ]; then
local=""
else
local="--local"
fi
# Find the name of the database we've been given. We could have either dbname.sql.gz or dbname.mysql40_compatible.sql.gz
for sqlf in *.sql.gz; do
if [[ "$sqlf" != *"mysql40_compatible" ]]; then
sqlfile=$sqlf
fi
done
if [ -z "$sqlfile" ]; then
echo 'Cannot find a compatible SQL file. Cannot continue'
exit 1
fi
# DB name is the name of the SQL file. Holding directories have not consistently kept their database names
dbname=${sqlfile%.*.*}
echo '!!!!!! Working with database '$dbname
echo
# Drop database first (if exists), create and squirt in the SQL
$mysql -e "drop database if exists \`${dbname}\`"
$mysql -e "create database \`${dbname}\`"
gzip -dc $sqlfile | $mysql $dbname
# Load flat files now
for gz_file in *.txt*gz; do
file=${gz_file%.gz}
# Sometimes files have .table.gz in their extensions so we remove it
file=${file%.table}
table=${file%.txt}
echo 'Working with table '${table}
echo -n " Gunzipping ${table} data from file ${gz_file} into ${file} ... "
# If we are in a container then decompress and then load
if [ -n "${ENSEMBL_CONTAINER}" ]; then
gzip -dc $gz_file > $file
# Otherwise make a named pipe and write out in a sub-process
else
mkfifo ${file}
gzip -dc $gz_file > $file &
fi
echo "Done"
echo "ALTER TABLE \`${table}\` DISABLE KEYS" | $mysql $dbname
mysqlimport $mysql_connect ${local} --delete $dbname ${file}
echo "ALTER TABLE \`${table}\` ENABLE KEYS" | $mysql $dbname
if [ -f $file ]; then
rm $file
fi
echo ' Finished and removed temporary file '$file
done
echo
echo '!!!!!! Database has been loaded'