elasticsearch logo

Truy vấn document – dữ liệu Elasticsearch với Elasticsearch Head

Truy vấn document – dữ liệu Elasticsearch với Elasticsearch Head. (Xem thêm: Hướng dẫn Elasticsearch) Trong các ví dụ API Elasticsearch, mình sẽ dùng postman để gửi request Elasticsearch Head là gì? Elasticsearch Head là 1 extensions, 1 app chạy trên trình duyệt chrome cho phép kết nối tới Elasticsearch và thực hiện truy vấn dữ liệu. Elasticsearch Read more about Truy vấn document – dữ liệu Elasticsearch với Elasticsearch Head[…]

elasticsearch logo

API xóa dữ liệu – Delete document trong Elasticsearch

API xóa dữ liệu – Delete document trong Elasticsearch. (Xem thêm: Hướng dẫn Elasticsearch) Trong các ví dụ API Elasticsearch, mình sẽ dùng postman để gửi request Xóa dữ liệu trong Elasticsearch Có 2 cách xóa dữ liệu trong Elasticsearch là dùng method DELETE hoặc dùng method POST với thẻ _delete_by_query Cách 1: Sử dụng DELETE API DELETE /index_name/type_name/id Read more about API xóa dữ liệu – Delete document trong Elasticsearch[…]

elasticsearch logo

API cập nhật dữ liệu – Update document Elasticsearch

API cập nhật dữ liệu – Update document Elasticsearch. (Xem thêm: Hướng dẫn Elasticsearch) Trong các ví dụ API Elasticsearch, mình sẽ dùng postman để gửi request API Update document Elasticsearch. Có 2 cách để cập nhật, chỉnh sửa document trong Elasticsearch. Cách 1: Modifiy document bằng method PUT PUT /index_name/type_name/id { “field”: “data” } Ví dụ: Update Read more about API cập nhật dữ liệu – Update document Elasticsearch[…]

elasticsearch logo

API đọc dữ liệu – Tìm kiếm dữ liệu, document Elasticsearch

API đọc dữ liệu – Tìm kiếm dữ liệu, document Elasticsearch. (Xem thêm: Hướng dẫn Elasticsearch) Trong các ví dụ API Elasticsearch, mình sẽ dùng postman để gửi request API Search document Elasticsearch Để search document trong Elasticsearch ta dùng method GET với path _search Tìm tất cả document trong tất cả các index GET /_search Hoặc GET Read more about API đọc dữ liệu – Tìm kiếm dữ liệu, document Elasticsearch[…]

elasticsearch logo

API Lấy document theo Id, Select document Elasticsearch

API Lấy document theo Id, Select document Elasticsearch (Xem thêm: Hướng dẫn Elasticsearch) Trong các ví dụ API Elasticsearch, mình sẽ dùng postman để gửi request API get document Elasticsearch. GET /index_name/type_name/id Ví dụ: Lấy document có id = 1 trong type player của index stackjava Tuy nhiên trong dữ liệu trả về có khá nhiều Read more about API Lấy document theo Id, Select document Elasticsearch[…]

elasticsearch logo

API tạo dữ liệu – Insert, thêm dữ liệu vào Elasticsearch

API tạo dữ liệu – Insert, thêm dữ liệu vào Elasticsearch (Xem thêm: Hướng dẫn Elasticsearch) Trong các ví dụ API Elasticsearch, mình sẽ dùng postman để gửi request API tạo document Elasticsearch. Có 2 cách để tạo document trong Elasticsearch: Cách 1: Dùng API POST POST /index_name/type_name/id { “field” : “value” } Trong đó: index_name Read more about API tạo dữ liệu – Insert, thêm dữ liệu vào Elasticsearch[…]

elasticsearch logo

API xóa Index trong Elasticsearch – Hướng dẫn xóa Index Elasticsearch

API xóa Index trong Elasticsearch – Hướng dẫn xóa Index Elasticsearch (Xem thêm: Hướng dẫn Elasticsearch) Trong các ví dụ API Elasticsearch, mình sẽ dùng postman để gửi request API xóa Index trong Elasticsearch Để tạo Index trong Elasticsearch ta dùng method DELETE với url / DELETE /index_name Ví dụ xóa index “user” DELETE localhost:9200/user Trường Read more about API xóa Index trong Elasticsearch – Hướng dẫn xóa Index Elasticsearch[…]

elasticsearch logo

API tạo Index trong Elasticsearch – Hướng dẫn tạo Index Elasticsearch

API tạo Index trong Elasticsearch – Hướng dẫn tạo Index Elasticsearch (Xem thêm: Hướng dẫn các API trong Elasticsearch) (Xem thêm:  API xóa Index trong Elasticsearch) (Xem thêm: API liệt kê Index trong Elasticsearch) Trong các ví dụ API Elasticsearch, mình sẽ dùng postman để gửi request API tạo Index trong Elasticsearch Để tạo Index trong Read more about API tạo Index trong Elasticsearch – Hướng dẫn tạo Index Elasticsearch[…]

elasticsearch logo

API liệt kê, hiển thị các Type, Mapping trong Elasticsearch

API liệt kê, hiển thị các Type, Mapping trong Elasticsearch (Xem thêm: Hướng dẫn Elasticsearch) Trong các ví dụ API Elasticsearch, mình sẽ dùng postman để gửi request Hiển thị, select type trong Elasticsearch Để hiển thị, lấy danh sách các type / mapping trong Elasticsearch ta dùng method GET với thẻ _mapping Thẻ _mapping dùng để lấy Read more about API liệt kê, hiển thị các Type, Mapping trong Elasticsearch[…]

elasticsearch logo

API liệt kê, hiển thị các Index trong Elasticsearch

API liệt kê, hiển thị các Index trong Elasticsearch (Xem thêm: Hướng dẫn các API trong Elasticsearch) (Xem thêm: Hướng dẫn  API xóa Index trong Elasticsearch) (Xem thêm: Hướng dẫn API tạo Index trong Elasticsearch) Trong các ví dụ API Elasticsearch, mình sẽ dùng postman để gửi request API liệt kê, hiển thị các Index Read more about API liệt kê, hiển thị các Index trong Elasticsearch[…]

stackjava.com