Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Let_s_Go_Talk__6__GoのLT会_.pdf
Search
虎の穴ラボ株式会社
January 19, 2023
Technology
0
95
Let_s_Go_Talk__6__GoのLT会_.pdf
Let's Go Talk #6 (GoのLT会)の発表資料になります。
https://connehito.connpass.com/event/270615/
虎の穴ラボ株式会社
January 19, 2023
Tweet
Share
More Decks by 虎の穴ラボ株式会社
See All by 虎の穴ラボ株式会社
Deno Deploy で Web Cache API を 使えるようになったので試した知見
toranoana
1
200
【虎の穴ラボ Tech Talk】虎の穴ラボTech Talk説明資料
toranoana
0
190
虎の穴ラボ Tech Talk_CDKでFargate環境構築
toranoana
1
220
虎の穴ラボスキルアップ支援制度の利用例
toranoana
0
660
【虎の穴ラボ Tech Talk #1】Ansible Lintの警告への対処
toranoana
1
190
【虎の穴ラボ Tech Talk #1】虎の穴ラボの利用技術紹介
toranoana
0
250
サークルポータルを支えるフロントエンドアーキテクチャの選定
toranoana
1
290
フレックスタイム制度の活用例
toranoana
1
1k
【toranoana.deno#17】 DenoでGitHubのバックアップ with ChatGPT
toranoana
1
260
Other Decks in Technology
See All in Technology
テストコード品質を高めるためにMutation Testingライブラリ・Strykerを実戦導入してみた話
ysknsid25
7
2.6k
Amazon CloudWatch Network Monitor のススメ
yuki_ink
1
200
透過型SMTPプロキシによる送信メールの可観測性向上: Update Edition / Improved observability of outgoing emails with transparent smtp proxy: Update edition
linyows
2
210
Oracle Cloud Infrastructureデータベース・クラウド:各バージョンのサポート期間
oracle4engineer
PRO
28
12k
The Rise of LLMOps
asei
7
1.4k
ハイパーパラメータチューニングって何をしているの
toridori_dev
0
140
隣接領域をBeyondするFinatextのエンジニア組織設計 / beyond-engineering-areas
stajima
1
270
[FOSS4G 2024 Japan LT] LLMを使ってGISデータ解析を自動化したい!
nssv
1
210
リンクアンドモチベーション ソフトウェアエンジニア向け紹介資料 / Introduction to Link and Motivation for Software Engineers
lmi
4
300k
オープンソースAIとは何か? --「オープンソースAIの定義 v1.0」詳細解説
shujisado
7
810
【令和最新版】AWS Direct Connectと愉快なGWたちのおさらい
minorun365
PRO
5
750
OCI Vault 概要
oracle4engineer
PRO
0
9.7k
Featured
See All Featured
4 Signs Your Business is Dying
shpigford
180
21k
Fantastic passwords and where to find them - at NoRuKo
philnash
50
2.9k
Typedesign – Prime Four
hannesfritz
40
2.4k
Code Review Best Practice
trishagee
64
17k
Being A Developer After 40
akosma
86
590k
It's Worth the Effort
3n
183
27k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
109
49k
Scaling GitHub
holman
458
140k
Speed Design
sergeychernyshev
25
610
Building Your Own Lightsaber
phodgson
103
6.1k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
169
50k
The Art of Programming - Codeland 2020
erikaheidi
52
13k
Transcript
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. GoからOpenSearchServiceを 使ってみる
虎の穴ラボ株式会社 浜田拓実 (sheltie) 2023 Let's Go Talk #6 (GoのLT会)
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. 自己紹介 浜田
拓実(ハマダ タクミ) • 2022/06 入社 • 虎の穴ラボ 通販チーム エンジニア Goを始めたきっかけ • 社内勉強会でGoが取り上げられた • 昨年末よりGoでWebアプリを作り始める
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. アジェンダ •
作成物の概要 • OpenSearchについて • ドキュメントの登録 • ドキュメントの検索 • 注意点 • まとめ
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. 作成物の概要 ・楽天APIから商品情報を日次で取得
・取得データをOpenSearchに登録 ・キーワードでOpenSearchを検索 GoとOpenSearchの練習のため作成
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. OpenSearchについて
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. OpenSearchについて OpenSearchとは・・・
• ElasticSearchをフォークして 開発が行われている • データ検索、分析、可視化が可能。 • 100%オープンソース
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. OpenSearchについて Goから利用する
• 公式から環境構築のDockerサンプルが 提供されている • Go クライアントが提供されている
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. OpenSearchについて Dockerサンプル
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. Goから利用する (ドキュメントの登録)
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. ドキュメントの登録 公式サンプルを利用する
• Goクライアントを利用した実装例 • CRUD操作を一通り実施
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. ドキュメントの登録 APIはJSON形式でやりとり
• APIのパラメータに適した 構造体の定義 • json.Marshal / Unmarshalを利用 • JSON-to-GoでJSONを構造体に変換 https://mholt.github.io/json-to-go/
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. ドキュメントの登録 実際の実装内容
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. Goから利用する (ドキュメントの検索)
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. ドキュメントの検索 公式サンプルを利用する
• こちらもJSON形式でやりとり • 独特な検索クエリに慣れる必要あり
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. ドキュメントの検索 実際の実装内容(前半)
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. ドキュメントの検索 実際の実装内容(後半)
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. 注意点
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. 注意点 大量のドキュメントをループで登録中、以下のようなエラーが発生
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. 注意点 公式サンプルとの相違点
• 更新サンプルはレスポンスを 閉じる処理が省略されている • Go Packagesのサンプルでは レスポンスを閉じる処理有り レスポンスを閉じないと、 先ほどのエラーが発生するため注意
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. まとめ
Copyright (C) 2020 Toranoana Inc. All Rights Reserved. まとめ GoからOpenSearchを取り扱うのは比較的簡単
・OpenSearch、Go共にサンプルが充実 ・Goクライアントが用意されている ・GoとJSONの相性が良い(気がする) OpenSearchはGoと相性の良い 検索エンジンだと感じました