Hi there,
I use the proxmox api to Provision VMs. I'm just evaluating 9.0.10 now.
When making a call to the https://<endpoint>/api2/json/nodes/<hypervisor name>/qemu it's taking upwards of 4 seconds to respond. This used to take 0.1s on 8.x
Api call taking over 4 seconds on 9.0.10 (This used to take 0.1s before I upgraded)
Api call on other hypervisor much faster
Here are the hypervisor versions:
What could be the issue here? Why is it taking so long?
I use the proxmox api to Provision VMs. I'm just evaluating 9.0.10 now.
When making a call to the https://<endpoint>/api2/json/nodes/<hypervisor name>/qemu it's taking upwards of 4 seconds to respond. This used to take 0.1s on 8.x
Api call taking over 4 seconds on 9.0.10 (This used to take 0.1s before I upgraded)
Bash:
> time curl -s -H 'Authorization: <token>' --insecure https://172.16.16.104/api2/json/nodes/bigchug/qemu > /dev/null
curl -s -H --insecure https://172.16.16.104/api2/json/nodes/bigchug/qemu > 0.01s user 0.01s system 0% cpu 4.272 total
Api call on other hypervisor much faster
Bash:
> time curl -s -H 'Authorization:<token>' --insecure https://172.16.32.104/api2/json/nodes/gruntbox/qemu > /dev/null
curl -s -H --insecure https://172.16.32.104/api2/json/nodes/gruntbox/qemu > 0.01s user 0.01s system 15% cpu 0.119 total
Here are the hypervisor versions:
Bash:
> curl -s -H 'Authorization: <token>' --insecure https://172.16.16.104/api2/json/nodes/bigchug/version
{"data":{"repoid":"deb1ca707ec72a89","release":"9.0","version":"9.0.10"}}
> curl -s -H 'Authorization: <token>' --insecure https://172.16.32.104/api2/json/nodes/gruntbox/version
{"data":{"repoid":"2a5fa54a8503f96d","version":"8.4.1","release":"8.4"}}
What could be the issue here? Why is it taking so long?