README-EN.md 8.8 KB
Newer Older
oldratlee's avatar
oldratlee 已提交
1 2 3
multi-thread context(MTC)
=====================================

oldratlee's avatar
oldratlee 已提交
4
[![Build Status](https://travis-ci.org/alibaba/multi-thread-context.svg?branch=master)](https://travis-ci.org/alibaba/multi-thread-context)
oldratlee's avatar
oldratlee 已提交
5
[![Coverage Status](https://coveralls.io/repos/alibaba/multi-thread-context/badge.svg?branch=master&service=github)](https://coveralls.io/github/alibaba/multi-thread-context?branch=master)
oldratlee's avatar
oldratlee 已提交
6
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.alibaba/multithread.context/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.alibaba/multithread.context/)
7
[![GitHub release](https://img.shields.io/github/release/alibaba/multi-thread-context.svg)](https://github.com/alibaba/multi-thread-context/releases)  
oldratlee's avatar
oldratlee 已提交
8
[![Dependency Status](https://www.versioneye.com/user/projects/553a308b1d2989bdd5000073/badge.svg)](https://www.versioneye.com/user/projects/553a308b1d2989bdd5000073)
oldratlee's avatar
oldratlee 已提交
9 10
[![GitHub issues](https://img.shields.io/github/issues/alibaba/multi-thread-context.svg)](https://github.com/alibaba/multi-thread-context/issues)
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
oldratlee's avatar
oldratlee 已提交
11

oldratlee's avatar
oldratlee 已提交
12
<div align="right">
oldratlee's avatar
oldratlee 已提交
13
<a href="README.md">中文文档</a>
oldratlee's avatar
oldratlee 已提交
14 15
</div>

oldratlee's avatar
oldratlee 已提交
16 17 18 19
:wrench: Functions
----------------------------

:point_right: Transmit multi-thread context, even using thread cached components like thread pool.
oldratlee's avatar
oldratlee 已提交
20 21 22 23 24 25 26

Class [`java.lang.InheritableThreadLocal`](http://docs.oracle.com/javase/6/docs/api/java/lang/InheritableThreadLocal.html) in `JDK`
can transmit context to child thread from parent thread.

But when use thread pool, thread is cached up and used repeatedly. Transmitting context from parent thread to child thread has no meaning.
Application need transmit context from the time task is created to the time task is executed.

oldratlee's avatar
oldratlee 已提交
27
If you have problem or question, please [submit Issue](https://github.com/alibaba/multi-thread-context/issues) or play [fork](https://github.com/alibaba/multi-thread-context/fork) and pull request dance.
oldratlee's avatar
oldratlee 已提交
28

oldratlee's avatar
oldratlee 已提交
29
:art: Requirements
oldratlee's avatar
oldratlee 已提交
30 31 32 33 34 35 36
----------------------------

The Requirements listed below is also why I sort out `MTC` in my work. 

* Application container or high layer framework transmit information to low layer sdk.
* Transmit context to logging without application code aware.

oldratlee's avatar
oldratlee 已提交
37
:notebook: User Guide
oldratlee's avatar
oldratlee 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
=====================================

1. simple usage
----------------------------

```java
// set in parent thread
MtContextThreadLocal<String> parent = new MtContextThreadLocal<String>();
parent.set("value-set-in-parent");

// =====================================================

// read in child thread, value is "value-set-in-parent"
String value = parent.get(); 
```

This is the function of class [`java.lang.InheritableThreadLocal`](http://docs.oracle.com/javase/6/docs/api/java/lang/InheritableThreadLocal.html), should use class [`java.lang.InheritableThreadLocal`](http://docs.oracle.com/javase/6/docs/api/java/lang/InheritableThreadLocal.html) instead.

But when use thread pool, thread is cached up and used repeatedly. Transmitting context from parent thread to child thread has no meaning.
Application need transmit context from the time task is created to the point task is executed.

The solution is below usage.

2. Transmit context even using thread pool
----------------------------

### 2.1 Decorate `Runnable` and `Callable`

oldratlee's avatar
oldratlee 已提交
66 67
Decorate input `Runnable` and `Callable` by [`com.alibaba.mtc.MtContextRunnable`](src/main/java/com/alibaba/mtc/MtContextRunnable.java)
and [`com.alibaba.mtc.MtContextCallable`](src/main/java/com/alibaba/mtc/MtContextCallable.java).
oldratlee's avatar
oldratlee 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107

Sample code:

```java
MtContextThreadLocal<String> parent = new MtContextThreadLocal<String>();
parent.set("value-set-in-parent");

Runnable task = new Task("1");
// extra work, create decorated mtContextRunnable object
Runnable mtContextRunnable = MtContextRunnable.get(task); 
executorService.submit(mtContextRunnable);

// =====================================================

// read in task, value is "value-set-in-parent"
String value = parent.get(); 
```

above code show how to dealing with `Runnable`, `Callable` is similar:

```java
MtContextThreadLocal<String> parent = new MtContextThreadLocal<String>();
parent.set("value-set-in-parent");

Callable call = new Call("1");
// extra work, create decorated mtContextCallable object
Callable mtContextCallable = MtContextCallable.get(call); 
executorService.submit(mtContextCallable);

// =====================================================

// read in call, value is "value-set-in-parent"
String value = parent.get(); 
```

### 2.2 Decorate thread pool

Eliminating the work of `Runnable` and `Callable` Decoration every time it is submitted to thread pool. This work can completed in the thread pool.

Use util class
oldratlee's avatar
oldratlee 已提交
108
[`com.alibaba.mtc.threadpool.MtContextExecutors`](src/main/java/com/alibaba/mtc/threadpool/MtContextExecutors.java)
oldratlee's avatar
oldratlee 已提交
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
to decorate thread pool.

Util class `com.alibaba.mtc.threadpool.MtContextExecutors` has below methods:

* `getMtcExecutor`: decorate interface `Executor`
* `getMtcExecutorService`: decorate interface `ExecutorService`
* `ScheduledExecutorService`: decorate interface `ScheduledExecutorService`

Sample code:

```java
ExecutorService executorService = ...
// extra work, create decorated executorService object
executorService = MtContextExecutors.getMtcExecutorService(executorService); 

MtContextThreadLocal<String> parent = new MtContextThreadLocal<String>();
parent.set("value-set-in-parent");

Runnable task = new Task("1");
Callable call = new Call("2");
executorService.submit(task);
executorService.submit(call);

// =====================================================

// read in Task or Callable, value is "value-set-in-parent"
String value = parent.get(); 
```

### 2.3. Use Java Agent to decorate thread pool implementation class

In this usage, `MtContext` transmission is transparent\(no decoration operation\).
oldratlee's avatar
oldratlee 已提交
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157

Sample code:

```java
ExecutorService executorService = Executors.newFixedThreadPool(3);

Runnable task = new Task("1");
Callable call = new Call("2");
executorService.submit(task);
executorService.submit(call);

// =====================================================

// Task或是Call中可以读取, 值是"value-set-in-parent"
String value = parent.get();
```

oldratlee's avatar
oldratlee 已提交
158
See demo [`AgentDemo.java`](src/test/java/com/alibaba/mtc/threadpool/agent/AgentDemo.java).
oldratlee's avatar
oldratlee 已提交
159 160

Agent decorate 2 thread pool implementation classes
oldratlee's avatar
oldratlee 已提交
161
\(implementation code [`MtContextTransformer.java`](src/main/java/com/alibaba/mtc/threadpool/agent/MtContextTransformer.java)\):
oldratlee's avatar
oldratlee 已提交
162 163 164 165

- `java.util.concurrent.ThreadPoolExecutor`
- `java.util.concurrent.ScheduledThreadPoolExecutor`

oldratlee's avatar
oldratlee 已提交
166
Add start options on Java command: 
oldratlee's avatar
oldratlee 已提交
167

oldratlee's avatar
oldratlee 已提交
168
- `-Xbootclasspath/a:/path/to/multithread.context-x.y.z.jar:/path/to/javassist-3.12.1.GA.jar`
oldratlee's avatar
oldratlee 已提交
169 170 171 172 173 174 175 176 177 178
- `-javaagent:/path/to/multithread.context-x.y.z.jar`

**NOTE**

* Agent modify the jdk classes, add code refer to the class of `MTC`, so the jar of `MTC Agent` should add to `bootclasspath`.
* `MTC Agent` modify the class by `javassist`, so the Jar of `javassist` should add to `bootclasspath` too.

Java command example:

```bash
oldratlee's avatar
oldratlee 已提交
179
java -Xbootclasspath/a:dependency/javassist-3.12.1.GA.jar:multithread.context-1.0.0.jar \
oldratlee's avatar
oldratlee 已提交
180 181 182 183 184
    -javaagent:multithread.context-0.9.0-SNAPSHOT.jar \
    -cp classes \
    com.alibaba.mtc.threadpool.agent.AgentDemo
```

oldratlee's avatar
oldratlee 已提交
185
Run the script [`run-agent-demo.sh`](run-agent-demo.sh)
oldratlee's avatar
oldratlee 已提交
186 187
to start demo of "Use Java Agent to decorate thread pool implementation class".

oldratlee's avatar
oldratlee 已提交
188
:electric_plug: Java API Docs
189 190
======================

oldratlee's avatar
oldratlee 已提交
191
The current version Java API documentation: <http://alibaba.github.io/multi-thread-context/apidocs/>
192

oldratlee's avatar
oldratlee 已提交
193
:cookie: Maven dependency
oldratlee's avatar
oldratlee 已提交
194 195 196 197 198 199
=====================================

```xml
<dependency>
	<groupId>com.alibaba</groupId>
	<artifactId>multithread.context</artifactId>
oldratlee's avatar
oldratlee 已提交
200
	<version>1.2.1</version>
oldratlee's avatar
oldratlee 已提交
201 202 203
</dependency>
```

oldratlee's avatar
oldratlee 已提交
204
Check available version at [search.maven.org](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.alibaba%22%20AND%20a%3A%22multithread.context%22).
oldratlee's avatar
oldratlee 已提交
205

oldratlee's avatar
oldratlee 已提交
206
:books: Related resources
oldratlee's avatar
oldratlee 已提交
207 208
=====================================

oldratlee's avatar
oldratlee 已提交
209 210 211 212 213 214 215 216 217
Jdk core classes
----------------------------

* [WeakHashMap](http://docs.oracle.com/javase/7/docs/api/java/util/WeakHashMap.html)
* [InheritableThreadLocal](http://docs.oracle.com/javase/7/docs/api/java/lang/InheritableThreadLocal.html)

Java Agent
----------------------------

oldratlee's avatar
oldratlee 已提交
218 219 220 221
* [Java Agent规范](http://docs.oracle.com/javase/6/docs/api/java/lang/instrument/package-summary.html)
* [Java SE 6 新特性: Instrumentation 新功能](http://www.ibm.com/developerworks/cn/java/j-lo-jse61/)
* [Creation, dynamic loading and instrumentation with javaagents](http://dhruba.name/2010/02/07/creation-dynamic-loading-and-instrumentation-with-javaagents/)
* [JavaAgent加载机制分析](http://alipaymiddleware.com/jvm/javaagent%E5%8A%A0%E8%BD%BD%E6%9C%BA%E5%88%B6%E5%88%86%E6%9E%90/)
oldratlee's avatar
oldratlee 已提交
222 223 224 225

Javassist
----------------------------

oldratlee's avatar
oldratlee 已提交
226
* [Getting Started with Javassist](http://www.csg.ci.i.u-tokyo.ac.jp/~chiba/javassist/tutorial/tutorial.html)