単純なデータを使用して 1000 台のサーバーを構成するタスクが与えられました。サーバー (Linux または Windows) にログインし、ntp サーバーをセットアップする必要があるとします。perl を使用してある種の自動化フレームワークを考え出す必要があります。私にはいくつかのアイデアがあり、さらに多くを得たいと思っています。
これが私の思考プロセスです:
a) Since there are 1000s of servers, definitely the framework should be able to read in a csv file so all inputs can be provided as apposed to single input.
b) Since there are so many servers, I have to find a way to do things in parallel. I cant go server by server in a sequential way
c) I should have some output file that shows the results of all the servers that I successfully configured, servers that failed. That way I can compare input file and output file and generate a report
フレームワークで他に何かを考慮する必要がありますか? perl を使用して並列処理を行うにはどうすればよいですか?