On 12/03/2009, at 18:41, barrowkwan <barrowk...@gmail.com> wrote: > > looks like the following could cause high cpu usage and take puppet > longer time to finish a catalog run > > > file { "/some/path": > owner => "user1", > group => "group1", > ensure => directory, > recurse => true > } > > especially when /some/path contain lot of files and sub-directories... > > anyone have the same problem?
Yes, and it's totally reasonable for it to. Puppet has to do a stat and md5sum on every file under that path, which depending on your system could take forever and push the iowait up. I've had this problem with a Rails app that stored session on the filesystem that was deployed through Puppet's file type(!). Recursion on the file type should be used in moderation. :-) Cheers, Lindsay > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---