[jboss-dev-forums] [JBoss AS7 Development] - CLI Batch Mode

Scott Stark do-not-reply at jboss.com
Tue May 17 21:44:13 EDT 2011


Scott Stark [http://community.jboss.org/people/starksm64] modified the document:

"CLI Batch Mode"

To view the document, visit: http://community.jboss.org/docs/DOC-16728

--------------------------------------------------------------
h2. Prototype of the batch mode

The batch mode allows one to group commands and operations and execute them together as an atomic unit, i.e., if at least one of the commands or operations fails, all the other successfully executed commands and operations in the batch are rolled back.

Not all of the commands are allowed in the batch. E.g. commands like 'cd', 'ls', 'help', etc are not allowed in the batch since they don't translate into operation requests. Only the commands that translate into operation requests are allowed in the batch. The batch, actually, is executed as a 'composite' operation request.

The batch mode is entered by executing command +batch+.

[localhost:9999 /] batch
[localhost:9999 / #]



The '#' sign in the prompt indicates that the CLI is in the batch mode. Operations and commands like deploy, create-jms-topic, etc won't be executed immediately, instead they will be added to the current batch.

[localhost:9999 / #] deploy ../../../../testsuite/smoke/target/deployments/test-deployment.sar
[localhost:9999 / #] create-jms-topic name=mytop
[localhost:9999 / #] :add-system-property(name=myprop,value=myval)
[localhost:9999 / #]



 But commands that don't translate into operation requests will be executed immediately. E.g.

[localhost:9999 / #] ls
extension               path                    subsystem               deployment              management-interfaces
interface               socket-binding-group
[localhost:9999 / #] cd subsystem=web
[localhost:9999 web #]



To see the list of the commands and operations in the current batch execute list-batch

[localhost:9999 / #] list-batch
#1 deploy ../../../../testsuite/smoke/target/deployments/test-deployment.sar
#2 create-jms-topic name=mytop
#3 /:add-system-property(name=myprop,value=myval)



If you want to edit a line in the batch, use edit-batch-line command by providing the line number as the first argument and the edited command as the second one

[localhost:9999 / #] edit-batch-line 2 create-jms-topic name=mytopic
[localhost:9999 / #] list-batch
#1 deploy ../../../../testsuite/smoke/target/deployments/test-deployment.sar
#2 create-jms-topic name=mytopic
#3 /:add-system-property(name=myprop,value=myval)



If you want to re-order the lines in the batch you can do this using move-batch-line by specifying the command number you want to move as the first argument and its new position as the second argument

[localhost:9999 / #] move-batch-line 3 1
[localhost:9999 / #] list-batch
#1 /:add-system-property(name=myprop,value=myval)
#2 deploy ../../../../testsuite/smoke/target/deployments/test-deployment.sar
#3 create-jms-topic name=mytopic



You can remove a line using remove-batch-line and specifying the line number of the command in the batch

[localhost:9999 / #] remove-batch-line 2
[localhost:9999 / #] list-batch
#1 /:add-system-property(name=myprop,value=myval)
#2 create-jms-topic name=mytopic



You can postpone batch editing if suddenly you want to perform some other tasks by executing holdback-batch

[localhost:9999 / #] holdback-batch
[localhost:9999 /]



To return to the held back batch, just execute batch command

[localhost:9999 /] batch
Re-activated batch
#1 /:add-system-property(name=myprop,value=myval)
#2 create-jms-topic name=mytopic



Actually, it's possible to hold back more than one batch by adding an argument to holdback-batch

[localhost:9999 / #] holdback-batch mybatch
[localhost:9999 /]



Now, the batch was saved under the name 'mybatch'. To activate it, you now have to execute 'batch mybatch'. Executing just 'batch' will start a new batch.

[localhost:9999 /] batch
[localhost:9999 / #] deploy ../../../../testsuite/smoke/target/deployments/test-deployment.sar
[localhost:9999 / #] holdback-batch



Now there are two batches held back. Too see the list of all the held back batches, execute batch with '-l' switch

[localhost:9999 /] batch -l
<unnamed>
mybatch



The unnamed batch (there can be only one unnamed batch) is activated by just executing batch command

[localhost:9999 /] batch
Re-activated batch
#1 deploy ../../../../testsuite/smoke/target/deployments/test-deployment.sar
[localhost:9999 / #]



You can discard the currently active batch by executing discard-batch

[localhost:9999 / #] discard-batch
[localhost:9999 /] batch -l
mybatch



Note, that after you re-activate your batch it is removed from the held back list and not associated with any name anymore. So, if you want to hold it back again, you will have to give it a new unique name or leave it unnamed.

Finally, run-batch executes the currently active batch after which the batch is automatically discarded.

[localhost:9999 /] batch mybatch
Re-activated batch 'mybatch'
#1 /:add-system-property(name=myprop,value=myval)
#2 create-jms-topic name=mytopic
[localhost:9999 / #] run-batch
The batch executed successfully.
[localhost:9999 /]
--------------------------------------------------------------

Comment by going to Community
[http://community.jboss.org/docs/DOC-16728]

Create a new document in JBoss AS7 Development at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=102&containerType=14&container=2225]
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-dev-forums/attachments/20110517/96fd2068/attachment.html 


More information about the jboss-dev-forums mailing list