-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Question: why v2.13 is running jobs much slover that. v2.10 #2953
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hm, I have no idea. Is it really slowly or just incorrect Duration? Can you compare by the task log times? |
No it is slow I was thinking it is because of Ansible But the situation is the same, so I'm wondering if it is because if additional features |
I have the same issue for the same task: DURATION: |
hm, i made several tests |
ok so here is an example =OLD =
=NEW=
|
⏱ Task Duration – New
⏱ Task Duration – OLD
|
so i can see 2x-3x duration increase on "command" and "copy" execution for NEW semaphore/ansible |
Can it be related to that im using |
@gudge25 can you share you playbook? Maybe subset which demonstrate the issue |
---
- name: Disable ARI and some brand adjustments
hosts: "{{ target_hosts | default('all') }}"
gather_facts: false
strategy: free
vars:
src_logo_file: ./files/1234.png
dst_logo_file: /var/www/html/admin/images/gixo-logo.png
tasks:
- name: Disable ARI
command: fwconsole setting ENABLE_ARI 0
changed_when: false
- name: Disable SIGNATURECHECK
command: fwconsole setting SIGNATURECHECK 0
changed_when: false
- name: Copy logo file
copy: src={{ src_logo_file }} dest={{ dst_logo_file }}
- name: Logo link
command: fwconsole setting BRAND_IMAGE_SPONSOR_FOOT images/gixo-logo.png
- name: Logo url link
command: fwconsole setting BRAND_IMAGE_SPONSOR_LINK_FOOT https://gixo.co.uk
- name: Reload asterisk
command: fwconsole reload |
Question
i noticed the same job on v2.13 is running much slower than on old v2.10
(Docker image)
Related to
No response
The text was updated successfully, but these errors were encountered: