You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let data:Value = serde_json::from_slice(payload.as_ref())?;
62
+
let json_event = format::json::Event{ data };
62
63
63
-
let event = format::json::Event{
64
-
data,
65
-
tags:String::default(),
66
-
metadata:String::default(),
67
-
};
64
+
let time_partition = STREAM_INFO.get_time_partition(stream_name)?;
65
+
let static_schema_flag = STREAM_INFO.get_static_schema_flag(stream_name)?;
66
+
let schema_version = STREAM_INFO.get_schema_version(stream_name)?;
68
67
69
-
// TODO: Implement a buffer (e.g., a wrapper around [Box<dyn ArrayBuilder>]) to optimize the creation of ParseableEvent by compacting the internal RecordBatch.
0 commit comments