Linux concurrent execution is simple, just do it this way

Linux concurrent execution is simple, just do it this way

Concurrency Functions

time for i in `grep server /etc/hosts | awk '{print $1}'`; do (ssh $i "echo 123; sleep 1; echo 456" &); done

real 0m0.063s
user 0m0.016s
sys 0m0.004s

Concurrency capabilities of xargs

time grep server /etc/hosts | awk '{print $1}' | xargs -P 24 -I {} ssh {} "echo 123; sleep 1; echo 456"

real 0m3.747s
user 0m1.136s
sys 0m0.112s

Concurrency is actually very simple. It does not require dozens of lines of golang or python code, nor does it require installation environment, compilation and other tedious steps. Just return to basics.

Summarize
The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Detailed explanation of optimizing the maximum number of concurrent socket connections in Linux
  • How to view the number of concurrent connections using the Linux netstat command
  • Various restrictions on the maximum number of concurrent socket connections under Linux (detailed explanation)
  • Configuration method for 500,000 concurrent connections in Linux
  • A brief discussion on the use of C language fork() function in concurrent programming under Linux environment
  • How to limit concurrent connections and download speed in Apache under Linux
  • Write your own concurrent queue class in Linux (Queue concurrent blocking queue)

<<:  Native js implements custom scroll bar component

>>:  Ubuntu 15.04 opens mysql remote port 3306

Recommend

MySQL dual-master (master-master) architecture configuration solution

In enterprises, database high availability has al...

Echarts Bar horizontal bar chart example code

Table of contents Horizontal bar chart Dynamicall...

How to operate Docker and images

Find mirror We can search for images from the Doc...

Share the responsive frameworks commonly used by web design masters (summary)

This article introduces and shares the responsive...

How to use JavaScript and CSS correctly in XHTML documents

In more and more websites, the use of XHTML is rep...

Detailed explanation of count(), group by, order by in MySQL

I recently encountered a problem when doing IM, a...

A brief discussion on Axios's solution to remove duplicate requests

Table of contents 1. Cancel duplicate requests 2....

How to use the MySQL authorization command grant

The examples in this article run on MySQL 5.0 and...

How to download excel stream files and set download file name in vue

Table of contents Overview 1. Download via URL 2....