Skip to content
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

SOLR-16773: UI: Cloud>Nodes screen fix display of cores with non-standard shard names #1593

Merged
merged 2 commits into from Apr 30, 2023

Conversation

janhoy
Copy link
Contributor

@janhoy janhoy commented Apr 27, 2023

…ames

Signed-off-by: Jan Høydahl <janhoy@users.noreply.github.com>
Signed-off-by: Jan Høydahl <janhoy@users.noreply.github.com>
Copy link
Contributor

@MarcusSorealheis MarcusSorealheis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good simplification. Of course, I generally think we should move away from code like this as it is difficult to maintain, here is a bug fix.

core.collection = collection.name;
core.shard = shard.name;
core.shard_state = shard.state;
core.label = core['collection'] + "_"
+ (core['shard'] + "_").replace(/shard(\d+)_/, 's\$1')
+ core['replica'].replace(/replica_?[ntp]?(\d+)/, 'r\$1');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think could be made a bit clearer as to what is going here in the GitHub description, e.g. super imposing a box on what has changed or a before/after, which is somewhat standard for UI. Alternatively, you could show how some of the names were treated in the past and how they will be treated going forward. Otherwise, mostly looks good.

However, I know this is in maintenance mode.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My only question is, what is the ntp here for? I'm assuming NRT, Pull, and TLog replicas?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are there any reasons why we would not do any processing whatsoever of the shard names and simply show them as they were named? I assume there are some other screens or other confusion that could arise, but I am trying to doubly check that I understand the approach here fully.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The label is for display purpose only. There is no before/after. This code produces exactly same display label as previously, but now also works for the custom shard names in implicit mode.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, ntp is replica type.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does the test failure have anything to do with the change? It doesn't seem like it.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

so, when implicit mode what would happen before this change?

After, it will show up. It would be helpful to know if (1) there was a particular error, (2) didn't show up at all, (3) was a broken page, etc.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

so, when implicit mode what would happen before this change?

The label would be ok, but we’d use wrong key for fetching metrics and get empty values in UI.

Copy link
Contributor

@epugh epugh left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. We all know this area could be much better in the future ;-)

@janhoy janhoy merged commit 538145f into apache:main Apr 30, 2023
2 of 3 checks passed
@janhoy janhoy deleted the SOLR-16773-UI-nonstandard-shardname branch April 30, 2023 22:00
janhoy added a commit that referenced this pull request Apr 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants