-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When importer is in incremental mode, offer an option to avoid recording the album #2773
Comments
Interesting idea! For what it's worth, this is only relevant in |
@sampsyo Is this something that can be done with a plugin? Adding to the incremental list is done in the final stage of the pipeline, after all the plugin stages have passed. I would also really like this feature, and I see three options for implementing it if I'm correct about not being able to do it with a plugin: Option 1: A config flag to bypass adding to the incremental list on Option 2: Add a new prompt option [L]ater, only visible on incremental imports. Option 3: Add a new plugin action to skip all future pipeline stages for the current item. |
Agreed; I don’t believe a plugin could do this currently. Thanks for laying out these options! This is a good set of alternatives, and I always find it useful to map out the space of possible implementations ahead of time. 👍 Here are some comments on each option:
Overall, I lean toward 1 if it doesn’t seem too limited, and probably 2 otherwise. Any opinions? |
New importer option incremental_skip_later, fixes #2773
It would be useful to have a "[L]ater" plugin that allows to non-permanently skip an import in incremental mode, in order to be processed again in subsequent import runs. That would basically be the "[S]kip" functionality, minus storing the path.
Typical use case would be, in a large volume import, to skip the difficult cases for the time being and to re-visit these later.
The text was updated successfully, but these errors were encountered: