0

このサンプル ( https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-node-get-started-send ) を使用しようとしていますが、未読データのみを読み取ることができません. もう1つ、2つの異なるエラーが発生しています

1) ETIMEDOUT 40.112.242.0:5671 を接続します。

2) チェックポイントの更新中にリースが失われました

ノード js サンプルでは、​​チェックポイントを設定できません。Azure/azure-sdk-for-js も試しました。しかし、上記と同じエラーが表示されます。

.netcore サンプルも実行した場合、それらは正常に動作しているため、ノード js サンプルが正常に動作しない理由がわかりません。

この問題を読み取り専用の未読データと新しいデータに修正する方法を教えてください。

4

1 に答える 1

0

node.js の場合、以下のコードを使用してチェックポイントを設定してください。私の側ではうまく機能します。

const { EventProcessorHost, delay } = require("@azure/event-processor-host");

//your eventhub name
const path = "myeventhub"; 

//your azure storage connection string
const storageCS = "DefaultEndpointsProtocol=https;AccountName=xx;AccountKey=xx;EndpointSuffix=core.windows.net";

//your eventhub namespace connectionstring 
const ehCS = "Endpoint=sb://xxx.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=xxx"

//your blob storage container name
const storageContainerName = "test6";

async function main() {
  // Create the Event Processo Host
  const eph = EventProcessorHost.createFromConnectionString(
    EventProcessorHost.createHostName("my-host"),
    storageCS,
    storageContainerName,
    ehCS,
    {
      eventHubPath: path
    }

  );
  let count = 0;
  // Message event handler
  const onMessage = async (context/*PartitionContext*/, data /*EventData*/) => {
    console.log(">>>>> Rx message from '%s': '%s'", context.partitionId, data.body);
    count++;

    return await context.checkpoint();
  };
  // Error event handler
  const onError = (error) => {
    console.log(">>>>> Received Error: %O", error);
  };
  // start the EPH
  await eph.start(onMessage, onError);
  // After some time let' say 2 minutes
  await delay(120000);
  // This will stop the EPH.
  await eph.stop();
}

main().catch((err) => {
  console.log(err);
});

チェックポイントが BLOB コンテナーに正しく設定されていることがわかります。

ここに画像の説明を入力

于 2019-10-24T06:56:45.273 に答える