Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LlamaIndexTS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
run-llama
LlamaIndexTS
Commits
83d7f415
Unverified
Commit
83d7f415
authored
6 months ago
by
Ryan Lee
Committed by
GitHub
6 months ago
Browse files
Options
Downloads
Patches
Plain Diff
fix: database insertion for PGVectorStore (#1157)
parent
ae1149ff
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.changeset/six-frogs-thank.md
+11
-0
11 additions, 0 deletions
.changeset/six-frogs-thank.md
packages/llamaindex/src/storage/vectorStore/PGVectorStore.ts
+41
-22
41 additions, 22 deletions
packages/llamaindex/src/storage/vectorStore/PGVectorStore.ts
with
52 additions
and
22 deletions
.changeset/six-frogs-thank.md
0 → 100644
+
11
−
0
View file @
83d7f415
---
"
llamaindex"
:
patch
---
Fix database insertion for
`PGVectorStore`
It will now:
-
throw an error if there is an insertion error.
-
Upsert documents with the same id.
-
add all documents to the database as a single
`INSERT`
call (inside a transaction).
This diff is collapsed.
Click to expand it.
packages/llamaindex/src/storage/vectorStore/PGVectorStore.ts
+
41
−
22
View file @
83d7f415
...
...
@@ -200,34 +200,53 @@ export class PGVectorStore
* @returns A list of zero or more id values for the created records.
*/
async
add
(
embeddingResults
:
BaseNode
<
Metadata
>
[]):
Promise
<
string
[]
>
{
if
(
embeddingResults
.
length
==
0
)
{
if
(
embeddingResults
.
length
==
=
0
)
{
console
.
debug
(
"
Empty list sent to PGVectorStore::add
"
);
return
Promise
.
resolve
(
[]
)
;
return
[];
}
const
sql
:
string
=
`INSERT INTO
${
this
.
schemaName
}
.
${
this
.
tableName
}
(id, external_id, collection, document, metadata, embeddings)
VALUES ($1, $2, $3, $4, $5, $6)`
;
const
db
=
await
this
.
getDb
();
const
data
=
this
.
getDataToInsert
(
embeddingResults
);
const
ret
:
string
[]
=
[];
for
(
let
index
=
0
;
index
<
data
.
length
;
index
++
)
{
const
params
=
data
[
index
];
try
{
const
result
=
await
db
.
query
(
sql
,
params
);
if
(
result
.
rows
.
length
)
{
const
id
=
result
.
rows
[
0
].
id
as
string
;
ret
.
push
(
id
);
}
}
catch
(
err
)
{
const
msg
=
`
${
err
}
`
;
console
.
log
(
msg
,
err
);
}
try
{
await
db
.
query
(
"
BEGIN
"
);
const
data
=
this
.
getDataToInsert
(
embeddingResults
);
const
placeholders
=
data
.
map
(
(
_
,
index
)
=>
`($
${
index
*
6
+
1
}
, `
+
`$
${
index
*
6
+
2
}
, `
+
`$
${
index
*
6
+
3
}
, `
+
`$
${
index
*
6
+
4
}
, `
+
`$
${
index
*
6
+
5
}
, `
+
`$
${
index
*
6
+
6
}
)`
,
)
.
join
(
"
,
"
);
const
sql
=
`
INSERT INTO
${
this
.
schemaName
}
.
${
this
.
tableName
}
(id, external_id, collection, document, metadata, embeddings)
VALUES
${
placeholders
}
ON CONFLICT (id) DO UPDATE SET
external_id = EXCLUDED.external_id,
collection = EXCLUDED.collection,
document = EXCLUDED.document,
metadata = EXCLUDED.metadata,
embeddings = EXCLUDED.embeddings
RETURNING id
`
;
const
flattenedParams
=
data
.
flat
();
const
result
=
await
db
.
query
(
sql
,
flattenedParams
);
await
db
.
query
(
"
COMMIT
"
);
return
result
.
rows
.
map
((
row
)
=>
row
.
id
as
string
);
}
catch
(
error
)
{
await
db
.
query
(
"
ROLLBACK
"
);
throw
error
;
}
return
Promise
.
resolve
(
ret
);
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment