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