SOLR-3779: fix for DIH LineEntityProcessor

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1384816 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Dyer 2012-09-14 15:19:40 +00:00
parent 188d7b61cf
commit e312ee6bfa
4 changed files with 84 additions and 7 deletions

View File

@ -167,6 +167,10 @@ Bug Fixes
* SOLR-3811: Query Form using wrong values for dismax, edismax (steffkes)
* SOLR-3779: DataImportHandler's LineEntityProcessor when used in conjunction
with FileListEntityProcessor would only process the first file.
(Ahmet Arslan via James Dyer)
Other Changes
----------------------

View File

@ -89,8 +89,7 @@ public abstract class EntityProcessor {
public abstract Map<String, Object> nextModifiedParentRowKey();
/**
* Invoked for each parent-row after the last row for this entity is processed. If this is the root-most
* entity, it will be called only once in the import, at the very end.
* Invoked for each entity at the very end of the import to do any needed cleanup tasks.
*
*/
public abstract void destroy();

View File

@ -115,7 +115,11 @@ public class LineEntityProcessor extends EntityProcessorBase {
"Problem reading from input", exp);
}
if (line == null) return null; // end of input
// end of input
if (line == null) {
closeResources();
return null;
}
// First scan whole line to see if we want it
if (acceptLineRegex != null && ! acceptLineRegex.matcher(line).find()) continue;
@ -126,13 +130,17 @@ public class LineEntityProcessor extends EntityProcessorBase {
return row;
}
}
public void closeResources() {
if (reader != null) {
IOUtils.closeQuietly(reader);
}
reader= null;
}
@Override
public void destroy() {
if (reader != null) {
IOUtils.closeQuietly(reader);
}
reader= null;
closeResources();
super.destroy();
}

View File

@ -0,0 +1,66 @@
package org.apache.solr.handler.dataimport;
import java.io.File;
import org.apache.solr.request.LocalSolrQueryRequest;
import org.junit.BeforeClass;
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
public class TestFileListWithLineEntityProcessor extends AbstractDataImportHandlerTestCase {
@BeforeClass
public static void beforeClass() throws Exception {
initCore("dataimport-solrconfig.xml", "dataimport-schema.xml");
}
public void test() throws Exception {
File tmpdir = File.createTempFile("test", "tmp", TEMP_DIR);
tmpdir.delete();
tmpdir.mkdir();
tmpdir.deleteOnExit();
createFile(tmpdir, "a.txt", "a line one\na line two\na line three".getBytes(), false);
createFile(tmpdir, "b.txt", "b line one\nb line two".getBytes(), false);
createFile(tmpdir, "c.txt", "c line one\nc line two\nc line three\nc line four".getBytes(), false);
String config = generateConfig(tmpdir);
LocalSolrQueryRequest request = lrf.makeRequest(
"command", "full-import", "dataConfig", config,
"clean", "true", "commit", "true", "synchronous", "true", "indent", "true");
h.query("/dataimport", request);
assertQ(req("*:*"), "//*[@numFound='9']");
assertQ(req("id:?\\ line\\ one"), "//*[@numFound='3']");
assertQ(req("id:a\\ line*"), "//*[@numFound='3']");
assertQ(req("id:b\\ line*"), "//*[@numFound='2']");
assertQ(req("id:c\\ line*"), "//*[@numFound='4']");
}
private String generateConfig(File dir) {
return
"<dataConfig> \n"+
"<dataSource type=\"FileDataSource\" encoding=\"UTF-8\" name=\"fds\"/> \n"+
" <document> \n"+
" <entity name=\"f\" processor=\"FileListEntityProcessor\" fileName=\".*[.]txt\" baseDir=\"" + dir.getAbsolutePath() + "\" recursive=\"false\" rootEntity=\"false\" transformer=\"TemplateTransformer\"> \n" +
" <entity name=\"jc\" processor=\"LineEntityProcessor\" url=\"${f.fileAbsolutePath}\" dataSource=\"fds\" rootEntity=\"true\" transformer=\"TemplateTransformer\"> \n" +
" <field column=\"rawLine\" name=\"id\" /> \n" +
" </entity> \n"+
" </entity> \n"+
" </document> \n"+
"</dataConfig> \n";
}
}