참고: Python 2.7은 2024년 1월 31일 지원 종료됩니다. 기존 Python 2.7 애플리케이션을 계속 실행하고 트래픽을 받을 수 있습니다. 그러나 지원 종료 날짜 이후에는 해당 런타임을 사용하는 애플리케이션의 재배포를 App Engine에서 차단할 수 있습니다.
지원되는 최신 Python 버전으로 마이그레이션하는 것이 좋습니다.
bookmark_borderbookmark
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
이 페이지에서는 로컬 개발 서버(dev_appserver)를 사용하여 애플리케이션의 push 큐를 테스트할 때 발생하는 몇 가지 제한사항을 설명합니다. 대부분의 측면에서 App Engine 프로덕션 환경에서 실행하는 것처럼 큐와 태스크를 설정하지만 몇 가지 차이점이 있습니다.
개발 서버는 큐의 rate 및 bucket-size 속성을 고려하지 않습니다. 따라서 태스크는 가능한 한 ETA와 가깝게 실행됩니다. 속도를 0으로 설정해도 태스크 실행이 자동으로 차단되지는 않습니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-04-21(UTC)"],[[["This API supports first-generation runtimes and is relevant when upgrading to corresponding second-generation runtimes, with a migration guide available for Python 3 runtime upgrades."],["The local development server (`dev_appserver`) has limitations regarding push queue testing, as it ignores `rate` and `bucket-size` attributes, executing tasks near their ETA."],["The `dev_appserver` does not maintain queue state across restarts and does not support developing Python 3 apps on Windows."],["To stop push tasks from running on the development server, use the `python2 DEVAPPSERVER_ROOT/google_appengine/dev_appserver.py --enable_task_running no` command, replacing `DEVAPPSERVER_ROOT` with the correct path."],["Before running the `dev_appserver`, you must run `dev_appserver.py` with Python 3, set the `CLOUDSDK_DEVAPPSERVER_PYTHON` environment variable to your Python 2 interpreter, and follow the setup instructions."]]],[]]