As a reminder, here are the components in play to run an application:
- The cluster:
- Spark Master: coordinates the resources
- Spark Workers: offer resources to run the applications
- The application:
| # Make sure you have enabled "Expose hardware assisted virtualization to the guest OS" for the VMWare CPU | |
| Write-Host "##############################`nInstalling features: Containers, Hyper-V, Hyper-V-PowerShell`n##############################`n" | |
| Install-WindowsFeature Containers | |
| Install-WindowsFeature Hyper-V | |
| Install-WindowsFeature Hyper-V-PowerShell | |
| Write-Host "##############################`nDisabling firewall`n##############################`n" | |
| Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled False |