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.

15 lines
380 B

  1. table NameValue {
  2. name:string (key);
  3. value:string;
  4. }
  5. table Message {
  6. producer_id:int32 (id:0);
  7. producer_seq:int64 (id:2);
  8. segment_id:int32 (id:1);
  9. segment_seq:int64 (id:3);
  10. event_ts_ns:int64 (id:4);
  11. recv_ts_ns:int64 (id:5);
  12. properties:[NameValue] (id:6);
  13. key:string (id:7); // bytes
  14. data:string (id:8); // bytes
  15. }