Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initialize DB during image build #457

Merged
merged 34 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
f48a799
Reduce number of verdi invocations on startup
danielhollas Apr 25, 2024
bdd8ef1
Set debug outputs
danielhollas Apr 25, 2024
f02bc28
Cleanup 20_start-postgresql.sh
danielhollas Apr 25, 2024
6f639aa
More tweaks
danielhollas May 17, 2024
da9cffd
Prepare DB during build
danielhollas May 20, 2024
79231b6
Try without root
danielhollas May 20, 2024
a6320de
Use PGDATA
danielhollas May 21, 2024
fac06ff
Revert "Try without root"
danielhollas May 21, 2024
b4e6145
PGDATA everywhere
danielhollas May 21, 2024
ac248db
back
danielhollas May 21, 2024
2e5ba46
Fix?
danielhollas May 21, 2024
50e2611
Pass PGDATA for full-stack
danielhollas May 21, 2024
be5846d
This?
danielhollas May 21, 2024
e89f505
Update stack/full-stack/Dockerfile
danielhollas May 24, 2024
9aaa20d
Update stack/full-stack/Dockerfile
danielhollas May 24, 2024
163e4f2
Update stack/full-stack/Dockerfile
danielhollas May 24, 2024
e4c45e1
Add comment about Erlang
danielhollas May 23, 2024
1ac56fb
Come on!
danielhollas May 24, 2024
bdf3907
Remove meta targets
danielhollas May 24, 2024
c8c1cef
Preserve logfile
danielhollas May 24, 2024
2ddeac0
sigh
danielhollas May 24, 2024
7e9c91c
fix
danielhollas May 25, 2024
2d0e8f4
remove pg_ctl status
danielhollas May 26, 2024
d03f11b
To hell with it
danielhollas May 26, 2024
94ab041
Try thisA
danielhollas May 26, 2024
ae59bdb
?
danielhollas May 26, 2024
8378fa5
Sigh
danielhollas May 26, 2024
236902b
pretty print json output
danielhollas May 26, 2024
5b2d0bd
Pretty please
danielhollas May 26, 2024
2cfe15a
hmm
danielhollas May 26, 2024
d480087
...
danielhollas May 26, 2024
daa56ea
Getting closer
danielhollas May 26, 2024
c08dd3d
Screw this
danielhollas May 26, 2024
7f80842
Merge branch 'main' into initdb
danielhollas Jun 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion stack/base-with-services/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ WORKDIR /opt/
ARG AIIDA_VERSION
ARG PGSQL_VERSION
ARG TARGETARCH
# Location of the Postgresql DB
# This variable is automatically picked up by initdb
ARG PGDATA_FOLDER=/home/${NB_USER}/.postgresql
ENV PGDATA=${PGDATA_FOLDER}

# Install RabbitMQ and PostgreSQL in a dedicated conda environment.
#
Expand Down Expand Up @@ -58,4 +62,4 @@ USER ${NB_USER}
WORKDIR "/home/${NB_USER}"

# Initialize the database
RUN mamba run -n aiida-core-services initdb -D aiida_db -U aiida
RUN mamba run -n aiida-core-services initdb
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the DB name used when create aiida profile after this change? We set it explicitly in config-quick-setup.yaml as aiida_db.

BTW, we need keep in mind to adapt the change to use verdi presto after we move to 2.6.0

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good question. -D parameter doesn't set the db name, it sets the DB location.

https://www.postgresql.org/docs/current/app-initdb.html#APP-INITDB-OPTION-PGDATA

in this case it would set it to ~/aiida_db. But this was broken anyway, since the location in stack/base-with-services/before-notebook.d/20_start-postgresql.sh was set to ~/.postgresql, so essentially this initdb command was being ignored. Now the location is set via the PGDATA variable and thus is guaranteed to be the same everywhere to prevent these kind of mismatches in the future.

Note that the the -U parameter sets the so-called bootstrap superuser I am not sure if this would have any effect, but we are not using this parameter in stack/base-with-services/before-notebook.d/20_start-postgresql.sh so I deleted it here as well.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

BTW, we need keep in mind to adapt the change to use verdi presto after we move to 2.6.0

I don't think we'll want to use verdi presto since we'd loose some config options. Instead I believe we should migrate from verdi quicksetup to the full verdi profile setup. But that's not that urgent, quicksetup has been deprecated but not removed.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense, thanks!

34 changes: 14 additions & 20 deletions stack/base-with-services/before-notebook.d/20_start-postgresql.sh
Original file line number Diff line number Diff line change
@@ -1,36 +1,30 @@
#!/bin/bash

# Activate the conda environment with PostgreSQL installed in it.
# conda activate pgsql
set -x

# -w waits until server is up
PSQL_START_CMD="pg_ctl --timeout=180 -w -D /home/${NB_USER}/.postgresql -l /home/${NB_USER}/.postgresql/logfile start"
PSQL_STOP_CMD="pg_ctl -w -D /home/${NB_USER}/.postgresql stop"
PSQL_STATUS_CMD="pg_ctl -D /home/${NB_USER}/.postgresql status"
PSQL_START_CMD="pg_ctl --timeout=180 -w -l ${PGDATA}/logfile start"
PSQL_STOP_CMD="pg_ctl -w stop"
PSQL_STATUS_CMD="pg_ctl status"

MAMBA_RUN="mamba run -n aiida-core-services"

# make DB directory, if not existent
if [ ! -d /home/${NB_USER}/.postgresql ]; then
mkdir /home/${NB_USER}/.postgresql
${MAMBA_RUN} initdb -D /home/${NB_USER}/.postgresql
echo "unix_socket_directories = '/tmp'" >> /home/${NB_USER}/.postgresql/postgresql.conf
if [ ! -d ${PGDATA} ]; then
mkdir ${PGDATA}
${MAMBA_RUN} initdb
echo "unix_socket_directories = '/tmp'" >> ${PGDATA}/postgresql.conf
${MAMBA_RUN} ${PSQL_START_CMD}

# else don't
else
# Fix problem with kubernetes cluster that adds rws permissions to the group
# for more details see: https://github.com/materialscloud-org/aiidalab-z2jh-eosc/issues/5
chmod g-rwxs /home/${NB_USER}/.postgresql -R

# stores return value in $?
running=true
${MAMBA_RUN} ${PSQL_STATUS_CMD} || running=false
chmod -R g-rwxs ${PGDATA}

# Postgresql was probably not shutdown properly. Cleaning up the mess...
if ! $running ; then
echo "" > /home/${NB_USER}/.postgresql/logfile # empty log files
rm -vf /home/${NB_USER}/.postgresql/postmaster.pid
if ! ${MAMBA_RUN} ${PSQL_STATUS_CMD}; then
# Cleaning up the mess if Postgresql was not shutdown properly.
# TODO: Rotate logfile
echo "" > ${PGDATA}/logfile
rm -vf ${PGDATA}/postmaster.pid
${MAMBA_RUN} ${PSQL_START_CMD}
fi
fi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -em
set -emx

RABBITMQ_DATA_DIR="/home/${NB_USER}/.rabbitmq"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -em
set -emx

RABBITMQ_DATA_DIR="/home/${NB_USER}/.rabbitmq"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -em
set -emx

# Supress rabbitmq version warning for arm64 since
# it is built using latest version rabbitmq from apt install.
Expand Down
1 change: 1 addition & 0 deletions stack/base/before-notebook.d/10_prepare-home-config.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -x

# If the container is start by spawner and the home is remounted.
# The .bashrc in HOME won't be set properly.
Expand Down
21 changes: 7 additions & 14 deletions stack/base/before-notebook.d/40_prepare-aiida.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
#!/bin/bash

# This script is executed whenever the docker container is (re)started.

# Debugging.
set -x

# Environment.
export SHELL=/bin/bash

# Check if user requested to set up AiiDA profile (and if it exists already)
if [[ ${SETUP_DEFAULT_AIIDA_PROFILE} == true ]] && ! verdi profile show ${AIIDA_PROFILE_NAME} &> /dev/null; then
if [[ ${SETUP_DEFAULT_AIIDA_PROFILE} == true ]] && ! verdi profile show ${AIIDA_PROFILE_NAME} 2> /dev/null; then
NEED_SETUP_PROFILE=true;
else
NEED_SETUP_PROFILE=false;
Expand Down Expand Up @@ -48,7 +45,7 @@ if [[ ${NEED_SETUP_PROFILE} == true ]]; then
exit 1
fi

verdi computer show ${computer_name} || verdi computer setup \
verdi computer setup \
--non-interactive \
--label "${computer_name}" \
--description "this computer" \
Expand All @@ -61,17 +58,13 @@ if [[ ${NEED_SETUP_PROFILE} == true ]]; then
verdi computer configure core.local "${computer_name}" \
--non-interactive \
--safe-interval 0.0
fi


# Show the default profile
verdi profile show || echo "The default profile is not set."
else

# Make sure that the daemon is not running, otherwise the migration will abort.
verdi daemon stop
# Migration will run for the default profile.
verdi storage migrate --force

# Migration will run for the default profile.
verdi storage migrate --force
fi

# Daemon will start only if the database exists and is migrated to the latest version.
verdi daemon start || echo "AiiDA daemon is not running."
verdi daemon start || echo "ERROR: AiiDA daemon is not running!"
5 changes: 5 additions & 0 deletions stack/full-stack/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# syntax=docker/dockerfile:1
ARG PGDATA_FOLDER
FROM base-with-services as base
ARG PGDATA_FOLDER
danielhollas marked this conversation as resolved.
Show resolved Hide resolved

FROM lab

ENV PGDATA=${PGDATA_FOLDER}
danielhollas marked this conversation as resolved.
Show resolved Hide resolved

USER root

COPY --from=base /opt/config-quick-setup.yaml /opt/
COPY --from=base "${CONDA_DIR}/envs/aiida-core-services" "${CONDA_DIR}/envs/aiida-core-services"
COPY --from=base /usr/local/bin/before-notebook.d /usr/local/bin/before-notebook.d
COPY --from=base ${PGDATA} ${PGDATA}

RUN fix-permissions "${CONDA_DIR}"
RUN fix-permissions "/home/${NB_USER}/.aiida"
Expand Down
Loading