問題タブ [aws-step-functions]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
1377 参照

node.js - AWS ステップ関数 並列

AWS ステップ関数を試しています。私が作成しようとしているもの。

  1. dynamoDB からエンドポイントのリストを取得します ( https://user:password@server1.com, https://user2:password@server2.com, etc..)
  2. 各ドメインから、ID のリストを取得します。/all
  3. 結果の各 id に対して、一連の REST などを実行したいhttps://user:password@server1.com/device/{id}(各ドメインに対して一度に 1 つのリクエストのみを並行して)
  4. 結果をdynamoDBに保存し、結果が重複しているかどうかを確認します。

私は残りの呼び出しを行う方法とdynamoDBなどに保存する方法を知っていますが、問題または答えが見つからない. dynamoDB から取得した配列内の各ドメインに対して /all を並行して実行するにはどうすればよいですか?