In going through the work to add arbitrary deployment content via the ManagementView of
the profile service, it seems I should add an APPLICATION_CLUSTERED phase:
| /** The class of deployment */
| public enum DeploymentPhase {
| /** A deployment loaded during the server bootstrap phase */
| BOOTSTRAP,
| /** An mc/service deployment for a Deployer to be loaded after the BOOTSTRAP
phase */
| DEPLOYER,
| /** Any deployment content to be loaded after the DEPLOYER phase */
| APPLICATION,
| /** Any deployment content to be loaded across a 'cluster' after the
APPLICATION phase */
| APPLICATION_CLUSTERED,
| };
|
I need such a notion to properly expose what targets would be part of the
APPLICATION_CLUSTERED, and this also gets to the issue of not having a farming type
service available in jboss5.
I'm going to add this phase and start looking at what the implications are for the
DeploymentRepository spi that describes the contents of a profile. This is work going on
as part of JBAS-5370. I imagine we'll need to make some changes to properly support a
clustered app notion so I'll create another jira for that.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4151467#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...