Changeset 31450


Ignore:
Timestamp:
2017-02-28T23:37:29+13:00 (7 years ago)
Author:
davidb
Message:

Some debugging output to help see what is happening with langmap_directory under YARN

Location:
other-projects/hathitrust/wcsa/extracted-features-solr/trunk/solr-ingest/src/main/java/org/hathitrust/extractedfeatures
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • other-projects/hathitrust/wcsa/extracted-features-solr/trunk/solr-ingest/src/main/java/org/hathitrust/extractedfeatures/PerVolumeJSON.java

    r31375 r31450  
    4343    boolean _strict_file_io;
    4444
    45     public PerVolumeJSON(String input_dir, String whitelist_filename, String langmap_directcory,
     45    public PerVolumeJSON(String input_dir, String whitelist_filename, String langmap_directory,
    4646                         String solr_url, String output_dir, int verbosity,
    4747                         boolean icu_tokenize, boolean strict_file_io)
    4848    {
     49        System.out.println("*** PerVolumeJSON Constructor, langmap_directory = " + langmap_directory);
     50       
    4951        _input_dir  = input_dir;
    5052        _whitelist_filename = whitelist_filename;
    51         _langmap_directory = langmap_directcory;
     53        _langmap_directory = langmap_directory;
    5254       
    5355        _solr_url   = solr_url;
  • other-projects/hathitrust/wcsa/extracted-features-solr/trunk/solr-ingest/src/main/java/org/hathitrust/extractedfeatures/ProcessForSolrIngest.java

    r31375 r31450  
    109109        boolean strict_file_io = Boolean.getBoolean("wcsa-ef-ingest.strict-file-io");
    110110       
     111        System.out.println("*** away to create PerVolumeJSON class, _langmap_directory = " + _langmap_directory);
    111112        PerVolumeJSON per_vol_json = new PerVolumeJSON(_input_dir,_whitelist_filename, _langmap_directory,
    112113                                                       _solr_url,_output_dir,_verbosity,
Note: See TracChangeset for help on using the changeset viewer.