3

我对 PostgreSQL 和数据库完全陌生,并试图对大对象进行一些测试。

我刚刚发现可以将 8GB 文件保存到 Postgres。

但是该文件说大型对象(存储)的最大值为pg_largeobject2GB。

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;
}
4

1 回答 1

2

我认为正确的答案是:“您的 PostgreSQL 是在 int64 支持下构建的,因此您可以在一个 LO 中写入超过 2GB 的内容。不过,您在阅读它时可能会遇到问题。”

尝试阅读 Tom Lane 的回复:http: //postgresql.1045698.n5.nabble.com/Large-objects-td2852592.html注意关于“lo_seek64”和“lo_tell64”功能的随机咆哮。

于 2013-06-11T08:58:57.010 回答