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

时间:2018-02-22 13:25:51

标签: java google-app-engine google-cloud-datastore

使用祖先查询运行以下端点函数会在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();
    }

1 个答案:

答案 0 :(得分:0)

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