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

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

Experimenting with sorting

  • Property svn:executable set to *
File size: 7.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 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 JavaPairRDD<Integer, String> sorted_swapped_pair = swappedPair.sortByKey(true, 1); // 1st arg configures ascending sort, 2nd arg configures one task
108
109 JavaPairRDD<String, Integer> sorted_swaped_back_pair = sorted_swapped_pair.mapToPair(new PairFunction<Tuple2<Integer, String>, String, Integer>() {
110 @Override
111 public Tuple2<String, Integer> call(Tuple2<Integer, String> item) throws Exception {
112 return item.swap();
113 }
114
115 });
116
117 /*
118
119 JavaPairRDD<String, Integer> sorted_counts
120 = counts.map(item -> item.swap()) // interchanges position of entries in each tuple
121 .sortByKey(true, 1) // 1st arg configures ascending sort, 2nd arg configures one task
122 .map(item -> item.swap());
123
124 */
125
126
127 //sorted_counts.saveAsTextFile(_json_list_filename + ".out");
128
129 sorted_swaped_back_pair.saveAsTextFile(_json_list_filename + ".out");
130
131
132 //System.out.println("");
133 //System.out.println("############");
134 //System.out.println("# Number of page ids: " + num_page_ids);
135 //System.out.println("############");
136
137 jsc.close();
138 }
139
140
141 public static void print_usage(HelpFormatter formatter, Options options)
142 {
143 formatter.printHelp("RUN.bash [options] input-dir json-filelist.txt", options);
144 }
145
146 public static void main(String[] args) {
147 Options options = new Options();
148
149 Option verbosity_opt = new Option("v", "verbosity", true,
150 "Set to control the level of debugging output [0=none, 1=some, 2=lots]");
151 verbosity_opt.setRequired(false);
152 options.addOption(verbosity_opt);
153
154 Option properties_opt = new Option("p", "properties", true,
155 "Read in the specified Java properties file");
156 properties_opt.setRequired(false);
157 options.addOption(properties_opt);
158
159 // Need to work with CLI v1.2 as this is the JAR that is bundled with Hadoop/Spark
160 CommandLineParser parser = new GnuParser();
161 //CommandLineParser parser = new DefaultParser(); // if working with CLI v1.3 and above
162
163 HelpFormatter formatter = new HelpFormatter();
164 CommandLine cmd = null;
165
166 try {
167 cmd = parser.parse(options, args);
168 }
169 catch (ParseException e) {
170 System.err.println(e.getMessage());
171 print_usage(formatter,options);
172 System.exit(1);
173 }
174
175 String verbosity_str = cmd.getOptionValue("verbosity","1");
176 int verbosity = Integer.parseInt(verbosity_str);
177
178 String property_filename = cmd.getOptionValue("properties",null);
179
180 String[] filtered_args = cmd.getArgs();
181
182 if (filtered_args.length != 2) {
183 print_usage(formatter,options);
184 System.exit(1);
185 }
186
187 if (property_filename != null) {
188 try {
189 FileInputStream fis = new FileInputStream(property_filename);
190 BufferedInputStream bis = new BufferedInputStream(fis);
191
192 System.getProperties().load(bis);
193 }
194 catch (FileNotFoundException e) {
195 e.printStackTrace();
196 System.err.println("File not found: '" + property_filename + "'. Skipping property file read");
197 }
198 catch (IOException e) {
199 System.err.println("IO Exception for: '" + property_filename + "'. Malformed syntax? Skipping property file read");
200 }
201 }
202
203 String input_dir = filtered_args[0];
204 String json_list_filename = filtered_args[1];
205
206 ProcessForWhitelist prep_for_whitelist
207 = new ProcessForWhitelist(input_dir,json_list_filename,verbosity);
208
209 //String process_ef_json_mode = System.getProperty("wcsa-ef-ingest.process-ef-json-mode","per-page");
210 prep_for_whitelist.execWordCount();
211
212 }
213}
Note: See TracBrowser for help on using the repository browser.