我正在使用Apache JClouds连接到我的Openstack Swift安装。我设法从Swift上载和下载对象。但是,我看不到如何将动态大对象上传到Swift。
要上传动态大对象,我需要先上传所有片段,就像往常一样。然后,我需要上传一个清单对象以逻辑上将它们组合起来。问题是要告诉Swift这是一个清单对象,我需要设置一个特殊的标头,我不知道如何使用JClouds api来实现。
这是来自openstack官方网站的动态大对象example。
我正在使用的代码:
public static void main(String[] args) throws IOException {
BlobStore blobStore = ContextBuilder.newBuilder("swift").endpoint("http://localhost:8080/auth/v1.0")
.credentials("test:test", "test").buildView(BlobStoreContext.class).getBlobStore();
blobStore.createContainerInLocation(null, "container");
ByteSource segment1 = ByteSource.wrap("foo".getBytes(Charsets.UTF_8));
Blob seg1Blob = blobStore.blobBuilder("/foo/bar/1").payload(segment1).contentLength(segment1.size()).build();
System.out.println(blobStore.putBlob("container", seg1Blob));
ByteSource segment2 = ByteSource.wrap("bar".getBytes(Charsets.UTF_8));
Blob seg2Blob = blobStore.blobBuilder("/foo/bar/2").payload(segment2).contentLength(segment2.size()).build();
System.out.println(blobStore.putBlob("container", seg2Blob));
ByteSource manifest = ByteSource.wrap("".getBytes(Charsets.UTF_8));
// TODO: set manifest header here
Blob manifestBlob = blobStore.blobBuilder("/foo/bar").payload(manifest).contentLength(manifest.size()).build();
System.out.println(blobStore.putBlob("container", manifestBlob));
Blob dloBlob = blobStore.getBlob("container", "/foo/bar");
InputStream input = dloBlob.getPayload().openStream();
while (true) {
int i = input.read();
if (i < 0) {
break;
}
System.out.print((char) i); // should print "foobar"
}
}
“待办事项”部分是我的问题。
编辑:
我已经指出,Jclouds自动处理大文件上传,这在我们的案例中不是很有用。实际上,我们开始上传第一个片段时,我们不知道文件的大小或下一个片段何时到达。我们的api旨在使客户端能够以自己选择的大小和自己选择的时间按块大小上传文件,完成后,调用“提交”以将这些块制作为文件。因此,这使我们希望在此处自行上传清单。
最佳答案
根据@Everett Toews的回答,我的代码正确运行了:
public static void main(String[] args) throws IOException {
CommonSwiftClient swift = ContextBuilder.newBuilder("swift").endpoint("http://localhost:8080/auth/v1.0")
.credentials("test:test", "test").buildApi(CommonSwiftClient.class);
SwiftObject segment1 = swift.newSwiftObject();
segment1.getInfo().setName("foo/bar/1");
segment1.setPayload("foo");
swift.putObject("container", segment1);
SwiftObject segment2 = swift.newSwiftObject();
segment2.getInfo().setName("foo/bar/2");
segment2.setPayload("bar");
swift.putObject("container", segment2);
swift.putObjectManifest("container", "foo/bar2");
SwiftObject dlo = swift.getObject("container", "foo/bar", GetOptions.NONE);
InputStream input = dlo.getPayload().openStream();
while (true) {
int i = input.read();
if (i < 0) {
break;
}
System.out.print((char) i);
}
}
关于java - 如何在Apache JClouds中设置HTTP header ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22853557/