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

BED-5266: chore: plumb tier enabled FF #1323

Draft
wants to merge 4 commits into
base: selector-engine
Choose a base branch
from

Conversation

mistahj67
Copy link
Contributor

@mistahj67 mistahj67 commented Apr 4, 2025

Description

  • TODO

Motivation and Context

This PR addresses: BED-5266

Why is this change required? What problem does it solve?

How Has This Been Tested?

Please describe in detail how you tested your changes.
Include details of your testing environment, and the tests you ran to
see how your change affects other areas of the code, etc.

Screenshots (optional):

Types of changes

  • Chore (a change that does not modify the application functionality)

Checklist:

@mistahj67 mistahj67 self-assigned this Apr 4, 2025
@mistahj67 mistahj67 added the api A pull request containing changes affecting the API code. label Apr 4, 2025
@mistahj67 mistahj67 marked this pull request as draft April 4, 2025 23:25
return nil
}

func TagAssetGroupsAndTierZero(ctx context.Context, db database.Database, graphDb graph.Database, additionalFiltersToClear ...graph.Criteria) error {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This offered a chance to single pathway the tagging step for asset groups and tier zero nodes which should make it that much easier to separate from "analysis"

@@ -87,3 +88,13 @@ type GetFlagByKeyer interface {
// GetFlagByKey attempts to fetch a FeatureFlag by its key.
GetFlagByKey(context.Context, string) (FeatureFlag, error)
}

// TODO Cleanup after Tiering GA
func GetTieringEnabled(ctx context.Context, service GetFlagByKeyer) bool {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

My intent here was 2 fold:

  1. Eliminate the error handling by falling back to false which would be extremely verbose if necessary everywhere else
  2. Create a single leverage point where the deletion of this function will force cleanup of all the other dependent areas associated with this feature flag. This should help make cleanup less sticky.

@@ -58,6 +59,17 @@ type Node struct {
Properties *Properties `json:"properties"`
}

// TODO Cleanup after Tiering GA
func (s *Node) IsTierZero() bool {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Due to cyclic entanglement, it was required to use the hardcoded strings instead of the constants.

This workaround method contains the assumption that once toggled, tagging will cleanup the other tagging approach and vice versa. Which can be seen in TagAssetGroupsAndTierZero

It was required because most of the node filtering and traversal logic cannot easily plumb db checks this deep.

)

// TODO Cleanup after Tiering GA
func SearchTierZeroNodes(tieringEnabled bool) graph.Criteria {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Due to cyclic entanglement, it was required to use the hardcoded strings instead of the constants.

These are leveraged across a number of filtering logic to:
a) slot in without impacting imports as the query package is where consumers were previously building these filters
b) dynamically toggle the required dawgs criteria dependent on the tagging approach

@@ -1606,18 +1601,6 @@ func FetchAllGroupMembers(ctx context.Context, db graph.Database, targets graph.
return allGroupMembers, nil
}

func FetchDomainTierZeroAssets(tx graph.Transaction, domain *graph.Node) (graph.NodeSet, error) {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Unused

@mistahj67 mistahj67 force-pushed the tiering-enabled-plumbing branch from f13bac5 to a3d00ce Compare April 5, 2025 00:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api A pull request containing changes affecting the API code.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant