详解redis缓存与数据库一致性问题解决

数据库与缓存读写模式策略

写完数据库后是否需要马上更新缓存还是直接删除缓存?

(1)、如果写数据库的值与更新到缓存值是一样的,不需要经过任何的计算,可以马上更新缓存,但是如果对于那种写数据频繁而读数据少的场景并不合适这种解决方案,因为也许还没有查询就被删除或修改了,这样会浪费时间和资源

(2)、如果写数据库的值与更新缓存的值不一致,写入缓存中的数据需要经过几个表的关联计算后得到的结果插入缓存中,那就没有必要马上更新缓存,只有删除缓存即可,等到查询的时候在去把计算后得到的结果插入到缓存中即可。

所以一般的策略是当更新数据时,先删除缓存数据,然后更新数据库,而不是更新缓存,等要查询的时候才把最新的数据更新到缓存

数据库与缓存双写情况下导致数据不一致问题

场景一
当更新数据时,如更新某商品的库存,当前商品的库存是100,现在要更新为99,先更新数据库更改成99,然后删除缓存,发现删除缓存失败了,这意味着数据库存的是99,而缓存是100,这导致数据库和缓存不一致。

场景一解决方案 

这种情况应该是先删除缓存,然后在更新数据库,如果删除缓存失败,那就不要更新数据库,如果说删除缓存成功,而更新数据库失败,那查询的时候只是从数据库里查了旧的数据而已,这样就能保持数据库与缓存的一致性。

场景二
在高并发的情况下,如果当删除完缓存的时候,这时去更新数据库,但还没有更新完,另外一个请求来查询数据,发现缓存里没有,就去数据库里查,还是以上面商品库存为例,如果数据库中产品的库存是100,那么查询到的库存是100,然后插入缓存,插入完缓存后,原来那个更新数据库的线程把数据库更新为了99,导致数据库与缓存不一致的情况

场景二解决方案
遇到这种情况,可以用队列的去解决这个问,创建几个队列,如20个,根据商品的id去做hash值,然后对队列个数取摸,当有数据更新请求时,先把它丢到队列里去,当更新完后在从队列里去除,如果在更新的过程中,遇到以上场景,先去缓存里看下有没有数据,如果没有,可以先去队列里看是否有相同商品id在做更新,如果有也把查询的请求发送到队列里去,然后同步等待缓存更新完成。
这里有一个优化点,如果发现队列里有一个查询请求了,那么就不要放新的查询操作进去了,用一个while(true)循环去查询缓存,循环个200ms左右,如果缓存里还没有则直接取数据库的旧数据,一般情况下是可以取到的。

在高并发下解决场景二要注意的问题

(1)读请求时长阻塞
 由于读请求进行了非常轻度的异步化,所以一定要注意读超时的问题,每个读请求必须在超时间内返回,该解决方案最大的风险在于可能数据更新很频繁,导致队列中挤压了大量的更新操作在里面,然后读请求会发生大量的超时,最后导致大量的请求直接走数据库,像遇到这种情况,一般要做好足够的压力测试,如果压力过大,需要根据实际情况添加机器。
(2)请求并发量过高
 这里还是要做好压力测试,多模拟真实场景,并发量在最高的时候qps多少,扛不住就要多加机器,还有就是做好读写比例是多少
(3)多服务实例部署的请求路由
可能这个服务部署了多个实例,那么必须保证说,执行数据更新操作,以及执行缓存更新操作的请求,都通过nginx服务器路由到相同的服务实例上
(4)热点商品的路由问题,导致请求的倾斜
某些商品的读请求特别高,全部打到了相同的机器的相同丢列里了,可能造成某台服务器压力过大,因为只有在商品数据更新的时候才会清空缓存,然后才会导致读写并发,所以更新频率不是太高的话,这个问题的影响并不是很大,但是确实有可能某些服务器的负载会高一些。

数据库与缓存数据一致性解决方案流程图

数据库与缓存数据一致性解决方案对应代码

商品库存实体

package com.shux.inventory.entity;
/**
 **********************************************
 * 描述:
 * simba.hua
 * 2017年8月30日
 **********************************************
**/
public class inventoryproduct {
 private integer productid;
 private long inventorycnt;
 
 public integer getproductid() {
  return productid;
 }
 public void setproductid(integer productid) {
  this.productid = productid;
 }
 public long getinventorycnt() {
  return inventorycnt;
 }
 public void setinventorycnt(long inventorycnt) {
  inventorycnt = inventorycnt;
 }
 
}

请求接口

/**
 **********************************************
 * 描述:
 * simba.hua
 * 2017年8月27日
 **********************************************
**/
public interface request {
 public void process();
 public integer getproductid();
 public boolean isforcefefresh();
}

数据更新请求

package com.shux.inventory.request;
 
import org.springframework.transaction.annotation.transactional;
 
import com.shux.inventory.biz.inventoryproductbiz;
import com.shux.inventory.entity.inventoryproduct;
 
/**
 **********************************************
 * 描述:更新库存信息
 * 1、先删除缓存中的数据
 * 2、更新数据库中的数据
 * simba.hua
 * 2017年8月30日
 **********************************************
**/
public class inventoryupdatedbrequest implements request{
 private inventoryproductbiz inventoryproductbiz;
 private inventoryproduct inventoryproduct;
 
 public inventoryupdatedbrequest(inventoryproduct inventoryproduct,inventoryproductbiz inventoryproductbiz){
  this.inventoryproduct = inventoryproduct;
  this.inventoryproductbiz = inventoryproductbiz;
 }
 @override
 @transactional
 public void process() {
  inventoryproductbiz.removeinventoryproductcache(inventoryproduct.getproductid());
  inventoryproductbiz.updateinventoryproduct(inventoryproduct);
 }
 @override
 public integer getproductid() {
  // todo auto-generated method stub
  return inventoryproduct.getproductid();
 }
 @override
 public boolean isforcefefresh() {
  // todo auto-generated method stub
  return false;
 }
 
}

查询请求

package com.shux.inventory.request;
 
import com.shux.inventory.biz.inventoryproductbiz;
import com.shux.inventory.entity.inventoryproduct;
 
/**
 **********************************************
 * 描述:查询缓存数据
 * 1、从数据库中查询
 * 2、从数据库中查询后插入到缓存中
 * simba.hua
 * 2017年8月30日
 **********************************************
**/
public class inventoryquerycacherequest implements request {
 private inventoryproductbiz inventoryproductbiz;
 private integer productid;
 private boolean isforcefefresh;
 
 public inventoryquerycacherequest(integer productid,inventoryproductbiz inventoryproductbiz,boolean isforcefefresh) {
  this.productid = productid;
  this.inventoryproductbiz = inventoryproductbiz;
  this.isforcefefresh = isforcefefresh;
 }
 @override
 public void process() {
  inventoryproduct inventoryproduct = inventoryproductbiz.loadinventoryproductbyproductid(productid);
  inventoryproductbiz.setinventoryproductcache(inventoryproduct);
 }
 @override
 public integer getproductid() {
  // todo auto-generated method stub
  return productid;
 }
 public boolean isforcefefresh() {
  return isforcefefresh;
 }
 public void setforcefefresh(boolean isforcefefresh) {
  this.isforcefefresh = isforcefefresh;
 }
 
}

spring启动时初始化队列线程池

package com.shux.inventory.thread;
 
import java.util.concurrent.arrayblockingqueue;
import java.util.concurrent.executorservice;
import java.util.concurrent.executors;
 
import com.shux.inventory.request.request;
import com.shux.inventory.request.requestqueue;
import com.shux.utils.other.sysconfigutil;
 
/**
 **********************************************
 * 描述:请求处理线程池,初始化队列数及每个队列最多能处理的数量
 * simba.hua
 * 2017年8月27日
 **********************************************
**/
public class requestprocessorthreadpool {
 private static final int blockingqueuenum = sysconfigutil.get("request.blockingqueue.number")==null?10:integer.valueof(sysconfigutil.get("request.blockingqueue.number").tostring());
 private static final int queuedatanum = sysconfigutil.get("request.everyqueue.data.length")==null?100:integer.valueof(sysconfigutil.get("request.everyqueue.data.length").tostring());
 private executorservice threadpool = executors.newfixedthreadpool(blockingqueuenum);
 private requestprocessorthreadpool(){
  for(int i=0;i<blockingqueuenum;i++){//初始化队列
   arrayblockingqueue<request> queue = new arrayblockingqueue<request>(queuedatanum);//每个队列中放100条数据
   requestqueue.getinstance().addqueue(queue);
   threadpool.submit(new requestprocessorthread(queue));//把每个queue交个线程去处理,线程会处理每个queue中的数据
  }
 }
 public static class singleton{
  private static requestprocessorthreadpool instance;
  static{
   instance = new requestprocessorthreadpool();
  }
  public static requestprocessorthreadpool getinstance(){
   return instance;
  }
 }
 public static requestprocessorthreadpool getinstance(){
  return singleton.getinstance();
 }
 /**
  * 初始化线程池
  */
 public static void init(){
  getinstance();
 }
}

请求处理线程

package com.shux.inventory.thread;
 
import java.util.map;
import java.util.concurrent.arrayblockingqueue;
import java.util.concurrent.callable;
 
import com.shux.inventory.request.inventoryupdatedbrequest;
import com.shux.inventory.request.request;
import com.shux.inventory.request.requestqueue;
 
/**
 **********************************************
 * 描述:请求处理线程
 * simba.hua
 * 2017年8月27日
 **********************************************
**/
public class requestprocessorthread implements callable<boolean>{
 private arrayblockingqueue<request> queue;
 public requestprocessorthread(arrayblockingqueue<request> queue){
  this.queue = queue;
 }
 @override
 public boolean call() throws exception {
  request request = queue.take();
  map<integer,boolean> flagmap = requestqueue.getinstance().getflagmap();
  //不需要强制刷新的时候,查询请求去重处理
   if (!request.isforcefefresh()){
    if (request instanceof inventoryupdatedbrequest) {//如果是更新请求,那就置为false
     flagmap.put(request.getproductid(), true);
    } else {
     boolean flag = flagmap.get(request.getproductid());
     /**
     * 标志位为空,有三种情况
     * 1、没有过更新请求
     * 2、没有查询请求
     * 3、数据库中根本没有数据
     * 在最初情况,一旦库存了插入了数据,那就好会在缓存中也会放一份数据,
     * 但这种情况下有可能由于redis中内存满了,redis通过lru算法把这个商品给清除了,导致缓存中没有数据
     * 所以当标志位为空的时候,需要从数据库重查询一次,并且把标志位置为false,以便后面的请求能够从缓存中取
     */
     if ( flag == null) {
      flagmap.put(request.getproductid(), false);
     }
     /**
     * 如果不为空,并且flag为true,说明之前有一次更新请求,说明缓存中没有数据了(更新缓存会先删除缓存),
     * 这个时候就要去刷新缓存,即从数据库中查询一次,并把标志位设置为false
     */
     if ( flag != null && flag) {
      flagmap.put(request.getproductid(), false);
     }
     /**
     * 这种情况说明之前有一个查询请求,并且把数据刷新到了缓存中,所以这时候就不用去刷新缓存了,直接返回就可以了
     */
     if (flag != null && !flag) {
      flagmap.put(request.getproductid(), false);
      return true;
     } 
    }
   }
   request.process();
  return true;
 } 
}

请求队列

package com.shux.inventory.request;
 
import java.util.arraylist;
import java.util.list;
import java.util.map;
import java.util.concurrent.arrayblockingqueue;
import java.util.concurrent.concurrenthashmap;
 
/**
 **********************************************
 * 描述:请求队列
 * simba.hua
 * 2017年8月27日
 **********************************************
**/
public class requestqueue {
 private list<arrayblockingqueue<request>> queues = new arraylist<>();
 
 private map<integer,boolean> flagmap = new concurrenthashmap<>();
 private requestqueue(){
  
 }
 private static class singleton{
  private static requestqueue queue;
  static{
   queue = new requestqueue();
  }
  public static requestqueue getinstance() {
   return queue;
  }
 }
 
 public static requestqueue getinstance(){
  return singleton.getinstance();
 }
 public void addqueue(arrayblockingqueue<request> queue) {
  queues.add(queue);
 }
 
 public int getqueuesize(){
  return queues.size();
 }
 public arrayblockingqueue<request> getqueuebyindex(int index) {
  return queues.get(index);
 }
 
 public map<integer,boolean> getflagmap() {
  return this.flagmap;
 }
}

spring 启动初始化线程池类 

package com.shux.inventory.listener;
 
import org.springframework.context.applicationlistener;
import org.springframework.context.event.contextrefreshedevent;
 
import com.shux.inventory.thread.requestprocessorthreadpool;
 
/**
 **********************************************
 * 描述:spring 启动初始化线程池类
 * simba.hua
 * 2017年8月27日
 **********************************************
**/
public class initlistener implements applicationlistener<contextrefreshedevent>{
 
 @override
 public void onapplicationevent(contextrefreshedevent event) {
  // todo auto-generated method stub
  if(event.getapplicationcontext().getparent() != null){
   return;
  }
  requestprocessorthreadpool.init();
 }
}

异步处理请求接口

package com.shux.inventory.biz; 
import com.shux.inventory.request.request;
 
/**
 **********************************************
 * 描述:请求异步处理接口,用于路由队列并把请求加入到队列中
 * simba.hua
 * 2017年8月30日
 **********************************************
**/
public interface irequestasyncprocessbiz {
 void process(request request);
}

异步处理请求接口实现

package com.shux.inventory.biz.impl;
 
import java.util.concurrent.arrayblockingqueue;
 
import org.slf4j.logger;
import org.slf4j.loggerfactory;
import org.springframework.stereotype.service;
 
import com.shux.inventory.biz.irequestasyncprocessbiz;
import com.shux.inventory.request.request;
import com.shux.inventory.request.requestqueue;
 
 
/**
 **********************************************
 * 描述:异步处理请求,用于路由队列并把请求加入到队列中
 * simba.hua
 * 2017年8月30日
 **********************************************
**/
@service("requestasyncprocessservice")
public class requestasyncprocessbizimpl implements irequestasyncprocessbiz {
 private logger logger = loggerfactory.getlogger(getclass());
 @override
 public void process(request request) {
  // 做请求的路由,根据productid路由到对应的队列
  arrayblockingqueue<request> queue = getqueuebyproductid(request.getproductid());
  try {
   queue.put(request);
  } catch (interruptedexception e) {
   logger.error("产品id{}加入队列失败",request.getproductid(),e);
  }
 }
 
 private arrayblockingqueue<request> getqueuebyproductid(integer productid) {
  requestqueue requestqueue = requestqueue.getinstance();
  string key = string.valueof(productid);
  int hashcode;
  int hash = (key == null) ? 0 : (hashcode = key.hashcode())^(hashcode >>> 16);
  //对hashcode取摸
  int index = (requestqueue.getqueuesize()-1) & hash;
  return requestqueue.getqueuebyindex(index);
 }
}
package com.shux.inventory.biz.impl; 
import javax.annotation.resource;
 
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.stereotype.service;
 
import com.shux.inventory.biz.inventoryproductbiz;
import com.shux.inventory.entity.inventoryproduct;
import com.shux.inventory.mapper.inventoryproductmapper;
import com.shux.redis.biz.iredisbiz;
 
/**
 **********************************************
 * 描述
 * simba.hua
 * 2017年8月30日
 **********************************************
**/
@service("inventoryproductbiz")
public class inventoryproductbizimpl implements inventoryproductbiz {
 private @autowired iredisbiz<inventoryproduct> redisbiz;
 private @resource inventoryproductmapper mapper;
 @override
 public void updateinventoryproduct(inventoryproduct inventoryproduct) {
  // todo auto-generated method stub
  mapper.updateinventoryproduct(inventoryproduct);
 }
 
 @override
 public inventoryproduct loadinventoryproductbyproductid(integer productid) {
  // todo auto-generated method stub
  return mapper.loadinventoryproductbyproductid(productid);
 }
 
 @override
 public void setinventoryproductcache(inventoryproduct inventoryproduct) {
  redisbiz.set("inventoryproduct:"+inventoryproduct.getproductid(), inventoryproduct);
  
 }
 
 @override
 public void removeinventoryproductcache(integer productid) {
  redisbiz.delete("inventoryproduct:"+productid);
  
 }
 
 @override
 public inventoryproduct loadinventoryproductcache(integer productid) {
  // todo auto-generated method stub
  return redisbiz.get("inventoryproduct:"+productid);
 }
}

数据更新请求controller

package com.shux.inventory.controller;
 
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.stereotype.controller;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.responsebody;
 
import com.shux.inventory.biz.irequestasyncprocessbiz;
import com.shux.inventory.biz.inventoryproductbiz;
import com.shux.inventory.entity.inventoryproduct;
import com.shux.inventory.request.inventoryupdatedbrequest;
import com.shux.inventory.request.request;
import com.shux.utils.other.response;
 
/**
 **********************************************
 * 描述:提交更新请求
 * simba.hua
 * 2017年9月1日
 **********************************************
**/
@controller("/inventory")
public class inventoryupdatedbcontroller {
 private @autowired inventoryproductbiz inventoryproductbiz;
 private @autowired irequestasyncprocessbiz requestasyncprocessbiz;
 @requestmapping("/updatedbinventoryproduct")
 @responsebody
 public response updatedbinventoryproduct(inventoryproduct inventoryproduct){
  request request = new inventoryupdatedbrequest(inventoryproduct,inventoryproductbiz);
  requestasyncprocessbiz.process(request);
  return new response(response.success,"更新成功");
 }
}

数据查询请求controller

package com.shux.inventory.controller;
 
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.stereotype.controller;
import org.springframework.web.bind.annotation.requestmapping;
 
import com.shux.inventory.biz.irequestasyncprocessbiz;
import com.shux.inventory.biz.inventoryproductbiz;
import com.shux.inventory.entity.inventoryproduct;
import com.shux.inventory.request.inventoryquerycacherequest;
import com.shux.inventory.request.request;
 
/**
 **********************************************
 * 描述:提交查询请求
 * 1、先从缓存中取数据
 * 2、如果能从缓存中取到数据,则返回
 * 3、如果不能从缓存取到数据,则等待20毫秒,然后再次去数据,直到200毫秒,如果超过200毫秒还不能取到数据,则从数据库中取,并强制刷新缓存数据
 * simba.hua
 * 2017年9月1日
 **********************************************
**/
@controller("/inventory")
public class inventoryquerycachecontroller {
 private @autowired inventoryproductbiz inventoryproductbiz;
 private @autowired irequestasyncprocessbiz requestasyncprocessbiz;
 @requestmapping("/queryinventoryproduct")
 public inventoryproduct queryinventoryproduct(integer productid) {
   request request = new inventoryquerycacherequest(productid,inventoryproductbiz,false);
   requestasyncprocessbiz.process(request);//加入到队列中
   long starttime = system.currenttimemillis();
   long alltime = 0l;
   long endtime = 0l;
   inventoryproduct inventoryproduct = null;
   while (true) {
    if (alltime > 200){//如果超过了200ms,那就直接退出,然后从数据库中查询
     break;
    }
    try {
     inventoryproduct = inventoryproductbiz.loadinventoryproductcache(productid);
     if (inventoryproduct != null) {
      return inventoryproduct;
     } else {
      thread.sleep(20);//如果查询不到就等20毫秒
     } 
     endtime = system.currenttimemillis();
     alltime = endtime - starttime;
    } catch (exception e) {
    } 
   }
   /**
   * 代码执行到这来,只有以下三种情况
   * 1、缓存中本来有数据,由于redis内存满了,redis通过lru算法清除了缓存,导致数据没有了
   * 2、由于之前数据库查询比较慢或者内存太小处理不过来队列中的数据,导致队列里挤压了很多的数据,所以一直没有从数据库中获取数据然后插入到缓存中
   * 3、数据库中根本没有这样的数据,这种情况叫数据穿透,一旦别人知道这个商品没有,如果一直执行查询,就会一直查询数据库,如果过多,那么有可能会导致数据库瘫痪
   */
   inventoryproduct = inventoryproductbiz.loadinventoryproductbyproductid(productid);
   if (inventoryproduct != null) {
    request forcrrequest = new inventoryquerycacherequest(productid,inventoryproductbiz,true);
    requestasyncprocessbiz.process(forcrrequest);//这个时候需要强制刷新数据库,使缓存中有数据
    return inventoryproduct;
   }
   return null;
   
  }
}

到此这篇关于详解redis缓存与数据库一致性问题解决的文章就介绍到这了,更多相关redis缓存与数据库一致性内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐