gpt4 book ai didi

java - 使用 java 从 Dataproc 读取谷歌云存储时出现 NoSuchMethodError

转载 作者:行者123 更新时间:2023-12-04 16:09:10 27 4
gpt4 key购买 nike

这是我读取云存储文件的方法

public static String getStringObject(String bucketName, String fileName) throws Exception{
BlobId blobId = BlobId.of(bucketName, fileName);
byte[] content = storage.readAllBytes(blobId);
String contentString = new String(content, UTF_8);
return contentString;
}

当我从我的开发环境调用此方法以从存储桶中读取文件时,它工作正常。但是,当我在运行 spark 作业时从 Dataproc 集群调用此方法时,它会抛出以下错误。

Exception in thread "main" java.lang.NoSuchMethodError: com.google.common.util.concurrent.MoreExecutors.directExecutor()Ljava/util/concurrent/Executor;
at com.google.api.gax.retrying.BasicRetryingFuture.<init>(BasicRetryingFuture.java:77)
at com.google.api.gax.retrying.DirectRetryingExecutor.createFuture(DirectRetryingExecutor.java:75)
at com.google.cloud.RetryHelper.runWithRetries(RetryHelper.java:53)
at com.google.cloud.storage.StorageImpl.readAllBytes(StorageImpl.java:460)`

这是我的 maven pom.xml 的一部分

<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-storage</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>19.0</version>
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client</artifactId>
<version>1.22.0</version>
</dependency>

我在这里做错了什么?

最佳答案

在 Dataproc 上运行时,您经常会在客户端应用程序类路径中找到 Hadoop 库。这允许与 HDFS 和 GCS 交互,但也意味着存在 guava 的 Hadoop 版本。

您可以在 SO answer 中找到使用阴影解决此问题的方法

关于java - 使用 java 从 Dataproc 读取谷歌云存储时出现 NoSuchMethodError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46143087/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com