-
SSIA really: is it possible to index only new documents in server mode? |
Beta Was this translation helpful? Give feedback.
Answered by
mvanzalu
Jul 21, 2022
Replies: 2 comments
-
We created an issue about it here |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hello @erikkri, yes it is possible to do so.
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mvanzalu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @erikkri, yes it is possible to do so.
After adding your new documents in your folder, you will have to execute two commands :
datashare -m CLI --defaultProject nameOfYourIndex --stages "SCANIDX" --reportName nameOfYourQueue
(This command will scan your index and gather the paths to store it inside the report queue)datashare -m CLI --dataDir path/to/your/directory --defaultProject nameOfYourIndex --stages "SCAN,INDEX" --reportName nameOfYourQueue
(This command will scan and index the documents in your directory, thanks to the report queue, it will skip the paths inside of it)