dev_appserver.py BadArgumentError: app must not be empty

huangapple go评论78阅读模式
英文:

dev_appserver.py BadArgumentError: app must not be empty

问题

嗨,

背景信息:去年2021年底,我设置了这个dev_appserver,但在尝试重新设置时,出现了奇怪的错误。
BadArgumentError: app must not be empty.(app不能为空)

到目前为止,我已经解决了很多错误,现在的情况是:

  • 安装了JDK 1.11+(用于Cloud Datastore Emulator
  • 安装了Golang 1.15+(用于gopsdev_appserver.py - go build
  • Gcloud组件:dev_appserver.py BadArgumentError: app must not be empty

我这样运行dev_appserver

export DATASTORE_DATASET=dev8celbux
export DATASTORE_PROJECT_ID=dev8celbux
export DATASTORE_USE_PROJECT_ID_AS_APP_ID=true
dev_appserver.py --enable_console --admin_port=8001 --port=8081 --go_debugging=true --support_datastore_emulator=true --datastore_path=./datastore/local_db.bin setuptables-app.yaml

INFO     2022-09-09 13:26:30,233 devappserver2.py:317] Skipping SDK update check.
INFO     2022-09-09 13:26:30,250 datastore_emulator.py:156] Starting Cloud Datastore emulator at: http://localhost:58946
INFO     2022-09-09 13:26:32,381 datastore_emulator.py:162] Cloud Datastore emulator responded after 2.131000 seconds
INFO     2022-09-09 13:26:32,381 <string>:384] Starting API server at: http://localhost:59078
INFO     2022-09-09 13:26:32,384 <string>:374] Starting gRPC API server at: http://localhost:59079
INFO     2022-09-09 13:26:32,394 instance_factory.py:184] Building with dependencies from go.mod.
INFO     2022-09-09 13:26:32,397 dispatcher.py:280] Starting module "setuptables" running at: http://localhost:8081
INFO     2022-09-09 13:26:32,397 admin_server.py:70] Starting admin server at: http://localhost:8001
WARNING  2022-09-09 13:26:32,398 devappserver2.py:414] No default module found. Ignoring.
2022/09/09 13:26:35 STARTING
INFO     2022-09-09 13:26:37,220 instance.py:294] Instance PID: 9656

当我尝试查看本地数据存储中的内容时,在localhost:8001/datastore上出现了这个错误。

Traceback (most recent call last):
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\lib\webapp2\webapp2\__init__.py", line 1526, in __call__
    rv = self.handle_exception(request, response, e)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\lib\webapp2\webapp2\__init__.py", line 1520, in __call__
    rv = self.router.dispatch(request, response)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\lib\webapp2\webapp2\__init__.py", line 1270, in default_dispatcher
    return route.handler_adapter(request, response)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\lib\webapp2\webapp2\__init__.py", line 1094, in __call__
    return handler.dispatch()
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\admin\admin_request_handler.py", line 88, in dispatch
    super(AdminRequestHandler, self).dispatch()
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\lib\webapp2\webapp2\__init__.py", line 588, in dispatch
    return self.handle_exception(e, self.app.debug)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\lib\webapp2\webapp2\__init__.py", line 586, in dispatch
    return method(*args, **kwargs)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\admin\datastore_viewer.py", line 661, in get
    kinds = self._get_kinds(namespace)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\admin\datastore_viewer.py", line 597, in _get_kinds
    return sorted([x.kind_name for x in q.run()])
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\ext\db\__init__.py", line 2077, in run
    raw_query = self._get_query()
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\ext\db\__init__.py", line 2482, in _get_query
    _app=self._app)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\api\datastore.py", line 1371, in __init__
    self.__app = datastore_types.ResolveAppId(_app)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\api\datastore_types.py", line 238, in ResolveAppId
    ValidateString(app, 'app', datastore_errors.BadArgumentError)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\api\datastore_types.py", line 186, in ValidateString
    raise exception('%s must not be empty.' % name)
BadArgumentError: app must not be empty.

我发现这与缺少APPLICATION_ID环境变量有关。设置后,我可以查看数据库页面。然而,当我在代码中没有出现错误时将数据写入模拟器(逐行调试以确认,并创建了local_db.bin),但查看数据时,什么都没有。从代码的角度来看,我成功写入了15个实体。但在管理页面上没有显示任何内容。我认为这是由于手动设置了APPLICATION_ID,因为我以前没有这样做。也许应该以某种方式自动完成。我认为这个环境变量可能可以做到这一点:export DATASTORE_USE_PROJECT_ID_AS_APP_ID=true,但似乎没有改变任何东西。

在创建实体之前:

dev_appserver.py BadArgumentError: app must not be empty

在创建实体之后:

dev_appserver.py BadArgumentError: app must not be empty

我像这样写入数据,毫无疑问这是正确的。

ctx, err := appengine.Namespace(appengine.BackgroundContext(), "celbux101")
...
userKeyOut, err := datastore.Put(ctx, userKey, &F1_4{...})

还查看了default和指定的命名空间(celbux101):

dev_appserver.py BadArgumentError: app must not be empty

dev_appserver.py BadArgumentError: app must not be empty

非常困惑。:( 感谢帮助!

我真的认为这可能与APPLICATION_ID有关。

英文:

Hey all,

For context: I had this dev_appserver setup working late last year in 2021, and upon trying to set it up again, I'm getting odd errors.
BadArgumentError: app must not be empty.

I've solved quite a lot of errors up to this point, and this is where I'm at:

  • JDK 1.11+ installed (for Cloud Datastore Emulator)
  • Golang 1.15+ installed (for gops & dev_appserver.py - go build)
  • Gcloud Components:dev_appserver.py BadArgumentError: app must not be empty

I run my dev_appserver like this:

export DATASTORE_DATASET=dev8celbux
export DATASTORE_PROJECT_ID=dev8celbux
export DATASTORE_USE_PROJECT_ID_AS_APP_ID=true
dev_appserver.py --enable_console --admin_port=8001 --port=8081 --go_debugging=true --support_datastore_emulator=true --datastore_path=./datastore/local_db.bin setuptables-app.yaml

INFO     2022-09-09 13:26:30,233 devappserver2.py:317] Skipping SDK update check.
INFO     2022-09-09 13:26:30,250 datastore_emulator.py:156] Starting Cloud Datastore emulator at: http://localhost:58946
INFO     2022-09-09 13:26:32,381 datastore_emulator.py:162] Cloud Datastore emulator responded after 2.131000 seconds
INFO     2022-09-09 13:26:32,381 <string>:384] Starting API server at: http://localhost:59078
INFO     2022-09-09 13:26:32,384 <string>:374] Starting gRPC API server at: http://localhost:59079
INFO     2022-09-09 13:26:32,394 instance_factory.py:184] Building with dependencies from go.mod.
INFO     2022-09-09 13:26:32,397 dispatcher.py:280] Starting module "setuptables" running at: http://localhost:8081
INFO     2022-09-09 13:26:32,397 admin_server.py:70] Starting admin server at: http://localhost:8001
WARNING  2022-09-09 13:26:32,398 devappserver2.py:414] No default module found. Ignoring.
2022/09/09 13:26:35 STARTING
INFO     2022-09-09 13:26:37,220 instance.py:294] Instance PID: 9656

This error appears when I try & view the contents within the local datastore at localhost:8001/datastore.

Traceback (most recent call last):
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\lib\webapp2\webapp2\__init__.py", line 1526, in __call__
    rv = self.handle_exception(request, response, e)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\lib\webapp2\webapp2\__init__.py", line 1520, in __call__
    rv = self.router.dispatch(request, response)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\lib\webapp2\webapp2\__init__.py", line 1270, in default_dispatcher
    return route.handler_adapter(request, response)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\lib\webapp2\webapp2\__init__.py", line 1094, in __call__
    return handler.dispatch()
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\admin\admin_request_handler.py", line 88, in dispatch
    super(AdminRequestHandler, self).dispatch()
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\lib\webapp2\webapp2\__init__.py", line 588, in dispatch
    return self.handle_exception(e, self.app.debug)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\lib\webapp2\webapp2\__init__.py", line 586, in dispatch
    return method(*args, **kwargs)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\admin\datastore_viewer.py", line 661, in get
    kinds = self._get_kinds(namespace)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\tools\devappserver2\admin\datastore_viewer.py", line 597, in _get_kinds
    return sorted([x.kind_name for x in q.run()])
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\ext\db\__init__.py", line 2077, in run
    raw_query = self._get_query()
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\ext\db\__init__.py", line 2482, in _get_query
    _app=self._app)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\api\datastore.py", line 1371, in __init__
    self.__app = datastore_types.ResolveAppId(_app)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\api\datastore_types.py", line 238, in ResolveAppId
    ValidateString(app, 'app', datastore_errors.BadArgumentError)
  File "C:\Users\user\AppData\Local\Google\Cloud SDK\google-cloud-sdk\platform\google_appengine\google\appengine\api\datastore_types.py", line 186, in ValidateString
    raise exception('%s must not be empty.' % name)
BadArgumentError: app must not be empty.

I figured out that it is somewhat related to the APPLICATION_ID environment variable being missing. Upon setting it, I am able to view the Database page. HOWEVER. When getting no errors writing my data to the emulator (line by line debugged to confirm & local_db.bin is created), upon looking at the data, nothing is there. I successfully write 15 entities from the code's point of view. However none appear on the admin page. I think it's due to the manual set of the APPLICATION_ID as I did not do this before. Perhaps should be automatic somehow. Was thinking that this environment variable could maybe do that: export DATASTORE_USE_PROJECT_ID_AS_APP_ID=true but doesn't seem to change anything.

Before calling creation of entities:

dev_appserver.py BadArgumentError: app must not be empty

After calling creation of entities:

dev_appserver.py BadArgumentError: app must not be empty

I write the data like this, no doubt this works correctly.

ctx, err := appengine.Namespace(appengine.BackgroundContext(), "celbux101")
...
userKeyOut, err := datastore.Put(ctx, userKey, &F1_4{...})

Also, looked in both the default & the designated namespace (celbux101):

dev_appserver.py BadArgumentError: app must not be empty

dev_appserver.py BadArgumentError: app must not be empty

Super stumped. dev_appserver.py BadArgumentError: app must not be empty Help appreciated!

I really think it may somehow be related to APPLICATION_ID

答案1

得分: 13

是的!

...我成功找到了解决方案!正如我怀疑的那样,数据被正确写入,通过逐行调试和创建local_db.bin进行确认。问题在于dev_appserver的用户界面无法显示数据库实体,原因是APPLICATION_ID不正确或缺失,这是我推断出来的。

我发现dev_appserver的用户界面同时使用APPLICATION_IDnamespace来确定要查找实体的位置。此外,dev_appserver有自己的默认APPLICATION_ID

解决方案

在运行dev_appserver.py之前,先导出这个环境变量。

> export APPLICATION_ID=dev~None

这个神奇的导出使一切都按预期工作。你可以在界面左上角查看UI尝试使用的APPLICATION_ID

**编辑:**我刚刚在一台新电脑上运行了这个程序,并希望为将来参考添加以下内容:

如果你遇到IOError: emulator did not respond within 10s

安装Python27并将其添加到你的路径中!(与你捆绑的Python一起)

dev_appserver.py BadArgumentError: app must not be empty

英文:

Yes!

... I managed to come to a solution! As suspected, the data was getting written correctly, as confirmed by the line-by-line debug & the creation of the local_db.bin. The issue is that the dev_appserver's UI is not able to show the database entities due to the incorrect or missing APPLICATION_ID, as deducted.

I figured out that the dev_appserver's UI uses both the APPLICATION_ID & namespace to determine where to look for your entities. Also, the dev_appserver has it's own default APPLICATION_ID.

Solution

The fix is to export this environment variable BEFORE running your dev_appserver.py.

> export APPLICATION_ID=dev~None

This magic export allows everything work as expected. You can view the APPLICATION_ID that the UI is trying to use on the top-left of the interface.

EDIT: I just came back to running this on a new computer, and want to add this for future reference:

If you are getting IOError: emulator did not respond within 10s

INSTALL Python27 & add to your path! (alongside your bundled python)

dev_appserver.py BadArgumentError: app must not be empty

huangapple
  • 本文由 发表于 2022年9月9日 19:45:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/73661666.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定