Files
tidb/ddl/stat.go
2015-12-09 14:51:04 +08:00

87 lines
2.6 KiB
Go

// Copyright 2015 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package ddl
import (
"github.com/juju/errors"
"github.com/pingcap/tidb/inspectkv"
"github.com/pingcap/tidb/kv"
"github.com/pingcap/tidb/sessionctx/variable"
)
var (
ddlServerID = "ddl_server_id"
ddlSchemaVersion = "ddl_schema_version"
ddlOwnerID = "ddl_owner_id"
ddlOwnerLastUpdateTS = "ddl_owner_last_update_ts"
ddlJobID = "ddl_job_id"
ddlJobAction = "ddl_job_action"
ddlJobLastUpdateTS = "ddl_job_last_update_ts"
ddlJobState = "ddl_job_state"
ddlJobError = "ddl_job_error"
ddlJobSchemaState = "ddl_job_schema_state"
ddlJobSchemaID = "ddl_job_schema_id"
ddlJobTableID = "ddl_job_table_id"
ddlJobSnapshotVer = "ddl_job_snapshot_ver"
ddlJobReorgHandle = "ddl_job_reorg_handle"
ddlJobArgs = "ddl_job_args"
)
// GetScope gets the status variables scope.
func (d *ddl) GetScope(status string) variable.ScopeFlag {
// Now ddl status variables scope are all default scope.
return variable.DefaultScopeFlag
}
// Stat returns the DDL statistics.
func (d *ddl) Stats() (map[string]interface{}, error) {
var info *inspectkv.DDLInfo
err := kv.RunInNewTxn(d.store, false, func(txn kv.Transaction) error {
var err1 error
info, err1 = inspectkv.GetDDLInfo(txn)
return errors.Trace(err1)
})
if err != nil {
return nil, errors.Trace(err)
}
m := make(map[string]interface{})
m[ddlServerID] = d.uuid
m[ddlSchemaVersion] = info.SchemaVer
if info.Owner != nil {
m[ddlOwnerID] = info.Owner.OwnerID
// LastUpdateTS uses nanosecond.
m[ddlOwnerLastUpdateTS] = info.Owner.LastUpdateTS / 1e9
}
if info.Job != nil {
m[ddlJobID] = info.Job.ID
m[ddlJobAction] = info.Job.Type.String()
m[ddlJobLastUpdateTS] = info.Job.LastUpdateTS / 1e9
m[ddlJobState] = info.Job.State.String()
m[ddlJobError] = info.Job.Error
m[ddlJobSchemaState] = info.Job.SchemaState.String()
m[ddlJobSchemaID] = info.Job.SchemaID
m[ddlJobTableID] = info.Job.TableID
m[ddlJobSnapshotVer] = info.Job.SnapshotVer
m[ddlJobReorgHandle] = info.ReorgHandle
m[ddlJobArgs] = info.Job.Args
}
return m, nil
}