Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-101128

Implement tag generation and runtime evaluation for $encStrStartsWith

    • Type: Icon: Task Task
    • Resolution: Unresolved
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: None
    • Component/s: None
    • Query Integration
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      Once SPM-2880 delivers the FLEFindTextPayload, we will be able to finish the server rewrite work for $encStrStartsWith.

      Goals for this task:

      • Implement TextSearchPredicate::generateTags() for ExpressionEncStrStartsWith.
      • Implement ExpressionEncStrStartsWith::evaluate() (this is our runtime evaluation during a column scan).
      • Perform end to end testing of $encStrStartsWith, in supported read commands.
        • The end to end tests should go in a jstest under the fle2/ directory.
        • Look into making the end to end test a configurable test runner we can leverage for testing other expressions, and in all supported commands.

       

       

      The code in the ExpressionEncTextSearch constructor will likely look like: 

       if (encryptedBinDataType) {
               auto tokens = ParsedFindTextSearchPayload(value);
              _evaluatorV2 = EncryptedPredicateEvaluatorV2(
                  {ServerZerosEncryptionToken::deriveFrom(tokens.serverDataDerivedToken)});
          }  

      While the lambda in evaluate_fle.cpp for evaluate(ExpressionEncStrStartsWith&) will likely look like:

       [&value](auto serverValue) {
      
                  // extractMetadataBlocks should only be run once.
                  tassert(10112800, "extractMetadataBlocks should only be run once by evaluate",
                  !value);
                   value.emplace(serverValue);
                  std::vector<ConstDataRange> metadataBlocks;
                  for (const auto& block : value->getPrefixMetadataBlocks()) {
                      metadataBlocks.push_back(block.encryptedZeros);
                  }
                  return metadataBlocks;
              } 

       

       

       

            Assignee:
            Unassigned Unassigned
            Reporter:
            santiago.roche@mongodb.com Santiago Roche
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              None
              None
              None
              None