Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
2a2afc96
Commit
2a2afc96
authored
12 years ago
by
jakubs
Browse files
Options
Downloads
Patches
Plain Diff
BIS-21 improve logging in recovery process
SVN: 25243
parent
25a1b2ec
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/AbstractOmniscientTopLevelDataSetRegistrator.java
+23
-11
23 additions, 11 deletions
...strator/AbstractOmniscientTopLevelDataSetRegistrator.java
with
23 additions
and
11 deletions
datastore_server/source/java/ch/systemsx/cisd/etlserver/registrator/AbstractOmniscientTopLevelDataSetRegistrator.java
+
23
−
11
View file @
2a2afc96
...
@@ -484,10 +484,22 @@ public abstract class AbstractOmniscientTopLevelDataSetRegistrator<T extends Dat
...
@@ -484,10 +484,22 @@ public abstract class AbstractOmniscientTopLevelDataSetRegistrator<T extends Dat
state
.
getGlobalState
().
getStorageRecoveryManager
()
state
.
getGlobalState
().
getStorageRecoveryManager
()
.
extractPrecommittedCheckpoint
(
recoveryMarkerFile
);
.
extractPrecommittedCheckpoint
(
recoveryMarkerFile
);
// TODO: real cleanup action
// TODO: cleanup also with the incoming marker file
final
File
recoveryFile
=
state
.
getGlobalState
().
getStorageRecoveryManager
()
.
getRecoveryFileFromMarker
(
recoveryMarkerFile
);
if
(
false
==
recoveryFile
.
exists
())
{
//TODO: is it safe to throw from here?
operationLog
.
error
(
"recovery file does not exist. "
+
recoveryFile
);
throw
new
IllegalStateException
(
"Recovery file "
+
recoveryFile
+
" doesn't exist"
);
}
operationLog
.
info
(
"will recover from broken registration. Found marker file "
+
recoveryMarkerFile
+
" and "
+
recoveryFile
);
final
File
recoveryFile
=
state
.
getGlobalState
().
getStorageRecoveryManager
().
getRecoveryFileFromMarker
(
recoveryMarkerFile
);
IDelegatedActionWithResult
<
Boolean
>
recoveryMarkerFileCleanupAction
=
IDelegatedActionWithResult
<
Boolean
>
recoveryMarkerFileCleanupAction
=
new
IDelegatedActionWithResult
<
Boolean
>()
new
IDelegatedActionWithResult
<
Boolean
>()
{
{
...
@@ -509,11 +521,9 @@ public abstract class AbstractOmniscientTopLevelDataSetRegistrator<T extends Dat
...
@@ -509,11 +521,9 @@ public abstract class AbstractOmniscientTopLevelDataSetRegistrator<T extends Dat
private
void
handleRecoveryState
(
DataSetStoragePrecommitRecoveryState
<
T
>
recoveryState
,
private
void
handleRecoveryState
(
DataSetStoragePrecommitRecoveryState
<
T
>
recoveryState
,
final
IDelegatedActionWithResult
<
Boolean
>
cleanAfterwardsAction
)
final
IDelegatedActionWithResult
<
Boolean
>
cleanAfterwardsAction
)
{
{
// TODO: Jobs left to do:
// TODO: Jobs left to do
here
:
// rollback
// rollback
// cleanup
// jython hooks
// jython
System
.
err
.
println
(
"Handle recovery"
);
DssRegistrationLogger
logger
=
recoveryState
.
getRegistrationLogger
(
state
);
DssRegistrationLogger
logger
=
recoveryState
.
getRegistrationLogger
(
state
);
...
@@ -556,16 +566,18 @@ public abstract class AbstractOmniscientTopLevelDataSetRegistrator<T extends Dat
...
@@ -556,16 +566,18 @@ public abstract class AbstractOmniscientTopLevelDataSetRegistrator<T extends Dat
state
.
getGlobalState
().
getStorageRecoveryManager
());
state
.
getGlobalState
().
getStorageRecoveryManager
());
boolean
registrationSuccessful
=
false
;
boolean
registrationSuccessful
=
false
;
System
.
err
.
println
(
"Successfully created runner"
);
operationLog
.
info
(
"Recovery succesfully deserialized the state of the registration"
);
try
try
{
{
List
<
String
>
dataSetCodes
=
recoveryState
.
getDataSetCodes
();
List
<
String
>
dataSetCodes
=
recoveryState
.
getDataSetCodes
();
//TODO: we need to check for something more than just a registered datasets, for the registrations that doesn't register anything.
//OTOH: do we need to recover in this case? (as there is nothing to store)
//maybe then we should only checkpoint for recovery if there ARE datasets registered?
List
<
ExternalData
>
registeredDataSets
=
List
<
ExternalData
>
registeredDataSets
=
state
.
getGlobalState
().
getOpenBisService
().
listDataSetsByCode
(
dataSetCodes
);
state
.
getGlobalState
().
getOpenBisService
().
listDataSetsByCode
(
dataSetCodes
);
if
(
registeredDataSets
.
isEmpty
())
if
(
registeredDataSets
.
isEmpty
())
{
{
// System.err.println("There are no registered datasets!
");
operationLog
.
info
(
"Recovery hasn't found registration artifacts in the application server. Registration of metadata was not succesfull.
"
);
// recoveryState.getRollbackStack().rollbackAll(Live transaction state);./fe
// recoveryState.getRollbackStack().rollbackAll(Live transaction state);./fe
// encounteredErrors.add(ex);
// encounteredErrors.add(ex);
//
//
...
@@ -582,7 +594,7 @@ public abstract class AbstractOmniscientTopLevelDataSetRegistrator<T extends Dat
...
@@ -582,7 +594,7 @@ public abstract class AbstractOmniscientTopLevelDataSetRegistrator<T extends Dat
// // rollback during metadata registration
// // rollback during metadata registration
}
else
}
else
{
{
System
.
err
.
println
(
"There are registered datasets!
"
);
operationLog
.
info
(
"Recovery has found datasets in the AS. The registration of metadata was succesfull.
"
);
runner
.
storeAfterRegistration
();
runner
.
storeAfterRegistration
();
logger
.
registerSuccess
();
logger
.
registerSuccess
();
registrationSuccessful
=
true
;
registrationSuccessful
=
true
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment