You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2017/09/01 09:30:50 UTC

svn commit: r1806910 - in /manifoldcf/branches/release-2.8-branch: ./ framework/scripts-combined/ framework/scripts-start/ framework/scripts/

Author: kwright
Date: Fri Sep  1 09:30:50 2017
New Revision: 1806910

URL: http://svn.apache.org/viewvc?rev=1806910&view=rev
Log:
Pull up fix for CONNECTORS-1451 from trunk

Modified:
    manifoldcf/branches/release-2.8-branch/   (props changed)
    manifoldcf/branches/release-2.8-branch/CHANGES.txt
    manifoldcf/branches/release-2.8-branch/framework/scripts-combined/combined-options.env.unix
    manifoldcf/branches/release-2.8-branch/framework/scripts-combined/combined-options.env.win
    manifoldcf/branches/release-2.8-branch/framework/scripts-start/start-options.env.unix
    manifoldcf/branches/release-2.8-branch/framework/scripts-start/start-options.env.win
    manifoldcf/branches/release-2.8-branch/framework/scripts/options.env.unix
    manifoldcf/branches/release-2.8-branch/framework/scripts/options.env.win

Propchange: manifoldcf/branches/release-2.8-branch/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Sep  1 09:30:50 2017
@@ -149,4 +149,4 @@
 /manifoldcf/branches/CONNECTORS-981:1605049-1605773
 /manifoldcf/branches/CONNECTORS-989:1611600-1612101
 /manifoldcf/branches/CONNECTORS-990:1610284-1610707
-/manifoldcf/trunk:1806824
+/manifoldcf/trunk:1806824,1806908

Modified: manifoldcf/branches/release-2.8-branch/CHANGES.txt
URL: http://svn.apache.org/viewvc/manifoldcf/branches/release-2.8-branch/CHANGES.txt?rev=1806910&r1=1806909&r2=1806910&view=diff
==============================================================================
--- manifoldcf/branches/release-2.8-branch/CHANGES.txt (original)
+++ manifoldcf/branches/release-2.8-branch/CHANGES.txt Fri Sep  1 09:30:50 2017
@@ -3,12 +3,18 @@ $Id$
 
 ======================= Release 2.8.1 =====================
 
+CONNECTORS-1451: Tika extractor was causing some out-of-memory
+events to occur for simple crawls, so I increased the default memory
+allocated in the examples to 512M.
+(Karl Wright)
+
 CONNECTORS-1450: Tika extractor cannot process MS Office files due
 to a dependency problem.  The dependency issue is that poi-ooxml-schemas
 is apparently accessed via reflection, and the class lookup does not
 apparently use the current classloader, but rather some other classloader.
 This requires the entire poi* set of jars, and all dependencies, to be
 included in ManifoldCF's core jar list.
+(Karl Wright)
 
 ======================= Release 2.8 =====================
 

Modified: manifoldcf/branches/release-2.8-branch/framework/scripts-combined/combined-options.env.unix
URL: http://svn.apache.org/viewvc/manifoldcf/branches/release-2.8-branch/framework/scripts-combined/combined-options.env.unix?rev=1806910&r1=1806909&r2=1806910&view=diff
==============================================================================
--- manifoldcf/branches/release-2.8-branch/framework/scripts-combined/combined-options.env.unix (original)
+++ manifoldcf/branches/release-2.8-branch/framework/scripts-combined/combined-options.env.unix Fri Sep  1 09:30:50 2017
@@ -1,5 +1,5 @@
--Xms256m
--Xmx256m
+-Xms512m
+-Xmx512m
 -Dorg.apache.manifoldcf.configfile=./properties.xml
 -Dorg.apache.manifoldcf.jettyshutdowntoken=secret_token
 -cp

Modified: manifoldcf/branches/release-2.8-branch/framework/scripts-combined/combined-options.env.win
URL: http://svn.apache.org/viewvc/manifoldcf/branches/release-2.8-branch/framework/scripts-combined/combined-options.env.win?rev=1806910&r1=1806909&r2=1806910&view=diff
==============================================================================
--- manifoldcf/branches/release-2.8-branch/framework/scripts-combined/combined-options.env.win (original)
+++ manifoldcf/branches/release-2.8-branch/framework/scripts-combined/combined-options.env.win Fri Sep  1 09:30:50 2017
@@ -1,5 +1,5 @@
--Xms256m
--Xmx256m
+-Xms512m
+-Xmx512m
 -Dorg.apache.manifoldcf.configfile=.\properties.xml
 -Dorg.apache.manifoldcf.jettyshutdowntoken=secret_token
 -cp

Modified: manifoldcf/branches/release-2.8-branch/framework/scripts-start/start-options.env.unix
URL: http://svn.apache.org/viewvc/manifoldcf/branches/release-2.8-branch/framework/scripts-start/start-options.env.unix?rev=1806910&r1=1806909&r2=1806910&view=diff
==============================================================================
--- manifoldcf/branches/release-2.8-branch/framework/scripts-start/start-options.env.unix (original)
+++ manifoldcf/branches/release-2.8-branch/framework/scripts-start/start-options.env.unix Fri Sep  1 09:30:50 2017
@@ -1,5 +1,5 @@
--Xms256m
--Xmx256m
+-Xms512m
+-Xmx512m
 -Dorg.apache.manifoldcf.configfile=./properties.xml
 -Dorg.apache.manifoldcf.jettyshutdowntoken=secret_token
 -cp

Modified: manifoldcf/branches/release-2.8-branch/framework/scripts-start/start-options.env.win
URL: http://svn.apache.org/viewvc/manifoldcf/branches/release-2.8-branch/framework/scripts-start/start-options.env.win?rev=1806910&r1=1806909&r2=1806910&view=diff
==============================================================================
--- manifoldcf/branches/release-2.8-branch/framework/scripts-start/start-options.env.win (original)
+++ manifoldcf/branches/release-2.8-branch/framework/scripts-start/start-options.env.win Fri Sep  1 09:30:50 2017
@@ -1,5 +1,5 @@
--Xms256m
--Xmx256m
+-Xms512m
+-Xmx512m
 -Dorg.apache.manifoldcf.configfile=.\properties.xml
 -Dorg.apache.manifoldcf.jettyshutdowntoken=secret_token
 -cp

Modified: manifoldcf/branches/release-2.8-branch/framework/scripts/options.env.unix
URL: http://svn.apache.org/viewvc/manifoldcf/branches/release-2.8-branch/framework/scripts/options.env.unix?rev=1806910&r1=1806909&r2=1806910&view=diff
==============================================================================
--- manifoldcf/branches/release-2.8-branch/framework/scripts/options.env.unix (original)
+++ manifoldcf/branches/release-2.8-branch/framework/scripts/options.env.unix Fri Sep  1 09:30:50 2017
@@ -1,5 +1,5 @@
--Xms256m
--Xmx256m
+-Xms512m
+-Xmx512m
 -Dorg.apache.manifoldcf.configfile=./properties.xml
 -cp
 .:

Modified: manifoldcf/branches/release-2.8-branch/framework/scripts/options.env.win
URL: http://svn.apache.org/viewvc/manifoldcf/branches/release-2.8-branch/framework/scripts/options.env.win?rev=1806910&r1=1806909&r2=1806910&view=diff
==============================================================================
--- manifoldcf/branches/release-2.8-branch/framework/scripts/options.env.win (original)
+++ manifoldcf/branches/release-2.8-branch/framework/scripts/options.env.win Fri Sep  1 09:30:50 2017
@@ -1,5 +1,5 @@
--Xms256m
--Xmx256m
+-Xms512m
+-Xmx512m
 -Dorg.apache.manifoldcf.configfile=.\properties.xml
 -cp
 .;