本文整理汇总了Java中org.apache.hadoop.fs.swift.http.SwiftProtocolConstants类的典型用法代码示例。如果您正苦于以下问题:Java SwiftProtocolConstants类的具体用法?Java SwiftProtocolConstants怎么用?Java SwiftProtocolConstants使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SwiftProtocolConstants类属于org.apache.hadoop.fs.swift.http包,在下文中一共展示了SwiftProtocolConstants类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: createManifestForPartUpload
import org.apache.hadoop.fs.swift.http.SwiftProtocolConstants; //导入依赖的package包/类
/**
* Tell the Swift server to expect a multi-part upload by submitting
* a 0-byte file with the X-Object-Manifest header
*
* @param path path of final final
* @throws IOException
*/
public void createManifestForPartUpload(Path path) throws IOException {
String pathString = toObjectPath(path).toString();
if (!pathString.endsWith("/")) {
pathString = pathString.concat("/");
}
if (pathString.startsWith("/")) {
pathString = pathString.substring(1);
}
swiftRestClient.upload(toObjectPath(path),
new ByteArrayInputStream(new byte[0]),
0,
new Header(SwiftProtocolConstants.X_OBJECT_MANIFEST, pathString));
}
开发者ID:naver,项目名称:hadoop,代码行数:22,代码来源:SwiftNativeFileSystemStore.java
示例2: getConf
import org.apache.hadoop.fs.swift.http.SwiftProtocolConstants; //导入依赖的package包/类
/**
* Get a configuration which a small blocksize reported to callers
* @return a configuration for this test
*/
@Override
public Configuration getConf() {
Configuration conf = super.getConf();
/*
* set to 4KB
*/
conf.setInt(SwiftProtocolConstants.SWIFT_BLOCKSIZE, SWIFT_READ_BLOCKSIZE);
return conf;
}
开发者ID:naver,项目名称:hadoop,代码行数:14,代码来源:TestReadPastBuffer.java
示例3: createConfiguration
import org.apache.hadoop.fs.swift.http.SwiftProtocolConstants; //导入依赖的package包/类
/**
* Create a config with a 1KB request size
* @return a config
*/
@Override
protected Configuration createConfiguration() {
Configuration conf = super.createConfiguration();
conf.set(SwiftProtocolConstants.SWIFT_REQUEST_SIZE, "1");
return conf;
}
开发者ID:naver,项目名称:hadoop,代码行数:11,代码来源:TestReadPastBuffer.java
示例4: createConfiguration
import org.apache.hadoop.fs.swift.http.SwiftProtocolConstants; //导入依赖的package包/类
@Override
protected Configuration createConfiguration() {
Configuration conf = super.createConfiguration();
//set the partition size to 1 KB
conf.setInt(SwiftProtocolConstants.SWIFT_PARTITION_SIZE, PART_SIZE);
return conf;
}
开发者ID:naver,项目名称:hadoop,代码行数:8,代码来源:TestSwiftFileSystemPartitionedUploads.java
示例5: setUp
import org.apache.hadoop.fs.swift.http.SwiftProtocolConstants; //导入依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
Configuration conf = new Configuration();
//small blocksize for faster remote tests
conf.setInt(SwiftProtocolConstants.SWIFT_BLOCKSIZE, 2);
URI serviceURI = SwiftTestUtils.getServiceURI(conf);
fSys = FileSystem.get(serviceURI, conf);
super.setUp();
}
开发者ID:naver,项目名称:hadoop,代码行数:11,代码来源:TestFSMainOperationsSwift.java
示例6: assertLocationValid
import org.apache.hadoop.fs.swift.http.SwiftProtocolConstants; //导入依赖的package包/类
private void assertLocationValid(BlockLocation location) throws
IOException {
LOG.info(location);
String[] hosts = location.getHosts();
String[] names = location.getNames();
assertNotEqual("No hosts supplied for " + location, 0, hosts.length);
//for every host, there's a name.
assertEquals("Unequal names and hosts in " + location,
hosts.length, names.length);
assertEquals(SwiftProtocolConstants.BLOCK_LOCATION,
location.getNames()[0]);
assertEquals(SwiftProtocolConstants.TOPOLOGY_PATH,
location.getTopologyPaths()[0]);
}
开发者ID:naver,项目名称:hadoop,代码行数:15,代码来源:TestSwiftFileSystemBlockLocation.java
注:本文中的org.apache.hadoop.fs.swift.http.SwiftProtocolConstants类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论