Intelligent loop for yum packages installation

Is yum on the client configured to keep cache & metadata? If it’s throwing all that out, it can take a really long time for each run. Check for keepcache, metadata_expire and mirrorlist_expire and possibly others in your /etc/yum.conf as well as each repo’s config on the client.

Thank you, Alex! This works great for me in RHEL 6.5. It had been taking several minutes to run “yum state=latest” for just four packages (already installed). Now it finishes in just a few seconds.

I was getting close to giving up on ansible because of the huge delays in every “yum” step. All the repoquery calls done on the managed server were taking forever, even with a local RHEL mirrors and yum caching enabled.

If you are seeing long times with state=latest, I’d suspect you maybe have RHN to blame. I always recommend a local mirror if so. If you aren’t having RHN involved, perhaps you are still using a slow mirror.

We set up a local RHEL mirror just this week, thinking that that would speed up ansible. It didn’t.

Ok, thanks for info.

Probably something that should be addressed on yum’s end as we do need the latest information to decide whether to run certain commands or not.

While it is possible to just run the command and report back what it changed (or didn’t), that’s not Ansible’s way when it can avoid it, and also prevents some check mode capabilities.

I realize that this will probably qualify for non-Ansible way, but here’s how I had to resolve similar issue:

  1. split playbook into “install” and “setup” whereas install is ran only once in a while if you need to change list of packages installed etc. - resolves issues with RHN etc. setup can be run anytime with any frequency with no ill side-effects
  2. For the “setup” I’ve slapped together https://github.com/droopy4096/ansible-libs/blob/master/library/rpm_query which I use in place of “yum” actions. This just adds a bit of “insurance” to the “setup” playbook, confirming that packages indeed are there.

while not perfect it gets around all those slow bits of yum, and in our environment packages get to machines sideways (no direct access to internet) thus above split allows for multiple implementations of “install” while keeping the same “setup”.

Hi Frederick/Dylan

I have the same problem. The repo query is being made to every single build of a package, thus making the yum install several mins.
I did set the keepcache to 1 in /etc/yum.conf. but that did not fix the issue. Could you share what those settings exactly are?

Thanks
Bala