MCPcopy Create free account
hub / github.com/apache/iotdb-client-go / createAlignedTimeseries

Function createAlignedTimeseries

example/session_example.go:298–314  ·  view source on GitHub ↗
(prefixPath string, measurements, measurementAlias []string)

Source from the content-addressed store, hash-verified

296}
297
298func createAlignedTimeseries(prefixPath string, measurements, measurementAlias []string) {
299 var (
300 dataTypes = []client.TSDataType{
301 client.FLOAT,
302 client.FLOAT,
303 }
304 encodings = []client.TSEncoding{
305 client.PLAIN,
306 client.PLAIN,
307 }
308 compressors = []client.TSCompressionType{
309 client.LZ4,
310 client.LZ4,
311 }
312 )
313 checkError(session.CreateAlignedTimeseries(prefixPath, measurements, dataTypes, encodings, compressors, measurementAlias))
314}
315
316func createMultiTimeseries() {
317 var (

Callers 1

mainFunction · 0.70

Calls 2

checkErrorFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…