| 程序包 | 说明 |
|---|---|
| com.aliyun.odps |
提供操作ODPS基本资源的类
ODPS基本资源包括: Table, Resource, Function等
Examples:
Account account = new AliyunAccount("accessId", "accessKey");
Odps odps = new Odps(account);
odps.setDefaultProject("my_project");
for (Table t : odps.tables()) {
System.out.print(t.getName() + "\t" + t.getOwner());
}
|
| com.aliyun.odps.task |
提供ODPS支持的Task定义
|
| 限定符和类型 | 方法和说明 |
|---|---|
Task.Properties |
XmlPropertyMapAdapter.marshal(LinkedHashMap<String,String> map) |
| 限定符和类型 | 方法和说明 |
|---|---|
LinkedHashMap<String,String> |
XmlPropertyMapAdapter.unmarshal(Task.Properties properties) |
| 限定符和类型 | 方法和说明 |
|---|---|
Task.Properties |
GraphTask.getJobConf()
Gets the value of the jobConf property.
|
| 限定符和类型 | 方法和说明 |
|---|---|
void |
GraphTask.setJobConf(Task.Properties value)
Sets the value of the jobConf property.
|
Copyright © 2015 Alibaba Cloud Computing. All rights reserved.