blob: a4279b4706c2ff009ec1700cce5d8507f867f484 [file] [log] [blame]
/*
* 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.carbondata.sdk.file;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.File;
import java.io.FileFilter;
import java.io.IOException;
import java.io.InputStream;
import org.apache.carbondata.common.annotations.InterfaceAudience;
import org.apache.carbondata.core.constants.CarbonCommonConstants;
import org.apache.avro.file.DataFileWriter;
import org.apache.avro.generic.GenericData;
import org.apache.avro.generic.GenericDatumReader;
import org.apache.avro.generic.GenericDatumWriter;
import org.apache.avro.io.DecoderFactory;
import org.apache.avro.io.JsonDecoder;
import org.apache.hadoop.conf.Configuration;
@InterfaceAudience.Developer("Test")
public class TestUtil {
public static final Configuration configuration = new Configuration();
public static GenericData.Record jsonToAvro(String json, String avroSchema) throws IOException {
InputStream input = null;
DataFileWriter writer = null;
ByteArrayOutputStream output = null;
try {
org.apache.avro.Schema schema = new org.apache.avro.Schema.Parser().parse(avroSchema);
GenericDatumReader reader = new GenericDatumReader(schema);
input = new ByteArrayInputStream(json.getBytes(CarbonCommonConstants.DEFAULT_CHARSET));
output = new ByteArrayOutputStream();
DataInputStream din = new DataInputStream(input);
writer = new DataFileWriter(new GenericDatumWriter());
writer.create(schema, output);
JsonDecoder decoder = DecoderFactory.get().jsonDecoder(schema, din);
return (GenericData.Record) reader.read(null, decoder);
} finally {
if (input != null) {
input.close();
}
if (writer != null) {
writer.close();
}
}
}
static void writeFilesAndVerify(Schema schema, String path, String[] sortColumns) {
writeFilesAndVerify(
100, schema, path, sortColumns, -1, -1);
}
public static void writeFilesAndVerify(Schema schema, String path) {
writeFilesAndVerify(
100, schema, path, null, -1, -1);
}
/**
* write file and verify
*
* @param rows number of rows
* @param schema schema
* @param path table store path
*/
public static void writeFilesAndVerify(
int rows, Schema schema, String path) {
writeFilesAndVerify(rows, schema, path, null, -1, -1);
}
/**
* Invoke CarbonWriter API to write carbon files and assert the file is rewritten
* @param rows number of rows to write
* @param schema schema of the file
* @param path local write path
* @param sortColumns sort columns
* @param blockletSize blockletSize in the file, -1 for default size
* @param blockSize blockSize in the file, -1 for default size
*/
public static void writeFilesAndVerify(int rows, Schema schema, String path, String[] sortColumns,
int blockletSize, int blockSize) {
try {
CarbonWriterBuilder builder = CarbonWriter.builder()
.outputPath(path);
if (sortColumns != null) {
builder = builder.sortBy(sortColumns);
}
if (blockletSize != -1) {
builder = builder.withBlockletSize(blockletSize);
}
if (blockSize != -1) {
builder = builder.withBlockSize(blockSize);
}
CarbonWriter writer = builder.withCsvInput(schema).writtenBy("TestUtil").build();
for (int i = 0; i < rows; i++) {
writer.write(new String[]{
"robot" + (i % 10), String.valueOf(i % 3000000), String.valueOf((double) i / 2)});
}
writer.close();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
File[] dataFiles = new File(path).listFiles(new FileFilter() {
@Override
public boolean accept(File pathname) {
return pathname.getName().endsWith(CarbonCommonConstants.FACT_FILE_EXT);
}
});
if (dataFiles == null) {
throw new RuntimeException("Test failed: dataFiles is null");
}
if (dataFiles.length == 0) {
throw new RuntimeException("Test failed: dataFiles is empty");
}
}
}