-
<%=table%>
- ColsSize:
- <%= sd.getColsSize()%>
-
Input Format:
- <%= sd.getInputFormat() %>
Output Format:
- <%= sd.getOutputFormat() %>
Is Compressed?:
- <%= sd.isCompressed() %>
Location:
- <%= sd.getLocation() %>
-
Number Of Buckets:
- <%= sd.getNumBuckets() %>
-
-
Field Schema
-
-
-
- | Name |
- Type |
- Comment |
-
-
-
- <% for (FieldSchema fs: fsc ) {%>
-
- | <%=fs.getName() %> |
- <%=fs.getType() %> |
- <%=fs.getComment() %> |
-
- <% } %>
-
-
-
-
-
-
- | Bucket Columns |
-
-
-
- <% for (String col: bcols ) {%>
-
- | <%=col%> |
-
- <% } %>
-
-
-
-
Sort Columns
-
-
-
- | Column |
- Order |
-
-
-
- <% for (Order o: ord ) {%>
-
- | <%= o.getCol() %> |
- <%= o.getOrder() %> |
-
- <% } %>
-
-
-
-
Parameters
-
-
-
- | Name |
- Value |
-
-
-
- <% for ( String key: sd.getParameters().keySet() ){ %>
-
- | <%=key%> |
- <%=sd.getParameters().get(key)%> |
-
- <% } %>
-
-
-
-
SerDe Info
- <% SerDeInfo si = sd.getSerdeInfo(); %>
- Name:<%= si.getName() %>
Lib:
- <%= si.getSerializationLib() %>
-
-
-
- | Name |
- value |
-
-
-
- <% for (String key: si.getParameters().keySet() ) { %>
-
- | <%= key %> |
- <%= si.getParameters().get(key) %> |
-
- <% } %>
-
-
-
-
Partition Information
-
-
-
- | Name |
- Type |
- Comment |
-
-
-
- <% for (FieldSchema fieldSchema: t.getPartitionKeys() ){ %>
-
- | <%= fieldSchema.getName() %> |
- <%= fieldSchema.getType() %> |
- <%= fieldSchema.getComment() %> |
-
- <% } %>
-
-
-
-