Last active
December 22, 2024 03:01
-
-
Save ebuildy/3de0e2855498e5358e4eed1a4f72ea48 to your computer and use it in GitHub Desktop.
Revisions
-
ebuildy revised this gist
Apr 11, 2017 . No changes.There are no files selected for viewing
-
ebuildy created this gist
Apr 11, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,53 @@ class Toto { public void Main() { final DataFrame source = GetDataFrame(); final String querySelectSQL = flattenSchema(source.schema(), null); source.registerTempTable("source"); final DataFrame flattenData = sqlContext.sql("SELECT " + querySelectSQL + " FROM source") } /** * Generate SQL to select columns as flat. */ public String flattenSchema(StructType schema, String prefix) { final StringBuilder selectSQLQuery = new StringBuilder(); for (StructField field : schema.fields()) { final String fieldName = field.name(); if (fieldName.startsWith("@")) { continue; } String colName = prefix == null ? fieldName : (prefix + "." + fieldName); String colNameTarget = colName.replace(".", "_"); if (field.dataType().getClass().equals(StructType.class)) { selectSQLQuery.append(flattenSchema((StructType) field.dataType(), colName)); } else { selectSQLQuery.append(colName); selectSQLQuery.append(" as "); selectSQLQuery.append(colNameTarget); } selectSQLQuery.append(","); } if (selectSQLQuery.length() > 0) { selectSQLQuery.deleteCharAt(selectSQLQuery.length() - 1); } return selectSQLQuery.toString(); } }