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

Fix redundant ERR prefix in cluster redirect error message #1928

Merged
merged 2 commits into from
Dec 8, 2023

Conversation

git-hulk
Copy link
Member

@git-hulk git-hulk commented Dec 8, 2023

Currently, Kvrocks cluster mode returns a MOVED/TRYAGAIN error message with the 'ERR' prefix, which will cause the Redis client can't recognize the redirection message. To make it compatible with the Redis client, we should remove this prefix.

Before this patch, Kvrocks will return a MOVED error message:

> redis-cli -p 30001 -c set a 1
(error) ERR MOVED 15495 127.0.0.1:30005

After applying this patch, it works well with redis-cli redirection:

> redis-cli -p 30001 -c set a 1
OK

This close #1922

Currently, Kvrocks clsuter mode returns MOVED/TRYAGAIN error message
with the 'ERR' prefix, which will cause the redis client can't recognize
the redirection message. To make it compatible with Redis client, we
should remove this prefix.

Before this patch, Kvrocks will return a MOVED error message:

```
> redis-cli -p 30001 -c set a 1
(error) ERR MOVED 15495 127.0.0.1:30005
```

After applying this patch, it works well with redis-cli redirection:

```
> redis-cli -p 30001 -c set a 1
OK
```
enjoy-binbin
enjoy-binbin previously approved these changes Dec 8, 2023
Copy link
Member

@enjoy-binbin enjoy-binbin left a comment

Choose a reason for hiding this comment

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

LGTM

Copy link

sonarqubecloud bot commented Dec 8, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 3 Code Smells

No Coverage information No Coverage information
2.1% 2.1% Duplication

Reply(redis::Error("ERR " + s.Msg()));
Reply(redis::Error(s.Msg()));
Copy link
Member

Choose a reason for hiding this comment

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

IMHO it is a huge change. How about just change the redirect command.

Copy link
Member

@PragmaTwice PragmaTwice Dec 8, 2023

Choose a reason for hiding this comment

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

It can affect many many error messages. And some of these may be not expected to be changed.

Copy link
Member Author

Choose a reason for hiding this comment

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

@PragmaTwice It only affects the cluster redirect error message which returns by CanExecByMySelf.

Copy link
Member

Choose a reason for hiding this comment

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

I did checked the error returns in CanExecByMySelf, they both no need the ERR code

Copy link
Member

@PragmaTwice PragmaTwice Dec 8, 2023

Choose a reason for hiding this comment

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

Hmmm. Then no problem to me.

But for the general situation (we cannot control it for nested returned status right? it will cause huge maintanance effort), I recommend to add some custom error status and check it here.

I mean, we cannot check every commit every time whether every status need the ERR code, which is not a neat method to me.

Copy link
Member Author

Choose a reason for hiding this comment

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

Yes, @enjoy-binbin also mentioned this before. It's unclear when the "ERR" prefix is needed.

@git-hulk git-hulk merged commit ed2a64b into apache:unstable Dec 8, 2023
git-hulk added a commit that referenced this pull request Dec 8, 2023
Currently, Kvrocks cluster mode returns a MOVED/TRYAGAIN error message with the 'ERR' prefix, which will cause the Redis client can't recognize the redirection message. To make it compatible with the Redis client, we should remove this prefix.

Before this patch, Kvrocks will return a MOVED error message:

```
> redis-cli -p 30001 -c set a 1
(error) ERR MOVED 15495 127.0.0.1:30005
```

After applying this patch, it works well with redis-cli redirection:

```
> redis-cli -p 30001 -c set a 1
OK
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Got (error) ERR MOVED when use redis-cli -c
3 participants