Questions tagged [containers]
The containers tag has no summary.
31 questions
0 votes
1 answer
103 views
Is pg_basebackup Performance Limited by Files Page Cache?
I have PostgreSQL 15 running in a Kubernetes Pod using the Zalando Spilo image, managed by Patroni. The container has a memory limit of 16 GB, and the database size is 40 GB (data dir on disk). When I ...
0 votes
2 answers
163 views
How to upgrade MongoDB Arbiter node?
Normally I don't ask questions but I'm about at my wits end and foresee myself struggling with this for a while. To the question reviewers, I have not found any questions referring to either the Mongo ...
2 votes
1 answer
691 views
Using docker containers to execute pg_upgrade
using pg_upgrade when you have installed both the 'old' version and the 'new' version on a system is quite straightforward. I tried to find a way using pg_upgrade with docker containers. This is a ...
0 votes
0 answers
291 views
listener issues in oracle 19c
These are my listener.ora and tnsnames.ora files listener.ora SID_LIST_LISTENER = (SID_LIST = (SID_DESC = (GLOBAL_DBNAME = dr_DGMGRL) (ORACLE_HOME = /u01/app/oracle/product/19.0.0/...
1 vote
0 answers
2k views
ORA-27046: file size is not a multiple of logical block size
I have oracle19c container, running by docker-compose: version: '3.7' services: oracle: image: container-registry.oracle.com/database/enterprise:19.3.0.0 container_name: oracle19c ports: ...
0 votes
1 answer
817 views
Oracle19c container cannot startup after turning on archive log [closed]
I'm running oracle19c container. This is the docker-compose file: version: '3.7' services: oracle: image: container-registry.oracle.com/database/enterprise:19.3.0.0 container_name: oracle19c ...
0 votes
1 answer
316 views
Sql Server Management Studio does not have access to a .bak file on a remote server
I'm trying to restore a database backup that is on a server. This server is on a remote machine and runs in a docker container. The container OS is Ubuntu 20.04. I can access the database, make ...
0 votes
0 answers
777 views
Can't connect to Dockerized MariaDB ColumnStore database from host machine
I have setup a MariaDB ColumnStore Database as described in the MariaDB ColumnStore Quick Start guide. The guide is missing some steps so these are the exact steps I took: docker run -d -p 3306:3306 --...
0 votes
0 answers
337 views
Cannot install MySQL 8 in the Ubuntu container
I would like to install Mysql in my Ubuntu container. The reason is my app inside the container needs mysql command to run mysql -u root -p -h "mysql server IP address". But I received this ...
2 votes
2 answers
1k views
InnoDB: Cannot close file ./tablefile.ibd because of 1 pending operations
MariaDB Version: '10.5.13-9 I am facing multiple unsuccessful data migration(Copy) attempts from my old legacy data environment to my DBaaS Container Environment. Performing this data migration using ...
1 vote
1 answer
280 views
DBMS in a container/cluster vs data corruption
I am fairly new to db administrations as well as containerization/kubernetes concepts. I see every here and then containerized/clustering solutions for i.e. running PostgreSQL (i.e. here. This ...
2 votes
1 answer
8k views
Postgresql RAM optimization for containers and kubernetes
I wondered how to optimize the RAM usage of my PostgreSQL database deployed in Kubernetes. Particularly I'm interested in configuring the shared_buffers and effective_cache_size values. Typically the ...
-2 votes
2 answers
2k views
How can I install SQLServer in MAC M1?
I want to run SQL on my MAC M1, I used guidelines according to this website: https://phoenixnap.com/kb/install-sql-server-macos and I used this instruction: docker pull mcr.microsoft.com/mssql/server:...
0 votes
1 answer
51 views
Support of SQL Server Containers running on container orchestrators
The Microsoft documentation states the following about the supportability of SQL Server Containers running on container orchestrators: Microsoft supports deploying and managing SQL Server containers ...
0 votes
1 answer
2k views
Why SQL Server docker image uses high CPU all the time, and how to fix it?
Using this docker-compose.yml I have created a container: version: "3.9" services: database: image: mcr.microsoft.com/mssql/server user: root restart: always ...