This file contains hidden or 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
| Started GET "/dc/qa/terms/local/states" for 127.0.0.1 at 2014-03-05 15:40:29 -0500 | |
| (developer) Callback phase initiated. | |
| Processing by Qa::TermsController#index as HTML | |
| Parameters: {"vocab"=>"local", "sub_authority"=>"states"} |
This file contains hidden or 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
| at org.modeshape.jcr.cache.document.DocumentTranslator.getProperty(DocumentTranslator.java:336) | |
| at org.modeshape.jcr.cache.document.DocumentTranslator.getPrimaryTypeName(DocumentTranslator.java:357) | |
| at org.modeshape.jcr.federation.FederatedDocumentReader.getPrimaryTypeName(FederatedDocumentReader.java:123) | |
| at org.fcrepo.connector.file.FedoraFileSystemConnector.getDocumentById(FedoraFileSystemConnector.java:75) | |
| at org.modeshape.jcr.federation.FederatedDocumentStore.get(FederatedDocumentStore.java:263) | |
| at org.modeshape.jcr.cache.document.WorkspaceCache.documentFor(WorkspaceCache.java:164) | |
| at org.modeshape.jcr.cache.document.WorkspaceCache.documentFor(WorkspaceCache.java:183) | |
| at org.modeshape.jcr.cache.document.WorkspaceCache.getNode(WorkspaceCache.java:215) | |
| at org.modeshape.jcr.cache.document.AbstractSessionCache.getNode(AbstractSessionCache.java:237) | |
| at org.modeshape.jcr.cache.document.WritableSessionCache.getNode(WritableSessionCache.java:169) |
This file contains hidden or 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
| WARN 14:22:04.061 (RepositoryConfiguration) The 'query.rebuildUponStartup' field in the repository configuration file is deprecated and is no longer used. { "name" : "repo" , "jndiName" : "" , "workspaces" : { "predefined" : [ "default" ] , "default" : "default" , "allowCreation" : true } , "query" : { "enabled" : true , "indexStorage" : { "type" : "filesystem" , "location" : "/Users/escowles/src/git/fcrepo4/fcrepo-webapp/fcrepo4-data/fcrepo.modeshape.index.location" , "lockingStrategy" : "native" , "fileSystemAccessType" : "auto" } , "rebuildUponStartup" : "if_missing" , "indexing" : { "mode" : "sync" } } , "storage" : { "cacheName" : "FedoraRepository" , "cacheConfiguration" : "config/infinispan/leveldb-default/infinispan.xml" , "binaryStorage" : { "type" : "file" , "directory" : "/Users/escowles/src/git/fcrepo4/fcrepo-webapp/fcrepo4-data/fcrepo.binary-store-path" , "minimumBinarySizeInBytes" : 4096 } } , "security" : { "anonymous" : { "roles" : [ "readonly" , "readwrite" , "admin" ] , "useOnFailedLogin" : |
This file contains hidden or 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
| <infinispan xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="urn:infinispan:config:5.2 http://www.infinispan.org/schemas/infinispan-config-5.2.xsd" | |
| xmlns="urn:infinispan:config:5.2"> | |
| <global> | |
| <globalJmxStatistics enabled="true" allowDuplicateDomains="true"/> | |
| <transport clusterName="modeshape-cluster"> | |
| <properties> | |
| <property name="configurationFile" value="${fcrepo.ispn.jgroups.configuration:cluster/jgroups-fcrepo-tcp.xml}"/> | |
| </properties> | |
| </transport> |
This file contains hidden or 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
| source 'https://rubygems.org' | |
| gem 'active-fedora', github: 'projecthydra/active_fedora', branch: 'master' | |
| gem 'linkeddata' |
This file contains hidden or 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
| SFM Mac notes: | |
| Install postgres and python using homebrew: | |
| $ brew install postgres python | |
| Install virtualenv: | |
| $ pip install virtualenv |
This file contains hidden or 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
| source 'https://rubygems.org' | |
| gem 'active-fedora', github: 'projecthydra/active_fedora', branch: 'master' | |
| gem 'linkeddata' |
This file contains hidden or 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
| #!/bin/sh | |
| BASE_URL=http://localhost:8080/rest/federated | |
| BASE_DIR=$HOME/src/x | |
| head -c $(( 10 * 1024 )) /dev/urandom > tmp.in | |
| md5sum tmp.in | |
| MAX=256 # number of files/directories to create | |
| SLEEP=10 |
This file contains hidden or 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
| #!/bin/sh | |
| BASE=http://lib-devsandbox1.ucsd.edu:8080/fedora | |
| OBJ=1000 | |
| DSZ=$(( 1024 * 1024 * 10 )) # 10 MB | |
| AUTH="-u fedoraAdmin:fedoraAdmin" | |
| if [ ! -d tmp ]; then | |
| mkdir tmp |
This file contains hidden or 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
| import java.io.File; | |
| import java.io.FileInputStream; | |
| import java.io.InputStream; | |
| import java.io.IOException; | |
| import java.util.ArrayList; | |
| import java.util.HashMap; | |
| import java.util.List; | |
| import java.util.Map; |