Weblogic Server-Tips & Tricks For Troubleshooting Performance Issues
Weblogic Server-Tips & Tricks For Troubleshooting Performance Issues
Weblogic Server-Tips & Tricks For Troubleshooting Performance Issues
THREAD MANAGEMENT
TUNING DATASOURCES
TUNING TRANSACTIONS
For subsystems that share the same server instance, share one
store between multiple subsystems rather than using a store per
subsystem. Sharing a store is more efficient for the following
reasons:
A single store batches concurrent requests into single
I/Os which reduces overall disk usage.
Transactions in which only one resource participates are
lightweight one-phase transactions. Conversely,
transactions in which multiple stores participate become
heavier weight two-phase transactions.
Add a new store only when the old store(s) no longer
scale.
Under heavy JDBC store I/O loads, you can improve
performance by configuring a JDBC store to use
multiple JDBC connections to concurrently process I/O
operations.
Conclusion
This white paper provides some input on the major performance
tuning considerations for WebLogic Server. However keep
following things in mind:
Performance tuning is not a silver bullet. Simply put,
good system performance depends on: good design,
good implementation, defined performance objectives,
and performance tuning.
Performance tuning is ongoing process. Implement