Command Migration: ('HSET', 'HGET', 'HSETNX', 'HDEL')
This issue tracks the migration of the mentioned commands - ('HSET', 'HGET', 'HSETNX', 'HDEL') to make them compatible across the three protocols supported by the Dice database: RESP, HTTP, and WebSocket. DiceDB now supports more than one protocols (Resp/http/websocket). We don't want eval operation of each command to be strictly bound with any of the protocols. Currently eval function return statements of each command is bounded to the RESP protocol.
The migration is required because:
- The current implementation is specific to the RESP protocol
- Evaluation functions of each command must be refactored to ensure protocol-agnostic behavior.
- Evaluation functions should return raw responses instead of protocol specific responses.
The goal is to make the command logic protocol-independent, allowing all three protocols to call the same core functionality seamlessly.
Requirements
- Refactor the evaluation function of
[Command Name]to be generic. - Ensure the evaluation function does not include protocol-specific logic.
Migration Steps
-
Analyze Current Implementation
- Review the current codebase to understand how the command logic is implemented.
-
Refactor Return Logic
- Create a new function with the function definition as
evalXXX(args []string, store *dstore.Store) *EvalResponseunder the file/internal/eval/store_eval.go - Analyse return statements of the eval and modify them to send raw types without encoding
- Use errors in the return statements from
/errors/migrated_errors.gofile - Use perdefined responses from
/internal/clientio/resp.gofile as RespType variables
- Create a new function with the function definition as
-
Command/Worker specific Changes
- Make
IsMigratedflag to true in the commands information under/internal/eval/commands.gofile. - Use the newly written eval function against the
NewEvalparameter in the same command structure. - Delete the old eval function from the
/internal/eval/eval.gofile. - Add the migrated command to the
/internal/worker/CommandsMetamap and make it's type asSingleShard
- Make
-
Update Unit Tests
- Refactor existing unit tests to accommodate the new implementation.
- Add new unit tests if necessary to cover all possible cases.
-
Integration Tests
- Run all integration tests to ensure successful migration.
- Ensure that each protocol (RESP, HTTP, WebSocket) works correctly after migration.
Checklist
- [ ] Migrated the evalXXX function with the latest definition
- [ ] Update or add unit tests for the new implementation.
- [ ] All unit tests pass successfully.
- [ ] Ensure all integration tests pass successfully.
Additional Notes
- Describe any edge cases that need to be handled in the generic function.
- Mention any protocol-specific optimizations required in wrappers.
If there are any questions or concerns about this migration, please mention them here.
Related Issues/PRs
- Sample implementation for the Get, Set, GetSet and SetEx can be found in this Pull Request.
@AshwinKul28, can I pick this up?
Hey @anchalsinghrajput thanks! Go for it. 🚀
HI @anchalsinghrajput , I hope you are doing well. Do you happen to have any updates on this? If you've any doubts please let us know on the discord.
@AshwinKul28 @anchalsinghrajput if you are currently occupied with something else, I can pick this up.
Hi @AshwinKul28 @vpsinghg, I am new to go, i am still working on it, will give the update once i complete it.
Hi @AshwinKul28 , can you please reassign this issue to this Git profile.
Done @anchalsingh25 I see you have opened a PR, please attach this issue to the PR. Thanks
Hello @anchalsingh25,
There has been no activity on this issue for the past 5 days. It would be awesome if you keep posting updates to this issue so that we know you are actively working on it.
We are really eager to close this issue at the earliest, hence if we continue to see the inactivity, we will have to reassign the issue to someone else. We are doing this to ensure that the project maintains its momentum and others are not blocked on this work.
Just drop a comment with the current status of the work or share any issues you are facing. We can always chip in to help you out.
Thanks again.
Hey @anchalsingh25 hope you are doing well. I saw on the discord that you had lost your changes, by any chance were you able to recover them?
Hey @anchalsingh25 Sorry to bother you again, hope you are doing well, but we need to chase the timeline for the production readiness, hence for now I'm opening up this issue for others to pick it up, you can pickup any other issue once you are available and back. Thanks a lot and apologies.
Hi @AshwinKul28 , I will be picking this up on priority. This also unblocks me to work on hashmap with expiry.
@lucifercr07 I can work on this
Lets close this issue together @bhima2001 .
Hi @AshwinKul28 @apoorvyadav1111,
I was able to recover my changes. Can you please review the PR?