祖先查询在api资源管理器中生成503错误代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了祖先查询在api资源管理器中生成503错误代码相关的知识,希望对你有一定的参考价值。

使用祖先查询运行以下端点函数会在appspot api资源管理器中返回503代码错误,而相同的代码在localhost devserver上的api资源管理器上运行时工作正常。

@ApiMethod(name = "getConferencesCreated",
           path = "getConferencesCreated",
           httpMethod = HttpMethod.POST
        )
        public List<Conference> getConferencesCreated(final User user) throws UnauthorizedException {
            if (user == null) {
                throw new UnauthorizedException("Authorization required");
            }
            String userId = user.getUserId();
            Key<Profile> userKey = Key.create(Profile.class, userId);
            return ofy().load().type(Conference.class)
                    .ancestor(userKey)
                    .order("name").list();
    }
答案

它现在工作正常。问题是查询所需的索引尚未准备好,从而产生503错误。在localhost中运行查询功能将在google的后端启动索引过程,并且在准备好索引后,您的函数将正常工作。

以上是关于祖先查询在api资源管理器中生成503错误代码的主要内容,如果未能解决你的问题,请参考以下文章

YouTube V3 API - Google.Apis.Requests.RequestErrorBackend 错误 [503]

Django - 追踪在数据库中生成慢查询的代码

我可以在 Eclipse 的项目资源管理器中生成文件吗?

在 LESS 中生成选择器列表

OpenMP 在使用 Armadillo 的代码中生成段错误

无法生成 NHibernate.Moles.dll - 在生成的代码中生成错误