nodeJS将数据插入PostgreSQL错误

时间:2017-06-27 15:07:44

标签: node.js postgresql pg-promise

我使用NodeJS和PostgreSQL有一个奇怪的错误,我希望你能帮助我。

我有大量的数据集,大约有2百万个条目要插入到我的数据库中。

一个数据由4列组成:

id: string,
points: float[][]
mid: float[]
occurences: json[]

我正在插入数据:

let pgp = require('pg-promise')(options);
let connectionString = 'postgres://archiv:archiv@localhost:5432/fotoarchivDB';
let db = pgp(connectionString);

cityNet.forEach((arr) => {
    db
    .none(
        "INSERT INTO currentcitynet(id,points,mid,occurences) VALUES $1",
        Inserts("${id},${points}::double precision[],${mid}::double precision[],${occurences}::json[]",arr))
    .then(data => {
        //success
    })
    .catch(error => {
        console.log(error);
        //error
    });
})

function Inserts(template, data) {
    if (!(this instanceof Inserts)) {
        return new Inserts(template, data);
    }
    this._rawDBType = true;
    this.formatDBType = function() {
    return data.map(d => "(" + pgp.as.format(template, d) + ")").join(",");
};

这恰好适用于前309248个数据片段,然后突然出现以下错误:(看起来像)它试图插入的每个下一个数据:

{ error: syntax error at end of input
at Connection.parseE (/home/christian/Masterarbeit_reworked/projekt/server/node_modules/pg-promise/node_modules/pg/lib/connection.js:539:11)
at Connection.parseMessage (/home/christian/Masterarbeit_reworked/projekt/server/node_modules/pg-promise/node_modules/pg/lib/connection.js:366:17)
at Socket.<anonymous> (/home/christian/Masterarbeit_reworked/projekt/server/node_modules/pg-promise/node_modules/pg/lib/connection.js:105:22)
at emitOne (events.js:96:13)
at Socket.emit (events.js:188:7)
at readableAddChunk (_stream_readable.js:176:18)
at Socket.Readable.push (_stream_readable.js:134:10)
at TCP.onread (net.js:548:20)
name: 'error',
length: 88,
severity: 'ERROR',
code: '42601',
detail: undefined,
hint: undefined,
position: '326824',
internalPosition: undefined,
internalQuery: undefined,
where: undefined,
schema: undefined,
table: undefined,
column: undefined,
dataType: undefined,
constraint: undefined,
file: 'scan.l',
line: '1074',
routine: 'scanner_yyerror' }

&#39;&#39;&#39;每个迭代错误消息的条目更改。

我可以重做那个,并且在309248个条目之后它总是会出错。 当我尝试插入较少的内容时,如1000个条目,则不会发生错误。

这让我很困惑。我认为PostgreSQL没有任何最大行数。此外,错误消息对我没有任何帮助。

解决 发现错误。在我的数据中有&#34; null&#34;已经进入它的条目。过滤掉空数据。 我将尝试其他建议插入数据,因为目前的方式有效,但性能非常糟糕。

2 个答案:

答案 0 :(得分:1)

我不确定,但看起来你在最后一个元素(309249)上有错误的数据结构而且PostgreSQL无法解析某些属性

答案 1 :(得分:0)

我是pg-promise的作者。你的整个方法应该改为下面的方法。

通过pg-promise进行大量插入的正确方法:

const pgp = require('pg-promise')({
    capSQL: true
});

const db = pgp(/*connection details*/);

var cs = new pgp.helpers.ColumnSet([
    'id',
    {name: 'points', cast: 'double precision[]'},
    {name: 'mid', cast: 'double precision[]'},
    {name: 'occurences', cast: 'json[]'}
], {table: 'currentcitynet'});

function getNextInsertBatch(index) {
    // retrieves the next data batch, according to the index, and returns it
    // as an array of objects. A normal batch size: 1000 - 10,000 objects,
    // depending on the size of the objects.
    //
    // returns null when there is no more data left.
}

db.tx('massive-insert', t => {
    return t.sequence(index => {
        const data = getNextInsertBatch(index);
        if (data) {
            const inserts = pgp.helpers.insert(data, cs);
            return t.none(inserts);
        }
    });
})
    .then(data => {
        console.log('Total batches:', data.total, ', Duration:', data.duration);
    })
    .catch(error => {
        console.log(error);
    });

<强>更新

如果getNextInsertBatch只能异步获取数据,则从中返回一个promise,并相应地更新sequence->source回调:

return t.sequence(index => {
    return getNextInsertBatch(index)
        .then(data => {
            if (data) {
                const inserts = pgp.helpers.insert(data, cs);
                return t.none(inserts);
            }
        });
});

相关链接: