本文整理汇总了Golang中github.com/youtube/vitess/go/vt/throttler/throttlerclient.Client.GetConfiguration方法的典型用法代码示例。如果您正苦于以下问题:Golang Client.GetConfiguration方法的具体用法?Golang Client.GetConfiguration怎么用?Golang Client.GetConfiguration使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/youtube/vitess/go/vt/throttler/throttlerclient.Client
的用法示例。
在下文中一共展示了Client.GetConfiguration方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: configuration
func (tf *testFixture) configuration(t *testing.T, client throttlerclient.Client) {
initialConfigs, err := client.GetConfiguration(context.Background(), "" /* all */)
if err != nil {
t.Fatalf("Cannot execute remote command: %v", err)
}
// Test UpdateConfiguration.
config := &throttlerdata.Configuration{
TargetReplicationLagSec: 1,
MaxReplicationLagSec: 2,
InitialRate: 3,
MaxIncrease: 0.4,
EmergencyDecrease: 0.5,
MinDurationBetweenIncreasesSec: 6,
MaxDurationBetweenIncreasesSec: 7,
MinDurationBetweenDecreasesSec: 8,
SpreadBacklogAcrossSec: 9,
IgnoreNSlowestReplicas: 10,
IgnoreNSlowestRdonlys: 11,
AgeBadRateAfterSec: 12,
BadRateIncrease: 0.13,
}
names, err := client.UpdateConfiguration(context.Background(), "t2", config /* false */, true /* copyZeroValues */)
if err != nil {
t.Fatalf("Cannot execute remote command: %v", err)
}
if got, want := names, []string{"t2"}; !reflect.DeepEqual(got, want) {
t.Fatalf("returned names of updated throttlers is wrong. got = %v, want = %v", got, want)
}
// Test GetConfiguration.
configs, err := client.GetConfiguration(context.Background(), "t2")
if err != nil {
t.Fatalf("Cannot execute remote command: %v", err)
}
if len(configs) != 1 || configs["t2"] == nil {
t.Fatalf("wrong named configuration returned. got = %v, want configuration for t2", configs)
}
if got, want := configs["t2"], config; !proto.Equal(got, want) {
t.Fatalf("did not read updated config. got = %v, want = %v", got, want)
}
// Reset should return the initial configs.
namesForReset, err := client.ResetConfiguration(context.Background(), "" /* all */)
if err != nil {
t.Fatalf("Cannot execute remote command: %v", err)
}
if got, want := namesForReset, throttlerNames; !reflect.DeepEqual(got, want) {
t.Fatalf("returned names of reset throttlers is wrong. got = %v, want = %v", got, want)
}
// Verify that it was correctly set.
configsAfterReset, err := client.GetConfiguration(context.Background(), "" /* all */)
if err != nil {
t.Fatalf("Cannot execute remote command: %v", err)
}
if got, want := configsAfterReset, initialConfigs; !reflect.DeepEqual(got, want) {
t.Fatalf("wrong configurations after reset. got = %v, want = %v", got, want)
}
}
示例2: getConfigurationPanics
func getConfigurationPanics(t *testing.T, client throttlerclient.Client) {
_, err := client.GetConfiguration(context.Background(), "")
if !errorFromPanicHandler(err) {
t.Fatalf("GetConfiguration RPC implementation does not catch panics properly: %v", err)
}
}