PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:11
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:12
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:13
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:14
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:15
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:16
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:17
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:18
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:19
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:20
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:20
Out of memory.
2022-02-11 04:57:21
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:22
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:23
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:24
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:25
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:26
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:27
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:28
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:29
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.3 GB, Percent mem used: 21.0%
2022-02-11 04:57:30
PreOOMKiller: Mem limit: 16.0 GB, Current rss: 3.9 MB, Percent mem used: 0.0%
For a partial backup, there are a few other arguments that you can provide as well:
To tell it which databases to backup, you can provide the --databases optio
The restore process for partial backups is quite different than the process for full backups. A partial backup is not a completely functional data directory. The data dictionary in the InnoDB system tablespace will still contain entries for the databases and tables that were not included in the backup.
Rather than using the --copy-back or the --move-back, each individual InnoDB file-per-table tablespace file will have to be manually imported into the target server. The process that is used to import the file will depend on whether partitioning is involved.
/home/domain.com/sub/public/sub
/home/domain.com/sub/public/
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $request_filename;
server {
# все как у всех
listen 80 default_server;
server_name domain.cm;
root /home/domain.com/public;
index index.php;
# тут все стандартно
location / {
try_files $uri $uri/ /index.php?$query_string;
# и тут все стандартно
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9001;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
location /sub {
alias /home/domain.com/sub/public/;
try_files $uri $uri/ /index.php?$query_string;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9001;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $request_filename;
include fastcgi_params;
}
}
}
Упрощенно схема такая в k8s есть различные deployment'ы которые общаются с собой стандартным способом через объект service
Никакой схемы для маршрутизации внешнего трафика не нужно, он весь in cluster
Клиенты мы менять не можем они ходят к
service
Сам для pod'ов service я включил istio, но из документации совершенно не понятно как будут выглядеть манифесты Istio так что бы для трафика входящего на этот сервис применились правила VirtualService/DestinationRule