flatbuffer.fbs 934 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright 2020 Dgraph Labs, Inc. and Contributors
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. namespace fb;
  17. table TableIndex {
  18. offsets:[BlockOffset];
  19. bloom_filter:[ubyte];
  20. max_version:uint64;
  21. key_count:uint32;
  22. uncompressed_size:uint32;
  23. on_disk_size:uint32;
  24. stale_data_size:uint32;
  25. }
  26. table BlockOffset {
  27. key:[ubyte];
  28. offset:uint;
  29. len:uint;
  30. }
  31. root_type TableIndex;
  32. root_type BlockOffset;