tsfile-writer 0.2.1

A simple TsFile writer in rust with a sync sender to import tsfiles to Apache IoTDB instances
Documentation
1
2
3
4
5
6
7
8
9
10
//! Simple implementation of a Sync Sender for the IoTDB Protocol
//! This tool can send tsfiles to an IoTDB server in exactly the same way
//! that an IoTDB server would send a server if running the `sync-client.sh` script.
//!
//! Note: The receiving IoTDB Server must be started with the receiver being activated in the
//! configuration
mod mlog;
#[allow(clippy::module_inception)] // is not exported
mod sync;
pub mod sync_sender;