赞
踩
elasticsearch
中的酒店数据来自于mysql
数据库,因此mysql
数据发生改变时,elasticsearch
也必须跟着改变,这个就是elasticsearch
与mysql
之间的数据同步。
常见的数据同步方案有三种:
binlog
方案一:同步调用
基本步骤如下:
hotel-demo
对外提供接口,用来修改elasticsearch
中的数据hotel-demo
提供的接口,方案二:异步通知
流程如下:
hotel-admin
对mysql
数据库数据完成增、删、改后,发送MQ
消息hotel-demo
监听MQ
,接收到消息后完成elasticsearch
数据修改binlog
方案三:监听binlog
流程如下:
mysql
开启binlog
功能mysql
完成增、删、改操作都会记录在binlog
中hotel-demo
基于canal
监听binlog
变化,实时更新elasticsearch
中的内容方式一:同步调用
方式二:异步通知
mq
的可靠性方式三:监听binlog
binlog
增加数据库负担、实现复杂度高创建的hotel-admin
项目作为酒店管理的微服务。当酒店数据发生增、删、改时,要求对elasticsearch
中数据也要完成相同操作。
步骤:
创建的hotel-admin
项目,启动并测试酒店数据的CRUD
声明exchange
、queue
、RoutingKey
在hotel-admin
中的增、删、改业务中完成消息发送
在hotel-demo
中完成消息监听,并更新elasticsearch
中数据
启动并测试数据同步功能
hotel-admin
创建hotel-admin
项目:
运行后,访问http://localhost:8099
其中包含了酒店的CRUD
功能:
MQ
结构如图:
在hotel-admin
、hotel-demo
中引入rabbitmq
的依赖:
<!--amqp-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-amqp</artifactId>
</dependency>
在hotel-admin
和hotel-demo
中的cn.itcast.hotel.constatnts
包下新建一个类MqConstants
:
package com.dcxuexi.hotel.constants; /*** * @Title MqConstants * @Description TOTD * @Auter DongChuang * @Date 2023/4/23 22:23 * @Version 1.0.0 */ public class MqConstants { /** * 交换机 */ public final static String HOTEL_EXCHANGE = "hotel.topic"; /** * 监听新增和修改的队列 */ public final static String HOTEL_INSERT_QUEUE = "hotel.insert.queue"; /** * 监听删除的队列 */ public final static String HOTEL_DELETE_QUEUE = "hotel.delete.queue"; /** * 新增或修改的RoutingKey */ public final static String HOTEL_INSERT_KEY = "hotel.insert"; /** * 删除的RoutingKey */ public final static String HOTEL_DELETE_KEY = "hotel.delete"; }
在hotel-demo
中,定义配置类,声明队列、交换机:
package com.dcxuexi.hotel.config; import com.dcxuexi.hotel.constants.MqConstants; import org.springframework.amqp.core.Binding; import org.springframework.amqp.core.BindingBuilder; import org.springframework.amqp.core.Queue; import org.springframework.amqp.core.TopicExchange; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; /*** * @Title MqConfig * @Description TOTD * @Auter DongChuang * @Date 2023/4/23 22:25 * @Version 1.0.0 */ @Configuration public class MqConfig { @Bean public TopicExchange topicExchange(){ return new TopicExchange(MqConstants.HOTEL_EXCHANGE, true, false); } @Bean public Queue insertQueue(){ return new Queue(MqConstants.HOTEL_INSERT_QUEUE, true); } @Bean public Queue deleteQueue(){ return new Queue(MqConstants.HOTEL_DELETE_QUEUE, true); } @Bean public Binding insertQueueBinding(){ return BindingBuilder.bind(insertQueue()).to(topicExchange()).with(MqConstants.HOTEL_INSERT_KEY); } @Bean public Binding deleteQueueBinding(){ return BindingBuilder.bind(deleteQueue()).to(topicExchange()).with(MqConstants.HOTEL_DELETE_KEY); } }
MQ
消息在hotel-admin
中的增、删、改业务中分别发送MQ
消息:
MQ
消息hotel-demo
接收到MQ
消息要做的事情包括:
hotel
的id
查询hotel
信息,然后新增一条数据到索引库hotel
的id
删除索引库中的一条数据1)首先在hotel-demo
的com.dcxuexi.hotel.service
包下的IHotelService
中新增新增、删除业务
void deleteById(Long id);
void insertById(Long id);
2)给hotel-demo
中的com.dcxuexi.hotel.service.impl
包下的HotelService
中实现业务:
@Override public void deleteById(Long id) { try { // 1.准备Request DeleteRequest request = new DeleteRequest("hotel", id.toString()); // 2.发送请求 client.delete(request, RequestOptions.DEFAULT); } catch (IOException e) { throw new RuntimeException(e); } } @Override public void insertById(Long id) { try { // 0.根据id查询酒店数据 Hotel hotel = getById(id); // 转换为文档类型 HotelDoc hotelDoc = new HotelDoc(hotel); // 1.准备Request对象 IndexRequest request = new IndexRequest("hotel").id(hotel.getId().toString()); // 2.准备Json文档 request.source(JSON.toJSONString(hotelDoc), XContentType.JSON); // 3.发送请求 client.index(request, RequestOptions.DEFAULT); } catch (IOException e) { throw new RuntimeException(e); } }
3)编写监听器
在hotel-demo
中的com.dcxuexi.hotel.mq
包新增一个类:
package com.dcxuexi.hotel.mq; import com.dcxuexi.hotel.constants.MqConstants; import com.dcxuexi.hotel.service.IHotelService; import org.springframework.amqp.rabbit.annotation.RabbitListener; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; /*** * @Title HotelListener * @Description TOTD * @Auter DongChuang * @Date 2023/4/28 21:28 * @Version 1.0.0 */ @Component public class HotelListener { @Autowired private IHotelService hotelService; /** * 监听酒店新增或修改的业务 * @param id 酒店id */ @RabbitListener(queues = MqConstants.HOTEL_INSERT_QUEUE) public void listenHotelInsertOrUpdate(Long id){ hotelService.insertById(id); } /** * 监听酒店删除的业务 * @param id 酒店id */ @RabbitListener(queues = MqConstants.HOTEL_DELETE_QUEUE) public void listenHotelDelete(Long id){ hotelService.deleteById(id); } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。