63ea9908c0
Add metastore benchmark suite to test metastore performance. Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
12 lines
203 B
Protocol Buffer
12 lines
203 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package containerd.v1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
message Snapshot {
|
|
uint64 id = 1 [(gogoproto.customname) = "ID"];
|
|
string parent = 2;
|
|
bool active = 4;
|
|
bool readonly = 5;
|
|
}
|