2017-12-02 5 views
0

Subgit을 사용하여 SVN repos를 Git으로 마이그레이션하고 있습니다. 그것은 거대한 repo (git repo의 크기는 75 % 진행 후 86GB입니다). 75 % 진행 후 오류가 발생합니다. subgit config에서 readTimeout = 600000을 시도했지만 성공하지 못했습니다.SVN to Git 마이그레이션 : 조기 종료 파일

누구든지이 오류에 대해 무엇을 제안하고 SVN 클라이언트/Subgit에서이 문제를 해결할 수있는 구성이 있습니까?

[2017-12-02 07:03:53.091][subgit-install][1] svn: E175002: Processing REPORT 
request response failed: Premature end of file. (/svn/pcs/!svn/vcc/default) 
svn: E175002: REPORT request failed on '/svn/pcs/!svn/vcc/default' 
com.syntevo.svngitkit.core.a.i: svn: E175002: Processing REPORT request 
response failed: Premature end of file. (/svn/pcs/!svn/vcc/default) 
svn: E175002: REPORT request failed on '/svn/pcs/!svn/vcc/default' 
at com.syntevo.svngitkit.core.a.i.a(SourceFile:29) 
at com.syntevo.svngitkit.core.b.N.b(SourceFile:655) 
at com.syntevo.svngitkit.core.b.N.a(SourceFile:357) 
at com.syntevo.svngitkit.core.b.N.a(SourceFile:317) 
at com.syntevo.svngitkit.core.b.N.a(SourceFile:263) 
at com.syntevo.svngitkit.core.b.N.a(SourceFile:102) 
at com.syntevo.svngitkit.core.b.ac.c(SourceFile:43) 
at com.syntevo.svngitkit.core.b.ac.b(SourceFile:36) 
at org.tmatesoft.translator.k.ap.a(SourceFile:1269) 
at org.tmatesoft.translator.k.ap.c(SourceFile:885) 
at org.tmatesoft.translator.k.ap.a(SourceFile:908) 
at org.tmatesoft.translator.k.ap.b(SourceFile:965) 
at org.tmatesoft.translator.k.ap.a(SourceFile:587) 
at org.tmatesoft.translator.k.ap.a(SourceFile:558) 
at org.tmatesoft.translator.k.d.i.a(SourceFile:203) 
at org.tmatesoft.translator.k.d.i.c(SourceFile:90) 
at org.tmatesoft.translator.a.Q.b(SourceFile:53) 
at org.tmatesoft.translator.a.u.a(SourceFile:23) 
at org.tmatesoft.translator.d.a(SourceFile:186) 
at org.tmatesoft.translator.d.a(SourceFile:137) 
at org.tmatesoft.translator.d.a(SourceFile:51) 
at org.tmatesoft.translator.process.f.d(SourceFile:136) 
at org.tmatesoft.translator.process.f.c(SourceFile:106) 
at org.tmatesoft.translator.d.a(SourceFile:74) 
at org.tmatesoft.translator.d.a(SourceFile:65) 
at org.tmatesoft.translator.SubGit.main(SourceFile:10) 
Caused by: org.tmatesoft.svn.core.SVNException: svn: E175002: Processing REPORT request response failed: Premature end of file. 
(/svn/pcs/!svn/vcc/default) 

답변

1

설명과 스택 트레이스는 SVN 저장소가 HTTP (S)를 통해 액세스되는 것처럼 보입니다. 그런 경우에는 , svn.httpSpooling 수 있도록하여 HTTP 스풀링을 가능하게하려고 :

[SVN]

# enable HTTP requests spooling to prevent server-side timeout when request processing takes long time. 
httpSpooling = true 

이것에 대한 또 다른 가능한 acuse가 잘못 매핑 구성은, 을하지만, 그것은 단지 스택 트레이스를 가지고 얘기하기 어렵다 정확하게 부적절하게 설정된 것은 추가 분석이 필요합니다. 실패하면 활성화 httpSpooling로 번역을 다시 시작 시도 - SVN 로그와 함께 SubGit의 로그 (subgit - 수출입 .ZIP 또는 subgit - 설치 - .ZIP) 을 보내 주시기 바랍니다 ('SVN -v 로그인'명령 출력)를 [email protected]으로 보내주십시오. 이 로그를 통해 원인을 찾아 문제를 해결할 수 있습니다.

+0

완벽하게 작동했습니다. 'httpSpooling = true' –