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

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

Minor mods

  • Property svn:executable set to *
File size: 7.4 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 ProcessForWhitelist 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 ProcessForWhitelist(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 Whitelist";
48 spark_app_name += " [" + _json_list_filename + "]";
49
50 return spark_app_name;
51 }
52
53
54
55 public void execWordCount()
56 {
57 String spark_app_name = generateSparkAppName("Per Page");
58
59 SparkConf conf = new SparkConf().setAppName(spark_app_name);
60 JavaSparkContext jsc = new JavaSparkContext(conf);
61
62 /*
63 if (_verbosity >= 2) {
64 System.out.println("Default Minimum Partions: " + jsc.defaultMinPartitions());
65 System.out.println("Default Parallelism: " + jsc.defaultParallelism());
66 }
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
72 long num_volumes = json_list_data.count();
73 double per_vol = 100.0/(double)num_volumes;
74
75 //JavaRDD<String> json_list_data_rp = json_list_data.repartition((int)(num_volumes/100));
76
77 DoubleAccumulator per_vol_progress_accum = jsc.sc().doubleAccumulator("Per Volume Progress Percent");
78
79 //String strict_file_io_str = System.getProperty("wcsa-ef-ingest.strict-file-io","true");
80 boolean strict_file_io = Boolean.getBoolean("wcsa-ef-ingest.strict-file-io");
81
82 PerVolumeWordStreamFlatmap paged_solr_wordfreq_flatmap
83 = new PerVolumeWordStreamFlatmap(_input_dir,_verbosity,
84 per_vol_progress_accum,per_vol,
85 strict_file_io);
86 JavaRDD<String> words = json_list_data.flatMap(paged_solr_wordfreq_flatmap); // .cache() *****
87
88
89 JavaPairRDD<String, Integer> pairs = words.mapToPair(new PairFunction<String, String, Integer>() {
90 public Tuple2<String, Integer> call(String s) { return new Tuple2<String, Integer>(s, 1); }
91 });
92
93 JavaPairRDD<String, Integer> counts = pairs.reduceByKey(new Function2<Integer, Integer, Integer>() {
94 public Integer call(Integer a, Integer b) { return a + b; }
95 });
96
97 //counts.map(lambda (x,y): (y,x));
98
99
100 JavaPairRDD<Integer, String> swappedPair = counts.mapToPair(new PairFunction<Tuple2<String, Integer>, Integer, String>() {
101 @Override
102 public Tuple2<Integer, String> call(Tuple2<String, Integer> item) throws Exception {
103 return item.swap();
104 }
105
106 });
107
108 //JavaPairRDD<Integer, String> sorted_swapped_pair = swappedPair.sortByKey(false,num_partitions);
109 JavaPairRDD<Integer, String> sorted_swapped_pair = swappedPair.sortByKey(false,1);
110
111 JavaPairRDD<String, Integer> sorted_swaped_back_pair = sorted_swapped_pair.mapToPair(new PairFunction<Tuple2<Integer, String>, String, Integer>() {
112 @Override
113 public Tuple2<String, Integer> call(Tuple2<Integer, String> item) throws Exception {
114 return item.swap();
115 }
116
117 });
118
119 /*
120
121 JavaPairRDD<String, Integer> sorted_counts
122 = counts.map(item -> item.swap()) // interchanges position of entries in each tuple
123 .sortByKey(true, 1) // 1st arg configures ascending sort, 2nd arg configures one task
124 .map(item -> item.swap());
125
126 */
127
128
129 //sorted_counts.saveAsTextFile(_json_list_filename + ".out");
130 String filename_root = _json_list_filename.replaceAll(".*/","").replaceAll("\\..*$","");
131 String output_directory = "whitelist-" + filename_root + "-out";
132 sorted_swaped_back_pair.saveAsTextFile(output_directory);
133
134
135 //System.out.println("");
136 //System.out.println("############");
137 //System.out.println("# Number of page ids: " + num_page_ids);
138 //System.out.println("############");
139
140 jsc.close();
141 }
142
143
144 public static void print_usage(HelpFormatter formatter, Options options)
145 {
146 formatter.printHelp("RUN.bash [options] input-dir json-filelist.txt", options);
147 }
148
149 public static void main(String[] args) {
150 Options options = new Options();
151
152 Option verbosity_opt = new Option("v", "verbosity", true,
153 "Set to control the level of debugging output [0=none, 1=some, 2=lots]");
154 verbosity_opt.setRequired(false);
155 options.addOption(verbosity_opt);
156
157 Option properties_opt = new Option("p", "properties", true,
158 "Read in the specified Java properties file");
159 properties_opt.setRequired(false);
160 options.addOption(properties_opt);
161
162 // Need to work with CLI v1.2 as this is the JAR that is bundled with Hadoop/Spark
163 CommandLineParser parser = new GnuParser();
164 //CommandLineParser parser = new DefaultParser(); // if working with CLI v1.3 and above
165
166 HelpFormatter formatter = new HelpFormatter();
167 CommandLine cmd = null;
168
169 try {
170 cmd = parser.parse(options, args);
171 }
172 catch (ParseException e) {
173 System.err.println(e.getMessage());
174 print_usage(formatter,options);
175 System.exit(1);
176 }
177
178 String verbosity_str = cmd.getOptionValue("verbosity","1");
179 int verbosity = Integer.parseInt(verbosity_str);
180
181 String property_filename = cmd.getOptionValue("properties",null);
182
183 String[] filtered_args = cmd.getArgs();
184
185 if (filtered_args.length != 2) {
186 print_usage(formatter,options);
187 System.exit(1);
188 }
189
190 if (property_filename != null) {
191 try {
192 FileInputStream fis = new FileInputStream(property_filename);
193 BufferedInputStream bis = new BufferedInputStream(fis);
194
195 System.getProperties().load(bis);
196 }
197 catch (FileNotFoundException e) {
198 e.printStackTrace();
199 System.err.println("File not found: '" + property_filename + "'. Skipping property file read");
200 }
201 catch (IOException e) {
202 System.err.println("IO Exception for: '" + property_filename + "'. Malformed syntax? Skipping property file read");
203 }
204 }
205
206 String input_dir = filtered_args[0];
207 String json_list_filename = filtered_args[1];
208
209 ProcessForWhitelist prep_for_whitelist
210 = new ProcessForWhitelist(input_dir,json_list_filename,verbosity);
211
212 //String process_ef_json_mode = System.getProperty("wcsa-ef-ingest.process-ef-json-mode","per-page");
213 prep_for_whitelist.execWordCount();
214
215 }
216}
Note: See TracBrowser for help on using the repository browser.