Google Cloud Platform:无法从 Container Engine 访问 Pubsub

Posted

技术标签:

【中文标题】Google Cloud Platform:无法从 Container Engine 访问 Pubsub【英文标题】:Google Cloud Platform: cannot access Pubsub from Container Engine 【发布时间】:2017-04-26 03:36:28 【问题描述】:

我正在尝试从在 Google Container Engine 中运行的 Scala 应用程序(即在 Kubernetes 中运行)发布到现有的 pubsub 主题。

我已启用(我认为)底层集群的正确权限:

但是,当我尝试运行我的 Scala 应用程序时,我收到以下错误:

2016-12-10T22:22:57.811982246Z Caused by:
com.google.cloud.pubsub.PubSubException: java.lang.IllegalStateException: 
No NameResolverProviders found via ServiceLoader, including for DNS. 
This is probably due to a broken build. If using ProGuard, check your configuration

完整的堆栈跟踪here。

我的 Scala 代码与快速入门指南差不多:

val TopicName = "my-topic"
val pubsub = PubSubOptions.getDefaultInstance.getService
val topic = pubsub.getTopic(TopicName)
...
topic.publish(Message.of(json))

我想我可能遗漏了一些重要的 Kubernetes 配置,因此非常感谢任何和所有帮助。

【问题讨论】:

现在谷歌支持论坛上也有同样的问题:groups.google.com/forum/#!topic/cloud-pubsub-discuss/… 最后我们使用了优秀的 Spotify GCP Pubsub 库为我们解决了这个问题:github.com/spotify/async-google-pubsub-client 【参考方案1】:

我发现当 sbt 管理“com-google-cloud-pubsub”依赖时会出现这个问题。我的解决方法是,我创建了一个 maven 项目并构建了一个仅具有该依赖项的 jar。然后我将该 jar 添加到我的类路径中,并在我的 build.sbt 中将“com-google-cloud-pubsub”注释为“提供”。我希望这对你有用。

<dependencies>
    <dependency>
        <groupId>com.google.cloud</groupId>
        <artifactId>google-cloud-pubsub</artifactId>
        <version>0.8.0</version>
    </dependency>
</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>3.0.0</version>
            <configuration>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
            </configuration>
            <executions>
                <execution>
                    <id>assemble-all</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

【讨论】:

以上是关于Google Cloud Platform:无法从 Container Engine 访问 Pubsub的主要内容,如果未能解决你的问题,请参考以下文章

错误4003:无法ssh登录到我在Google Cloud Platform中创建的实例

适用于 Python 和 AWS Lambda 的 Google Cloud Platform API 不兼容:无法导入名称“cygrpc”

为什么无法通过Google Cloud Platform上的Chrome RDP连接到Windows VM?

如何从 google-cloud-platform vminstance 中的 pubsub 回调函数调用全局变量?

由于依赖项冲突(Python 3),无法在我们的 python 应用程序(Google Cloud Platform)中安装 google-api-core 包

有关如何从 Google Cloud Platform 调用外部网络服务的任何信息?