Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

Update examples using updated bulk (available in 9.3.1)

オープン
#2 コメント 0 件 リアクション 0 件 担当者 1 名 GitHub で見る

@Kiryous がすでに取り組んでいます。

2026年1月27日 から。

  • #3 @Kiryous による — マージされずにクローズ

評価

この issue はまだ評価されていません。

説明

⚠️ Breaking Change: elasticsearch.bulk Step
The elasticsearch.bulk step now properly supports all bulk operations (index, create, update, delete) and follows the official Elasticsearch bulk API format.

It's already in main and will be backported to 9.3.1.

What changed:

Previously, documents were auto-wrapped with { index: {} }. Now you must explicitly specify the action for each document.

Migration required:

Before:

operations:

  • name: "Yellowstone"
    category: "geothermal"
  • name: "Grand Canyon"
    category: "canyon"
After:

operations:

  • create: {}
  • name: "Yellowstone"
    category: "geothermal"
  • create: {}
  • name: "Grand Canyon"
    category: "canyon"

New capabilities:

All bulk operations now work: create, index, update, delete
refresh parameter now works correctly
Update operations with _id and doc fields supported

主要言語
JavaScript
スター
59
フォーク
35
平均マージ
2日 6時間
マージ済み PR(30日)
11

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

elastic/workflows のほかの issue

elastic/workflows の issue をすべて見る

似ている issue

JavaScript の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。