As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I was trying to evaluate the ODBC interface at our company compared to the native Access database. As part of this evaluation I wanted to benchmark WebFOCUS interfaces. I found some rather interesting results and some questions. I used the same 6.8 Million record file using 96 byte records. The query was very simple, a TABLEF to a binary hold file. I tried this experiment on both our production and development server. The Servers: Dev - VM, Single CPU, Win 2003, Xeon 3.2 Ghz, 2 gig RAM, Raid 5 15K SCSI Prod - Win 2000, Dual CPUR, Xeon 3.2 Ghz, 4 gig RAM, Raid 5 15K SCSI
The statistics show both CPU and Wall clock time to control for network and Sybase server loads. We used ODBC to read a local Access database. What was surprising was that ODBC was faster than the native Sybase adapter. I also found WebFOCUS file performance was significantly faster on the development machine than the specs on the CPU suggest. Our production machine was significantly faster for Sybase access which begs the question, how can we best tune our development machine?This message has been edited. Last edited by: Edan,
Posts: 8 | Location: New York | Registered: March 28, 2005
Actually, on our development system, I benchmarked ODBC first. I assume you said this because of the OS cache. This would only cause the wall clock time to be close to the CPU. This only occured in the case of the Fixed file since it was the result of a prior table. Since the data sources were different the cache would not influence any other result.
Edan
Posts: 8 | Location: New York | Registered: March 28, 2005
Performance tuning for different environments seems to be a common challenge. All of our reports use SQL passthru with WebFOCUS against our DB2 databases which gives us greater control of the SQL that is passed. In benchmarking, we have discovered (not really to anyone's surprise) that even though our PROD environment has WAY more horsepower than UAT or DEV, the sheer amount of data housed in PROD alters the DB Access plans that DB2 uses to retrieve the data. What works efficiently in DEV and UAT, does not necessarily work efficiently in PROD. Also, the time the DB spends creating the access plan (overhead) is different between all of our environments due to the numbers of rows difference in those environments. I could make a strong argument for stored procs, but then we would have to get our DBA's involved every time a requirement was updated. We due notice that DB2 seems to cache and reuse it's access plans if the same request is repeated within a short timeframe.
Keep us posted on your research and if you have time, maybe some more details of the test architecture you used will help. I'm very interested in this tuning topic and looking forward to reading feedback from others as well.
Thanks,
Kevin
WF 7.6.10 / WIN-AIX
Posts: 141 | Location: Denver, CO | Registered: December 09, 2005