replied on October 5, 2015
My process still works with this bug as all docs are still found but I'd prefer this function in the way expected. As far as why to use it:
- Scenario: You are running a search for all documents in a folder (that all have the exact same metadata) that need to be processed within the same workflow. Your search returns 1000's of documents and you want to speed up how they are processed.
- Option 1: Run a Find Entries on the folder and send them through a For Each Entry activity where they'd be processed one at a time.
- Option 2: Have a Parallel activity with each branch having an advanced search for the same folder but one is pulling back the docs who's entry id end in an even # and the other pulling back the docs who's entry id end in an odd #. This allows me to process in parallel documents that otherwise have no distinguishing characteristics (same name, path, template, & metadata). If need be I could also break this down more and have a branch of the parallel activity for each number 0-9.
Since these are all named the same I could go based on the end of the name, (e.g if it ends with "1)", "2)", ...) and accomplish the same results. But I'm assuming eventually there may be situations with different named documents in these folders so I am trying to find the one constant across all of these, which is entry ID. Please let me know if you have any suggestions for parallel processing 1000's of documents within a single workflow that are stored in the same folder and have the same metadata.