dice icon indicating copy to clipboard operation
dice copied to clipboard

Command Migration: ('SADD', 'SREM', 'SMEMBERS', 'SCARD')

Open AshwinKul28 opened this issue 1 year ago • 12 comments

This issue tracks the migration of the mentioned commands - ('SADD', 'SREM', 'SMEMBERS', 'SCARD') 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

  1. Analyze Current Implementation

    • Review the current codebase to understand how the command logic is implemented.
  2. Refactor Return Logic

    • Create a new function with the function definition as evalXXX(args []string, store *dstore.Store) *EvalResponse under 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.go file
    • Use perdefined responses from /internal/clientio/resp.go file as RespType variables
  3. Command/Worker specific Changes

    • Make IsMigrated flag to true in the commands information under /internal/eval/commands.go file.
    • Use the newly written eval function against the NewEval parameter in the same command structure.
    • Delete the old eval function from the /internal/eval/eval.go file.
    • Add the migrated command to the /internal/worker/CommandsMeta map and make it's type as SingleShard
  4. Update Unit Tests

    • Refactor existing unit tests to accommodate the new implementation.
    • Add new unit tests if necessary to cover all possible cases.
  5. 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 avatar Oct 08 '24 19:10 AshwinKul28

Hi @AshwinKul28 , can I please pick this up? Thank you :)

dankot12 avatar Oct 09 '24 00:10 dankot12

Hey @dankot12 assigned other one to you, lets open this one up for others! Thanks

AshwinKul28 avatar Oct 09 '24 02:10 AshwinKul28

@AshwinKul28 - please assign this to me.

psrvere avatar Oct 09 '24 08:10 psrvere

Hey @psrvere I see you have another issue assigned to you. Let's open this one up for others. Thanks

AshwinKul28 avatar Oct 09 '24 13:10 AshwinKul28

@AshwinKul28 can i pick this up. thank you.

sahoss avatar Oct 09 '24 15:10 sahoss

@AshwinKul28 can you please assign this?

gagandeepp avatar Oct 10 '24 05:10 gagandeepp

@AshwinKul28 I'll be happy to pick this up

mojozinc avatar Oct 10 '24 08:10 mojozinc

Assigned to @sahoss . Go for it 🚀

Thanks for the interest @mojozinc and @gagandeepp you can have look at other issues, and we are opening more soon.

AshwinKul28 avatar Oct 10 '24 13:10 AshwinKul28

@AshwinKul28 I have taken a pass at the implementation. I have migrated just the SADD command to get some early feedback. will migrate the rest after your initial review. thank you.!

sahoss avatar Oct 11 '24 15:10 sahoss

Thanks @sahoss , added few comments on the PR.

AshwinKul28 avatar Oct 12 '24 20:10 AshwinKul28

Hello @sahoss,

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.

arpitbbhayani avatar Oct 24 '24 13:10 arpitbbhayani

@arpitbbhayani We are discussing the issue on the PR itself. I have 1 remaining item which is to refresh the docs. i plan to get to it today/tomorrow.

sahoss avatar Oct 24 '24 15:10 sahoss