[Puppet Users] Re: trying to understand puppet internal

2009-06-17 Thread David Schmitt
James Turnbull wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Aurelien Degremont wrote: > | Jean-Baptiste Quenot a écrit : > |> 2009/6/12 Aurelien Degremont : > |>> Arnau Bria a écrit : > |>>> Hi all, > |>>> > |>>> More test > |>>> > |>> If your doing benchmarking with puppet >

[Puppet Users] Re: trying to understand puppet internal

2009-06-15 Thread James Turnbull
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Aurelien Degremont wrote: | Jean-Baptiste Quenot a écrit : |> 2009/6/12 Aurelien Degremont : |>> Arnau Bria a écrit : |>>> Hi all, |>>> |>>> More test |>>> |>> If your doing benchmarking with puppet |>> try: |>> |>> # puppetd -t --summarize |>> |>

[Puppet Users] Re: trying to understand puppet internal

2009-06-15 Thread Aurelien Degremont
Jean-Baptiste Quenot a écrit : > 2009/6/12 Aurelien Degremont : >> Arnau Bria a écrit : >>> Hi all, >>> >>> More test >>> >> If your doing benchmarking with puppet >> try: >> >> # puppetd -t --summarize >> >> Really helpful. > > Interesting. Any reason why this option is not documented in pu

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread Jean-Baptiste Quenot
2009/6/12 Aurelien Degremont : > > Arnau Bria a écrit : >> Hi all, >> >> More test >> > > If your doing benchmarking with puppet > try: > > # puppetd -t --summarize > > Really helpful. Interesting. Any reason why this option is not documented in puppetd -h? I'm using 0.24.8 FWIW. Cheers, -

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread James Turnbull
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Aurelien Degremont wrote: > Arnau Bria a écrit : >> Hi all, >> >> More test >> > > If your doing benchmarking with puppet > try: > > # puppetd -t --summarize > Also puppet-test in the ext directory is useful too. Regards James Turnbull - --

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread Aurelien Degremont
Arnau Bria a écrit : > Hi all, > > More test > If your doing benchmarking with puppet try: # puppetd -t --summarize Really helpful. -- Aurelien Degremont CEA --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread Aurelien Degremont
Hello David Schmitt wrote : > For maximum performance you want to avoid any file-server operations > (file.source with puppet://, filebucket to server}, set the I agree with you, mainly, fileserver is slow. But few tests I made using 'file://' instead of 'puppet://' didn't speed up my puppet

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread Arnau Bria
On Fri, 12 Jun 2009 21:28:09 +1000 James Turnbull wrote: > > Can't you have puppet:/// servers separate to the catalogue server? > > Would that help? > > Yes - see http://reductivelabs.com/trac/puppet/wiki/PuppetScalability >From my tests I saw that filserver is not a problem but users module i

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread Arnau Bria
On Fri, 12 Jun 2009 13:07:25 +0200 David Schmitt wrote: [...] > > what diff are there between marshal and yaml? I mean, do I lose > > information? reports ? > > AFAIK marshal is equivalent to yaml, only faster and not backwards > compatible. will try. > >> don't use reports, > > Wow... I use

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread David Schmitt
David Schmitt schrieb: > Arnau Bria schrieb: >>> Therefore it is not recommended to have all clients hit the server at >>> the same time. >> I know, but we're trying to see if we can use puppet for immediate >> changes (I know puppet is not designed for that, for we'd like to test >> it). > > Us

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread Arnau Bria
On Fri, 12 Jun 2009 21:02:03 +1000 James Turnbull wrote: [...] > >> don't use reports, > > Wow... I use Gridview and we really like it... but maybe we could > > live without it and adding some nagios sensors. > > What's GridView - is that a Puppet specific tool? sorry, PuppetView ... I work in G

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread James Turnbull
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Robin Sheat wrote: > On Friday 12 June 2009 22:46:53 Arnau Bria wrote: >>> For maximum performance you want to avoid any file-server operations >>> (file.source with puppet://, filebucket to server}, >> I was thinking on implement an rsync in same pup

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread Robin Sheat
On Friday 12 June 2009 22:46:53 Arnau Bria wrote: > > For maximum performance you want to avoid any file-server operations > > (file.source with puppet://, filebucket to server}, > > I was thinking on implement an rsync in same puppet server and do a > rsync Exec... Can't you have puppet:/// serve

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread David Schmitt
Arnau Bria schrieb: >> Therefore it is not recommended to have all clients hit the server at >> the same time. > I know, but we're trying to see if we can use puppet for immediate > changes (I know puppet is not designed for that, for we'd like to test > it). Use the method I described in my ear

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread James Turnbull
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Arnau Bria wrote: >> For maximum performance you want to avoid any file-server operations >> (file.source with puppet://, filebucket to server}, > I was thinking on implement an rsync in same puppet server and do a > rsync Exec... That'll work. >>

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread Arnau Bria
On Fri, 12 Jun 2009 12:34:25 +0200 David Schmitt wrote: Hi David, > Compiling the manifest is the single most resource-intensive > operation the puppetmaster has to do. Yep, I noticed that. > Therefore it is not recommended to have all clients hit the server at > the same time. I know, but we

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread David Schmitt
Arnau Bria schrieb: > Hi all, > > More test > > I had a class which creates 250 users, If I comment it, puppet is able > to run in 188 nodes at once with no problem. > so, definitely, scalability issues comes from code. > > anyway, if someone could give me some tips on the OT will be apprec

[Puppet Users] Re: trying to understand puppet internal

2009-06-12 Thread Arnau Bria
Hi all, More test I had a class which creates 250 users, If I comment it, puppet is able to run in 188 nodes at once with no problem. so, definitely, scalability issues comes from code. anyway, if someone could give me some tips on the OT will be appreciate. Cheers, Arnau --~--~-~