본문 바로가기

기술스택을 쌓아보자/에러 로그 수집기7

python dash gunicorn RecursionError: maximum recursion depth exceeded while calling a Python object [INFO|/locdisk/code/cc/framework/helper/s3_helper.py:114] 2023-07-05 07:06:29,341 > Traceback (most recent call last): File "/locdisk/code/cc/framework/helper/s3_helper.py", line 109, in get_data s3_client = session.create_client('s3', aws_access_key_id=AWS_S3_KEY, aws_secret_access_key=AWS_S3_SECRET_KEY) File "/venv/lib/python3.6/site-packages/botocore/session.py", line 838, in create_client cl.. 2023. 7. 5.
[디버깅기] airflow postgresql sqlalchemy.exc.OperationalError: (psycopg2.OperationalError) connection to server at "postgres" (), port 5432 failed: FATAL: sorry, too many clients already 인트로 sqlalchemy.exc.OperationalError: (psycopg2.OperationalError) connection to server at "postgres" (172.19.0.2), port 5432 failed: FATAL: sorry, too many clients already 서칭한 해결방안 재시작 하면 기존에 셋팅해두었던 airflow connection 값들이 모두 사라지기 때문에, postgres docker로 cp 를 진행하였다. Airflow psycopg2.OperationalError: FATAL: sorry, too many clients already I have a four node clustered Airflow environment that's been .. 2023. 6. 27.
[GIT] 깃 브랜치 삭제 오류, error: The branch 'why-an-deoi' is not fully merged. 깃에서 코드를 머지하고, 이제 사용할 일이 없는 브랜치라서 삭제하려고 아래 명령어를 쳤다 아래는 깃 브랜치 삭제 명령어다 hoseung2@hoseung2:~/python_project$ git branch -d why-an-deoi 그랬더니 브랜치 왜안돼를 없앨 수 없다는 에러가 나왔다. error: The branch 'why-an-deoi' is not fully merged. If you are sure you want to delete it, run 'git branch -D why-an-deoi'. 이럴 땐 그냥 깃에서 알려준것처럼 -d 옵션을 대문자로 바꿔준다. 간단! 깃은 생각보다 설명을 친절하게 해준다. hoseung2@hoseung2:~/python_projects$ git branch .. 2020. 10. 8.