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

only expand resources when strictly needed #5791

Merged
merged 1 commit into from
Dec 9, 2015

Conversation

deads2k
Copy link
Contributor

@deads2k deads2k commented Nov 9, 2015

Related to #5737.

This only allocates new sets for resources if the set of resources needs expansion. Since we no longer use resource groups by default, this should alleviate most allocations.

@deads2k
Copy link
Contributor Author

deads2k commented Nov 9, 2015

// NormalizeResources expands all resource groups and forces all resources to lower case.
// If the rawResources are already normalized, it returns the original set to avoid the
// allocation and GC cost, since this is hit multiple times for every REST call.
// That means you should NEVER MODIFY THE RESULT of this call.
Copy link
Contributor

Choose a reason for hiding this comment

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

clarify you can get the original back... if you were comfortable modifying the original, you can modify the result

@deads2k
Copy link
Contributor Author

deads2k commented Nov 9, 2015

now with more ugly

@liggitt liggitt added this to the 1.1.1 milestone Nov 9, 2015
// strings can be cast to []byte for free. We range over the bytes to avoid
// the conversion to runes that happens when ranging over strings. This results in
// zero allocations here.
for _, currByte := range []byte(in) {
Copy link
Contributor

Choose a reason for hiding this comment

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

I started weaving my way through string ranging and unicode.IsLower() to convince myself that it was cheap for ascii strings... a isLowerString(s string) would make me happier, but I hadn't proven it to myself yet

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I started weaving my way through string ranging and unicode.IsLower() to convince myself that it was cheap for ascii strings... a isLowerString(s string) would make me happier, but I hadn't proven it to myself yet

Given the pain of analysis, is it worth it? We all wrote this once upon a time in school, so it may look stupid, but it's easy to read, it's never a false negative, and it doesn't require delving into the depths of runes (that no one else will ever read).

Copy link
Contributor

Choose a reason for hiding this comment

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

yeah, this should work:

func isLower(s string) bool {
    for _, r := range s {
        if !unicode.IsLower(r) {
            return false
        }
    }
    return true
}

edit: sorry, condition was backwards... it was the memory allocation patterns of IsLower() I was interested in

Copy link
Contributor Author

Choose a reason for hiding this comment

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

edit: sorry, condition was backwards... it was the memory allocation patterns of IsLower() I was interested in

Future-david and future-jordan both hate us.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

edit: sorry, condition was backwards... it was the memory allocation patterns of IsLower() I was interested in

Alright, since you've dug deep and I haven't. Does it think '/', '-', or '.' are lowers of anything?

@deads2k deads2k force-pushed the fix-gc branch 2 times, most recently from b857565 to 1f25e90 Compare November 10, 2015 20:02
@deads2k
Copy link
Contributor Author

deads2k commented Nov 10, 2015

[test]

@deads2k
Copy link
Contributor Author

deads2k commented Nov 25, 2015

@liggitt bump

@deads2k
Copy link
Contributor Author

deads2k commented Nov 30, 2015

bump

@deads2k
Copy link
Contributor Author

deads2k commented Dec 9, 2015

updated. It still looks insane.

@@ -38,6 +62,19 @@ func ExpandResources(rawResources sets.String) sets.String {
return ret
}

func needsNormalizing(in string) bool {
Copy link
Contributor

Choose a reason for hiding this comment

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

sorry again...

func needsNormalizing(in string) bool {
  if strings.HasPrefix(in, ResourceGroupPrefix) {
    return true
  }
  for _, r := range in {
    if unicode.IsUpper(r) {
      return true
    }
  }
  return false
}

@deads2k deads2k force-pushed the fix-gc branch 2 times, most recently from 0afbe46 to 8c5d174 Compare December 9, 2015 14:11
@liggitt
Copy link
Contributor

liggitt commented Dec 9, 2015

LGTM, [merge]

@openshift-bot
Copy link
Contributor

continuous-integration/openshift-jenkins/merge SUCCESS (https://ci.openshift.redhat.com/jenkins/job/merge_pull_requests_origin/4277/) (Image: devenv-rhel7_2911)

@openshift-bot
Copy link
Contributor

Evaluated for origin test up to c076be3

@openshift-bot
Copy link
Contributor

Evaluated for origin merge up to c076be3

@openshift-bot
Copy link
Contributor

continuous-integration/openshift-jenkins/test SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pull_requests_origin/7702/)

openshift-bot pushed a commit that referenced this pull request Dec 9, 2015
Merged by openshift-bot
@openshift-bot openshift-bot merged commit 48edb88 into openshift:master Dec 9, 2015
@deads2k deads2k deleted the fix-gc branch February 26, 2016 18:43
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.

3 participants