Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Once you implements a new Fragment and a corresponding FragmentSerde, you need to add them to a ${TAJO_HOME}/conf/storage-site.xml file for Tajo to recognize them. 

Here is an example configuration for FileFragment.

Code Block
languagexml
titleFragment Configuration
<property>
  <name>tajo.storage.fragment.kind.file</name>
  <value>org.apache.tajo.storage.fragment.FileFragment</value>
</property>
<property>
  <name>tajo.storage.fragment.serde.file</name>
  <value>org.apache.tajo.storage.fragment.FileFragmentSerde</value>
</property>

Tablespace Interface

Tablespace interface has several important methods to generate splits and do storage-specific works to handle table data.

...