Class TableSpec
- java.lang.Object
-
- org.apache.pinot.spi.ingestion.batch.spec.TableSpec
-
- All Implemented Interfaces:
Serializable
public class TableSpec extends Object implements Serializable
TableSpec defines table name and where to fetch corresponding table config and table schema.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TableSpec()
-
Method Summary
Modifier and Type Method Description StringgetSchemaURI()StringgetTableConfigURI()StringgetTableName()voidsetSchemaURI(String schemaURI)voidsetTableConfigURI(String tableConfigURI)voidsetTableName(String tableName)
-
-
-
Method Detail
-
getTableName
public String getTableName()
-
setTableName
public void setTableName(String tableName)
-
getSchemaURI
public String getSchemaURI()
-
setSchemaURI
public void setSchemaURI(String schemaURI)
-
getTableConfigURI
public String getTableConfigURI()
-
setTableConfigURI
public void setTableConfigURI(String tableConfigURI)
-
-