zealchen commented on issue #1600:
URL: https://github.com/apache/horaedb/issues/1600#issuecomment-2517977676

   > The new flow looks GOOD for me, before you get started, you need to design 
the format manifest will be using.
   > 
   > Or using the format I proposed in description?
   
   This is format manifest of my design
   ```text
   | magic(u32) | version(u8) |  flags(u8) |Record(N) ... |
   
   Magic(u32) is used for data source validity.
   Flags(u8) is reserved for future extendability, like compression or other 
stuff.
   
   # Record is a self-descriptive message
   | id(u64) | time_range(i64*2)| size(u32) |  num_rows(u32)|
   ```
   I add num_rows as the struct FileMeta has that field
   ```rust
   pub struct FileMeta {
       pub max_sequence: u64,
       pub num_rows: u32,
       pub size: u32,
       pub time_range: TimeRange,
   }
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to