Correct placement for modules for making Apple Configuration Profiles

2014-09-07 Thread Alfred Karl Kornel
Hello! I'm looking for some module-naming advice. I'm creating a set of modules that provide an easy, object-oriented way to create and manage Apple Configuration Profiles, and I would like to know where to place it in CPAN. Apple Configuration Profiles are typically used in the enterprise

Re: Top level name proposal - ComputeCluster

2014-09-07 Thread Alex Muntada
What about HPC::? BTW, we have SGE at work too so this seems very interesting :-) Cheers! Alex

Re: Top level name proposal - ComputeCluster

2014-09-07 Thread Dana Hudes
So you intend to develop a new pure Perl compute cluster? Because if you just need to get the job done why would you not use Hadoop whether private cluster or AWS? It has a Perl APi and it will cheerfully run Perl jobs. Hadoop is an Apache project, open source free software with a large

Re: Top level name proposal - ComputeCluster

2014-09-07 Thread Dana Hudes
There exists a Perl interface to Hadoop. I can't look up right now, but i think that was under Apache:: . AWS also offer Hadoop as a service with Perl and PHP interface at least. Under AWS::Hadoop IIRC. -Original Message- From: Fields, Christopher J cjfie...@illinois.edu Date: Fri, 5

Re: Top level name proposal - ComputeCluster

2014-09-07 Thread Mark Hedges
Doesn't Hadoop have to restart the perl interpreter for every execution step, i.e. run a script that performs the map or reduce operation? It seems like a single perl interpreter could listen on TCP for authenticated subroutines to run in threads, passing them on to idle neighbors if busy. No