Skip to content

Commit

Permalink
Merge pull request #494 from vitessio/fix-list-of-benchmarks
Browse files Browse the repository at this point in the history
unskip benchmarks
  • Loading branch information
frouioui authored Jan 8, 2024
2 parents 13497b2 + 80ebaa3 commit 2a6e2f9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions go/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,16 +174,16 @@ func (s *Server) Init() error {
}

s.benchmarkConfig = map[string]benchmarkConfig{
// "micro": {file: path.Join(s.benchmarkConfigPath, "micro.yaml"), v: viper.New(), skip: true},
// "oltp": {file: path.Join(s.benchmarkConfigPath, "oltp.yaml"), v: viper.New()},
// "oltp-set": {file: path.Join(s.benchmarkConfigPath, "oltp-set.yaml"), v: viper.New()},
// "oltp-readonly": {file: path.Join(s.benchmarkConfigPath, "oltp-readonly.yaml"), v: viper.New()},
"micro": {file: path.Join(s.benchmarkConfigPath, "micro.yaml"), v: viper.New(), skip: true},
"oltp": {file: path.Join(s.benchmarkConfigPath, "oltp.yaml"), v: viper.New()},
"oltp-set": {file: path.Join(s.benchmarkConfigPath, "oltp-set.yaml"), v: viper.New()},
"oltp-readonly": {file: path.Join(s.benchmarkConfigPath, "oltp-readonly.yaml"), v: viper.New()},

// TODO: oltp-readonly-olap benchmarks are skipped for now as they fail very often due to
// MySQL connections being dropped. This issue will be investigated soon.
// "oltp-readonly-olap": {file: path.Join(s.benchmarkConfigPath, "olap-readonly.yaml"), v: viper.New(), skip: true},
"oltp-readonly-olap": {file: path.Join(s.benchmarkConfigPath, "olap-readonly.yaml"), v: viper.New(), skip: true},

// "tpcc": {file: path.Join(s.benchmarkConfigPath, "tpcc.yaml"), v: viper.New()},
"tpcc": {file: path.Join(s.benchmarkConfigPath, "tpcc.yaml"), v: viper.New()},
"tpcc_fk": {file: path.Join(s.benchmarkConfigPath, "tpcc_fk.yaml"), v: viper.New()},
}
for configName, config := range s.benchmarkConfig {
Expand Down

0 comments on commit 2a6e2f9

Please sign in to comment.