每日学习笔记(19)

 今天的工作需求如下:有一个生产者负责生成源数据,将数据插入到多个工作队列中,每个工作队列由一个线程池进行处理,即每个线程池中可以启动多个线程对与其对应的工作队列中的元素取出来进行处理。

      我将业务需求抽象为一个“单生产者—多消费者集群”模型,写了一个模拟代码进行测试,明天打算把模型再套回到业务中去。
 
  
  
  
  
  1. import java.text.DateFormat; 
  2. import java.util.Collection; 
  3. import java.util.Date
  4. import java.util.HashMap; 
  5. import java.util.Map; 
  6. import java.util.Map.Entry; 
  7. import java.util.Random; 
  8. import java.util.Set
  9. import java.util.concurrent.ArrayBlockingQueue; 
  10. import java.util.concurrent.ThreadPoolExecutor; 
  11. import java.util.concurrent.TimeUnit; 
  12.  
  13. /** 
  14.  * 测试工作队列和线程池 
  15.  * @author fayin.dyk 
  16.  * 
  17.  */ 
  18. /** 
  19.  * 测试流程: 0,预先创建n个工作队列 
  20.  *             1,一个生产者线程不断生产QueueElement,将其放置到n个工作队列中 
  21.  *             2,每个工作队列有一个对应的线程池,其中的工作线程从队列中依次取 
  22.  *             QueueElement,并进行相应的处理 
  23.  */ 
  24.  
  25. public class TestWorkQueue { 
  26.      
  27.     private static Map<String, WorkQueue> workQueueList = null;//n个商品库工作队列 
  28.     private static int QUEUE_NUM = 10; 
  29.     static { 
  30.         initWorkQueue(); 
  31.     } 
  32.      
  33.     /** 
  34.      * 初始化n个工作队列 
  35.      */ 
  36.     private static void initWorkQueue() { 
  37.         //创建同样数量的工作队列 
  38.         workQueueList = new HashMap<String, WorkQueue>(QUEUE_NUM);//队列名称与对应的工作队列 
  39.         for (int i = 0; i < QUEUE_NUM; ++i) { 
  40.             String entityName = "auction" + i; 
  41.             WorkQueue workQueue = new WorkQueue(); 
  42.             workQueueList.put(entityName, workQueue); 
  43.         } 
  44.     } 
  45.     /** 
  46.      * 单个的生产者线程,不断生产QueueElement,放置到n个工作队列中 
  47.      * @author fayin.dyk 
  48.      * 
  49.      */ 
  50.     private static class ProducerThread implements Runnable { 
  51.         private boolean isNeedToStop = false
  52.          
  53.         /** 
  54.          * 生成行键值 
  55.          * @param itemId 商品id 
  56.          * @return 
  57.          */ 
  58.         private String generateRowKey(String itemId) { 
  59.             String result = ""
  60.             DateFormat format = new java.text.SimpleDateFormat("yyyyMMddHHmmss"); 
  61.             Date curDate = new Date(); 
  62.             String curDateStr = format.format(curDate); 
  63.             result = curDateStr + "_" + itemId; 
  64.             return result; 
  65.         } 
  66.          
  67.         private QueueElement generateQueueElement() {//随机生产element 
  68.             String msgType = ItemNotifyConstants.NM_item_add;//消息类型 
  69.             //商品id 
  70.             Random rnd = new Random(); 
  71.             String rndItemId = String.valueOf(rnd.nextInt(10000)); 
  72.             String rowKey = generateRowKey(rndItemId); 
  73.             String location = "hz"
  74.             String title = "auction_" + rndItemId; 
  75.             QueueElement element = new QueueElement(msgType,rowKey, rndItemId,  rndItemId, location, title, rndItemId); 
  76.             return element; 
  77.         } 
  78.         /** 
  79.          * 分发到各个工作队列中 
  80.          */ 
  81.         private void deployWorkElement(QueueElement element) { 
  82.             Collection<WorkQueue> queueSet = workQueueList.values(); 
  83.             for (WorkQueue workQueue : queueSet) { 
  84.                 workQueue.enQueue(element); 
  85.             } 
  86.         } 
  87.         public void run() { 
  88.             while (!isNeedToStop) { 
  89.                 //生产QueueElement,放置到n个工作队列中 
  90.                 QueueElement element = generateQueueElement(); 
  91.                 deployWorkElement(element); 
  92.                 System.out.println("生产者生产商品id : " + element.getItemID() + "\n"); 
  93.                 try { 
  94.                     Thread.sleep(100); 
  95.                 } catch (InterruptedException e) { 
  96.                 } 
  97.             } 
  98.         } 
  99.     } 
  100.      
  101.     /** 
  102.      * 消费者,每个消费者是与一个队列对应的线程池,其中的线程从此队列中取element,进行相应处理 
  103.      * @author fayin.dyk 
  104.      * 
  105.      */ 
  106.     private static class Consumer { 
  107.         private final static int CORE_THREAD_NUM = 20; 
  108.         private final static int MAX_THREAD_NUM = 21; 
  109.         private final static int CAPACITY = 1000; 
  110.         public String queueName = "";//当前队列名称 
  111.         public WorkQueue workQueue = null;//与其对应的工作队列 
  112.          
  113.         public Consumer(WorkQueue workQueue, String queueName) { 
  114.             this.workQueue = workQueue; 
  115.             this.queueName = queueName; 
  116.         } 
  117.          
  118.         ThreadPoolExecutor indexerThreadPool = new ThreadPoolExecutor( 
  119.                 CORE_THREAD_NUM, MAX_THREAD_NUM, 10, TimeUnit.SECONDS, 
  120.                 new ArrayBlockingQueue<Runnable>(CAPACITY));//处理对应队列的消费者线程 
  121.          
  122.         public void process() { 
  123.             indexerThreadPool.execute(new IndexerJobThread(workQueue, queueName)); 
  124.             indexerThreadPool.execute(new IndexerJobThread(workQueue, queueName)); 
  125.         } 
  126.          
  127.         private static class IndexerJobThread implements Runnable { 
  128.             public String queueName = "";//当前队列名称 
  129.             public WorkQueue workQueue = null
  130.             public IndexerJobThread(WorkQueue workQueue, String queueName) { 
  131.                 this.workQueue = workQueue; 
  132.                 this.queueName = queueName; 
  133.             }         
  134.             public void run() { 
  135.                 System.out.println("消费者,当前队列  " + queueName + "队列大小" + workQueue.queueSize() +  " 消费者线程id: " + Thread.currentThread().getId() + "\n"); 
  136.  
  137.                 while (true) { 
  138.                     if (!workQueue.isEmpty()) { 
  139.                         QueueElement element = workQueue.deQueue(); 
  140.                         if (element != null) { 
  141.                             System.out.println("消费者,当前队列  " + queueName + " 商品id: " + element.getItemID() + " " + "消费者线程id: " + Thread.currentThread().getId() + "\n"); 
  142.                         } 
  143.                     } 
  144.                     try { 
  145.                         Thread.sleep(100); 
  146.                     } catch (InterruptedException e) { 
  147.                     } 
  148.                 } 
  149.             } 
  150.         } 
  151.  
  152.     } 
  153.     /** 
  154.      * 为各个工作队列初始化对应的消费者(每个消费者包含一个线程池来进行处理) 
  155.      */ 
  156.     private static void initConsumers() { 
  157.         Set<Entry<String, WorkQueue>> queueSet = workQueueList.entrySet(); 
  158.         for (Entry<String, WorkQueue> workQueueEntry : queueSet) { 
  159.             String queueName = workQueueEntry.getKey(); 
  160.             WorkQueue workQueue = workQueueEntry.getValue(); 
  161.             System.out.print("queueName: " + queueName + "workQueue:" + workQueue + "\n"); 
  162.             Consumer consumer = new Consumer(workQueue, queueName); 
  163.             consumer.process(); 
  164.         }         
  165.     } 
  166.     public static void main(String[] args) { 
  167.         //生产者启动 
  168.         Thread producer = new Thread(new ProducerThread()); 
  169.         producer.start(); 
  170.         //启动消费者群 
  171.         initConsumers(); 
  172.         try { 
  173.             Thread.sleep(100000); 
  174.         } catch (InterruptedException e) { 
  175.         } 
  176.     } 

你可能感兴趣的:(java,随笔,java语言,学习笔记,休闲)