我对 PostgreSQL 和数据库完全陌生,并试图对大对象进行一些测试。
我刚刚发现可以将 8GB 文件保存到 Postgres。
但是该文件说大型对象(存储)的最大值为pg_largeobject
2GB。
http://www.postgresql.org/docs/9.2/static/lo-intro.html
我在这里错过了什么吗?
选择version()
节目:
x86_64-unknow-linux-gnu 上的 PostgreSQL 9.2.1,由 gcc (GCC) 4.4.6 20120305 (Red Hat 4.4.6-4) 编译,64 位
如果您有兴趣,这是我的代码:
private long insertLargeObject(UsSqlSession session, FileEntity fileEntity) throws SQLException, FileNotFoundException, IOException{
LargeObjectManager lobj = getLargeObjectAPI(session);
long oid = lobj.createLO();
LargeObject obj = lobj.open(oid, LargeObjectManager.WRITE);
try(FileInputStream fis = new FileInputStream(fileEntity.getFile())){
int bufSize = 0x8FFFFFF;
byte buf[] = new byte[bufSize];
int s = 0;
int tl = 0;
while( (s = fis.read(buf, 0, bufSize)) > 0 ) {
obj.write(buf, 0, s);
tl += s;
}
}
obj.close();
return oid;
}
更新:
大小pg_largeobject
为 11GB,pg_largeobject_metadata
表示只有一行,表示只存在一个大对象。
select sum(length(lo.data))
from pg_largeobject lo
where lo.loid=1497980;
返回4378853347
。
更新:
public File findLargeObject(UsSqlSession session, long oid) throws SQLException, FileNotFoundException, IOException{
LargeObjectManager lobj = getLargeObjectAPI(session);
LargeObject obj = lobj.open(oid, LargeObjectManager.READ);
int bufSize = 0x8FFFFFF;
byte buf[] = new byte[bufSize];
int s = 0;
int tl=0;
File file = new File("e:/target-file");
try(FileOutputStream output = new FileOutputStream(file)){
while( (s = obj.read(buf, 0, bufSize)) > 0 ){
output.write(buf, 0, s);
tl += s;
}
output.flush();
}
obj.close();
return file;
}