You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by rw...@apache.org on 2015/06/18 12:55:30 UTC

svn commit: r1686180 - /stanbol/trunk/entityhub/yard/solr/src/main/java/org/apache/stanbol/entityhub/yard/solr/impl/SolrYard.java

Author: rwesten
Date: Thu Jun 18 10:55:30 2015
New Revision: 1686180

URL: http://svn.apache.org/r1686180
Log:
minor: improved logging; replaced tabs with spaces 

Modified:
    stanbol/trunk/entityhub/yard/solr/src/main/java/org/apache/stanbol/entityhub/yard/solr/impl/SolrYard.java

Modified: stanbol/trunk/entityhub/yard/solr/src/main/java/org/apache/stanbol/entityhub/yard/solr/impl/SolrYard.java
URL: http://svn.apache.org/viewvc/stanbol/trunk/entityhub/yard/solr/src/main/java/org/apache/stanbol/entityhub/yard/solr/impl/SolrYard.java?rev=1686180&r1=1686179&r2=1686180&view=diff
==============================================================================
--- stanbol/trunk/entityhub/yard/solr/src/main/java/org/apache/stanbol/entityhub/yard/solr/impl/SolrYard.java (original)
+++ stanbol/trunk/entityhub/yard/solr/src/main/java/org/apache/stanbol/entityhub/yard/solr/impl/SolrYard.java Thu Jun 18 10:55:30 2015
@@ -177,12 +177,12 @@ public class SolrYard extends AbstractYa
         super();
         if(server == null){
             throw new IllegalArgumentException("The parsed SolrServer instance" +
-            		"MUST NOT be NULL!");
+                    "MUST NOT be NULL!");
         }
         this.server = server;
         if(config == null){
             throw new IllegalArgumentException("The parsed SolrYard configuration" +
-            		"MUST NOT be NULL");
+                    "MUST NOT be NULL");
         }
         this.config = config;
         //set the value/query/indexValue factory
@@ -698,11 +698,11 @@ public class SolrYard extends AbstractYa
         try {
             AccessController.doPrivileged(new PrivilegedExceptionAction<Object>() {
                 public Object run() throws IOException, SolrServerException {
-		            update.process(server);
-		            if (immediateCommit) {
-		                server.commit();
-		            }
-		            return null;
+                    update.process(server);
+                    if (immediateCommit) {
+                        server.commit();
+                    }
+                    return null;
                 }
             });
             long ready = System.currentTimeMillis();
@@ -866,7 +866,7 @@ public class SolrYard extends AbstractYa
 
     @Override
     public final Representation update(Representation representation) 
-    		throws IllegalArgumentException, NullPointerException, YardException {
+            throws IllegalArgumentException, NullPointerException, YardException {
         if (representation == null) {
             throw new IllegalArgumentException("The parsed Representation MUST NOT be NULL!");
         }
@@ -875,13 +875,13 @@ public class SolrYard extends AbstractYa
             return store(representation); // there is no "update" for solr
         } else {
             throw new IllegalArgumentException("Parsed Representation " + representation.getId()
-            		+ " in not managed by this Yard " + getName() + "(id=" + getId() + ")");
+                    + " in not managed by this Yard " + getName() + "(id=" + getId() + ")");
         }
     }
 
     @Override
     public final Iterable<Representation> update(Iterable<Representation> representations)
-    		throws YardException, IllegalArgumentException, NullPointerException {
+            throws YardException, IllegalArgumentException, NullPointerException {
         if (representations == null) {
             throw new IllegalArgumentException("The parsed Iterable over Representations MUST NOT be NULL!");
         }
@@ -901,7 +901,7 @@ public class SolrYard extends AbstractYa
             ids = checkRepresentations(ids); // returns the ids found in the solrIndex
         } catch (SolrServerException e) {
             throw new YardException("Error while searching for alredy present documents "
-            		+ "before executing the actual update for the parsed Representations", e);
+                    + "before executing the actual update for the parsed Representations", e);
         } catch (IOException e) {
             throw new YardException("Unable to access SolrServer", e);
         }
@@ -945,9 +945,9 @@ public class SolrYard extends AbstractYa
         }
         long ready = System.currentTimeMillis();
         log.info(String.format( "Processed updateRequest for %d documents (%d in index "
-        		+ "| %d updated) in %dms (checked %dms|created %dms| stored%dms)",
-        		numDocs, ids.size(), updated.size(), ready - start, checked - start, 
-        		created - checked, ready - created));
+                + "| %d updated) in %dms (checked %dms|created %dms| stored%dms)",
+                numDocs, ids.size(), updated.size(), ready - start, checked - start, 
+                created - checked, ready - created));
         return updated;
     }