Two types of parallel method code for fabric

Source: Internet
Author: User
Fabric is a Python class library that uses SSH protocol-based command-line tools for application Deployment and System task management, and here are two ways that fabric code runs in parallel:

1: Parameter-P

From FABRIC.API import *  host1 = ' root@ip1:22 '  host2 = ' root@ip2:22 '   env.hosts = [Host1, host2]   Env.pass Words = {      host1: "P1",      host2: "P2"  }                                                                                                                                                                                                                     def BACKUP_AND_CP (): With      CD ("/home/**"):          run (' ls ')
And then  run Fab-p  backup_and_cp.

2: Decorator

Import timefrom fabric.api Import *host1 = ' root@ip1:22 ' host2 = ' root@ip2:22 '  env.hosts = [Host1, host2]  Env.pass Words = {      host1: "P1",      host2: "P2"  }  @parallel                                                                                                                                                                                                                     def BACKUP_AND_CP (): With      CD ("/home/**"):          run (' ls ')

Running Fab BACKUP_AND_CP is OK.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.