• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java StageScheduler类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.ociweb.pronghorn.stage.scheduling.StageScheduler的典型用法代码示例。如果您正苦于以下问题:Java StageScheduler类的具体用法?Java StageScheduler怎么用?Java StageScheduler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



StageScheduler类属于com.ociweb.pronghorn.stage.scheduling包,在下文中一共展示了StageScheduler类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: createScheduler

import com.ociweb.pronghorn.stage.scheduling.StageScheduler; //导入依赖的package包/类
public StageScheduler createScheduler(final MsgRuntime runtime) {
			
	final StageScheduler scheduler = 
			 runtime.builder.threadLimit>0 ?				
	         StageScheduler.defaultScheduler(gm, 
	        		 runtime.builder.threadLimit, 
	        		 runtime.builder.threadLimitHard) :
	         StageScheduler.defaultScheduler(gm);

	Runtime.getRuntime().addShutdownHook(new Thread() {
		public void run() {
			scheduler.shutdown();
			scheduler.awaitTermination(getShutdownSeconds(), TimeUnit.SECONDS);
		}
	});
	
	
	return scheduler;
}
 
开发者ID:oci-pronghorn,项目名称:GreenLightning,代码行数:20,代码来源:BuilderImpl.java


示例2: runGraph

import com.ociweb.pronghorn.stage.scheduling.StageScheduler; //导入依赖的package包/类
public void runGraph() {
	//logger.info("run graph");
	
	
	MonitorConsoleStage.attach(gm);
	
	StageScheduler scheduler = new ThreadPerStageScheduler(gm);
	
	Runtime.getRuntime().addShutdownHook(new Thread() {
	    public void run() {
	    	scheduler.shutdown();
	    	scheduler.awaitTermination(3, TimeUnit.SECONDS);
	    }
	});
	
	scheduler.startup();		
	//logger.info("running graph");
}
 
开发者ID:oci-pronghorn,项目名称:FogLight-Examples,代码行数:19,代码来源:ManifoldApp.java


示例3: createScheduler

import com.ociweb.pronghorn.stage.scheduling.StageScheduler; //导入依赖的package包/类
@Override
public StageScheduler createScheduler(MsgRuntime runtime) {

    if (isInUnitTest) {
                  
        //NOTE: need to consider different schedulers in the future.
       return new NonThreadScheduler(gm);
    } else {
       return super.createScheduler(runtime);
    }
          
}
 
开发者ID:oci-pronghorn,项目名称:FogLight,代码行数:13,代码来源:TestHardware.java


示例4: getScheduler

import com.ociweb.pronghorn.stage.scheduling.StageScheduler; //导入依赖的package包/类
public StageScheduler getScheduler() {
    return scheduler;
}
 
开发者ID:oci-pronghorn,项目名称:GreenLightning,代码行数:4,代码来源:MsgRuntime.java


示例5: testLineReaderRollover

import com.ociweb.pronghorn.stage.scheduling.StageScheduler; //导入依赖的package包/类
@Test
public void testLineReaderRollover() {
	//Tests many different primary ring sizes to force rollover at different points.
	//Checks that every run produces the same results as the previous run.
	if ("arm".equals(System.getProperty("os.arch"))) {
   		assertTrue(true);
   	}
   	
   	else {		
	final ByteArrayOutputStream baos = new ByteArrayOutputStream();
	
	byte[] last = null;
	
	ByteBuffer data = generateCVSData(21);		    
	int dataSize = data.limit();
	
	
	int t = 10;
	while (--t>=4) {
		data.position(0);
		data.limit(dataSize);
		
		PipeConfig linesRingConfigLocal = new PipeConfig(RawDataSchema.instance, 1<<t, 1<<20);	
		
		final Pipe linesRing = new Pipe(linesRingConfigLocal);		
		GraphManager gm = new GraphManager();
		LineSplitterByteBufferStage lineSplitter = new LineSplitterByteBufferStage(gm, data, linesRing);
		
		baos.reset();
		ToOutputStreamStage reader = new ToOutputStreamStage(gm,linesRing,baos, false);
		
		StageScheduler ss = new ThreadPerStageScheduler(gm);
		ss.startup();
		
		ss.awaitTermination(1, TimeUnit.MINUTES);
		
		//return the position to the beginning to run the test again
		
		byte[] results = baos.toByteArray();
		if (null!=last) {
			int j = 0;
			while (j<last.length && j<results.length) {
				if (last[j]!=results[j]) {
					System.err.println("missmatch found at:"+j);						
					break;
				}
				j++;
			}		
			assertEquals(last.length,results.length);
			assertTrue("Missed on "+t+" vs "+(t+1)+" at idx"+mismatchAt(last,results)+"\n",
					   Arrays.equals(last,  results));
		}
					
		last = Arrays.copyOf(results, results.length);
	
	}
	
   	}
}
 
开发者ID:oci-pronghorn,项目名称:Pronghorn,代码行数:60,代码来源:SmallCSVParseTest.java


示例6: testRowsToColSplit

import com.ociweb.pronghorn.stage.scheduling.StageScheduler; //导入依赖的package包/类
@Test
public <M extends MatrixSchema<M>> void testRowsToColSplit() {
	
	int rows=10;
	int columns=6;
	MatrixSchema<M> schema = BuildMatrixCompute.buildSchema(rows, columns, MatrixTypes.Integers);
	ColumnSchema<M> cs = new ColumnSchema<M>(schema);
	RowSchema<M> rs = new RowSchema<M>(schema);

	GraphManager gm = new GraphManager();		
	PipeConfig<RowSchema<M>> rowConfig = new PipeConfig<RowSchema<M>>(rs, schema.getRows());		
	PipeConfig<ColumnSchema<M>> columnConfig = new PipeConfig<ColumnSchema<M>>(cs, 2);
	
	Pipe[] intputAsColumns = new Pipe[schema.getColumns()];
	
	Pipe<RowSchema<M>> inputRows = new Pipe<RowSchema<M>>(rowConfig); 

	int t = intputAsColumns.length;
	while (--t>=0) {
		intputAsColumns[t]=new Pipe<ColumnSchema<M>>(columnConfig);
	}
	
	
	new RowsToColumnRouteStage(gm, inputRows, intputAsColumns);
	int i = schema.getColumns();
	ByteArrayOutputStream[] targets = new ByteArrayOutputStream[i];
	PronghornStage[] watch = new PronghornStage[i];
	while (--i>=0) {
		targets[i] = new ByteArrayOutputStream();
		watch[i] =new ConsoleJSONDumpStage<>(gm, intputAsColumns[i], new PrintStream(targets[i]));
	}
	
	
	
	
	//StageScheduler scheduler = new ThreadPerStageScheduler(gm);
	//int targetThreadCount = 6;
	StageScheduler scheduler = new ThreadPerStageScheduler(gm);
			//new FixedThreadsScheduler(gm,targetThreadCount); //TODO: do not enable until the thread grouping is balanced in FixedThreadScheduler
	
	scheduler.startup();	
			
	for(int c=0;c<schema.getRows();c++) {
		while (!Pipe.hasRoomForWrite(inputRows)) {
			Thread.yield();
		}
		
		Pipe.addMsgIdx(inputRows, schema.rowId);		
		for(int r=0;r<schema.getColumns();r++) {
			Pipe.addIntValue(c, inputRows);
		}
		Pipe.confirmLowLevelWrite(inputRows, Pipe.sizeOf(inputRows, schema.rowId));
		Pipe.publishWrites(inputRows);	
		
	}
	Pipe.publishEOF(inputRows);
		
	i = schema.getColumns();
	while (--i>=0) {
		GraphManager.blockUntilStageBeginsShutdown(gm, watch[i], 500);//timeout in ms
	}
	
	scheduler.awaitTermination(2, TimeUnit.SECONDS);
	
	i = schema.getColumns();
	while (--i>=0) {
		String actualText = new String(targets[i].toByteArray());
		
		//System.out.println(actualText);
		
		assertTrue(actualText.contains("{\"1\":0}"));
		assertTrue(actualText.contains("{\"5\":4}"));
		assertTrue(actualText.contains("{\"10\":9}"));
		
		assertTrue(actualText.indexOf("{\"1\":0}") > actualText.indexOf("{\"1\":1}"));
		
	}
	
}
 
开发者ID:oci-pronghorn,项目名称:Pronghorn,代码行数:80,代码来源:MatrixComputeTest.java


示例7: testcolToRowsSplit

import com.ociweb.pronghorn.stage.scheduling.StageScheduler; //导入依赖的package包/类
@Test
public <M extends MatrixSchema<M>> void testcolToRowsSplit() {
	
	int rows=10;
	int columns=6;
	MatrixSchema schema = BuildMatrixCompute.buildSchema(rows, columns, MatrixTypes.Integers);
	ColumnSchema<M> cs = new ColumnSchema<M>(schema);
	RowSchema<M> rs = new RowSchema<M>(schema);

	GraphManager gm = new GraphManager();		
	PipeConfig<RowSchema<M>> rowConfig = new PipeConfig<RowSchema<M>>(rs, schema.getRows());		
	PipeConfig<ColumnSchema<M>> columnConfig = new PipeConfig<ColumnSchema<M>>(cs, 2);
	
	Pipe<ColumnSchema<M>>[] columnsPipes = new Pipe[schema.getColumns()];
	
	int i = columnsPipes.length;
	while (--i>=0) {
		columnsPipes[i] = new Pipe<ColumnSchema<M>>(columnConfig);
	}
	
	Pipe<RowSchema<M>> rowsPipe = new Pipe<RowSchema<M>>(rowConfig); 
	
	
	new ColumnsToRowsStage(gm, columnsPipes, rowsPipe);
	ByteArrayOutputStream capture = new ByteArrayOutputStream();
	ConsoleJSONDumpStage<RowSchema<M>> watch = new ConsoleJSONDumpStage<>(gm, rowsPipe, new PrintStream(capture));
	
	
	StageScheduler scheduler = new ThreadPerStageScheduler(gm);
	scheduler.startup();

	int c = columnsPipes.length;
	while (--c>=0) {
		
		int size = Pipe.addMsgIdx(columnsPipes[c], schema.columnId);
		int r = rows;
		while (--r >= 0) {
			Pipe.addIntValue(r, columnsPipes[c]);				
		}
		Pipe.confirmLowLevelWrite(columnsPipes[c], size);
		Pipe.publishWrites(columnsPipes[c]);
					
		
	}
	
	GraphManager.blockUntilStageBeginsShutdown(gm, watch, 500);
	
	String actualText = new String(capture.toByteArray());
	//System.out.println(actualText);
	
	assertTrue(actualText.contains("{\"1\":0}"));
	assertTrue(actualText.contains("{\"5\":4}"));
	assertTrue(actualText.contains("{\"6\":9}"));
	
	assertTrue(actualText.indexOf("{\"1\":0}") > actualText.indexOf("{\"1\":1}"));
	
}
 
开发者ID:oci-pronghorn,项目名称:Pronghorn,代码行数:58,代码来源:MatrixComputeTest.java


示例8: run

import com.ociweb.pronghorn.stage.scheduling.StageScheduler; //导入依赖的package包/类
private void run() {
    
    
    StageScheduler scheduler = new ThreadPerStageScheduler(gm);
    scheduler.startup();
    
    Scanner scan = new Scanner(System.in);
    System.out.println("press enter to exit");
    scan.hasNextLine();//blocks until enter 
           
    System.out.println("exiting...");
    
    scheduler.shutdown();
    scheduler.awaitTermination(100, TimeUnit.MILLISECONDS);
    
    stage.printExitStatus();
            
}
 
开发者ID:oci-pronghorn,项目名称:PronghornGateway,代码行数:19,代码来源:ClockApp.java


示例9: run

import com.ociweb.pronghorn.stage.scheduling.StageScheduler; //导入依赖的package包/类
private void run() {
    
    GraphManager gm = new GraphManager();
    
    buildApplicationGraph(gm);            
    
    StageScheduler scheduler = new ThreadPerStageScheduler(gm);  //TODO: Something cool would be a scheduler that runs in the netty event loop.
    scheduler.startup();
    
    //Call this method if we want to shut down early
    try {
        Thread.sleep(1000*60*60*12);//run for 12 hours then shutdown
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
    
    scheduler.shutdown();   
    
    scheduler.awaitTermination(2, TimeUnit.SECONDS); //shutdown process should not take longer than 2 seconds or something is wrong
            
}
 
开发者ID:oci-pronghorn,项目名称:NettyStages,代码行数:22,代码来源:RunDemo.java


示例10: twoGeneratorsTest

import com.ociweb.pronghorn.stage.scheduling.StageScheduler; //导入依赖的package包/类
@Ignore
    public void twoGeneratorsTest() {
        
        FieldReferenceOffsetManager from = buildFROM();        
        assertTrue(null!=from);
        
        PipeConfig busConfig = new PipeConfig(new MessageSchemaDynamic(from), 10, 64);
        
        GraphManager gm = new GraphManager();
        
        
//simple test with no split        
        PronghornStage generator1 = new TestGenerator(gm, seed, iterations, pipe(busConfig));        
        PronghornStage generator2 = new TestGenerator(gm, seed, iterations, pipe(busConfig));   
        
        PronghornStage validateResults = new TestValidator(gm, 
                                                getOutputPipe(gm, generator1), 
                                                getOutputPipe(gm, generator2));
               
        
        //start the timer       
        final long start = System.currentTimeMillis();
        
        GraphManager.enableBatching(gm);
        
        StageScheduler scheduler = new ThreadPerStageScheduler(GraphManager.cloneAll(gm));        
        scheduler.startup();        
        
        //blocks until all the submitted runnables have stopped
       

        //this timeout is set very large to support slow machines that may also run this test.
        boolean cleanExit = scheduler.awaitTermination(TIMEOUT_SECONDS, TimeUnit.SECONDS);
      
        long duration = System.currentTimeMillis()-start;
        
        
    }
 
开发者ID:oci-pronghorn,项目名称:Pronghorn,代码行数:39,代码来源:GeneratorValidatorTest.java


示例11: splitterTest

import com.ociweb.pronghorn.stage.scheduling.StageScheduler; //导入依赖的package包/类
@Ignore
    public void splitterTest() {
        
        FieldReferenceOffsetManager from = buildFROM();        
        assertTrue(null!=from);
        
        PipeConfig busConfig = new PipeConfig(new MessageSchemaDynamic(from), 10, 64);
        
        GraphManager gm = new GraphManager();
        
        int seed = 420;
        int iterations = 10;

        
//simple test using split
        PronghornStage generator = new TestGenerator(gm, seed, iterations, pipe(busConfig));        
        ReplicatorStage splitter = new ReplicatorStage(gm, getOutputPipe(gm, generator), pipe(busConfig.grow2x()), pipe(busConfig.grow2x()));       
        PronghornStage validateResults = new TestValidator(gm, getOutputPipe(gm, splitter, 2), getOutputPipe(gm, splitter, 1));
  
        
        
        //start the timer       
        final long start = System.currentTimeMillis();
        
      //  GraphManager.enableBatching(gm);
        
        StageScheduler scheduler = new ThreadPerStageScheduler(GraphManager.cloneAll(gm));        
        scheduler.startup();        
        
        //blocks until all the submitted runnables have stopped
       
        //this timeout is set very large to support slow machines that may also run this test.
        boolean cleanExit = scheduler.awaitTermination(TIMEOUT_SECONDS, TimeUnit.SECONDS);
      
        long duration = System.currentTimeMillis()-start;
        
        
    }
 
开发者ID:oci-pronghorn,项目名称:Pronghorn,代码行数:39,代码来源:GeneratorValidatorTest.java


示例12: run

import com.ociweb.pronghorn.stage.scheduling.StageScheduler; //导入依赖的package包/类
private void run(final int maxPipes, GraphManager graphManager,	MQTTStage[] outputStages) {
	
	//Add monitoring
	//MonitorConsoleStage.attach(graphManager);
			
	//Enable batching
	//GraphManager.enableBatching(graphManager);
	
	StageScheduler scheduler = new ThreadPerStageScheduler(graphManager);
	
	long start = System.currentTimeMillis();
	scheduler.startup();		 
	 
	Scanner scan = new Scanner(System.in);
	System.out.println("press enter to exit");
	scan.hasNextLine();
	
	System.out.println("exiting...");
	scheduler.shutdown();
			
	long TIMEOUT_SECONDS = 10;
	scheduler.awaitTermination(TIMEOUT_SECONDS, TimeUnit.SECONDS);

	long duration = System.currentTimeMillis() - start;
	
	showTotals(maxPipes, outputStages, duration);
}
 
开发者ID:nathantippy,项目名称:PublishLoadGenerator-For-MQTT,代码行数:28,代码来源:Publisher.java


示例13: runtTest

import com.ociweb.pronghorn.stage.scheduling.StageScheduler; //导入依赖的package包/类
@Test
public void runtTest() {
	
	InputStream demoFileStream = TestPipeline.class.getResourceAsStream("/exampleMessages.csv");    
	assert(null!=demoFileStream);
	
	byte[] data = null;
	try {
		data = new byte[demoFileStream.available()];
		demoFileStream.read(data);
	} catch (IOException e) {
		e.printStackTrace();
		fail(e.getMessage());
	}
	//System.out.println(Arrays.toString(data));
	
	ByteBuffer byteBuffer = ByteBuffer.wrap(data);
	
	PipeConfig linesRingBufferConfig = new PipeConfig((byte)6,(byte)15,null, RawDataSchema.instance);
	PipeConfig messagesConfig = new PipeConfig((byte)6,(byte)15,null,  new MessageSchemaDynamic(MQTTFROM.from));
	
	Pipe linesRingBuffer = new Pipe(linesRingBufferConfig);
	Pipe messagesRingBuffer = new Pipe(messagesConfig);
	
	
	GraphManager graphManager = new GraphManager();
	LineSplitterByteBufferStage lineSplitterStage = new LineSplitterByteBufferStage(graphManager, byteBuffer, linesRingBuffer);
	
	int maxClientsBits = 10;
	int base = 1;
	String server = "";
	String clientPrefix = "";
	MessageCSVStage csvStage = new MessageCSVStage(graphManager, linesRingBuffer, messagesRingBuffer, maxClientsBits, base, server, clientPrefix);
	
	DumpCheckStage dumpStage = new DumpCheckStage(graphManager, messagesRingBuffer);

	StageScheduler scheduler = new ThreadPerStageScheduler(GraphManager.cloneAll(graphManager));
	scheduler.startup();

	long TIMEOUT_SECONDS = 2;
	boolean cleanExit = scheduler.awaitTermination(TIMEOUT_SECONDS, TimeUnit.SECONDS);
	
	
	
	
	
}
 
开发者ID:nathantippy,项目名称:PublishLoadGenerator-For-MQTT,代码行数:48,代码来源:TestPipeline.java



注:本文中的com.ociweb.pronghorn.stage.scheduling.StageScheduler类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java UnableToAccessFieldException类代码示例发布时间:2022-05-22
下一篇:
Java ScanException类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap