You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by yo...@apache.org on 2006/10/20 07:10:51 UTC

svn commit: r465995 - /lucene/java/trunk/src/test/org/apache/lucene/search/TestThreadSafe.java

Author: yonik
Date: Thu Oct 19 22:10:49 2006
New Revision: 465995

URL: http://svn.apache.org/viewvc?view=rev&rev=465995
Log:
test demonstrating problem cloning active IndexInput in LazyField: LUCENE-690

Added:
    lucene/java/trunk/src/test/org/apache/lucene/search/TestThreadSafe.java   (with props)

Added: lucene/java/trunk/src/test/org/apache/lucene/search/TestThreadSafe.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/test/org/apache/lucene/search/TestThreadSafe.java?view=auto&rev=465995
==============================================================================
--- lucene/java/trunk/src/test/org/apache/lucene/search/TestThreadSafe.java (added)
+++ lucene/java/trunk/src/test/org/apache/lucene/search/TestThreadSafe.java Thu Oct 19 22:10:49 2006
@@ -0,0 +1,156 @@
+package org.apache.lucene.search;
+/**
+ * Copyright 2006 The Apache Software Foundation
+ *
+ * Licensed 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.
+ */
+
+import junit.framework.TestCase;
+import org.apache.lucene.store.Directory;
+import org.apache.lucene.store.RAMDirectory;
+import org.apache.lucene.index.IndexReader;
+import org.apache.lucene.index.IndexWriter;
+import org.apache.lucene.analysis.WhitespaceAnalyzer;
+import org.apache.lucene.document.*;
+
+import java.util.Random;
+import java.util.List;
+import java.io.IOException;
+
+/**
+ * @author yonik
+ * @version $Id$
+ */
+public class TestThreadSafe extends TestCase {
+  Random r = new Random();
+  Directory dir1;
+  Directory dir2;
+
+  IndexReader ir1;
+  IndexReader ir2;
+
+  String failure=null;
+
+
+  class Thr extends Thread {
+    final int iter;
+    final Random rand;
+    // pass in random in case we want to make things reproducable
+    public Thr(int iter, Random rand, int level) {
+      this.iter = iter;
+      this.rand = rand;
+    }
+
+    public void run() {
+      try {
+        for (int i=0; i<iter; i++) {
+          /*** future
+           // pick a random index reader... a shared one, or create your own
+           IndexReader ir;
+           ***/
+
+          switch(rand.nextInt(2)) {
+            case 0: loadDoc(ir1); break;
+          }
+
+        }
+      } catch (Throwable th) {
+        failure=th.toString();
+        TestCase.fail(failure);
+      }
+    }
+
+
+    void loadDoc(IndexReader ir) throws IOException {
+      // beware of deleted docs in the future
+      Document doc = ir.document(rand.nextInt(ir.maxDoc()),
+                new FieldSelector() {
+                  public FieldSelectorResult accept(String fieldName) {
+                    switch(rand.nextInt(2)) {
+                      case 0: return FieldSelectorResult.LAZY_LOAD;
+                      case 1: return FieldSelectorResult.LOAD;
+                      // TODO: add other options
+                      default: return FieldSelectorResult.LOAD;
+                    }
+                  }
+                }
+              );
+
+      List fields = doc.getFields();
+      for (int i=0; i<fields.size(); i++) {
+        Fieldable f = (Fieldable)fields.get(i);
+        validateField(f);
+      }
+
+    }
+
+  }
+
+
+  void validateField(Fieldable f) {
+    String val = f.stringValue();
+    if (!val.startsWith("^") || !val.endsWith("$")) {
+      throw new RuntimeException("Invalid field:" + f.toString() + " val=" +val);
+    }
+  }
+
+  String[] words = "now is the time for all good men to come to the aid of their country".split(" ");
+
+  void buildDir(Directory dir, int nDocs, int maxFields, int maxFieldLen) throws IOException {
+    IndexWriter iw = new IndexWriter(dir, new WhitespaceAnalyzer(), true);
+    iw.setMaxBufferedDocs(10);
+    for (int j=0; j<nDocs; j++) {
+      Document d = new Document();
+      int nFields = r.nextInt(maxFields);
+      for (int i=0; i<nFields; i++) {
+        int flen = r.nextInt(maxFieldLen);
+        StringBuffer sb = new StringBuffer("^ ");
+        while (sb.length() < flen) sb.append(" " + words[r.nextInt(words.length)]);
+        sb.append(" $");
+        Field.Store store = Field.Store.YES;  // make random later
+        Field.Index index = Field.Index.TOKENIZED;  // make random later
+        d.add(new Field("f"+i, sb.toString(), store, index));
+      }
+      iw.addDocument(d);
+    }
+    iw.close();
+  }
+
+
+  void doTest(int iter, int nThreads) throws Exception {
+    Thr[] tarr = new Thr[nThreads];
+    for (int i=0; i<nThreads; i++) {
+      tarr[i] = new Thr(iter, new Random(), 1);
+      tarr[i].start();
+    }
+    for (int i=0; i<nThreads; i++) {
+      tarr[i].join();
+    }
+    if (failure!=null) {
+      TestCase.fail(failure);
+    }
+  }
+
+  public void testLazyLoadThreadSafety() throws Exception{
+    dir1 = new RAMDirectory();
+    // test w/ field sizes bigger than the buffer of an index input
+    buildDir(dir1, 15, 5, 2000);
+
+    // do many small tests so the thread locals go away inbetween
+    for (int i=0; i<100; i++) {
+      ir1 = IndexReader.open(dir1);
+      doTest(10,100);
+    }
+  }
+
+}

Propchange: lucene/java/trunk/src/test/org/apache/lucene/search/TestThreadSafe.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: lucene/java/trunk/src/test/org/apache/lucene/search/TestThreadSafe.java
------------------------------------------------------------------------------
    svn:executable = *

Propchange: lucene/java/trunk/src/test/org/apache/lucene/search/TestThreadSafe.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL