featureflag

package
v16.3.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 20, 2024 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// EnableAllFeatureFlagsEnvVar will cause Gitaly to treat all feature flags as
	// enabled in case its value is set to `true`. Only used for testing purposes.
	EnableAllFeatureFlagsEnvVar = "GITALY_TESTING_ENABLE_ALL_FEATURE_FLAGS"
)
View Source
var FindChangedPathsBatchedValidation = NewFeatureFlag(
	"find_changed_paths_batched_validation",
	"v16.2.0",
	"https://gitlab.com/gitlab-org/gitaly/-/issues/5410",
	false,
)

FindChangedPathsBatchedValidation enables the use of batched validation in the FindChangedPaths RPC

View Source
var GPGSigning = NewFeatureFlag(
	"gpg_signing",
	"v16.2.0",
	"https://gitlab.com/gitlab-org/gitaly/-/issues/5361",
	false,
)

GPGSigning enables the use of Git v2.41.

View Source
var GetTreeEntriesStructuredErrors = NewFeatureFlag(
	"get_tree_entries_structured_errors",
	"v16.3.0",
	"https://gitlab.com/gitlab-org/gitaly/-/issues/5157",
	false,
)

GetTreeEntriesStructuredErrors enables the usage structured errors for the GetTreeEntries RPC.

View Source
var InterceptReplicateRepository = NewFeatureFlag(
	"intercept_replicate_repository",
	"v16.3.0",
	"https://gitlab.com/gitlab-org/gitaly/-/issues/5477",
	false,
)

InterceptReplicateRepository will enable the interception of the ReplicateRepository RPC in Praefect. Interception of this RPC enables Praefect to support object pool replication.

View Source
var LowerBigFileThreshold = NewFeatureFlag(
	"lower_big_file_threshold",
	"v16.3.0",
	"https://gitlab.com/gitlab-org/gitaly/-/issues/5496",
	false,
)

LowerBigFileThreshold lowers the `core.bigFileThreshold` from 512MB to 50MB. This has two consequences:

  • Files larger than 50MB are not going to be slurped into memory anymore, but will instead use streaming interfaces. This should improve memory consumption.

  • Files larger than 50MB will not be diffed anymore. This should improve latency for RPCs that compute diffs when any such large files are involved. The downside is that diffs for such files cannot be viewed anymore.

View Source
var MailmapOptions = NewFeatureFlag(
	"mailmap_options",
	"v16.2.0",
	"https://gitlab.com/gitlab-org/gitaly/-/issues/5394",
	true,
)

MailmapOptions enables the use of mailmap feature in GitLab

View Source
var ReplicateRepositoryObjectPool = NewFeatureFlag(
	"replicate_repository_object_pool",
	"v16.2.0",
	"https://gitlab.com/gitlab-org/gitaly/-/issues/5088",
	false,
)

ReplicateRepositoryObjectPool will enable replication of a repository's object pool through the `ReplicateRepository` RPC. This will help to preserve object deduplication between repositories that share an object pool.

View Source
var RunCommandsInCGroup = NewFeatureFlag(
	"run_cmds_in_cgroup",
	"v14.10.0",
	"https://gitlab.com/gitlab-org/gitaly/-/issues/4102",
	true,
)

RunCommandsInCGroup allows all commands to be run within a cgroup

View Source
var UserRebaseConfirmablePureGit = NewFeatureFlag(
	"user_rebase_confirmable_pure_git",
	"v16.3.0",
	"https://gitlab.com/gitlab-org/gitaly/-/issues/5493",
	false,
)

UserRebaseConfirmablePureGit will enable the UserRebaseConfirmable RPC to use a pure git implemented rebase instead of git2go.

Functions

func ContextWithExplicitFeatureFlags

func ContextWithExplicitFeatureFlags(ctx context.Context) context.Context

ContextWithExplicitFeatureFlags marks the context such that all feature flags which are checked must have been explicitly set in that context. If a feature flag wasn't set to an explicit value, then checking this feature flag will panic. This is not for use in production systems, but is intended for tests to verify that we test each feature flag properly.

func ContextWithFeatureFlag

func ContextWithFeatureFlag(ctx context.Context, flag FeatureFlag, enabled bool) context.Context

ContextWithFeatureFlag sets the feature flag in both the incoming and outgoing context.

func FromContext

func FromContext(ctx context.Context) map[FeatureFlag]bool

FromContext returns the set of all feature flags defined in the context. This returns both feature flags that are currently defined by Gitaly, but may also return some that aren't defined by us in case they match the feature flag prefix but don't have a definition. This function also returns the state of the feature flag *as defined in the context*. This value may be overridden.

func IncomingCtxWithFeatureFlag

func IncomingCtxWithFeatureFlag(ctx context.Context, flag FeatureFlag, enabled bool) context.Context

IncomingCtxWithFeatureFlag sets the feature flag for an incoming context. This is NOT meant for use in clients that transfer the context across process boundaries.

func OutgoingCtxWithFeatureFlag

func OutgoingCtxWithFeatureFlag(ctx context.Context, flag FeatureFlag, enabled bool) context.Context

OutgoingCtxWithFeatureFlag sets the feature flag for an outgoing context.

Types

type FeatureFlag

type FeatureFlag struct {
	// Name is the name of the feature flag.
	Name string `json:"name"`
	// OnByDefault is the default value if the feature flag is not explicitly set in
	// the incoming context.
	OnByDefault bool `json:"on_by_default"`
}

FeatureFlag gates the implementation of new or changed functionality.

func DefinedFlags

func DefinedFlags() []FeatureFlag

DefinedFlags returns the set of feature flags that have been explicitly defined.

func FromMetadataKey

func FromMetadataKey(metadataKey string) (FeatureFlag, error)

FromMetadataKey parses the given gRPC metadata key into a Gitaly feature flag and performs the necessary conversions. Returns an error in case the metadata does not refer to a feature flag.

This function tries to look up the default value via our set of flag definitions. In case the flag definition is unknown to Gitaly it assumes a default value of `false`.

func NewFeatureFlag

func NewFeatureFlag(name, version, rolloutIssueURL string, onByDefault bool) FeatureFlag

NewFeatureFlag creates a new feature flag and adds it to the array of all existing feature flags. The name must be of the format `some_feature_flag`. Accepts a version and rollout issue URL as input that are not used for anything but only for the sake of linking to the feature flag rollout issue in the Gitaly project.

func (FeatureFlag) FormatWithValue

func (ff FeatureFlag) FormatWithValue(enabled bool) string

FormatWithValue converts the feature flag into a string with the given state. Note that this function uses the feature flag name and not the raw metadata key as used in gRPC metadata.

func (FeatureFlag) IsDisabled

func (ff FeatureFlag) IsDisabled(ctx context.Context) bool

IsDisabled determines whether the feature flag is disabled in the incoming context.

func (FeatureFlag) IsEnabled

func (ff FeatureFlag) IsEnabled(ctx context.Context) bool

IsEnabled checks if the feature flag is enabled for the passed context. Only returns true if the metadata for the feature flag is set to "true"

func (FeatureFlag) MetadataKey

func (ff FeatureFlag) MetadataKey() string

MetadataKey returns the key of the feature flag as it is present in the metadata map.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL