I’m trying to connect SSAS (Microsoft Analysis Services) through Data Factory using PySpark with the code below but I’m having problems with Adomd mapping. Apparently there is no reference to the dll but I have no idea where it could be mapped as it is running on Azure (Data Factory – PySpark). Has anyone experienced this difficulty?
from pythonnet import load
load("coreclr")
import clr
from pyadomd import Pyadomd
.
.
.
with Pyadomd(connectionString) as conn:
NameError: name ‘AdomdConnection’ is not defined
Connect to Microsoft Analysis Services through Data Factory
1