dak ブログ

python、rubyなどのプログラミング、MySQL、サーバーの設定などの備忘録。レゴの写真も。

TypeScript で elastic cloud に接続

2024-03-08 10:18:26 | elasticsearch
TypeScript で elastic cloud に接続する方法のメモ。
import { Client } from '@elastic/elasticsearch';

(async () => {
  const client = new Client({
    node: '{ノード (https://...)}',
    cloud: {
      id: '{Cloud ID}'
    },
    auth: {
      username: '{ユーザ名}',
      password: '{パスワード}',
    }
  });

  const cond = {
    index: '...',
    query: {
      match_all: {}
    },
    size: 10
  };

  const res = await client.search(cond);
  console.log(res);
})();


この記事についてブログを書く
« MySQL の check 制約 | トップ | curl で elastic cloud にア... »

elasticsearch」カテゴリの最新記事