-
Notifications
You must be signed in to change notification settings - Fork 22
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
Improve indexing flow #398
Comments
@roll @romicolman @guergana let me know your thoughts! |
I am with Romina on this... what do we mean by indexing? I also don't get it. Why do the users need to index the files? Indexing is usually a way of optimizing the file for faster searches, I see some validation for errors going on the in the server code. 🙈 what is the original intention of this button? I agree with @pdelboca that this terminology is too technical for end users and if this is table optimization it should be hidden from the users and if we are using this button to validate then we should give it a clearer name. |
I think we discussed it with Romina that for end-users it needs to be called "Validate" instead of "Index". @guergana, it's a technical term from |
Hi all! A couple of comments from my side:
Ideal workflow
Again, I understand that INDEX and VALIDATE are two different buttons right now. If we cannot make both functions work together, we need to rename INDEX to make it understandable to users. For me, INDEX is a kind of RELOAD/REPROCESS data. One more thing to add to this discussion. I checked the Data Curator documentation here to check how they addressed this issue, but maybe you see something in the code that is useful. |
Overview
This ticket is a continuation of #391 and #397. It aims to improve our index workflow to fix some current issues.
User Story
Technical details
Currently the indexing of files is done at read time (we have only one method
fileIndex
called uponload
). It is probably a good idea to migrate this to a more traditional approach to run the report and store the results when creating/saving the file and then read it when opening the file.This might be working but it is not quite clear, we should create new actions and methods to explicitly
create
andget
instead of a singlefileIndex
method that handles multiple scenarios.Proposal
fileIndex
into two methods:setIndex
andgetIndex
.setIndex
when creating the file or saving it.getIndex
when loading the file (and after saving it).index
? This is quite a technical terms and it's definitely confusing for end users. (This could be done in a separated ticket.)This way we can have specific actions that can be called independently to better manage the sincronization of file <-> index.
The text was updated successfully, but these errors were encountered: