-
Notifications
You must be signed in to change notification settings - Fork 68
Tsfile java interfaces v4 #307
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
e3f85f1
modify Tablet
shuwenwei d43b6b7
modify TsFileReader
shuwenwei 550d333
TableResultSet
shuwenwei 1c4d952
add ut & add ignoreAllNullRows
shuwenwei 54a9c24
split TsFileReader and TsFileWriter
shuwenwei e7b3f9c
modify writer
shuwenwei 12a06de
modify test
shuwenwei 49c09d9
rollback TsFileReader
shuwenwei 7c5d735
remove field
shuwenwei a27323c
rename
shuwenwei 6db0a1d
modify Bitmap
shuwenwei dff85f3
add new interfaces & fix BitMap
shuwenwei 62e4a41
add new interfaces
shuwenwei a56474b
modify example
shuwenwei 9d30cfa
add example
shuwenwei d74f617
modify example
shuwenwei 6d9c42a
fix review
shuwenwei e6f4400
remove set config
shuwenwei 79a8765
add exception
shuwenwei bf4654f
close
shuwenwei 1b8e525
modify example
shuwenwei 60de2f3
modify ut
shuwenwei b2a133d
fix bitmap serialize size
shuwenwei File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
156 changes: 156 additions & 0 deletions
156
java/examples/src/main/java/org/apache/tsfile/v4/ITsFileReaderAndITsFileWriter.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.apache.tsfile.v4; | ||
|
||
import org.apache.tsfile.enums.TSDataType; | ||
import org.apache.tsfile.exception.write.WriteProcessException; | ||
import org.apache.tsfile.file.metadata.ColumnSchemaBuilder; | ||
import org.apache.tsfile.file.metadata.TableSchema; | ||
import org.apache.tsfile.fileSystem.FSFactoryProducer; | ||
import org.apache.tsfile.read.query.dataset.ResultSet; | ||
import org.apache.tsfile.read.query.dataset.ResultSetMetadata; | ||
import org.apache.tsfile.read.v4.ITsFileReader; | ||
import org.apache.tsfile.read.v4.TsFileReaderBuilder; | ||
import org.apache.tsfile.write.record.Tablet; | ||
import org.apache.tsfile.write.v4.ITsFileWriter; | ||
import org.apache.tsfile.write.v4.TsFileWriterBuilder; | ||
|
||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
import java.nio.file.Files; | ||
import java.util.Arrays; | ||
import java.util.StringJoiner; | ||
|
||
public class ITsFileReaderAndITsFileWriter { | ||
|
||
private static final Logger LOGGER = LoggerFactory.getLogger(ITsFileReaderAndITsFileWriter.class); | ||
|
||
public static void main(String[] args) throws IOException { | ||
String path = "test.tsfile"; | ||
File f = FSFactoryProducer.getFSFactory().getFile(path); | ||
if (f.exists()) { | ||
Files.delete(f.toPath()); | ||
} | ||
|
||
String tableName = "table1"; | ||
|
||
TableSchema tableSchema = | ||
new TableSchema( | ||
tableName, | ||
Arrays.asList( | ||
new ColumnSchemaBuilder() | ||
.name("id1") | ||
.dataType(TSDataType.STRING) | ||
.category(Tablet.ColumnCategory.ID) | ||
.build(), | ||
new ColumnSchemaBuilder() | ||
.name("id2") | ||
.dataType(TSDataType.STRING) | ||
.category(Tablet.ColumnCategory.ID) | ||
.build(), | ||
new ColumnSchemaBuilder() | ||
.name("s1") | ||
.dataType(TSDataType.INT32) | ||
.category(Tablet.ColumnCategory.MEASUREMENT) | ||
.build(), | ||
new ColumnSchemaBuilder().name("s2").dataType(TSDataType.BOOLEAN).build())); | ||
|
||
Tablet tablet = | ||
new Tablet( | ||
Arrays.asList("id1", "id2", "s1", "s2"), | ||
Arrays.asList( | ||
TSDataType.STRING, TSDataType.STRING, TSDataType.INT32, TSDataType.BOOLEAN)); | ||
for (int row = 0; row < 5; row++) { | ||
long timestamp = row; | ||
tablet.addTimestamp(row, timestamp); | ||
tablet.addValue(row, "id1", "id1_filed_1"); | ||
tablet.addValue(row, "id2", "id2_filed_1"); | ||
tablet.addValue(row, "s1", row); | ||
// null value | ||
// tablet.addValue(row, "s2", true); | ||
} | ||
for (int row = 5; row < 10; row++) { | ||
long timestamp = row; | ||
tablet.addTimestamp(row, timestamp); | ||
|
||
// id1 column | ||
tablet.addValue(row, 0, "id1_field_2"); | ||
|
||
// id2 column | ||
tablet.addValue(row, 1, "id1_field_2"); | ||
|
||
// s1 column: null value | ||
// tablet.addValue(row, 2, row); | ||
|
||
// s2 column | ||
tablet.addValue(row, 3, false); | ||
} | ||
|
||
long memoryThreshold = 10 * 1024 * 1024; | ||
// tableSchema and file are required. memoryThreshold is an optional parameter, default value is | ||
// 32 * 1024 * 1024 byte. | ||
try (ITsFileWriter writer = | ||
new TsFileWriterBuilder() | ||
.file(f) | ||
.tableSchema(tableSchema) | ||
.memoryThreshold(memoryThreshold) | ||
.build()) { | ||
writer.write(tablet); | ||
} catch (WriteProcessException e) { | ||
LOGGER.error("meet error in TsFileWrite ", e); | ||
} | ||
|
||
// file is a required parameter | ||
try (ITsFileReader reader = new TsFileReaderBuilder().file(f).build(); | ||
ResultSet resultSet = | ||
reader.query(tableName, Arrays.asList("id1", "id2", "s1", "s2"), 2, 8)) { | ||
// first column is Time | ||
ResultSetMetadata metadata = resultSet.getMetadata(); | ||
System.out.println(metadata); | ||
StringJoiner sj = new StringJoiner(" "); | ||
for (int column = 1; column <= 5; column++) { | ||
sj.add(metadata.getColumnName(column) + "(" + metadata.getColumnType(column) + ") "); | ||
} | ||
System.out.println(sj.toString()); | ||
while (resultSet.next()) { | ||
// columnIndex starts from 1 | ||
// Time id1 id2 s1 s2 | ||
Long timeField = resultSet.getLong("Time"); | ||
String id1Field = resultSet.isNull("id1") ? null : resultSet.getString("id1"); | ||
String id2Field = resultSet.isNull("id2") ? null : resultSet.getString("id2"); | ||
Integer s1Field = resultSet.isNull("s1") ? null : resultSet.getInt(4); | ||
Boolean s2Field = resultSet.isNull("s2") ? null : resultSet.getBoolean(5); | ||
sj = new StringJoiner(" "); | ||
System.out.println( | ||
sj.add(timeField + "") | ||
.add(id1Field) | ||
.add(id2Field) | ||
.add(s1Field + "") | ||
.add(s2Field + "") | ||
.toString()); | ||
} | ||
} catch (Exception e) { | ||
LOGGER.error("meet error in TsFileRead ", e); | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.