* By supplying the same seed to the generation programs, each database is loaded with identical data and queried using identical queries.
* @return seed
**/
@JsonProperty("seed")
@ApiModelProperty(example="123.0",value="By supplying the same seed to the generation programs, each database is loaded with identical data and queried using identical queries.")
publicBigDecimalgetSeed(){
returnseed;
}
publicvoidsetSeed(BigDecimalseed){
this.seed=seed;
}
publicTSBSQueryConfigscale(BigDecimalscale){
this.scale=scale;
returnthis;
}
/**
* TODO
* @return scale
**/
@JsonProperty("scale")
@ApiModelProperty(example="1000.0",value="TODO")
publicBigDecimalgetScale(){
returnscale;
}
publicvoidsetScale(BigDecimalscale){
this.scale=scale;
}
publicTSBSQueryConfigstartTime(StringstartTime){
this.startTime=startTime;
returnthis;
}
/**
* starting timestamp for generating the data
* @return startTime
**/
@JsonProperty("startTime")
@ApiModelProperty(example="2016-01-01T00:00:00Z",value="starting timestamp for generating the data")
publicStringgetStartTime(){
returnstartTime;
}
publicvoidsetStartTime(StringstartTime){
this.startTime=startTime;
}
publicTSBSQueryConfigendTime(StringendTime){
this.endTime=endTime;
returnthis;
}
/**
* ending timestamp for generating the data
* @return endTime
**/
@JsonProperty("endTime")
@ApiModelProperty(example="2016-01-04T00:00:00Z",value="ending timestamp for generating the data")
publicStringgetEndTime(){
returnendTime;
}
publicvoidsetEndTime(StringendTime){
this.endTime=endTime;
}
publicTSBSQueryConfigqueries(BigDecimalqueries){
this.queries=queries;
returnthis;
}
/**
* TODO
* @return queries
**/
@JsonProperty("queries")
@ApiModelProperty(example="20.0",value="TODO")
publicBigDecimalgetQueries(){
returnqueries;
}
publicvoidsetQueries(BigDecimalqueries){
this.queries=queries;
}
publicTSBSQueryConfigqueryType(StringqueryType){
this.queryType=queryType;
returnthis;
}
/**
* specifies one of the supported query type
* @return queryType
**/
@JsonProperty("queryType")
@ApiModelProperty(example="single-groupby-1-1-1",value="specifies one of the supported query type")
publicStringgetQueryType(){
returnqueryType;
}
publicvoidsetQueryType(StringqueryType){
this.queryType=queryType;
}
publicTSBSQueryConfigformat(FormatEnumformat){
this.format=format;
returnthis;
}
/**
* specifies the data format for the selected DBMS
* @return format
**/
@JsonProperty("format")
@ApiModelProperty(example="influx",value="specifies the data format for the selected DBMS")