According to Microsoft's documentation after installing PolyBase I should run the following code.
exec sp_configure @configname = 'polybase enabled', @configvalue = 1;
RECONFIGURE;
When I try to execute this command it displays an error. How can I add 'polybase enabled' to the configuration using sp_configure ?
Msg 15123, Level 16, State 1, Procedure sp_configure, Line 62 [Batch Start Line 0]
The configuration option 'polybase enabled' does not exist, or it may be an advanced option
What I've done so far :
- PolyBase is installed.
- I checked
SELECT SERVERPROPERTY ('IsPolybaseInstalled') AS IsPolybaseInstalled;
- it returns 1. - I enabled
EXEC sp_configure 'hadoop connectivity', 7;
- My TCP is enabled.
- My PolyBase is running.
- On the PolyBase tab, I see two "Scale-out Groups" : Head and Compute.
sys.configurations
- polybase network encryption = 1
- allow polybase export = 1
- show advanced options = 1