我想使用python脚本连接到Microsoft SQL Server,我将在AWS Glue上执行该脚本。我在安全配置->脚本库->作业参数(可选)部分添加了作业参数,如下所示:
Key : --additional-python-modules
Value: pyodbc==4.0.32,s3://bucketname/python_scripts/python-libs/pyodbc-4.0.32-cp37-cp37m-win32.whl
当我执行任务时,我得到以下错误:
com.amazonaws.services.glue.PythonModuleInstaller [main] ERROR: pyodbc-4.0.32-cp37-cp37m-win32.whl is not a supported wheel on this platform.
我试过python2和python3轮子,但同样的错误!
您可以尝试使用--extra-py-files
而不是--additional-python-modules
标志为您的车轮?