質問

私はタスクを送信する固定スレッドプールを持っています( 5 スレッドに限定されています)。どのような 5 スレッドのどれが私のタスクを実行するか( 5 のスレッド#3のようなもの)を見つけることができますか?

ExecutorService taskExecutor = Executors.newFixedThreadPool(5);

//in infinite loop:
taskExecutor.execute(new MyTask());
....

private class MyTask implements Runnable {
    public void run() {
        logger.debug("Thread # XXX is doing this task");//how to get thread id?
    }
}
.

役に立ちましたか?

解決

Thread.currentThread()

private class MyTask implements Runnable {
    public void run() {
        long threadId = Thread.currentThread().getId();
        logger.debug("Thread # " + threadId + " is doing this task");
    }
}
.

他のヒント

承認された回答は スレッドIDを取得するという質問に答えますが、「y」メッセージを「スレッドX」させることはできません。スレッドIDはスレッド間で一意であるが、必ずしも0または1から起動しない。

ここに質問をマッチングする例:

import java.util.concurrent.*;
class ThreadIdTest {

  public static void main(String[] args) {

    final int numThreads = 5;
    ExecutorService exec = Executors.newFixedThreadPool(numThreads);

    for (int i=0; i<10; i++) {
      exec.execute(new Runnable() {
        public void run() {
          long threadId = Thread.currentThread().getId();
          System.out.println("I am thread " + threadId + " of " + numThreads);
        }
      });
    }

    exec.shutdown();
  }
}
.

と出力:

burhan@orion:/dev/shm$ javac ThreadIdTest.java && java ThreadIdTest
I am thread 8 of 5
I am thread 9 of 5
I am thread 10 of 5
I am thread 8 of 5
I am thread 9 of 5
I am thread 11 of 5
I am thread 8 of 5
I am thread 9 of 5
I am thread 10 of 5
I am thread 12 of 5
.

モジュロ演算を使ったわずかな調整を使用すると、「yのスレッドx」を正しくすることができます。

// modulo gives zero-based results hence the +1
long threadId = Thread.currentThread().getId()%numThreads +1;
.

新しい結果:

burhan@orion:/dev/shm$ javac ThreadIdTest.java && java ThreadIdTest  
I am thread 2 of 5 
I am thread 3 of 5 
I am thread 3 of 5 
I am thread 3 of 5 
I am thread 5 of 5 
I am thread 1 of 5 
I am thread 4 of 5 
I am thread 1 of 5 
I am thread 2 of 5 
I am thread 3 of 5 
.

Thread.getCurrentThread.getId()を使用できますが、 logrecord ロガーによって管理されているオブジェクトはすでにスレッドIDを持っています。ログメッセージのスレッドIDをログに記録する方法が不足していると思います。

クラスがスレッド、メソッドgetNamesetNameを使用して各スレッドに名前を付けることができます。それ以外の場合は、nameMyTaskフィールドを追加し、コンストラクターで初期化することができます。

ロギングを使用している場合は、スレッド名が役立ちます。 スレッドファクトリーはこれを助けます:

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadFactory;

public class Main {

    static Logger LOG = LoggerFactory.getLogger(Main.class);

    static class MyTask implements Runnable {
        public void run() {
            LOG.info("A pool thread is doing this task");
        }
    }

    public static void main(String[] args) {
        ExecutorService taskExecutor = Executors.newFixedThreadPool(5, new MyThreadFactory());
        taskExecutor.execute(new MyTask());
        taskExecutor.shutdown();
    }
}

class MyThreadFactory implements ThreadFactory {
    private int counter;
    public Thread newThread(Runnable r) {
        return new Thread(r, "My thread # " + counter++);
    }
}
.

出力:

[   My thread # 0] Main         INFO  A pool thread is doing this task
.

現在のスレッドGETSINGの方法があります。

Thread t = Thread.currentThread();
.

スレッドクラスオブジェクトを取得したら(T)スレッドクラスメソッドを使用して必要な情報を取得できます。

スレッドID getting:

long tId = t.getId(); // e.g. 14291
.

スレッド名getting:

String tName = t.getName(); // e.g. "pool-29-thread-7"
.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top