欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解Spring Cloud中Hystrix 线程隔离导致ThreadLocal数据丢失

程序员文章站 2023-11-13 10:36:22
在spring cloud中我们用hystrix来实现断路器,zuul中默认是用信号量(hystrix默认是线程)来进行隔离的,我们可以通过配置使用线程方式隔离。 在使用...

在spring cloud中我们用hystrix来实现断路器,zuul中默认是用信号量(hystrix默认是线程)来进行隔离的,我们可以通过配置使用线程方式隔离。

在使用线程隔离的时候,有个问题是必须要解决的,那就是在某些业务场景下通过threadlocal来在线程里传递数据,用信号量是没问题的,从请求进来,但后续的流程都是通一个线程。

当隔离模式为线程时,hystrix会将请求放入hystrix的线程池中去执行,这个时候某个请求就有a线程变成b线程了,threadlocal必然消失了。

下面我们通过一个简单的列子来模拟下这个流程:

public class customthreadlocal {
  static threadlocal<string> threadlocal = new threadlocal<>();
  public static void main(string[] args) {
    new thread(new runnable() {
      @override
      public void run() {
        customthreadlocal.threadlocal.set("猿天地");
        new service().call();
      }
    }).start();
  }
}
class service {
  public void call() {
    system.out.println("service:" + thread.currentthread().getname());
    system.out.println("service:" + customthreadlocal.threadlocal.get());
    new dao().call();
  }
}
class dao {
  public void call() {
    system.out.println("==========================");
    system.out.println("dao:" + thread.currentthread().getname());
    system.out.println("dao:" + customthreadlocal.threadlocal.get());
  }
}

我们在主类中定义了一个threadlocal用来传递数据,然后起了一个线程,在线程中调用service中的call方法,并且往threadlocal中设置了一个值,在service中获取threadlocal中的值,然后再调用dao中的call方法,也是获取threadlocal中的值,我们运行下看效果:

service:thread-0
service:猿天地
==========================
dao:thread-0
dao:猿天地

可以看到整个流程都是在同一个线程中执行的,也正确的获取到了threadlocal中的值,这种情况是没有问题的。

接下来我们改造下程序,进行线程切换,将调用dao中的call重启一个线程执行:

public class customthreadlocal {
  static threadlocal<string> threadlocal = new threadlocal<>();
  public static void main(string[] args) {
    new thread(new runnable() {
      @override
      public void run() {
        customthreadlocal.threadlocal.set("猿天地");
        new service().call();
      }
    }).start();
  }
}
class service {
  public void call() {
    system.out.println("service:" + thread.currentthread().getname());
    system.out.println("service:" + customthreadlocal.threadlocal.get());
    //new dao().call();
    new thread(new runnable() {
      @override
      public void run() {
        new dao().call();
      }
    }).start();
  }
}
class dao {
  public void call() {
    system.out.println("==========================");
    system.out.println("dao:" + thread.currentthread().getname());
    system.out.println("dao:" + customthreadlocal.threadlocal.get());
  }
}

再次运行,看效果:

service:thread-0
service:猿天地
==========================
dao:thread-1
dao:null

可以看到这次的请求是由2个线程共同完成的,在service中还是可以拿到threadlocal的值,到了dao中就拿不到了,因为线程已经切换了,这就是开始讲的threadlocal的数据会丢失的问题。

那么怎么解决这个问题呢,其实也很简单,只需要改一行代码即可:

static threadlocal<string> threadlocal = new inheritablethreadlocal<>();

将threadlocal改成inheritablethreadlocal,我们看下改造之后的效果:

service:thread-0
service:猿天地
==========================
dao:thread-1
dao:猿天地

值可以正常拿到,inheritablethreadlocal就是为了解决这种线程切换导致threadlocal拿不到值的问题而产生的。

要理解inheritablethreadlocal的原理,得先理解threadlocal的原理,我们稍微简单的来介绍下threadlocal的原理:

每个线程都有一个 threadlocalmap 类型的 threadlocals 属性,threadlocalmap 类相当于一个map,key 是 threadlocal 本身,value 就是我们设置的值。

public class thread implements runnable {
  threadlocal.threadlocalmap threadlocals = null;
}

当我们通过 threadlocal.set(“猿天地”); 的时候,就是在这个线程中的 threadlocals 属性中放入一个键值对,key 是 当前线程,value 就是你设置的值猿天地。

public void set(t value) {
  thread t = thread.currentthread();
  threadlocalmap map = getmap(t);
  if (map != null)
    map.set(this, value);
  else
    createmap(t, value);
}

当我们通过 threadlocal.get() 方法的时候,就是根据当前线程作为key来获取这个线程设置的值。

public t get() {
  thread t = thread.currentthread();
  threadlocalmap map = getmap(t);
  if (map != null) {
    threadlocalmap.entry e = map.getentry(this);
    if (e != null) {
       @suppresswarnings("unchecked")
       t result = (t)e.value;
       return result;
    }
  }
  return setinitialvalue();
}

通过上面的介绍我们可以了解到threadlocal能够传递数据是用thread.currentthread()当前线程来获取,也就是只要在相同的线程中就可以获取到前方设置进去的值。

如果在threadlocal设置完值之后,下步的操作重新创建了一个线程,这个时候thread.currentthread()就已经变了,那么肯定是拿不到之前设置的值。具体的问题复现可以参考上面我的代码。

那为什么inheritablethreadlocal就可以呢?

inheritablethreadlocal这个类继承了threadlocal,重写了3个方法,在当前线程上创建一个新的线程实例thread时,会把这些线程变量从当前线程传递给新的线程实例。

public class inheritablethreadlocal<t> extends threadlocal<t> {
  /**
   * computes the child's initial value for this inheritable thread-local
   * variable as a function of the parent's value at the time the child
   * thread is created. this method is called from within the parent
   * thread before the child is started.
   * <p>
   * this method merely returns its input argument, and should be overridden
   * if a different behavior is desired.
   *
   * @param parentvalue the parent thread's value
   * @return the child thread's initial value
   */
  protected t childvalue(t parentvalue) {
    return parentvalue;
  }
  /**
   * get the map associated with a threadlocal.
   *
   * @param t the current thread
   */
  threadlocalmap getmap(thread t) {
    return t.inheritablethreadlocals;
  }
  /**
   * create the map associated with a threadlocal.
   *
   * @param t the current thread
   * @param firstvalue value for the initial entry of the table.
   */
  void createmap(thread t, t firstvalue) {
    t.inheritablethreadlocals = new threadlocalmap(this, firstvalue);
  }
}

通过上面的代码我们可以看到inheritablethreadlocal 重写了childvalue, getmap,createmap三个方法,当我们往里面set值的时候,值保存到了inheritablethreadlocals里面,而不是之前的threadlocals。

关键的点来了,为什么当创建新的线程池,可以获取到上个线程里的threadlocal中的值呢?原因就是在新创建线程的时候,会把之前线程的inheritablethreadlocals赋值给新线程的inheritablethreadlocals,通过这种方式实现了数据的传递。

源码最开始在thread的init方法中,如下:

if (parent.inheritablethreadlocals != null)
  this.inheritablethreadlocals =
        threadlocal.createinheritedmap(parent.inheritablethreadlocals);

createinheritedmap如下:

static threadlocalmap createinheritedmap(threadlocalmap parentmap) {
    return new threadlocalmap(parentmap);
  }

赋值代码:

 private threadlocalmap(threadlocalmap parentmap) {
   entry[] parenttable = parentmap.table;
   int len = parenttable.length;
   setthreshold(len);
   table = new entry[len];
   for (int j = 0; j < len; j++) {
      entry e = parenttable[j];
      if (e != null) {
        @suppresswarnings("unchecked")
        threadlocal<object> key = (threadlocal<object>) e.get();
        if (key != null) {
          object value = key.childvalue(e.value);
          entry c = new entry(key, value);
          int h = key.threadlocalhashcode & (len - 1);
          while (table[h] != null)
            h = nextindex(h, len);
          table[h] = c;
          size++;
        }
      }
    }
}

到此为止,通过inheritablethreadlocals我们可以在父线程创建子线程的时候将local中的值传递给子线程,这个特性已经能够满足大部分的需求了,但是还有一个很严重的问题是如果是在线程复用的情况下就会出问题,比如线程池中去使用inheritablethreadlocals 进行传值,因为inheritablethreadlocals 只是会再新创建线程的时候进行传值,线程复用并不会做这个操作,那么要解决这个问题就得自己去扩展线程类,实现这个功能。

不要忘记我们是做java的哈,开源的世界有你需要的任何东西,下面我给大家推荐一个实现好了的java库,是阿里开源的transmittable-thread-local。

github地址:

主要功能就是解决在使用线程池等会缓存线程的组件情况下,提供threadlocal值的传递功能,解决异步执行时上下文传递的问题。

jdk的inheritablethreadlocal类可以完成父线程到子线程的值传递。但对于使用线程池等会缓存线程的组件的情况,线程由线程池创建好,并且线程是缓存起来反复使用的;这时父子线程关系的threadlocal值传递已经没有意义,应用需要的实际上是把 任务提交给线程池时的threadlocal值传递到任务执行时。

transmittable-thread-local使用方式分为三种,修饰runnable和callable,修饰线程池,java agent来修饰jdk线程池实现类

接下来给大家演示下线程池的修饰方式,首先来一个非正常的案例,代码如下:

public class customthreadlocal {
  static threadlocal<string> threadlocal = new inheritablethreadlocal<>();
  static executorservice pool = executors.newfixedthreadpool(2);
  public static void main(string[] args) {
    for(int i=0;i<100;i++) {
       int j = i;
      pool.execute(new thread(new runnable() {
        @override
        public void run() {
          customthreadlocal.threadlocal.set("猿天地"+j);
          new service().call();
        }
      }));
    }
  }
}
class service {
  public void call() {
    customthreadlocal.pool.execute(new runnable() {
      @override
      public void run() {
        new dao().call();
      }
    });
  }
}
class dao {
  public void call() {
     system.out.println("dao:" + customthreadlocal.threadlocal.get());
  }
}

运行上面的代码出现的结果是不正确的,输出结果如下:

dao:猿天地99
dao:猿天地99
dao:猿天地99
dao:猿天地99
dao:猿天地99
dao:猿天地99
dao:猿天地99
dao:猿天地99
dao:猿天地99
dao:猿天地99
dao:猿天地99
dao:猿天地99
dao:猿天地99

正确的应该是从1到100,由于线程的复用,值被替换掉了才会出现不正确的结果

接下来使用transmittable-thread-local来改造有问题的代码,添加transmittable-thread-local的maven依赖:

<dependency>
  <groupid>com.alibaba</groupid>
  <artifactid>transmittable-thread-local</artifactid>
  <version>2.2.0</version>
</dependency>

只需要修改2个地方,修饰线程池和替换inheritablethreadlocal:

static transmittablethreadlocal<string> threadlocal = new transmittablethreadlocal<>();
static executorservice pool = ttlexecutors.getttlexecutorservice(executors.newfixedthreadpool(2));

正确的结果如下:

dao:猿天地85
dao:猿天地84
dao:猿天地86
dao:猿天地87
dao:猿天地88
dao:猿天地90
dao:猿天地89
dao:猿天地91
dao:猿天地93
dao:猿天地92
dao:猿天地94
dao:猿天地95
dao:猿天地97
dao:猿天地96
dao:猿天地98
dao:猿天地99

到这里我们就已经可以完美的解决线程中,线程池中threadlocal数据的传递了,各位看官又疑惑了,标题不是讲的spring cloud中如何解决这个问题么,我也是在zuul中发现这个问题的,解决方案已经告诉大家了,至于怎么解决zuul中的这个问题就需要大家自己去思考了,后面有时间我再分享给大家。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。