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 characters
// Reset the styles | |
scintilla.StyleResetDefault(); | |
scintilla.Styles[Style.Default].Font = "Courier New"; | |
scintilla.Styles[Style.Default].Size = 10; | |
scintilla.StyleClearAll(); | |
// Set the SQL Lexer | |
scintilla.Lexer = Lexer.Sql; | |
// Show line numbers |
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 characters
text_file = sc.textFile("hdfs://sandbox.hortonworks.com/user/guest/install.log") | |
counts = text_file.flatMap( lambda line: line.split(" ")) \ | |
.map(lambda word: (word, 1) ) \ | |
.reduceByKey(lambda a, b : a + b) | |
counts.saveAsTextFile("hdfs://sandbox.hortonworks.com/user/guest/output1.txt") |
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 characters
Show hidden characters
{ | |
"cmd": ["$file"], | |
"working_dir": "$file_path", | |
"selector": "source.dosbatch" | |
} |