klesh opened a new issue, #2189: URL: https://github.com/apache/incubator-devlake/issues/2189
## Description Issue #2117 was aiming to support incremental collection for nested resources (i.e. jira changelog collection depends on jira issue id), I found out Partial Update is no solution for our goal, `jira_issues.changelog_updated` get deleted once `jira issue extractor` gets executed. I tried couple of ways to solve this, and finally, seems like storing this information to `jira_changelogs` table is the best option so far. ## Describe the solution you'd like 1. drop column `jira_issue..changelog_updated` 2. add column `jira_changelogs.issue_updated` 3. modify `jira_changelog_collector` to filter issue ids by `jira_issues.update > jira_changelogs.issue_updated` ## Has the Feature been Requested Before? #2117 ## Describe alternatives you've considered Store `changelog_update` in another table, this would cause some maintenance problem -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
