-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4b73bb8
commit 319f946
Showing
2 changed files
with
106 additions
and
2 deletions.
There are no files selected for viewing
101 changes: 101 additions & 0 deletions
101
connectors/migrations/20230906_3_github_fill_parents_field.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
import { | ||
getDiscussionDocumentId, | ||
getIssueDocumentId, | ||
} from "@connectors/connectors/github/temporal/activities"; | ||
import { updateDocumentParentsField } from "@connectors/lib/data_sources"; | ||
import { | ||
Connector, | ||
GithubDiscussion, | ||
GithubIssue, | ||
} from "@connectors/lib/models"; | ||
|
||
async function main() { | ||
// if first arg is "all", update all connectors, else update only the | ||
// connector for the corresponding workspace id | ||
const connectors = | ||
process.argv[2] === "all" | ||
? await Connector.findAll({ | ||
where: { | ||
type: "github", | ||
}, | ||
}) | ||
: await Connector.findAll({ | ||
where: { | ||
type: "github", | ||
workspaceId: process.argv[2], | ||
}, | ||
}); | ||
|
||
for (const connector of connectors) { | ||
console.log(`Updating parents field for connector ${connector.id}`); | ||
await updateDiscussionsParentsFieldForConnector(connector); | ||
await updateIssuesParentsFieldForConnector(connector); | ||
} | ||
} | ||
|
||
async function updateDiscussionsParentsFieldForConnector(connector: Connector) { | ||
// get all distinct documentIds and their channel ids from slack messages in | ||
// this connector | ||
const documentData = await GithubDiscussion.findAll({ | ||
where: { | ||
connectorId: connector.id, | ||
}, | ||
attributes: ["repoId", "discussionNumber"], | ||
}); | ||
// update all parents fields for all pages and databases by chunks of 128 | ||
const chunkSize = 128; | ||
for (let i = 0; i < documentData.length; i += chunkSize) { | ||
const chunk = documentData.slice(i, i + chunkSize); | ||
console.log(`Updating ${chunk.length} documents`); | ||
// update parents field for each document of the chunk, in parallel | ||
await Promise.all( | ||
chunk.map(async (document) => { | ||
const docId = getDiscussionDocumentId( | ||
document.repoId, | ||
document.discussionNumber | ||
); | ||
await updateDocumentParentsField(connector, docId, [ | ||
document.discussionNumber.toString(), | ||
document.repoId, | ||
]); | ||
}) | ||
); | ||
} | ||
} | ||
|
||
async function updateIssuesParentsFieldForConnector(connector: Connector) { | ||
// get all distinct documentIds and their channel ids from slack messages in | ||
// this connector | ||
const documentData = await GithubIssue.findAll({ | ||
where: { | ||
connectorId: connector.id, | ||
}, | ||
attributes: ["repoId", "issueNumber"], | ||
}); | ||
// update all parents fields for all pages and databases by chunks of 128 | ||
const chunkSize = 128; | ||
for (let i = 0; i < documentData.length; i += chunkSize) { | ||
const chunk = documentData.slice(i, i + chunkSize); | ||
console.log(`Updating ${chunk.length} documents`); | ||
// update parents field for each document of the chunk, in parallel | ||
await Promise.all( | ||
chunk.map(async (document) => { | ||
const docId = getIssueDocumentId(document.repoId, document.issueNumber); | ||
await updateDocumentParentsField(connector, docId, [ | ||
document.issueNumber.toString(), | ||
document.repoId, | ||
]); | ||
}) | ||
); | ||
} | ||
} | ||
|
||
main() | ||
.then(() => { | ||
console.log("Done"); | ||
process.exit(0); | ||
}) | ||
.catch((err) => { | ||
console.error(err); | ||
process.exit(1); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters