dbt调试教程生成信号量issu

2024-06-09 18:24:34 发布

您现在位置:Python中文网/ 问答频道 /正文

在尝试以Snowflake作为仓库遍历GitHubtutorial时,在运行“dbt debug”时遇到以下错误:

Running with dbt=0.15.0
dbt version: 0.15.0
python version: 3.7.5
python path: /usr/local/Cellar/dbt/0.15.0_1/libexec/bin/python3.7
os info: Darwin-19.2.0-x86_64-i386-64bit
Using profiles.yml file at /Users/David*****/.dbt/profiles.yml

Configuration:
profiles.yml file [OK found and valid]
dbt_project.yml file [OK found and valid]
profile: jaffle_shop [OK found]
target: dev [OK found]

Required dependencies:

git [OK found]
Connection:
account: XXXXXXXX
user: XXXXXXX
database: TEST_DB
schema: jaffle_shop
warehouse: LOAD_WH
role: SYSADMIN
client_session_keep_alive: False
***zsh: abort dbt debug
/usr/local/opt/python/Frameworks/Python.framework/Versions/3.7/lib/python3.7/multiprocessing/semaphore_tracker.py:144: UserWarning: semaphore_tracker: There appear to be 1 leaked semaphores to clean up at shutdown
len(cache))***

这是什么?我该怎么解决?你知道吗


Tags: anddebugversionusrlocalymlokshop
1条回答
网友
1楼 · 发布于 2024-06-09 18:24:34

如果有人通过Google发现了这个问题,我遵循了dbt slack over@获取dbt.slack.com你知道吗

    brew update & brew upgrade & brew install openssl

    # copy libssl.1.0.0.dylib and libcrypto.1.0.0.dylib from 
    # /usr/local/Cellar/openssl/<opensslversion> to /usr/lib/
    # (note: your version of these files may be different depending on your openssl version)
    cd /usr/local/Cellar/openssl/<opensslversion>/
    # the exact names of the files here may be slightly different
    sudo cp libssl.1.0.0.dylib libcrypto.1.0.0.dylib /usr/local/lib/
    # make a softlink libssl.dylib and libcrypto.dylib
    sudo ln -s libssl.1.0.0.dylib libssl.dylib
    sudo ln -s libcrypto.1.0.0.dylib libcrypto.dylib

src:https://forums.developer.apple.com/thread/119429#386843

相关问题 更多 >