Penguin Builds Scyld Management Framework

Penguin Computing has built a Scyld Integrated Management Framework (IMF) that’s supposed to make it easier to monitor and manage what are usually quite elaborate HPC Beowolf clusters. It aggregates functionality in a single web interface and is extensible so users can add custom functionality whenever they like. Penguin thinks it’s the first to provide this kind of management extensibility to an HPC cluster.

read more

More: continued here
Powered by SmartRSS

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Netvouz
  • DZone
  • ThisNext
  • MisterWong
  • Wists
  • Technorati

Related News


  • Adding a File to the Compile ItemGroup


  • I've finally got round to switching from NAnt to MSBuild for building XML-RPC.NET so I'm tentatively finding my way around MSBuild at the moment. One thing I wanted to do was to ensure that builds of the XML-RPC.NET assembly do not have a valid version number when built from within the Visual Studio IDE, so they don't get confused with proper builds. I use a file called AssemblyBuildNumber.cs, created during a build, to define the build number so I wanted to exclude that from builds within the IDE. My first attempt was to add a condition to the entry for the file in the Compile item group in the project file:<ItemGroup> <Compile Include="AssemblyBuildNumber.cs" Condition="'$(BuildingInsideVisualStudio)' == ''"> <SubType>Code</SubType> </Compile> ...However, although this works from a build point of view, it results in the file being flagged as missing in the IDE Solution Explorer window. So I found a way of adding the file to the Compile ItemGroup at build time by overriding the BeforeBuild target. If you look in the Microsoft.Common.Targets file (located in %windir%Microsoft.NETFrameworkv2.0.50727) you can see that this target is defined solely for being overidden:<!--===================================== BeforeBuildRedefine this target in your project in order to run tasks just before Build===================================== --><Target Name="BeforeBuild"/>In the overriding version of BeforeBuild I used the CreateItem task to add the required file to the Compile item group but only if the build is not from within the IDE: <Target Name="BeforeBuild"> <CreateItem Include="AssemblyBuildNumber.cs" Condition="'$(BuildingInsideVisualStudio)' == ''"> <Output TaskParameter="Include" ItemName="Compile"/> </CreateItem></TargetOf course, I'm new to MSBuild and I may well be missing a blatantly obvious one-liner to do this. If there is, please email me and I'll post an update here.


  • CA Products Complement Alternative Technology’s Virtualization Offerings


  • Alternative Technology continues to expand its offerings by announcing it will supply a broad range of CA distributed enterprise IT management software. Those offerings include: application & development databases; application performance management; database management; dynamic & virtual systems management; governance, risk & compliance; infrastructure & operations management; IT service & asset management; project, portfolio & financial management; security management; and storage & information governance.read more


  • Moblin


  • Intel and Nokia have announced that the Moblin and Maemo projects will be merging into a single mobile platform called MeeGo, which, like Moblin, will be hosted at the Linux Foundation. "MeeGo blends the best of Maemo with the best of Moblin to create an open platform for multiple processor architectures. MeeGo builds on the capabilities of the Moblin core OS and its support for a wide range of device types and reference user experiences, combined with the momentum of Maemo in the mobile industry and the broadly adopted Qt application and UI framework for software developers."See also: Quim Gil's post on the merger.


  • Zend


  • Zend Technologies, the PHP commercializer, has put out a major new release of Zend Studio, its IDE for the PHP language. Designed to improve productivity for professional-grade web application development, Studio 7.0 supports the newly released PHP 5.3 language as well as tight integration with Zend Server and Zend Framework. Meanwhile, Zend Framework has been updated for the fifth time in two years.read more


  • Enterprise Virtual Management for Next-Generation IT


  • Virtualization enables strategic benefits, but significantly impacts infrastructure, operations and configuration management. Virtualization's additional complexity and new management challenges can adversely affect TCO, reduce service levels, threaten security and pose compliance issues, as well as introduce new problems like VM sprawl. In this session, you'll learn how virtualization impacts traditional management disciplines, and their supporting people, processes, and technology. Participants will learn about the next generation of Enterprise Virtualization Management, and how it dramatically simplifies the management of growing virtual environments. Topics include eliminating sprawl, reining in snapshots, effectively dealing with offline VMs, and virtual appliances. You will also learn how to support distributed provisioning, delegated administration and self-service operations for enterprise virtual environments.read more


    Leave a Reply

    You must be logged in to post a comment.