0

デプロイされたデータストアをローカル ディレクトリにダウンロードする際に問題が発生しています。

ドキュメントはかなり簡単に見えました

https://developers.google.com/appengine/docs/python/tools/uploadingdata#Downloading_and_Uploading_All_Data

私はGAEに少し慣れていません...ここで明らかな何かが欠けていますか?

次のコマンドを実行します

appcfg.py download_data --url=http://myapp.appspot.com/_ah/remote_api --filename=ds_copy

認証を求められることすらありません。これが出力です。

12:33 PM Downloading data records.
[INFO    ] Logging to bulkloader-log-20130507.123333
[INFO    ] Throttling transfers:
[INFO    ] Bandwidth: 250000 bytes/second
[INFO    ] HTTP connections: 8/second
[INFO    ] Entities inserted/fetched/modified: 20/second
[INFO    ] Batch Size: 10
Error 500: --- begin server output ---

<html><head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>500 Server Error</title>
</head>
<body text=#000000 bgcolor=#ffffff>
<h1>Error: Server Error</h1>
<h2>The server encountered an error and could not complete your request.<p>If the problem persists, please <A HREF="http://code.google.com/appengine/community.html">report</A> your problem and mention this error message and the query that caused it.</h2>
<h2></h2>
</body></html>
--- end server output ---

どんな助けでも大歓迎です!

4

2 に答える 2

0

リモートAPIを有効にするだけです

builtins:
- remote_api: on

アプリケーションを更新してから、次のコマンドを実行します。

appcfg.py download_data -A appName --url=http://appName.appspot.com/_ah/remote_api/ --filename=data.csv
appcfg.py --url=http://localhost:8080/_ah/remote_api/ --filename=data.csv upload_data <directory>

これはhttps://stackoverflow.com/a/7944641/2954800から取得

于 2013-11-19T11:41:23.287 に答える