Hello,
I have problem with 'pvesh' command speed response.
My cluster with 12x nodes with same kernel/proxmox version :
I prepared little test script in bash :
and results are not very satisficating about 5 seconds
How Can I debug what is wrong ? or maybe is there any option that slows down respose ?
I have problem with 'pvesh' command speed response.
My cluster with 12x nodes with same kernel/proxmox version :
Code:
CPU(s) 64 x AMD EPYC 7513 32-Core Processor (2 Sockets)
Kernel Version Linux 5.19.7-2-pve #1 SMP PREEMPT_DYNAMIC PVE 5.19.7-2 (Tue, 04 Oct 2022 17:18:40 +
PVE Manager Version pve-manager/7.2-11/b76d3178
I prepared little test script in bash :
Code:
root@HV-BASE-C-01:~# cat TIME.sh
#!/bin/bash
while [ true ]
do
DATE1=`date +%s`
pvesh get /nodes/HV-BASE-C-01/qemu --full --output-format=json > /dev/null
DATE2=`date +%s`
DATE3=`expr $DATE2 - $DATE1`
echo $DATE3
done
and results are not very satisficating about 5 seconds
Code:
root@HV-BASE-C-01:~# ./TIME.sh
5
6
6
4
5
4
6
^C
How Can I debug what is wrong ? or maybe is there any option that slows down respose ?