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

chore: avoid the double evaluation of entityId in ClusterSharding #1304

Merged
merged 4 commits into from
Jun 5, 2024

Conversation

Roiocam
Copy link
Member

@Roiocam Roiocam commented Apr 30, 2024

Found something we could optimized it.

@Roiocam Roiocam marked this pull request as draft April 30, 2024 17:08
@laglangyue
Copy link
Contributor

Seems like duplicate code, can it be abstracted

Copy link
Contributor

@pjfanning pjfanning left a comment

Choose a reason for hiding this comment

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

blocking - needs discussion on the dev list because of the ongoing release discussion

@pjfanning pjfanning added this to the 1.1.0-M2 milestone May 7, 2024
@Roiocam
Copy link
Member Author

Roiocam commented May 13, 2024

Use the cacheable partial function, and then verify it works.

var calTime: Int = 0
def entityId(value: Any): String = {
  calTime = calTime + 1
  value match {
    case "wrong" => null
    case _ => String.valueOf(value)
  }
}

def extractEntityIdFromExtractor: PartialFunction[Any, Any] =
  new scala.runtime.AbstractPartialFunction[Any, (String, Any)] {
    var cache: String = _

    override def isDefinedAt(msg: Any): Boolean = {
      cache = entityId(msg)
      cache != null
    }

    override def apply(x: Any): (String, Any) = (cache, x)
  }

lazy val xx = extractEntityIdFromExtractor

lazy val yy: PartialFunction[Any, Any] = {
  case message if entityId(message) != null => (entityId(message), message)

}

assert(!xx.isDefinedAt("wrong"))
assert(!yy.isDefinedAt("wrong"))
calTime = 0
val health = "health"
println(xx.isDefinedAt(health))
println(xx(health))
println(s"caltime = $calTime")
println("=====")
calTime = 0
println(yy.isDefinedAt(health))
println(yy(health))
println(s"caltime = $calTime")


@Roiocam Roiocam marked this pull request as ready for review May 13, 2024 05:38
@Roiocam Roiocam requested a review from He-Pin May 13, 2024 05:52
@pjfanning pjfanning dismissed their stale review May 15, 2024 11:47

1.1.0-M1 vote passed

@Roiocam Roiocam requested a review from pjfanning May 17, 2024 01:41
Copy link
Contributor

@pjfanning pjfanning left a comment

Choose a reason for hiding this comment

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

lgtm

@pjfanning
Copy link
Contributor

@Roiocam is it ok to get this merged now?

@Roiocam
Copy link
Member Author

Roiocam commented Jun 4, 2024

@Roiocam is it ok to get this merged now?

I have no objections to this, but it would be better if there were reviews from others.

Copy link
Contributor

@nvollmar nvollmar left a comment

Choose a reason for hiding this comment

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

lgtm

@Roiocam Roiocam merged commit b0e9886 into apache:main Jun 5, 2024
18 checks passed
@Roiocam Roiocam deleted the avoid-double-eval branch June 5, 2024 15:23
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.

None yet

5 participants