You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
360 B
16 lines
360 B
syntax = "proto3";
|
|
|
|
package com.seaweedfs.loadtest;
|
|
|
|
option go_package = "github.com/seaweedfs/seaweedfs/test/kafka/kafka-client-loadtest/internal/schema/pb";
|
|
|
|
message LoadTestMessage {
|
|
string id = 1;
|
|
int64 timestamp = 2;
|
|
int32 producer_id = 3;
|
|
int64 counter = 4;
|
|
string user_id = 5;
|
|
string event_type = 6;
|
|
map<string, string> properties = 7;
|
|
}
|
|
|