Open abizermamnoon opened 6 months ago
The df
command tells you how much disk space is free (df = disk free) on each drive. It is unrelated to quotas. du
will tell you how much disk space you are using (du = disk usage). Running du -hd1
in your home folder will find folders that are using too much space so you can delete them. You only have 10GB available, and the contents of the $HOME/bigdata
folder are not included in the quota.
Hi @abizermamnoon
I'm working on getting rum installed correctly and it seems like this is working. I'm curious, did you run into problems later on that necessitated the other installations?
FROM postgis/postgis
RUN apt-get update && apt-get install -y \
less \
make \
vim \
git \
gcc \
postgresql-server-dev-16
# install rum extensions from source
RUN cd /tmp \
&& pwd \
&& git clone https://github.com/postgrespro/rum \
&& pwd \
&& ls \
&& cd rum \
&& make USE_PGXS=1 \
&& make USE_PGXS=1 install \
&& rm -rf /tmp/rum
WORKDIR /tmp/db
RUN mkdir /data && chown postgres /data
# copy over the pagila database;
# we rename the files so that they get executed in the correct order
COPY schema.sql /docker-entrypoint-initdb.d/01.sql
FROM postgis/postgis
# Install system packages for building PostgreSQL extensions
RUN apt-get update && apt-get install -y \
git \
build-essential \
postgresql-server-dev-all \
postgresql-12-rum \
less \
make \
vim
RUN git clone https://github.com/postgrespro/rum /tmp/rum
WORKDIR /tmp/rum
RUN make USE_PGXS=1
RUN make USE_PGXS=1 install
# Install RUM extension for PostgreSQL
WORKDIR /tmp/db
RUN mkdir /data && chown postgres /data
# copy over the pagila database;
# we rename the files so that they get executed in the correct order
COPY schema.sql /docker-entrypoint-initdb.d/01.sql
Hi,
To create RUM, I first modified my Dockerfile in services/postgres directory:
When I run :
I get the following error:
I checked my disk quota:
My UID is 1322, so I think I have 26 G available space. I am done with twitter_postgres_indexes. Should I delete pg_denormalized and pg_normalized_batch I created to get more space?