java - 由 : io. grpc.StatusRuntimeException: NOT_FOUND: Resource not found 引起

标签 java publish-subscribe google-cloud-pubsub

我尝试编写 pubsub 测试:

@Test
public void sendTopic() throws Exception {

    CustomSubscriber customSubscriber = new CustomSubscriber();
    customSubscriber.startAndWait();

    CustomPublisher customPublisher = new CustomPublisher();
    customPublisher.publish("123");
}

和:

public CustomSubscriber() {
    this.subscriptionName = SubscriptionName.create(SdkServiceConfig.s.GCP_PROJECT_ID, SdkServiceConfig.s.TOPIC_ID );
    this.receiveMsgAction = (message, consumer) -> {
        // handle incoming message, then ack/nack the received message
        System.out.println("Id : " + message.getMessageId());
        System.out.println("Data : " + message.getData().toStringUtf8());
        consumer.ack();
    };
    this.afterStopAction = new ApiFutureEmpty();
}

// [TARGET startAsync()]
public void startAndWait() throws Exception {
    Subscriber subscriber = createSubscriberWithCustomCredentials();
    subscriber.startAsync();

    // Wait for a stop signal.
    afterStopAction.get();
    subscriber.stopAsync().awaitTerminated();
}

和:

public ApiFuture<String> publish(String message) throws Exception {
    ByteString data = ByteString.copyFromUtf8(message);
    PubsubMessage pubsubMessage = PubsubMessage.newBuilder().setData(data).build();
    ApiFuture<String> messageIdFuture = publisher.publish(pubsubMessage);

    ApiFutures.addCallback(messageIdFuture, new ApiFutureCallback<String>() {
        public void onSuccess(String messageId) {
            System.out.println("published with message id: " + messageId);
        }

        public void onFailure(Throwable t) {
            System.out.println("failed to publish: " + t);
        }
    });
    return messageIdFuture;
}

/**
 * Example of creating a {@code Publisher}.
 */
// [TARGET newBuilder(TopicName)]
// [VARIABLE "my_project"]
// [VARIABLE "my_topic"]
public void createPublisher(String projectId, String topicId) throws Exception {
    TopicName topic = TopicName.create(projectId, topicId);
    try {
        publisher = createPublisherWithCustomCredentials(topic);

    } finally {
        // When finished with the publisher, make sure to shutdown to free up resources.
        publisher.shutdown();
    }
}

当我运行代码时出现此错误:

Caused by: io.grpc.StatusRuntimeException: NOT_FOUND: Resource not found (resource=add-partner-request).

我错过了什么?

最佳答案

任何名为“add-partner-request”的实体均未成功创建或不属于该项目。如果“add-partner-request”是主题,那么你实际上需要创建主题; TopicName.create(projectId, topicId) 行不足以创建主题本身。通常,人们会在 Cloud Pub/Sub portion of the Cloud console 中创建主题或通过 gcloud 命令,例如,

gcloud pubsub topics create add-partner-request

确保您在控制台中登录的项目是代码中使用的项目。您还应该在通过 --project 标志创建主题时明确设置项目,或者验证默认项目是否正确:

gcloud config list --format='text(core.project)'

对于测试,通常在代码中创建和删除。例如,要创建一个主题:

Topic topic = null;
ProjectTopicName topicName = ProjectTopicName.of(projectId, topicId);
TopicAdminClient topicAdminClient = TopicAdminClient.create();
try {
  topic = topicAdminClient.createTopic(topicName);
} catch (APIException e) {
  System.out.println("Issue creating topic!");
}

如果“add-partner-request”是订阅名称,则同样适用。 gcloud 命令会稍微改变一下:

gcloud pubsub subscriptions create add-partner-request --topic=<topic name>

在 Java 中创建订阅的命令如下:

Subscription subscription = null;
ProjectTopicName topicName = ProjectTopicName.of(projectId, topicId);
ProjectSubscriptionName subscriptionName = ProjectSubscriptionName.of(projectId, subscriptionId);
SubscriptionAdminClient subscriptionAdminClient = SubscriptionAdminClient.create();
try {
  subscription = subscriptionAdminClient.createSubscription(
          subscriptionName, topicName, PushConfig.newBuilder().build(), 600);
} catch (APIException e) {
  System.out.println("Issue creating topic!");
}

关于java - 由 : io. grpc.StatusRuntimeException: NOT_FOUND: Resource not found 引起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44369775/

相关文章:

java - Spring MVC(无法按正确的顺序实例化我的对象)

javascript - AngularJS 和 Autobahn.js WAMP 实现

.net - 哪些技术可用于使用 .NET 的发布/订阅模型?

java - Spring - 按非空数组过滤在 Mongo 中不起作用

java - JMS 客户端选择器不起作用

web-services - 微服务架构中的消息传递

node.js - 谷歌发布订阅服务 : drop nacked message after n retries

google-app-engine - 与对象更改通知相比,Google Club Pub/Sub 的可扩展性如何

google-cloud-pubsub - 确认的消息在 Google Pubsub 中徘徊

java - 将微调器值与数组值相乘