source: other-projects/hathitrust/wcsa/extracted-features-solr/trunk/solr-ingest/src/main/java/org/hathitrust/extractedfeatures/ProcessForLangCount.java@ 31260

Last change on this file since 31260 was 31260, checked in by davidb, 7 years ago

Language counting

  • Property svn:executable set to *
File size: 6.2 KB
Line 
1package org.hathitrust.extractedfeatures;
2
3import java.io.BufferedInputStream;
4import java.io.FileInputStream;
5import java.io.FileNotFoundException;
6import java.io.IOException;
7import java.io.Serializable;
8import org.apache.commons.cli.*;
9
10import org.apache.spark.api.java.*;
11import org.apache.spark.api.java.function.Function2;
12import org.apache.spark.api.java.function.PairFunction;
13import org.apache.spark.util.DoubleAccumulator;
14import scala.Tuple2;
15
16import org.apache.spark.SparkConf;
17
18public class ProcessForLangCount implements Serializable
19{
20 private static final long serialVersionUID = 1L;
21
22 // Following details on number of partitions to use given in
23 // "Parallelized collections" section of:
24 // https://spark.apache.org/docs/2.0.1/programming-guide.html
25 //
26 // For a more detailed discussion see:
27 // http://blog.cloudera.com/blog/2015/03/how-to-tune-your-apache-spark-jobs-part-2/
28
29 protected static final int DEFAULT_NUM_CORES = 6;
30 protected static final int DEFAULT_NUM_PARTITIONS = 3*DEFAULT_NUM_CORES;
31
32 protected String _input_dir;
33 protected String _json_list_filename;
34
35 protected int _verbosity;
36
37 public ProcessForLangCount(String input_dir, String json_list_filename, int verbosity)
38 {
39 _input_dir = input_dir;
40 _json_list_filename = (json_list_filename != null) ? json_list_filename : input_dir;
41
42 _verbosity = verbosity;
43 }
44
45 protected String generateSparkAppName(String exec_mode)
46 {
47 String spark_app_name = "[" + exec_mode + "] Extracted Features: Process for Language Labels";
48 spark_app_name += " [" + _json_list_filename + "]";
49
50 return spark_app_name;
51 }
52
53 public void execPOSCount()
54 {
55 String spark_app_name = generateSparkAppName("Per Page");
56
57 SparkConf conf = new SparkConf().setAppName(spark_app_name);
58 JavaSparkContext jsc = new JavaSparkContext(conf);
59
60 String filename_root = _json_list_filename.replaceAll(".*/","").replaceAll("\\..*$","");
61 String output_directory = "lang-" + filename_root + "-out";
62 if (ClusterFileIO.exists(output_directory))
63 {
64 System.err.println("Error: " + output_directory + " already exists. Spark unable to write output data");
65 jsc.close();
66 System.exit(1);
67 }
68
69 int num_partitions = Integer.getInteger("wcsa-ef-ingest.num-partitions", DEFAULT_NUM_PARTITIONS);
70 JavaRDD<String> json_list_data = jsc.textFile(_json_list_filename,num_partitions).cache();
71 json_list_data.setName("JSON-file-list");
72
73 long num_volumes = json_list_data.count();
74 double per_vol = 100.0/(double)num_volumes;
75
76 DoubleAccumulator per_vol_progress_accum = jsc.sc().doubleAccumulator("Per Volume Progress Percent");
77
78 boolean strict_file_io = Boolean.getBoolean("wcsa-ef-ingest.strict-file-io");
79
80 PerVolumeLangStreamFlatmap paged_solr_langfreq_flatmap
81 = new PerVolumeLangStreamFlatmap(_input_dir,_verbosity,
82 per_vol_progress_accum,per_vol,
83 strict_file_io);
84 JavaRDD<String> lang_list = json_list_data.flatMap(paged_solr_langfreq_flatmap);
85 lang_list.setName("lang-stream");
86
87
88 JavaPairRDD<String, Integer> lang_pairs = lang_list.mapToPair(s -> new Tuple2<String, Integer>(s, 1));
89 lang_pairs.setName("single-lang-count");
90
91 JavaPairRDD<String, Integer> lang_counts = lang_pairs.reduceByKey((a, b) -> a + b);
92 lang_counts.setName("lang-frequency");
93
94 JavaPairRDD<Integer, String> lang_counts_swapped_pair
95 = lang_counts.mapToPair(item -> item.swap());
96 lang_counts_swapped_pair.setName("frequency-lang-swap");
97
98 JavaPairRDD<Integer, String> lang_counts_swapped_pair_sorted
99 = lang_counts_swapped_pair.sortByKey(false, num_partitions);
100 lang_counts_swapped_pair_sorted.setName("descending-sorted-frequency-pos");
101
102 JavaPairRDD<String, Integer> lang_count_sorted
103 = lang_counts_swapped_pair_sorted.mapToPair(item -> item.swap());
104 lang_count_sorted.setName("descending-lang-frequency");
105
106
107 lang_count_sorted.saveAsTextFile(output_directory);
108 jsc.close();
109 }
110
111
112 public static void print_usage(HelpFormatter formatter, Options options)
113 {
114 formatter.printHelp("RUN.bash [options] input-dir json-filelist.txt", options);
115 }
116
117 public static void main(String[] args) {
118 Options options = new Options();
119
120 Option verbosity_opt = new Option("v", "verbosity", true,
121 "Set to control the level of debugging output [0=none, 1=some, 2=lots]");
122 verbosity_opt.setRequired(false);
123 options.addOption(verbosity_opt);
124
125 Option properties_opt = new Option("p", "properties", true,
126 "Read in the specified Java properties file");
127 properties_opt.setRequired(false);
128 options.addOption(properties_opt);
129
130 // Need to work with CLI v1.2 as this is the JAR that is bundled with Hadoop/Spark
131 CommandLineParser parser = new GnuParser();
132 //CommandLineParser parser = new DefaultParser(); // if working with CLI v1.3 and above
133
134 HelpFormatter formatter = new HelpFormatter();
135 CommandLine cmd = null;
136
137 try {
138 cmd = parser.parse(options, args);
139 }
140 catch (ParseException e) {
141 System.err.println(e.getMessage());
142 print_usage(formatter,options);
143 System.exit(1);
144 }
145
146 String verbosity_str = cmd.getOptionValue("verbosity","1");
147 int verbosity = Integer.parseInt(verbosity_str);
148
149 String property_filename = cmd.getOptionValue("properties",null);
150
151 String[] filtered_args = cmd.getArgs();
152
153 if (filtered_args.length != 2) {
154 print_usage(formatter,options);
155 System.exit(1);
156 }
157
158 if (property_filename != null) {
159 try {
160 FileInputStream fis = new FileInputStream(property_filename);
161 BufferedInputStream bis = new BufferedInputStream(fis);
162
163 System.getProperties().load(bis);
164 }
165 catch (FileNotFoundException e) {
166 e.printStackTrace();
167 System.err.println("File not found: '" + property_filename + "'. Skipping property file read");
168 }
169 catch (IOException e) {
170 System.err.println("IO Exception for: '" + property_filename + "'. Malformed syntax? Skipping property file read");
171 }
172 }
173
174 String input_dir = filtered_args[0];
175 String json_list_filename = filtered_args[1];
176
177 ProcessForPOSCount prep_for_pos
178 = new ProcessForPOSCount(input_dir,json_list_filename,verbosity);
179
180 prep_for_pos.execPOSCount();
181
182 }
183}
Note: See TracBrowser for help on using the repository browser.