-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from vivo-project/develop
Update Develop
- Loading branch information
Showing
1,114 changed files
with
2,378,862 additions
and
3,762 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,33 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="src" output="build/classes" path="src/main/java"/> | ||
<classpathentry excluding="**" kind="src" output="build/classes" path="src/main/resources"/> | ||
<classpathentry kind="src" output="build/test-classes" path="src/test/java"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> | ||
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"/> | ||
<classpathentry kind="src" output="build/classes" path="src/main/java"> | ||
<attributes> | ||
<attribute name="optional" value="true"/> | ||
<attribute name="maven.pomderived" value="true"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry excluding="**" kind="src" output="build/classes" path="src/main/resources"> | ||
<attributes> | ||
<attribute name="maven.pomderived" value="true"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry kind="src" output="build/test-classes" path="src/test/java"> | ||
<attributes> | ||
<attribute name="optional" value="true"/> | ||
<attribute name="maven.pomderived" value="true"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"> | ||
<attributes> | ||
<attribute name="maven.pomderived" value="true"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> | ||
<attributes> | ||
<attribute name="maven.pomderived" value="true"/> | ||
</attributes> | ||
</classpathentry> | ||
<classpathentry kind="lib" path="build/dependency/jena-sdb-1.3.6.jar"/> | ||
<classpathentry kind="output" path="build/classes"/> | ||
</classpath> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
.settings/* | ||
/build | ||
/logs | ||
*/data | ||
*data/* | ||
*/logs | ||
*/previous-harvest | ||
*.DS_Store | ||
*errDest/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
Christopher Barnes [email protected] | ||
Christopher Haines [email protected] | ||
Yang Li [email protected] | ||
Yang Li [email protected] | ||
Narayan Raum [email protected] | ||
Dale Scheppler [email protected] | ||
Nicholas Skaggs [email protected] | ||
Stephen V. Williams [email protected] | ||
Eliza Chan [email protected] | ||
James Pence [email protected] | ||
Eliza Chan [email protected] | ||
James Pence [email protected] | ||
Michael Barbieri [email protected] | ||
Brian Keese [email protected] | ||
Christopher Westling [email protected] | ||
Brian Keese [email protected] | ||
Christopher Westling [email protected] | ||
John Fereira [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/bin/bash | ||
|
||
#Copyright (c) 2010-2011 VIVO Harvester Team. For full list of contributors, please see the AUTHORS file provided. | ||
#All rights reserved. | ||
#This program and the accompanying materials are made available under the terms of the new BSD license which accompanies this distribution, and is available at http://www.opensource.org/licenses/bsd-license.html | ||
|
||
#update memory to match your hardware -- set both to be the same, in general the more memory the better, but too much can cause errors as well. | ||
#8G-12G on large vivo's seems to work well | ||
#MIN_MEM=2g | ||
#MAX_MEM=8g | ||
|
||
MIN_MEM=1g | ||
MAX_MEM=1g | ||
|
||
#Variable for optimizations to the Java virtual machine. | ||
#-server Run in server mode, which takes longer to start but runs faster | ||
#-d64 Use 64-bit JVM | ||
#-XX:+UseParallelOldGC Use high throughput parallel GC on old generation | ||
#-XX:+DisableExplicitGC Prevent direct calls to garbage collection in the code | ||
#-XX:+UseAdaptiveGCBoundary Allow young/old boundary to move | ||
#-XX:-UseGCOverheadLimit Limit the amount of time that Java will stay in Garbage Collection before throwing an out of memory exception | ||
#-XX:SurvivorRatio=16 Shrink eden slightly (Normal is 25) | ||
#-Xnoclassgc Disable collection of class objects | ||
#-XX:ParallelGCThreads=3 Maximum number of Parallel garbage collection tasks | ||
HARVESTER_JAVA_OPTS="" | ||
#HARVESTER_JAVA_OPTS="-server -d64 -XX:+UseParallelOldGC -XX:+DisableExplicitGC -XX:+UseAdaptiveGCBoundary -XX:-UseGCOverheadLimit -XX:SurvivorRatio=16 -Xnoclassgc -XX:ParallelGCThreads=3" | ||
HARVESTER_DIAGNOSTIC_OPTS="" | ||
#HARVESTER_DIAGNOSTIC_OPTS="-XX:+PrintG -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:HeapDumpPath /data/vivo/harvester/harvester_1.3/bin/heap-dumps/ -XX:-HeapDumpOnOutOfMemoryError" | ||
OPTS="-Xms$MIN_MEM -Xmx$MAX_MEM $HARVESTER_JAVA_OPTS $HARVESTER_DIAGNOSTIC_OPTS -Dharvester-task=$HARVEST_NAME.$DATE" | ||
|
||
#pass incoming params to java program | ||
java $OPTS -Dprocess-task=CSVFetch org.vivoweb.harvester.fetch.CSVFetch "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/bash | ||
|
||
# Copyright (c) 2012 Symplectic Ltd. All rights reserved. | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
#update memory to match your hardware -- set both to be the same, in general the more memory the better, but too much can cause errors as well. | ||
#8G-12G on large vivo's seems to work well | ||
MIN_MEM=1g | ||
MAX_MEM=1g | ||
|
||
#Variable for optimizations to the Java virtual machine. | ||
#-server Run in server mode, which takes longer to start but runs faster | ||
#-d64 Use 64-bit JVM | ||
#-XX:+UseConcMarkSweepGC Use concurrent (low pause time) garbage collector | ||
#-XX:+DisableExplicitGC Prevent direct calls to garbage collection in the code | ||
#-XX:+UseAdaptiveGCBoundary Allow young/old boundary to move | ||
#-XX:MaxGCPauseMillis=500 Target maximum for garbage collection time | ||
#-XX:-UseGCOverheadLimit Limit the amount of time that Java will stay in Garbage Collection before throwing an out of memory exception | ||
#-XX:SurvivorRatio=16 Shrink eden slightly (Normal is 25) | ||
#-Xnoclassgc Disable collection of class objects | ||
#-XX:UseSSE=3 Use SSE3 Processor extensions | ||
#-XX:ParallelGCThreads=3 Maximum number of Parallel garbage collection tasks | ||
HARVESTER_JAVA_OPTS="" | ||
#HARVESTER_JAVA_OPTS="-server -d64 -XX:+UseConcMarkSweepGC -XX:+DisableExplicitGC -XX:+UseAdaptiveGCBoundary -XX:MaxGCPauseMillis=500 -XX:-UseGCOverheadLimit -XX:SurvivorRatio=16 -Xnoclassgc -XX:UseSSE=3 -XX:ParallelGCThreads=3" | ||
OPTS="-Xms$MIN_MEM -Xmx$MAX_MEM $HARVESTER_JAVA_OPTS -Dharvester-task=$HARVEST_NAME.$DATE" | ||
|
||
#pass incoming params to java program | ||
java $OPTS -Dprocess-task=ElementsFetch uk.co.symplectic.vivoweb.harvester.app.ElementsFetchAndTranslate "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.