nodeJS将数据插入PostgreSQL错误

问题描述 投票:1回答:2

我使用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' }

每个迭代错误消息的“位置”条目都会更改。

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

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

已解决找到错误。在我的数据中,有“空”条目已经插入其中。过滤掉空数据。我将尝试插入数据的其他建议,因为当前的方式有效,但性能非常糟糕。

node.js postgresql pg-promise
2个回答
1
投票

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


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

UPDATE

如果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);
            }
        });
});

相关链接:

© www.soinside.com 2019 - 2024. All rights reserved.