gpt4 book ai didi

node.js - nodeJS 将数据插入 PostgreSQL 错误

转载 作者:行者123 更新时间:2023-11-29 13:19:14 29 4
gpt4 key购买 nike

我在使用 NodeJS 和 PostgreSQL 时遇到一个奇怪的错误,我希望你能帮我解决。

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

一个数据由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 没有任何最大行数。此外,错误消息对我没有任何帮助。

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

最佳答案

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

相关链接:

关于node.js - nodeJS 将数据插入 PostgreSQL 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44783797/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com