お世話になっております。
現在、とあるサーバーから別のサーバー(AWS EC2)を起動してartisanコマンドを実行するというシステムを構築しております。(分散処理)
そこで起動されたサーバーの負荷があまり大きくなかったので、
起動されたサーバー内で4、5回同時にコマンドを実行したいと考えおります。
PHP
1$userData = '#!/bin/bash -x' . PHP_EOL 2 . '# Pull latest github source' . PHP_EOL 3 . 'sudo su' . PHP_EOL 4 . 'export HOME="/root"' . PHP_EOL 5 . 'cd /var/www/html' . PHP_EOL 6 . 'sudo /bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=6144' . PHP_EOL 7 . 'sudo /sbin/mkswap /var/swap.1' . PHP_EOL 8 . 'sudo chmod 600 /var/swap.1' . PHP_EOL 9 . 'sudo /sbin/swapon /var/swap.1' . PHP_EOL 10 . '/usr/bin/git reset --hard HEAD' . PHP_EOL 11 . '/usr/bin/git checkout batch' . PHP_EOL 12 . '/usr/bin/git pull --no-edit origin batch' . PHP_EOL 13 . '# Run Command' . PHP_EOL 14 . 'cd /var/www/html/php-app' . PHP_EOL 15 . '# /usr/bin/composer update' . PHP_EOL 16 . '/usr/bin/php artisan ' . $command . PHP_EOL 17 . 'aws ec2 terminate-instances --region ap-northeast-1 --instance-ids `curl http://169.254.169.254/latest/meta-data/instance-id`' . PHP_EOL; 18 19$result = $ec2->runInstances( 20 [ 21 'ImageId' => config('aws.ami'), 22 'KeyName' => config('aws.key_pair'), 23 'MinCount' => $count, 24 'MaxCount' => $count, 25 'UserData' => base64_encode($userData), 26 'InstanceType' => $ec2Size, 27 'IamInstanceProfile' => [ 28 'Name' => self::EC2_ROLE, 29 ], 30 'NetworkInterfaces' => [ 31 [ 32 'DeviceIndex' => 0, 33 'SubnetId' => config('aws.subnet'), 34 'Groups' => [config('aws.security_group')], 35 'AssociatePublicIpAddress' => true 36 ] 37 ], 38 'TagSpecifications' => [ 39 [ 40 'ResourceType' => 'instance', 41 'Tags' => [ 42 [ 43 'Key' => 'Name', 44 'Value' => self::INSTANCE_TAG_NAME . ' ' . $command, 45 ], 46 ], 47 ], 48 ], 49 ] 50);
上記の中で以下の部分を複数回同時で実行したいです。
PHP
1'/usr/bin/php artisan ' . $command . PHP_EOL
Schedulerを利用したら良いとは思うのですが、この状態で可能な方法はありますでしょうか。
よろしくお願いいたします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。