-
Notifications
You must be signed in to change notification settings - Fork 173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[master] Extended Thread logging #1076
Merged
rfelcman
merged 3 commits into
eclipse-ee4j:master
from
rfelcman:bug_jpa_559307_DeadLockObjectBuilderv4.1
Apr 19, 2021
Merged
[master] Extended Thread logging #1076
rfelcman
merged 3 commits into
eclipse-ee4j:master
from
rfelcman:bug_jpa_559307_DeadLockObjectBuilderv4.1
Apr 19, 2021
Conversation
This file contains 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
Signed-off-by: Radek Felcman <[email protected]>
lukasj
reviewed
Apr 19, 2021
.../org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/logging/LogCategory.java
Outdated
Show resolved
Hide resolved
…d just add new one Signed-off-by: Radek Felcman <[email protected]>
lukasj
reviewed
Apr 19, 2021
.../org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/logging/LogCategory.java
Outdated
Show resolved
Hide resolved
…d just add new one Signed-off-by: Radek Felcman <[email protected]>
lukasj
approved these changes
Apr 19, 2021
rfelcman
added a commit
to rfelcman/eclipselink
that referenced
this pull request
Apr 20, 2021
This commit contains extension to logging code. Main purpose is display info if cached entity is picked by another thread and WorkManager is called in different threads. This logging is by default disabled and must be enabled by persistence properties Major changes are: - new thread log category specified in org.eclipse.persistence.logging.LogCategory and org.eclipse.persistence.logging.SessionLog - Two new persistence unit properties eclipselink.thread.extended.logging to enable this logging and eclipselink.thread.extended.logging.threaddump to add to the log output threads stack trace - new log messages are called from org.eclipse.persistence.internal.sessions.UnitOfWorkImpl Signed-off-by: Radek Felcman <[email protected]> (cherry picked from commit f202761)
rfelcman
added a commit
to rfelcman/eclipselink
that referenced
this pull request
May 28, 2021
…o - backport from 2.6 and master This is backport from 2.6 PRs eclipse-ee4j#1080, eclipse-ee4j#1101, eclipse-ee4j#1121 and master eclipse-ee4j#1076. This commit contains extension to logging code. Main purpose is display info if cached entity is picked by another thread and WorkManager is called in different threads. Log cached item lifecycle (insert, refresh, remove, invalidate) from cache. This logging is by default disabled and must be enabled by persistence properties Major changes are: - new thread log category specified in "org.eclipse.persistence.logging.LogCategory" and "org.eclipse.persistence.logging.SessionLog" - three new persistence unit properties "eclipselink.cache.extended.logging" about cached item lifecycle, "eclipselink.thread.extended.logging" to enable this logging and "eclipselink.thread.extended.logging.threaddump" to add to the log output threads stack trace - new log messages are called from "org.eclipse.persistence.internal.sessions.UnitOfWorkImpl" Signed-off-by: Radek Felcman <[email protected]>
rfelcman
added a commit
to rfelcman/eclipselink
that referenced
this pull request
May 30, 2021
…o - backport from 2.6 and master This is backport from 2.6 PRs eclipse-ee4j#1080, eclipse-ee4j#1101, eclipse-ee4j#1121 and master eclipse-ee4j#1076. This commit contains extension to logging code. Main purpose is display info if cached entity is picked by another thread and WorkManager is called in different threads. Log cached item lifecycle (insert, refresh, remove, invalidate) from cache. This logging is by default disabled and must be enabled by persistence properties Major changes are: - new thread log category specified in "org.eclipse.persistence.logging.LogCategory" and "org.eclipse.persistence.logging.SessionLog" - three new persistence unit properties "eclipselink.cache.extended.logging" about cached item lifecycle, "eclipselink.thread.extended.logging" to enable this logging and "eclipselink.thread.extended.logging.threaddump" to add to the log output threads stack trace - new log messages are called from "org.eclipse.persistence.internal.sessions.UnitOfWorkImpl" Signed-off-by: Radek Felcman <[email protected]>
rfelcman
added a commit
that referenced
this pull request
Jun 1, 2021
…o - backport from 2.6 and master (#1174) This is backport from 2.6 PRs #1080, #1101, #1121 and master #1076. This commit contains extension to logging code. Main purpose is display info if cached entity is picked by another thread and WorkManager is called in different threads. Log cached item lifecycle (insert, refresh, remove, invalidate) from cache. This logging is by default disabled and must be enabled by persistence properties Major changes are: - new thread log category specified in "org.eclipse.persistence.logging.LogCategory" and "org.eclipse.persistence.logging.SessionLog" - three new persistence unit properties "eclipselink.cache.extended.logging" about cached item lifecycle, "eclipselink.thread.extended.logging" to enable this logging and "eclipselink.thread.extended.logging.threaddump" to add to the log output threads stack trace - new log messages are called from "org.eclipse.persistence.internal.sessions.UnitOfWorkImpl" Signed-off-by: Radek Felcman <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains extension to logging code.
Main purpose is display info if cached entity is picked by another thread and WorkManager is called in different threads.
This logging is by default disabled and must be enabled by persistence properties
Major changes are:
thread
log category specified inorg.eclipse.persistence.logging.LogCategory
andorg.eclipse.persistence.logging.SessionLog
eclipselink.thread.extended.logging
to enable this logging andeclipselink.thread.extended.logging.threaddump
to add to the log output threads stack traceorg.eclipse.persistence.internal.sessions.UnitOfWorkImpl
Signed-off-by: Radek Felcman [email protected]