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
f835e717
Commit
f835e717
authored
15 years ago
by
tpylak
Browse files
Options
Downloads
Patches
Plain Diff
LMS-1050 even if indexing failed for one entity try to index the others
SVN: 11917
parent
6d3862a7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openbis/source/java/ch/systemsx/cisd/openbis/generic/server/dataaccess/db/search/DefaultFullTextIndexer.java
+24
-9
24 additions, 9 deletions
...c/server/dataaccess/db/search/DefaultFullTextIndexer.java
with
24 additions
and
9 deletions
openbis/source/java/ch/systemsx/cisd/openbis/generic/server/dataaccess/db/search/DefaultFullTextIndexer.java
+
24
−
9
View file @
f835e717
...
...
@@ -76,18 +76,33 @@ final class DefaultFullTextIndexer implements IFullTextIndexer
{
index
++;
final
Object
object
=
results
.
get
(
0
);
if
(
operationLog
.
isDebugEnabled
())
{
operationLog
.
debug
(
String
.
format
(
"Indexing entity '%s'."
,
object
));
}
fullTextSession
.
index
(
object
);
if
(
batchSize
>
0
&&
index
%
batchSize
==
0
)
{
hibernateSession
.
clear
();
}
indexEntity
(
hibernateSession
,
fullTextSession
,
index
,
object
);
}
transaction
.
commit
();
operationLog
.
info
(
String
.
format
(
"%d '%s' have been indexed."
,
index
,
clazz
.
getSimpleName
()));
}
private
<
T
>
void
indexEntity
(
final
Session
hibernateSession
,
final
FullTextSession
fullTextSession
,
int
index
,
T
object
)
{
if
(
operationLog
.
isDebugEnabled
())
{
operationLog
.
debug
(
String
.
format
(
"Indexing entity '%s'."
,
object
));
}
try
{
fullTextSession
.
index
(
object
);
}
catch
(
Exception
e
)
{
operationLog
.
error
(
"Error while indexing the object "
+
object
+
": "
+
e
.
getMessage
()
+
". Indexing will be continued."
);
}
if
(
batchSize
>
0
&&
index
%
batchSize
==
0
)
{
fullTextSession
.
flushToIndexes
();
hibernateSession
.
clear
();
}
}
}
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