Skip to content

Commit

Permalink
Add LFU scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
zwright committed Jun 12, 2020
1 parent 0420fcc commit 33dbf7c
Show file tree
Hide file tree
Showing 7 changed files with 535 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/processLargeFileUpload/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export GLOBUS_DROPBOX_ENDPOINT=936381c8-1653-11ea-b94a-0e16720bb42f
export GLOBUS_DROPBOX_PATH=/PROD_INBOX/
export LOCAL_ENDPOINT=95870406-9548-11ea-8ec8-02c81b96a709
export DLU_INSTANCE=upload_kpmp_org
33 changes: 33 additions & 0 deletions scripts/processLargeFileUpload/application.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
orion.data.version=${jar.baseName}-${jar.version}

server.port=3030

file.base.path=/data/dataLake

state.service.host=http://state-spring:3060
state.service.endpoint=/v1/state

user.auth.host=http://user-auth:8080
user.auth.endpoint=/v1/user/info
user.auth.allowed.groups=uw_rit_kpmp_app_data-lake-uploader
user.auth.kpmp.group=uw_rit_kpmp_role_kpmp-user


spring.servlet.multipart.max-file-size=102400MB
spring.servlet.multipart.max-request-size=102400MB
spring.http.multipart.enabled=false

spring.data.mongodb.uri=mongodb://localhost:27017/dataLake

logging.level.org.springframework.web=DEBUG
logging.level.org.springframework.test.context.TestContextManager=DEBUG
logging.file=orion-data.log

package.state.metadata.received=METADATA_RECEIVED
package.state.upload.succeeded=UPLOAD_SUCCEEDED
package.state.upload.started=UPLOAD_STARTED
package.state.files.received=FILES_RECEIVED
package.state.upload.failed=UPLOAD_FAILED

globus.endpoint.ID=936381c8-1653-11ea-b94a-0e16720bb42f
globus.file.manager.url=https://app.globus.org/file-manager
Loading

0 comments on commit 33dbf7c

Please sign in to comment.