Google App Engine:upload_data失败,因为在DevServer上“目标机主动拒绝了它”

StackOverflow https://stackoverflow.com/questions/3126036

我正在尝试使用DevServer将数据从CSV上传到我的应用程序:

appcfg.py upload_data --config_file="DataLoader.py" --filename="data.csv" --kind=Foo --url=http://localhost:8083/remote_api "path/to/app"

结果:

Application: appname; version: 1.
Uploading data records.
[INFO    ] Logging to bulkloader-log-20100626.181045
[INFO    ] Throttling transfers:
[INFO    ] Bandwidth: 250000 bytes/second
[INFO    ] HTTP connections: 8/second
[INFO    ] Entities inserted/fetched/modified: 20/second
[INFO    ] Batch Size: 10
[INFO    ] Opening database: bulkloader-progress-20100626.181045.sql3
Please enter login credentials for localhost
Email: email@domain.com
Password for email@domain.com:
[INFO    ] Connecting to localhost:8083/remote_api
[INFO    ] Starting import; maximum 10 entities per post
Google\google_appengine\google\appengine\api\datastore_types.py:673: DeprecationWarning: object.__init__() takes no parameters
  super(Link, self).__init__(self, link)
............[INFO    ] Unexpected thread death: WorkerThread-7
[INFO    ] An error occurred. Shutting down...
........[ERROR   ] Error in WorkerThread-1: <urlopen error [Errno 10061] No connection could be made because the target machine actively refused it>
[ERROR   ] Error in WorkerThread-7: <urlopen error [Errno 10061] No connection could be made because the target machine actively refused it>

[INFO    ] 1230 entites total, 0 previously transferred
[INFO    ] 200 entities (218274 bytes) transferred in 25.8 seconds
[INFO    ] Some entities not successfully transferred

当我尝试后续时间时,实体的计数在200-850之间转移了范围。

这里发生了什么?通常这可以正常工作。导航到 http://localhost:8083/ 工作,应用程序运行良好。 (除了缺乏数据。)

有帮助吗?

解决方案

通过添加命令行选项将线程数减少到4 --num_threads=4

如果仍然不起作用,则会进一步减少线程数。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top