Roger Johansson
02/18/2023, 9:22 PMRoger Johansson
02/19/2023, 11:59 AMDipen Bhatt
02/20/2023, 10:12 AMThulsi Doss Krishnan
02/20/2023, 1:07 PMAl
02/20/2023, 3:18 PMArun Kumar
02/22/2023, 1:22 PMPeter Vogel
02/22/2023, 8:36 PMerror while creating mount source path '/host_mnt/private/var/lib/docker/containers': mkdir /host_mnt/private/var/lib/docker: operation not permitted
I've tried deleting all images, restarting docker, etc. to no avail. Is there something obvious I'm missing?Rui Oliveira
02/23/2023, 5:20 PMRomil Khanna
02/24/2023, 12:47 AMRomil Khanna
02/24/2023, 12:47 AMRomil Khanna
02/24/2023, 12:47 AMJuha Patrikainen
02/24/2023, 1:25 PMRomil Khanna
02/24/2023, 3:16 PMRomil Khanna
02/24/2023, 3:17 PMPiyush Mittal
02/25/2023, 7:13 PMPiyush Mittal
02/25/2023, 7:14 PMprasanth kumar
03/01/2023, 12:24 PMprasanth kumar
03/01/2023, 12:25 PMprasanth kumar
03/01/2023, 12:26 PMmax mammadov
03/01/2023, 6:55 PMmax mammadov
03/01/2023, 6:56 PMDhans Bisht
03/02/2023, 6:03 AMVitalik Tustanovskij
03/02/2023, 9:30 AMprasanth kumar
03/02/2023, 12:53 PMMarc d'Entremont
03/02/2023, 6:20 PMRomain Billot
03/05/2023, 11:06 AMVincent Hartmann
03/06/2023, 10:32 AMMichal
03/06/2023, 11:55 AMMichal
03/06/2023, 11:55 AMGuillaume
03/06/2023, 4:35 PMvalues.yaml
to do so, but it seems not to be working. Here my `values.yaml`: (I know I duplicated default/log_queries=0
but it's on purpose to try to make it work).
clickhouse:
defaultProfiles:
default/allow_experimental_window_functions: "1"
default/allow_nondeterministic_mutations: "1"
default/log_queries: "0"
logger:
level: warning
enable: true
profiles:
default/log_queries: "0"
logger:
level: warning
##this block doesn't work, clickhouse get error about unknown settings:
## logger/level: "warning"
##end of test
resources:
limits:
cpu: 2000m
memory: 4Gi
requests:
cpu: 50m
memory: 4Gi
But then, the pod gets deployed, and still shows information logs such as:
clickhouse 2023.03.06 16:32:04.571158 [ 234 ] {4483843e-d883-4d01-af4d-2872f07b4545} <Information> executeQuery: Read 170 rows, 674.05 KiB in 0.015092185 sec., 11264 rows/sec., 43.62 MiB/sec.
clickhouse 2023.03.06 16:32:04.598816 [ 234 ] {bd514de5-4a53-4cbe-a959-d8ccb2a02ddf} <Information> executeQuery: Read 1190 rows, 2.22 MiB in 0.027129067 sec., 43864 rows/sec., 81.98 MiB/sec.
clickhouse 2023.03.06 16:32:04.774338 [ 235 ] {7dfafbe7-0766-49c4-a97f-cc583c6a5e54} <Information> executeQuery: Read 1169664 rows, 8.92 MiB in 0.15812709 sec., 7396986 rows/sec., 56.43 MiB/sec.
clickhouse 2023.03.06 16:32:05.360248 [ 224 ] {7556b233-89b2-4a20-8b11-b0c82da94f3d} <Information> executeQuery: Read 1169664 rows, 8.92 MiB in 0.129886739 sec., 9005261 rows/sec., 68.70 MiB/sec.
clickhouse 2023.03.06 16:32:05.456336 [ 218 ] {776364b3-20cb-41f4-8736-acc3b165b0b3} <Information> executeQuery: Read 452 rows, 11.19 KiB in 0.002209947 sec., 204529 rows/sec., 4.95 MiB/sec.
clickhouse 2023.03.06 16:32:05.485650 [ 228 ] {ddbec803-a941-4f7b-9a19-0bac720bfb82} <Information> executeQuery: Read 3618 rows, 88.59 KiB in 0.006745317 sec., 536372 rows/sec., 12.83 MiB/sec.
clickhouse 2023.03.06 16:32:05.564685 [ 240 ] {8bf6ccc3-6663-41f3-a444-54803c07f2d7} <Information> executeQuery: Read 3617 rows, 88.59 KiB in 0.01204406 sec., 300314 rows/sec., 7.18 MiB/sec.
and on the pod, I can check some config files:
bash-5.1$ cat etc/clickhouse-server/config.d/01-clickhouse-02-logger.xml
<yandex>
<logger>
<!-- Possible levels: <https://github.com/pocoproject/poco/blob/develop/Foundation/include/Poco/Logger.h#L105> -->
<level>information</level>
<log>/var/log/clickhouse-server/clickhouse-server.log</log>
<errorlog>/var/log/clickhouse-server/clickhouse-server.err.log</errorlog>
<size>1000M</size>
<count>10</count>
<!-- Default behavior is autodetection (log to console if not daemon mode and is tty) -->
<console>true</console>
</logger>
</yandex>
Could you tell me what I'm missing here please? Thanks a lot