- check first vertex has specified input data path or not
- fetch a new application id from resource manager
- get secret keys and tokens from namenodes and store them into TokenCache
- copy local files/archives into remote filesystem (e.g. hdfs)
- write job config file to submit dir
- write job description file to submit dir
- get the security token of the jobSubmitDir and store in Credentials
- create submission context for the job
- create launch context for application master
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Configuration conf = getConf(); | |
conf.setInt(INT_PROPERTY, 1); | |
conf.set(STRING_PROPERTY, "VALUE"); | |
conf.set(GraphJobConfig.PROPERTY, "GRAPHJOB_VALUE"); | |
GraphJob job = GraphJob.getInstance(conf); | |
job.setJobName("First Graph Job"); | |
DragonVertex source = new DragonVertex.Builder("source") | |
.producer(EventProducer.class) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Licensed to the Apache Software Foundation (ASF) under one | |
* or more contributor license agreements. See the NOTICE file | |
* distributed with this work for additional information | |
* regarding copyright ownership. The ASF licenses this file | |
* to you under the Apache License, Version 2.0 (the | |
* "License"); you may not use this file except in compliance | |
* with the License. You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.taobao.dw.hdfs.file; | |
import org.apache.hadoop.fs.Path; | |
public class TestWatchService { | |
public static void main(String[] args) throws IOException { | |
AbstractWatchService service = WatchServiceFactory.newWatchService(); | |
service.register(new Path("/user/min/"), | |
StandardWatchEventKinds.ENTRY_CREATE); | |
while (true) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class IncrementVolatileLong { | |
private static volatile long value; | |
public static void increment() { | |
while (value < 500000000L) { | |
value++; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ java -XX:+UnlockDiagnosticVMOptions -XX:PrintAssemblyOptions=hsdis-print-bytes -XX:CompileCommand=print,X.f X | |
CompilerOracle: print X.f | |
Java HotSpot(TM) Server VM warning: printing of assembly code is enabled; turning on DebugNonSafepoints to gain additional output | |
Compiled (c2) 5066 1 nmethod X::f (56 bytes) | |
total in heap [0xb3a1e188,0xb3a1e394] = 524 | |
relocation [0xb3a1e254,0xb3a1e264] = 16 | |
main code [0xb3a1e280,0xb3a1e2c0] = 64 | |
stub code [0xb3a1e2c0,0xb3a1e2d0] = 16 | |
oops [0xb3a1e2d0,0xb3a1e2d4] = 4 | |
scopes data [0xb3a1e2d4,0xb3a1e300] = 44 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.ByteArrayOutputStream; | |
import java.util.ArrayList; | |
import org.objenesis.strategy.StdInstantiatorStrategy; | |
import com.esotericsoftware.kryo.Kryo; | |
import com.esotericsoftware.kryo.io.Output; | |
public class TestKryo { | |
public static class Simple implements java.io.Serializable{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Licensed to the Apache Software Foundation (ASF) under one | |
* or more contributor license agreements. See the NOTICE file | |
* distributed with this work for additional information | |
* regarding copyright ownership. The ASF licenses this file | |
* to you under the Apache License, Version 2.0 (the | |
* "License"); you may not use this file except in compliance | |
* with the License. You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Licensed to the Apache Software Foundation (ASF) under one or more | |
* contributor license agreements. See the NOTICE file distributed with this | |
* work for additional information regarding copyright ownership. The ASF | |
* licenses this file to you under the Apache License, Version 2.0 (the | |
* "License"); you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.BitSet; | |
/** | |
* Shamelessly copied some code from <a | |
* href="mailto:[email protected]">zhongl<a>. | |
* | |
* <p> | |
* The basic idea of a segmented sieve is to choose the sieving primes less than | |
* the square root of n, choose a reasonably large segment size that | |
* nevertheless fits in memory, and then sieve each of the segments in turn, |
OlderNewer