SlideShare a Scribd company logo
1 of 51
Download to read offline
Back from the Dead:
When Bad Code Kills a Good Server
Serdar Basegmez - Developi - @serdar_basegmez
William Malchisky Jr. - ESS - @BillMalchisky
DEV-1661
IBM Connect 2017 Conference, 20-23 February 2017
Legal Disclaimer
© IBM Corporation 2017. All Rights Reserved.
The information contained in this publication is provided for informational purposes only. While efforts were made to verify the completeness and accuracy
of the information contained in this publication, it is provided AS IS without warranty of any kind, express or implied. In addition, this information is based on
IBM’s current product plans and strategy, which are subject to change by IBM without notice. IBM shall not be responsible for any damages arising out of
the use of, or otherwise related to, this publication or any other materials. Nothing contained in this publication is intended to, nor shall have the effect of,
creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement
governing the use of IBM software.
References in this presentation to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates.
Product release dates and/or capabilities referenced in this presentation may change at any time at IBM’s sole discretion based on market opportunities or
other factors, and are not intended to be a commitment to future product or feature availability in any way. Nothing contained in these materials is intended
to, nor shall have the effect of, stating or implying that any activities undertaken by you will result in any specific sales, revenue growth or other results.
IBM Lotus® Domino®
IBM Lotus® Notes®
Lotus®
Redbooks®
Red Hat® is a registered trademark of Red Hat, Inc.
Apple, Mac, Mac OS, iPad, iPhone, and OS X are trademarks of Apple Inc., registered in the U.S. and other countries.
Microsoft, Active Directory, and Windows are trademarks of Microsoft Corporation in the United States, other countries, or both.
Vmware is a registered trademark of Vmware, Inc. in the United States and/or other jurisdictions.countries.
Other company, product, or service names may be trademarks or service marks of others.
All references to Acme Corporation and Acme, Inc. refer to a fictitious company and are used for illustration purposes only.
Our Story in Forty-five Minutes
• Preface
• Chapter I - The Beginning
• Chapter 2 - Searching for Clues
• Chapter 3 - Creating a Solid Platform
• Chapter 4 - The Softside of Performance Gains
• The Final Chapter - Results
Disclaimer
"Ladies and Gentlemen. The story you are about to see is true; the
names have been changed to protect the innocent." --Dragnet
Disclaimer
"Ladies and Gentlemen. The story you are about to see is true; the
names have been changed to protect the innocent." --Dragnet
For example... Acme Corporation is now referred to as Acme, Inc.
Setting Expectations
• What we will cover
• Problem analysis
• Troubleshooting skills
• Best practices
• The performance impact of suboptimal applications
• What we omitted
• Boring, rambling, dry lecture
• Useless drivel
Our Story in Forty-five Minutes
• Preface
• Chapter I - The Beginning
• Chapter 2 - Searching for Clues
• Chapter 3 - Creating a Solid Platform
• Chapter 4 - The Softside of Performance Gains
• The Final Chapter - Results
Customer Calls
• "We're having a problem. Can you help?"
• "Absolutely. What's happening?"
• "Our mission critical DB is really $%&@#$^& our users. It's way too
slow. It takes less time to reboot [Windows 3.1 on an i386 with 32MB
RAM] than to open a document."
• "Any idea what changed?"
• "We don't know. We have not touched the box."
Why Domino Servers Fail?
• Lack of expertise and/or knowledge
• Unplanned and/or unexpected expansion
• No dedicated administrator
• No change management
• No monitoring
• Workaround overloading
Our Story in Forty-five Minutes
• Preface
• Chapter I - The Beginning
• Chapter 2 - Searching for Clues
• Chapter 3 - Creating a Solid Platform
• Chapter 4 - The Softside of Performance Gains
• The Final Chapter - Results
"Round Up the Usual Suspects"
• While waiting for access, request the following
• Helps establish the level of criticality
notes.ini log.nsf
sh tasks top
vmstat iosys
df -h Affected user(s) to server ping results
mount swapon -s
Server NAB DB copy, sans users
Data, Data Everywhere
• Ran DCT - returned a few items, but nothing applicable to the
performance issue experienced
• Checked Domino stats
• Located a key issue - needle in haystack
• SAI fluctuated wildly, frequently, plummeting to 18% for minutes
then rising sharply again
• Locate any recent NSD files for analysis
Quick Example - iostat, vmstat
malchw@san-domino:~$ iostat
Linux 3.13.0-83-generic (san-domino) 03/23/2016 _x86_64_ (8 CPU)
avg-cpu: %user %nice %system %iowait %steal %idle
6.21 0.25 3.69 0.51 0.00 89.34
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
sda 45.34 2075.44 778.25 6028264 2260469
sdb 0.36 1.52 0.03 4422 80
dm-0 24.51 117.04 186.80 339957 542584
dm-1 16.17 415.61 79.82 1207173 231836
dm-2 17.64 1540.92 511.61 4475713 1485996


malchw@san-domino:~$ vmstat
procs -----------memory---------- --swap-- ---io-- -system-- -------cpu-------
r b swpd free buff cache si so bi bo in cs us sy id wa st
1 0 0 16943764 153144 7941660 0 0 262 98 144 681 6 4 89 1 0
Pro Tip on Data Collection
• Watch the server when nobody else does
• Lots of strange things happen on servers overnight
• Observed the system processing over one million records in :15
twice a week, at different times
Example: no one at Acme, Inc. knew this occurred or why
Initial Data Analysis - OS
• Swap space 50% of installed memory
• Memory was under 1GB for mission critical server
Several key DBs contained 100k+ docs
• Combination created page faulting plague further eroding
performance
• System properly patched
• Free space adequate
Initial Data Analysis - Notes.ini
• Obvious but important data points
• Server layout
• Where items located
• Recognized server.id file
• Server tasks
Contrast to sh tasks requested earlier
• No obvious problems
Initial Data Analysis - Amgr
• Agents running all hours of the night and day
• Agents running from DBs actively being compacted
• Agents running from DBs when updall and fixup running
• Not all scheduled agents needed to run all weekend
Initial Data Analysis - Log.sf
• Compact still running when updall Program fires-off
• Compact never finished before execution time ceiling hit
Left largest DBs in a completely suboptimal state
• Connected to servers that did not exist
• Scheduled replication documents
• Significant delays with replica synchronization
• Ensured data never properly synchronized across domain
• Certain connection documents only covered two DBs
Initial Data Analysis - DBs
• Several big DBs last fixup completed two years ago
• Most heavily used files 30-75% Used
• Many views means clicking one forces a new index build
• No design, document, or attachment compression
• Design server task citing non-existent templates
Our Story in Forty-five Minutes
• Preface
• Chapter I - The Beginning
• Chapter 2 - Searching for Clues
• Chapter 3 - Creating a Solid Platform
• Chapter 4 - The Softside of Performance Gains
• The Final Chapter - Results
Tier 1 - OS
• Swap space - No set rule these days
1.5x - 2.0x RAM is good rule of thumb
• Memory - 4GB per processor on busy servers
• VMware settings if available
Avoid temptation of too many processors
• Review partitions and free space
Additional OS Considerations
• Check that previous made system changes stick
Unfamiliar servers can exhibit odd behavior
• Check IBM Technotes for any recent performance issues
• Once OS is working, check to ensure that virtualization is optimal
Tier 2 - Domino
• Space properly Program Documents
Avoid overlap with agents and other Programs
• Pause agent schedule during maintenance
• Schedule a weekend to complete first full maintenance set
First full compact will take much longer than you realize
• Create maintenance schedule with tasks agreed to by business line
managers
Ensures all needed jobs are available when needed
Additional Items to Fix
• Review all enabled Domino features to ensure they function properly
• Simple configuration miscues can impact negatively
• Cluster replication unable to locate a cluster member
• DNS errors create lookup delays
• Remove unneeded, deprecated network ports
Our Story in Forty-five Minutes
• Preface
• Chapter I - The Beginning
• Chapter 2 - Searching for Clues
• Chapter 3 - Creating a Solid Platform
• Chapter 4 - The Softside of Performance Gains
• The Final Chapter - Results
Where are We?
• Domino admin handled the first level treatment
• Server performs well, but not good enough
• Triangulated the issue to a mission-critical application
• Now what?
Somebody Else’s Code
Source: http://ryankennedy.io/running-the-deep-dream
Why Domino Apps Fail?
• Lack of expertise and/or knowledge
• Developers evolved from power users
• Architecture overloading
• Unplanned and/or unexpected expansion
• Undocumented code and/or business process
• No change management
• Quick & dirty development
Developers vs Performance Issues
• There is no magic pill for finding a performance issue
• Many problems are circumstantial
Depends on who/when/how…
• Repeating the problem on a controlled environment
• Need for Proof!
• The most difficult part of the task
• Need to be systematical
Science Just Works!
• Research and Assessment,
• Speculation for fixes,
• Experiment,
• Prove!
http://www.wired.com/2013/04/whats-wrong-with-the-scientific-method/
Methodology
Research
Symptoms (e.g. logs, performance data, etc.)
Story (e.g. user input)
Application code
Hypothesis
Speculation on possible reasons
Search for ‘Usual Suspects’
Experiment Testing for possible reasons
Analyze Check symptoms if fixed
Conclusion Issue validated and proved to be fixed.
Research & Assessment
• What to collect, based on the symptom;
• CPU/memory load, hangs, spikes, crashes, etc.
• All the time, the same time everyday or random?
• Experienced by specific users?
• We are looking for a pattern between incidents.
Data Collection Checklist
Log/NSD/Semaphore files
Server configuration (inc. notes.ini)
Server monitoring and statistics data
Web logs (for web application issues)
XPages and OSGi logs (for XPages specific issues)
Application and dependencies
Isolate the Application
• Sometimes, even opening in DDE may cause issues!
e.g. XPages components are automatically built
• Application code might have side effects
e.g. Updating on another data source, adding audit logs,
performance degradation on the server, etc.
• There will be dependencies
• Once isolated, we can start inspection…
Usual Suspects
• Database corruptions
• @Today/@Now in views
• Code snippets acting like an admin
Updating views, replicating databases, running server commands
• Code snippets using the worst practices
Search in a large database, wrong looping, etc.
• Anything that fits into the pattern if there is one
e.g. An agent matching the incident timing
Nothing yet?
Digging deeper!
Team Up!
• Deeper investigation needs a teaming effort
• Admins and Developers should collaborate
• A test setup to simulate the production environment
• Intensive / Controlled debugging sessions in limited time windows
• Sharing expertise
• Experimenting on production should be the last resort
• Once a repeatable error found, cooperate for a solution
Examples
Example Case - Analysis
• JVM Crash with the HTTP task
• Random times
• No pattern in the log
• Memory dumps point a leak in the JVM Heap
• Inspected XPages applications, nothing found
• Triangulated the problem into one XPages app, following clues in
intensive debugging on memory
• Isolated the application for a load test, nothing found
• Increased logging, to collect more data, no hope!
Example Case - Resolution
• Checked the server configuration and noticed
• Logging data incomplete
• Removed exclusions
• New logs pointed the problem:
• Searching software crawling a specific page
• Page generates state data and fills up the memory
• Simulated the same crash on the test environment
• One line of code fixed the issue
Another Case - Analysis
• A mission critical application at a bank
• Web application with 2000+ users
• CPU spikes and random hangs, mostly afternoon
• Logs are clear, no crashes, no error messages
• Isolated the application, inspected the ‘usual suspects’
• Found a web agent updating a view!
• Triangulated the problem using web logs and SEMDEBUG
• But, cannot validate the issue on the test environment…
Another Case - Resolution
• Cooperated with the Domino admin
• Detailed assessment on the server configuration
• We found the issue!
• “ServerTasksAt14” running an updall task.
• Another Program file running updall on a specific database, every
30 minutes
• Applied to the test platform, validated by a load test
• Problem solved!
Our Story in Forty-five Minutes
• Preface
• Chapter I - The Beginning
• Chapter 2 - Searching for Clues
• Chapter 3 - Creating a Solid Platform
• Chapter 4 - The Softside of Performance Gains
• The Final Chapter - Results
Quality Analysis Yields Quality Results
• Page faults reduced to zero
• General DB usage and administration tasks work well
• SAI now over 80%
• Weird overnight (agent) system operations resolved
• Key DBs have 93% used space now
• All DBs compressed: design, documents, all attachments
• Program documents, agents all adjusted: finish, no overlap
Note on Performance
When done properly, few users tend to
notice the change, but if removed they
will all complain
Teamwork vs. Performance
Neither an admin nor a developer
could solve all of these issues alone!
Bonus Slide
• You can get help inspecting applications and servers
• Teamstudio and Ytria also sponsored IBM Connect!
Cooperteam MartinScott
Teamstudio Ytria
Serdar Başeğmez
• IBM Champion (2011 - 2017)
• Developi Information Systems, Istanbul
• OpenNTF / LUGTR / LotusNotus.com
• Featured on…
Engage UG, IBM Connect, ICON UK, NotesIn9…
William Malchisky Jr.
• IBM Champion (2011 - 2017)
• Effective Software Solutions, LLC
• Co-founder of Linuxfest at Lotusphere/Connect
• Speaker at 25+ Lotus/IBM related events/LUGs
• Co-authored two IBM Redbooks
• Co-wrote the IBM Education Administration track for
Domino 8.5
Follow Up - Contact Information
Serdar Basegmez
serdar.basegmez@developi.com
@serdar_basegmez
Skype: sbasegmez
Blog: lotusnotus.com
Bill Malchisky Jr.
william.malchisky@effectivesoftware.com
@billmalchisky
Skype: FairTaxBill
Blog: billmal.com
Questions and Answers

More Related Content

What's hot

IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8
IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8
IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8Teamstudio
 
The Notes/Domino Application Development Competitive Advantage - IamLUG
The Notes/Domino Application Development Competitive Advantage - IamLUGThe Notes/Domino Application Development Competitive Advantage - IamLUG
The Notes/Domino Application Development Competitive Advantage - IamLUGJohn Head
 
AD201: IBM Domino Application Development Today And Tomorrow
AD201: IBM Domino Application Development Today And TomorrowAD201: IBM Domino Application Development Today And Tomorrow
AD201: IBM Domino Application Development Today And TomorrowMartin Donnelly
 
Using Cool New Frameworks in (Mobile) Domino Apps
Using Cool New Frameworks in (Mobile) Domino AppsUsing Cool New Frameworks in (Mobile) Domino Apps
Using Cool New Frameworks in (Mobile) Domino AppsTeamstudio
 
Optimus XPages: An Explosion of Techniques and Best Practices
Optimus XPages: An Explosion of Techniques and Best PracticesOptimus XPages: An Explosion of Techniques and Best Practices
Optimus XPages: An Explosion of Techniques and Best PracticesTeamstudio
 
Microsoft lync server 2013 step by step for anyone
Microsoft lync server 2013 step by step for anyoneMicrosoft lync server 2013 step by step for anyone
Microsoft lync server 2013 step by step for anyoneVinh Nguyen
 
Justin Morris - Understanding how lync server 2013 leverages the complete mic...
Justin Morris - Understanding how lync server 2013 leverages the complete mic...Justin Morris - Understanding how lync server 2013 leverages the complete mic...
Justin Morris - Understanding how lync server 2013 leverages the complete mic...Nordic Infrastructure Conference
 
O365con14 - microsoft lync server 2013 online hybrid voice
O365con14 - microsoft lync server 2013 online hybrid voiceO365con14 - microsoft lync server 2013 online hybrid voice
O365con14 - microsoft lync server 2013 online hybrid voiceNCCOMMS
 
Share point server for business intelligence
Share point server for business intelligenceShare point server for business intelligence
Share point server for business intelligenceSteve Xu
 
Top 10 HTML5 Features for Oracle Cloud Developers
Top 10 HTML5 Features for Oracle Cloud DevelopersTop 10 HTML5 Features for Oracle Cloud Developers
Top 10 HTML5 Features for Oracle Cloud DevelopersBrian Huff
 
Move Your XPages Applications to the Fast Lane
Move Your XPages Applications to the Fast LaneMove Your XPages Applications to the Fast Lane
Move Your XPages Applications to the Fast LaneTeamstudio
 
IBM Domino 10: A new chapter begins
IBM Domino 10: A new chapter beginsIBM Domino 10: A new chapter begins
IBM Domino 10: A new chapter beginsLetsConnect
 
Our take on Domino 10 - a Ytria webinar
Our take on Domino 10 - a Ytria webinarOur take on Domino 10 - a Ytria webinar
Our take on Domino 10 - a Ytria webinarBenedek Menesi
 
Developing Apps with CA Plex + CM WebClient
Developing Apps with CA Plex + CM WebClientDeveloping Apps with CA Plex + CM WebClient
Developing Apps with CA Plex + CM WebClientCM First Group
 
IBM Notes Performance Boost - Reloaded (DEV-1185)
IBM Notes Performance Boost - Reloaded (DEV-1185)IBM Notes Performance Boost - Reloaded (DEV-1185)
IBM Notes Performance Boost - Reloaded (DEV-1185)Christoph Adler
 
Becoming an IBM Connections Developer
Becoming an IBM Connections DeveloperBecoming an IBM Connections Developer
Becoming an IBM Connections DeveloperRob Novak
 

What's hot (18)

IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8
IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8
IBM Presents the Notes Domino Roadmap and a Deep Dive into Feature Pack 8
 
The Notes/Domino Application Development Competitive Advantage - IamLUG
The Notes/Domino Application Development Competitive Advantage - IamLUGThe Notes/Domino Application Development Competitive Advantage - IamLUG
The Notes/Domino Application Development Competitive Advantage - IamLUG
 
AD201: IBM Domino Application Development Today And Tomorrow
AD201: IBM Domino Application Development Today And TomorrowAD201: IBM Domino Application Development Today And Tomorrow
AD201: IBM Domino Application Development Today And Tomorrow
 
Using Cool New Frameworks in (Mobile) Domino Apps
Using Cool New Frameworks in (Mobile) Domino AppsUsing Cool New Frameworks in (Mobile) Domino Apps
Using Cool New Frameworks in (Mobile) Domino Apps
 
Optimus XPages: An Explosion of Techniques and Best Practices
Optimus XPages: An Explosion of Techniques and Best PracticesOptimus XPages: An Explosion of Techniques and Best Practices
Optimus XPages: An Explosion of Techniques and Best Practices
 
Microsoft lync server 2013 step by step for anyone
Microsoft lync server 2013 step by step for anyoneMicrosoft lync server 2013 step by step for anyone
Microsoft lync server 2013 step by step for anyone
 
Justin Morris - Understanding how lync server 2013 leverages the complete mic...
Justin Morris - Understanding how lync server 2013 leverages the complete mic...Justin Morris - Understanding how lync server 2013 leverages the complete mic...
Justin Morris - Understanding how lync server 2013 leverages the complete mic...
 
O365con14 - microsoft lync server 2013 online hybrid voice
O365con14 - microsoft lync server 2013 online hybrid voiceO365con14 - microsoft lync server 2013 online hybrid voice
O365con14 - microsoft lync server 2013 online hybrid voice
 
Share point server for business intelligence
Share point server for business intelligenceShare point server for business intelligence
Share point server for business intelligence
 
Top 10 HTML5 Features for Oracle Cloud Developers
Top 10 HTML5 Features for Oracle Cloud DevelopersTop 10 HTML5 Features for Oracle Cloud Developers
Top 10 HTML5 Features for Oracle Cloud Developers
 
Move Your XPages Applications to the Fast Lane
Move Your XPages Applications to the Fast LaneMove Your XPages Applications to the Fast Lane
Move Your XPages Applications to the Fast Lane
 
IBM Domino 10: A new chapter begins
IBM Domino 10: A new chapter beginsIBM Domino 10: A new chapter begins
IBM Domino 10: A new chapter begins
 
Our take on Domino 10 - a Ytria webinar
Our take on Domino 10 - a Ytria webinarOur take on Domino 10 - a Ytria webinar
Our take on Domino 10 - a Ytria webinar
 
Developing Apps with CA Plex + CM WebClient
Developing Apps with CA Plex + CM WebClientDeveloping Apps with CA Plex + CM WebClient
Developing Apps with CA Plex + CM WebClient
 
IBM Notes Performance Boost - Reloaded (DEV-1185)
IBM Notes Performance Boost - Reloaded (DEV-1185)IBM Notes Performance Boost - Reloaded (DEV-1185)
IBM Notes Performance Boost - Reloaded (DEV-1185)
 
Becoming an IBM Connections Developer
Becoming an IBM Connections DeveloperBecoming an IBM Connections Developer
Becoming an IBM Connections Developer
 
DEV-1467 - Darwino
DEV-1467 - DarwinoDEV-1467 - Darwino
DEV-1467 - Darwino
 
test3
test3test3
test3
 

Viewers also liked

Connect 2017 DEV-1420 - Blue Mix and Domino – Complementing Smartcloud
Connect 2017 DEV-1420 - Blue Mix and Domino – Complementing SmartcloudConnect 2017 DEV-1420 - Blue Mix and Domino – Complementing Smartcloud
Connect 2017 DEV-1420 - Blue Mix and Domino – Complementing SmartcloudMatteo Bisi
 
IBM Connect 2017: Refresh and Extend IBM Domino Applications
IBM Connect 2017: Refresh and Extend IBM Domino ApplicationsIBM Connect 2017: Refresh and Extend IBM Domino Applications
IBM Connect 2017: Refresh and Extend IBM Domino ApplicationsEd Brill
 
IBM Connect 2017 - Beyond Domino Designer
IBM Connect 2017 - Beyond Domino DesignerIBM Connect 2017 - Beyond Domino Designer
IBM Connect 2017 - Beyond Domino DesignerStephan H. Wissel
 
IBM Presents the IBM Notes and Domino Roadmap
IBM Presents the IBM Notes and Domino RoadmapIBM Presents the IBM Notes and Domino Roadmap
IBM Presents the IBM Notes and Domino RoadmapTeamstudio
 
Engage 2015 - 10 Mistakes You and Every XPages Developer Make. Yes, I said YOU!
Engage 2015 - 10 Mistakes You and Every XPages Developer Make. Yes, I said YOU!Engage 2015 - 10 Mistakes You and Every XPages Developer Make. Yes, I said YOU!
Engage 2015 - 10 Mistakes You and Every XPages Developer Make. Yes, I said YOU!Serdar Basegmez
 
Your App Deserves More – The Art of App Modernization
Your App Deserves More – The Art of App ModernizationYour App Deserves More – The Art of App Modernization
Your App Deserves More – The Art of App ModernizationKlaus Bild
 
OpenNTF Domino API (ODA): Super-Charging Domino Development
OpenNTF Domino API (ODA): Super-Charging Domino DevelopmentOpenNTF Domino API (ODA): Super-Charging Domino Development
OpenNTF Domino API (ODA): Super-Charging Domino DevelopmentPaul Withers
 
A servin hardware_software
A servin hardware_softwareA servin hardware_software
A servin hardware_softwarePolo Servin
 
Mapping population data for Parliament - Oli Hawkins
Mapping population data for Parliament - Oli HawkinsMapping population data for Parliament - Oli Hawkins
Mapping population data for Parliament - Oli HawkinsUK Parliament Data
 
Convergencia tecnologica grupo_30147_2
Convergencia tecnologica grupo_30147_2Convergencia tecnologica grupo_30147_2
Convergencia tecnologica grupo_30147_2gabirivera_
 
Show110 | Using the XPages Extension Library for the Real World
Show110 | Using the XPages Extension Library for the Real WorldShow110 | Using the XPages Extension Library for the Real World
Show110 | Using the XPages Extension Library for the Real Worldpdhannan
 
IBM Interconnect 2016 - Hybrid Cloud Messaging
IBM Interconnect 2016 - Hybrid Cloud MessagingIBM Interconnect 2016 - Hybrid Cloud Messaging
IBM Interconnect 2016 - Hybrid Cloud MessagingRobert Nicholson
 
DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017
DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017
DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017panagenda
 
Analisis de riesgo psicosocial
Analisis de riesgo psicosocialAnalisis de riesgo psicosocial
Analisis de riesgo psicosocialestudiante4
 
Engage 2016: Back From the Dead: How Bad Code Kills a Good Server
Engage 2016: Back From the Dead: How Bad Code Kills a Good ServerEngage 2016: Back From the Dead: How Bad Code Kills a Good Server
Engage 2016: Back From the Dead: How Bad Code Kills a Good ServerSerdar Basegmez
 
ICONUK 2016: Back From the Dead: How Bad Code Kills a Good Server
ICONUK 2016: Back From the Dead: How Bad Code Kills a Good ServerICONUK 2016: Back From the Dead: How Bad Code Kills a Good Server
ICONUK 2016: Back From the Dead: How Bad Code Kills a Good ServerSerdar Basegmez
 
ICONUK 2015: How to Embrace Your XPages Plugin Super Powers
ICONUK 2015: How to Embrace Your XPages Plugin Super PowersICONUK 2015: How to Embrace Your XPages Plugin Super Powers
ICONUK 2015: How to Embrace Your XPages Plugin Super PowersSerdar Basegmez
 

Viewers also liked (20)

Connect 2017 DEV-1420 - Blue Mix and Domino – Complementing Smartcloud
Connect 2017 DEV-1420 - Blue Mix and Domino – Complementing SmartcloudConnect 2017 DEV-1420 - Blue Mix and Domino – Complementing Smartcloud
Connect 2017 DEV-1420 - Blue Mix and Domino – Complementing Smartcloud
 
IBM Connect 2017: Refresh and Extend IBM Domino Applications
IBM Connect 2017: Refresh and Extend IBM Domino ApplicationsIBM Connect 2017: Refresh and Extend IBM Domino Applications
IBM Connect 2017: Refresh and Extend IBM Domino Applications
 
IBM Connect 2017 - Beyond Domino Designer
IBM Connect 2017 - Beyond Domino DesignerIBM Connect 2017 - Beyond Domino Designer
IBM Connect 2017 - Beyond Domino Designer
 
IBM Presents the IBM Notes and Domino Roadmap
IBM Presents the IBM Notes and Domino RoadmapIBM Presents the IBM Notes and Domino Roadmap
IBM Presents the IBM Notes and Domino Roadmap
 
Engage 2015 - 10 Mistakes You and Every XPages Developer Make. Yes, I said YOU!
Engage 2015 - 10 Mistakes You and Every XPages Developer Make. Yes, I said YOU!Engage 2015 - 10 Mistakes You and Every XPages Developer Make. Yes, I said YOU!
Engage 2015 - 10 Mistakes You and Every XPages Developer Make. Yes, I said YOU!
 
Your App Deserves More – The Art of App Modernization
Your App Deserves More – The Art of App ModernizationYour App Deserves More – The Art of App Modernization
Your App Deserves More – The Art of App Modernization
 
OpenNTF Domino API (ODA): Super-Charging Domino Development
OpenNTF Domino API (ODA): Super-Charging Domino DevelopmentOpenNTF Domino API (ODA): Super-Charging Domino Development
OpenNTF Domino API (ODA): Super-Charging Domino Development
 
693 2037-1-pb 2
693 2037-1-pb 2693 2037-1-pb 2
693 2037-1-pb 2
 
A servin hardware_software
A servin hardware_softwareA servin hardware_software
A servin hardware_software
 
1 estudio de_suelos_idu
1 estudio de_suelos_idu1 estudio de_suelos_idu
1 estudio de_suelos_idu
 
Mapping population data for Parliament - Oli Hawkins
Mapping population data for Parliament - Oli HawkinsMapping population data for Parliament - Oli Hawkins
Mapping population data for Parliament - Oli Hawkins
 
Convergencia tecnologica grupo_30147_2
Convergencia tecnologica grupo_30147_2Convergencia tecnologica grupo_30147_2
Convergencia tecnologica grupo_30147_2
 
Show110 | Using the XPages Extension Library for the Real World
Show110 | Using the XPages Extension Library for the Real WorldShow110 | Using the XPages Extension Library for the Real World
Show110 | Using the XPages Extension Library for the Real World
 
IBM Interconnect 2016 - Hybrid Cloud Messaging
IBM Interconnect 2016 - Hybrid Cloud MessagingIBM Interconnect 2016 - Hybrid Cloud Messaging
IBM Interconnect 2016 - Hybrid Cloud Messaging
 
DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017
DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017
DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017
 
Nuevas Etiquetas
Nuevas EtiquetasNuevas Etiquetas
Nuevas Etiquetas
 
Analisis de riesgo psicosocial
Analisis de riesgo psicosocialAnalisis de riesgo psicosocial
Analisis de riesgo psicosocial
 
Engage 2016: Back From the Dead: How Bad Code Kills a Good Server
Engage 2016: Back From the Dead: How Bad Code Kills a Good ServerEngage 2016: Back From the Dead: How Bad Code Kills a Good Server
Engage 2016: Back From the Dead: How Bad Code Kills a Good Server
 
ICONUK 2016: Back From the Dead: How Bad Code Kills a Good Server
ICONUK 2016: Back From the Dead: How Bad Code Kills a Good ServerICONUK 2016: Back From the Dead: How Bad Code Kills a Good Server
ICONUK 2016: Back From the Dead: How Bad Code Kills a Good Server
 
ICONUK 2015: How to Embrace Your XPages Plugin Super Powers
ICONUK 2015: How to Embrace Your XPages Plugin Super PowersICONUK 2015: How to Embrace Your XPages Plugin Super Powers
ICONUK 2015: How to Embrace Your XPages Plugin Super Powers
 

Similar to IBM Connect 2017: Back from the Dead: When Bad Code Kills a Good Server

Back from the Dead: When Bad Code Kills a Good Server
Back from the Dead: When Bad Code Kills a Good ServerBack from the Dead: When Bad Code Kills a Good Server
Back from the Dead: When Bad Code Kills a Good ServerTeamstudio
 
IBM Lotus Notes Client Management Done Right – Beginning to End
IBM Lotus Notes Client Management Done Right – Beginning to EndIBM Lotus Notes Client Management Done Right – Beginning to End
IBM Lotus Notes Client Management Done Right – Beginning to Endpanagenda
 
Got Problems? Let's Do a Health Check
Got Problems? Let's Do a Health CheckGot Problems? Let's Do a Health Check
Got Problems? Let's Do a Health CheckLuis Guirigay
 
Why retail companies can't afford database downtime
Why retail companies can't afford database downtimeWhy retail companies can't afford database downtime
Why retail companies can't afford database downtimeDBmaestro - Database DevOps
 
How to manage and monitor large sql server estates
How to manage and monitor large sql server estatesHow to manage and monitor large sql server estates
How to manage and monitor large sql server estatesRed Gate Software
 
Soccnx10: Best and worst practices deploying IBM Connections
Soccnx10: Best and worst practices deploying IBM ConnectionsSoccnx10: Best and worst practices deploying IBM Connections
Soccnx10: Best and worst practices deploying IBM Connectionspanagenda
 
Scaling apps for the big time
Scaling apps for the big timeScaling apps for the big time
Scaling apps for the big timeproitconsult
 
How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...
How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...
How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...Nicolas Henry
 
Silicon Valley Code Camp 2015 - Advanced MongoDB - The Sequel
Silicon Valley Code Camp 2015 - Advanced MongoDB - The SequelSilicon Valley Code Camp 2015 - Advanced MongoDB - The Sequel
Silicon Valley Code Camp 2015 - Advanced MongoDB - The SequelDaniel Coupal
 
Webinar: IBM Connections Adminblast
Webinar: IBM Connections AdminblastWebinar: IBM Connections Adminblast
Webinar: IBM Connections Adminblastpanagenda
 
Lumberjack: Finit's Oracle EPM - Hyperion System Monitoring Tool
Lumberjack: Finit's Oracle EPM - Hyperion System Monitoring ToolLumberjack: Finit's Oracle EPM - Hyperion System Monitoring Tool
Lumberjack: Finit's Oracle EPM - Hyperion System Monitoring Toolfinitsolutions
 
Lessons learned from the worlds largest XPage project
Lessons learned from the worlds largest XPage projectLessons learned from the worlds largest XPage project
Lessons learned from the worlds largest XPage projectMark Roden
 
Webinar: IBM Connections Adminblast
Webinar: IBM Connections AdminblastWebinar: IBM Connections Adminblast
Webinar: IBM Connections AdminblastNico Meisenzahl
 
Open source: Top issues in the top enterprise packages
Open source: Top issues in the top enterprise packagesOpen source: Top issues in the top enterprise packages
Open source: Top issues in the top enterprise packagesRogue Wave Software
 
Lecture 12 monitoring the network
Lecture 12   monitoring the networkLecture 12   monitoring the network
Lecture 12 monitoring the networkWiliam Ferraciolli
 
Technical track-afterimaging Progress Database
Technical track-afterimaging Progress DatabaseTechnical track-afterimaging Progress Database
Technical track-afterimaging Progress DatabaseVinh Nguyen
 
Cognos Performance Tuning Tips & Tricks
Cognos Performance Tuning Tips & TricksCognos Performance Tuning Tips & Tricks
Cognos Performance Tuning Tips & TricksSenturus
 
1049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 2016
1049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 20161049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 2016
1049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 2016panagenda
 

Similar to IBM Connect 2017: Back from the Dead: When Bad Code Kills a Good Server (20)

Back from the Dead: When Bad Code Kills a Good Server
Back from the Dead: When Bad Code Kills a Good ServerBack from the Dead: When Bad Code Kills a Good Server
Back from the Dead: When Bad Code Kills a Good Server
 
IBM Lotus Notes Client Management Done Right – Beginning to End
IBM Lotus Notes Client Management Done Right – Beginning to EndIBM Lotus Notes Client Management Done Right – Beginning to End
IBM Lotus Notes Client Management Done Right – Beginning to End
 
Got Problems? Let's Do a Health Check
Got Problems? Let's Do a Health CheckGot Problems? Let's Do a Health Check
Got Problems? Let's Do a Health Check
 
Why retail companies can't afford database downtime
Why retail companies can't afford database downtimeWhy retail companies can't afford database downtime
Why retail companies can't afford database downtime
 
How to manage and monitor large sql server estates
How to manage and monitor large sql server estatesHow to manage and monitor large sql server estates
How to manage and monitor large sql server estates
 
Soccnx10: Best and worst practices deploying IBM Connections
Soccnx10: Best and worst practices deploying IBM ConnectionsSoccnx10: Best and worst practices deploying IBM Connections
Soccnx10: Best and worst practices deploying IBM Connections
 
Scaling apps for the big time
Scaling apps for the big timeScaling apps for the big time
Scaling apps for the big time
 
How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...
How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...
How to Stabilise and Improve an SAP BusinessObjects BI 4.2 Enterprise Shared ...
 
Silicon Valley Code Camp 2015 - Advanced MongoDB - The Sequel
Silicon Valley Code Camp 2015 - Advanced MongoDB - The SequelSilicon Valley Code Camp 2015 - Advanced MongoDB - The Sequel
Silicon Valley Code Camp 2015 - Advanced MongoDB - The Sequel
 
Optimizing performance
Optimizing performanceOptimizing performance
Optimizing performance
 
Webinar: IBM Connections Adminblast
Webinar: IBM Connections AdminblastWebinar: IBM Connections Adminblast
Webinar: IBM Connections Adminblast
 
Lumberjack: Finit's Oracle EPM - Hyperion System Monitoring Tool
Lumberjack: Finit's Oracle EPM - Hyperion System Monitoring ToolLumberjack: Finit's Oracle EPM - Hyperion System Monitoring Tool
Lumberjack: Finit's Oracle EPM - Hyperion System Monitoring Tool
 
Lessons learned from the worlds largest XPage project
Lessons learned from the worlds largest XPage projectLessons learned from the worlds largest XPage project
Lessons learned from the worlds largest XPage project
 
Domain Controller.pptx
Domain Controller.pptxDomain Controller.pptx
Domain Controller.pptx
 
Webinar: IBM Connections Adminblast
Webinar: IBM Connections AdminblastWebinar: IBM Connections Adminblast
Webinar: IBM Connections Adminblast
 
Open source: Top issues in the top enterprise packages
Open source: Top issues in the top enterprise packagesOpen source: Top issues in the top enterprise packages
Open source: Top issues in the top enterprise packages
 
Lecture 12 monitoring the network
Lecture 12   monitoring the networkLecture 12   monitoring the network
Lecture 12 monitoring the network
 
Technical track-afterimaging Progress Database
Technical track-afterimaging Progress DatabaseTechnical track-afterimaging Progress Database
Technical track-afterimaging Progress Database
 
Cognos Performance Tuning Tips & Tricks
Cognos Performance Tuning Tips & TricksCognos Performance Tuning Tips & Tricks
Cognos Performance Tuning Tips & Tricks
 
1049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 2016
1049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 20161049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 2016
1049: Best and Worst Practices for Deploying IBM Connections - IBM Connect 2016
 

More from Serdar Basegmez

OpenNTF Webinar - October 2021: Return of the DOTS
OpenNTF Webinar - October 2021: Return of the DOTSOpenNTF Webinar - October 2021: Return of the DOTS
OpenNTF Webinar - October 2021: Return of the DOTSSerdar Basegmez
 
Engage 2022: The Superpower of Integrating External APIs for Notes and Domino...
Engage 2022: The Superpower of Integrating External APIs for Notes and Domino...Engage 2022: The Superpower of Integrating External APIs for Notes and Domino...
Engage 2022: The Superpower of Integrating External APIs for Notes and Domino...Serdar Basegmez
 
Engage 2023: Taking Domino Apps to the next level by providing a Rest API
Engage 2023: Taking Domino Apps to the next level by providing a Rest APIEngage 2023: Taking Domino Apps to the next level by providing a Rest API
Engage 2023: Taking Domino Apps to the next level by providing a Rest APISerdar Basegmez
 
Engage 2020: Six Polite Ways to Design a RESTful API for Your Application!
Engage 2020: Six Polite Ways to Design a RESTful API for Your Application!Engage 2020: Six Polite Ways to Design a RESTful API for Your Application!
Engage 2020: Six Polite Ways to Design a RESTful API for Your Application!Serdar Basegmez
 
Engage 2019: Your Data in the Major Leagues: A Practical and Updated Guide to...
Engage 2019: Your Data in the Major Leagues: A Practical and Updated Guide to...Engage 2019: Your Data in the Major Leagues: A Practical and Updated Guide to...
Engage 2019: Your Data in the Major Leagues: A Practical and Updated Guide to...Serdar Basegmez
 
ICONUK 2016: REST Assured, Freeing Your Domino Data Has Never Been That Easy!
ICONUK 2016: REST Assured, Freeing Your Domino Data Has Never Been That Easy!ICONUK 2016: REST Assured, Freeing Your Domino Data Has Never Been That Easy!
ICONUK 2016: REST Assured, Freeing Your Domino Data Has Never Been That Easy!Serdar Basegmez
 
BP 308 - The Journey to Becoming a Social Application Developer
BP 308 - The Journey to Becoming a Social Application DeveloperBP 308 - The Journey to Becoming a Social Application Developer
BP 308 - The Journey to Becoming a Social Application DeveloperSerdar Basegmez
 
ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®
ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®
ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®Serdar Basegmez
 
BP207 - Meet the Java Application Server You Already Own – IBM Domino
BP207 - Meet the Java Application Server You Already Own – IBM DominoBP207 - Meet the Java Application Server You Already Own – IBM Domino
BP207 - Meet the Java Application Server You Already Own – IBM DominoSerdar Basegmez
 

More from Serdar Basegmez (9)

OpenNTF Webinar - October 2021: Return of the DOTS
OpenNTF Webinar - October 2021: Return of the DOTSOpenNTF Webinar - October 2021: Return of the DOTS
OpenNTF Webinar - October 2021: Return of the DOTS
 
Engage 2022: The Superpower of Integrating External APIs for Notes and Domino...
Engage 2022: The Superpower of Integrating External APIs for Notes and Domino...Engage 2022: The Superpower of Integrating External APIs for Notes and Domino...
Engage 2022: The Superpower of Integrating External APIs for Notes and Domino...
 
Engage 2023: Taking Domino Apps to the next level by providing a Rest API
Engage 2023: Taking Domino Apps to the next level by providing a Rest APIEngage 2023: Taking Domino Apps to the next level by providing a Rest API
Engage 2023: Taking Domino Apps to the next level by providing a Rest API
 
Engage 2020: Six Polite Ways to Design a RESTful API for Your Application!
Engage 2020: Six Polite Ways to Design a RESTful API for Your Application!Engage 2020: Six Polite Ways to Design a RESTful API for Your Application!
Engage 2020: Six Polite Ways to Design a RESTful API for Your Application!
 
Engage 2019: Your Data in the Major Leagues: A Practical and Updated Guide to...
Engage 2019: Your Data in the Major Leagues: A Practical and Updated Guide to...Engage 2019: Your Data in the Major Leagues: A Practical and Updated Guide to...
Engage 2019: Your Data in the Major Leagues: A Practical and Updated Guide to...
 
ICONUK 2016: REST Assured, Freeing Your Domino Data Has Never Been That Easy!
ICONUK 2016: REST Assured, Freeing Your Domino Data Has Never Been That Easy!ICONUK 2016: REST Assured, Freeing Your Domino Data Has Never Been That Easy!
ICONUK 2016: REST Assured, Freeing Your Domino Data Has Never Been That Easy!
 
BP 308 - The Journey to Becoming a Social Application Developer
BP 308 - The Journey to Becoming a Social Application DeveloperBP 308 - The Journey to Becoming a Social Application Developer
BP 308 - The Journey to Becoming a Social Application Developer
 
ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®
ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®
ICONUK 2013 - An XPager's Guide to Process Server-Side Jobs on IBM® Domino®
 
BP207 - Meet the Java Application Server You Already Own – IBM Domino
BP207 - Meet the Java Application Server You Already Own – IBM DominoBP207 - Meet the Java Application Server You Already Own – IBM Domino
BP207 - Meet the Java Application Server You Already Own – IBM Domino
 

Recently uploaded

Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software DevelopersVinodh Ram
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
Active Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfActive Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfCionsystems
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendArshad QA
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...gurkirankumar98700
 

Recently uploaded (20)

Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software Developers
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
Active Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfActive Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdf
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and Backend
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
 

IBM Connect 2017: Back from the Dead: When Bad Code Kills a Good Server

  • 1. Back from the Dead: When Bad Code Kills a Good Server Serdar Basegmez - Developi - @serdar_basegmez William Malchisky Jr. - ESS - @BillMalchisky DEV-1661 IBM Connect 2017 Conference, 20-23 February 2017
  • 2. Legal Disclaimer © IBM Corporation 2017. All Rights Reserved. The information contained in this publication is provided for informational purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this publication, it is provided AS IS without warranty of any kind, express or implied. In addition, this information is based on IBM’s current product plans and strategy, which are subject to change by IBM without notice. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, this publication or any other materials. Nothing contained in this publication is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of IBM software. References in this presentation to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. Product release dates and/or capabilities referenced in this presentation may change at any time at IBM’s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to future product or feature availability in any way. Nothing contained in these materials is intended to, nor shall have the effect of, stating or implying that any activities undertaken by you will result in any specific sales, revenue growth or other results. IBM Lotus® Domino® IBM Lotus® Notes® Lotus® Redbooks® Red Hat® is a registered trademark of Red Hat, Inc. Apple, Mac, Mac OS, iPad, iPhone, and OS X are trademarks of Apple Inc., registered in the U.S. and other countries. Microsoft, Active Directory, and Windows are trademarks of Microsoft Corporation in the United States, other countries, or both. Vmware is a registered trademark of Vmware, Inc. in the United States and/or other jurisdictions.countries. Other company, product, or service names may be trademarks or service marks of others. All references to Acme Corporation and Acme, Inc. refer to a fictitious company and are used for illustration purposes only.
  • 3. Our Story in Forty-five Minutes • Preface • Chapter I - The Beginning • Chapter 2 - Searching for Clues • Chapter 3 - Creating a Solid Platform • Chapter 4 - The Softside of Performance Gains • The Final Chapter - Results
  • 4. Disclaimer "Ladies and Gentlemen. The story you are about to see is true; the names have been changed to protect the innocent." --Dragnet
  • 5. Disclaimer "Ladies and Gentlemen. The story you are about to see is true; the names have been changed to protect the innocent." --Dragnet For example... Acme Corporation is now referred to as Acme, Inc.
  • 6. Setting Expectations • What we will cover • Problem analysis • Troubleshooting skills • Best practices • The performance impact of suboptimal applications • What we omitted • Boring, rambling, dry lecture • Useless drivel
  • 7. Our Story in Forty-five Minutes • Preface • Chapter I - The Beginning • Chapter 2 - Searching for Clues • Chapter 3 - Creating a Solid Platform • Chapter 4 - The Softside of Performance Gains • The Final Chapter - Results
  • 8. Customer Calls • "We're having a problem. Can you help?" • "Absolutely. What's happening?" • "Our mission critical DB is really $%&@#$^& our users. It's way too slow. It takes less time to reboot [Windows 3.1 on an i386 with 32MB RAM] than to open a document." • "Any idea what changed?" • "We don't know. We have not touched the box."
  • 9. Why Domino Servers Fail? • Lack of expertise and/or knowledge • Unplanned and/or unexpected expansion • No dedicated administrator • No change management • No monitoring • Workaround overloading
  • 10. Our Story in Forty-five Minutes • Preface • Chapter I - The Beginning • Chapter 2 - Searching for Clues • Chapter 3 - Creating a Solid Platform • Chapter 4 - The Softside of Performance Gains • The Final Chapter - Results
  • 11. "Round Up the Usual Suspects" • While waiting for access, request the following • Helps establish the level of criticality notes.ini log.nsf sh tasks top vmstat iosys df -h Affected user(s) to server ping results mount swapon -s Server NAB DB copy, sans users
  • 12. Data, Data Everywhere • Ran DCT - returned a few items, but nothing applicable to the performance issue experienced • Checked Domino stats • Located a key issue - needle in haystack • SAI fluctuated wildly, frequently, plummeting to 18% for minutes then rising sharply again • Locate any recent NSD files for analysis
  • 13. Quick Example - iostat, vmstat malchw@san-domino:~$ iostat Linux 3.13.0-83-generic (san-domino) 03/23/2016 _x86_64_ (8 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 6.21 0.25 3.69 0.51 0.00 89.34 Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn sda 45.34 2075.44 778.25 6028264 2260469 sdb 0.36 1.52 0.03 4422 80 dm-0 24.51 117.04 186.80 339957 542584 dm-1 16.17 415.61 79.82 1207173 231836 dm-2 17.64 1540.92 511.61 4475713 1485996 
 malchw@san-domino:~$ vmstat procs -----------memory---------- --swap-- ---io-- -system-- -------cpu------- r b swpd free buff cache si so bi bo in cs us sy id wa st 1 0 0 16943764 153144 7941660 0 0 262 98 144 681 6 4 89 1 0
  • 14. Pro Tip on Data Collection • Watch the server when nobody else does • Lots of strange things happen on servers overnight • Observed the system processing over one million records in :15 twice a week, at different times Example: no one at Acme, Inc. knew this occurred or why
  • 15. Initial Data Analysis - OS • Swap space 50% of installed memory • Memory was under 1GB for mission critical server Several key DBs contained 100k+ docs • Combination created page faulting plague further eroding performance • System properly patched • Free space adequate
  • 16. Initial Data Analysis - Notes.ini • Obvious but important data points • Server layout • Where items located • Recognized server.id file • Server tasks Contrast to sh tasks requested earlier • No obvious problems
  • 17. Initial Data Analysis - Amgr • Agents running all hours of the night and day • Agents running from DBs actively being compacted • Agents running from DBs when updall and fixup running • Not all scheduled agents needed to run all weekend
  • 18. Initial Data Analysis - Log.sf • Compact still running when updall Program fires-off • Compact never finished before execution time ceiling hit Left largest DBs in a completely suboptimal state • Connected to servers that did not exist • Scheduled replication documents • Significant delays with replica synchronization • Ensured data never properly synchronized across domain • Certain connection documents only covered two DBs
  • 19. Initial Data Analysis - DBs • Several big DBs last fixup completed two years ago • Most heavily used files 30-75% Used • Many views means clicking one forces a new index build • No design, document, or attachment compression • Design server task citing non-existent templates
  • 20. Our Story in Forty-five Minutes • Preface • Chapter I - The Beginning • Chapter 2 - Searching for Clues • Chapter 3 - Creating a Solid Platform • Chapter 4 - The Softside of Performance Gains • The Final Chapter - Results
  • 21. Tier 1 - OS • Swap space - No set rule these days 1.5x - 2.0x RAM is good rule of thumb • Memory - 4GB per processor on busy servers • VMware settings if available Avoid temptation of too many processors • Review partitions and free space
  • 22. Additional OS Considerations • Check that previous made system changes stick Unfamiliar servers can exhibit odd behavior • Check IBM Technotes for any recent performance issues • Once OS is working, check to ensure that virtualization is optimal
  • 23. Tier 2 - Domino • Space properly Program Documents Avoid overlap with agents and other Programs • Pause agent schedule during maintenance • Schedule a weekend to complete first full maintenance set First full compact will take much longer than you realize • Create maintenance schedule with tasks agreed to by business line managers Ensures all needed jobs are available when needed
  • 24. Additional Items to Fix • Review all enabled Domino features to ensure they function properly • Simple configuration miscues can impact negatively • Cluster replication unable to locate a cluster member • DNS errors create lookup delays • Remove unneeded, deprecated network ports
  • 25. Our Story in Forty-five Minutes • Preface • Chapter I - The Beginning • Chapter 2 - Searching for Clues • Chapter 3 - Creating a Solid Platform • Chapter 4 - The Softside of Performance Gains • The Final Chapter - Results
  • 26. Where are We? • Domino admin handled the first level treatment • Server performs well, but not good enough • Triangulated the issue to a mission-critical application • Now what?
  • 27. Somebody Else’s Code Source: http://ryankennedy.io/running-the-deep-dream
  • 28. Why Domino Apps Fail? • Lack of expertise and/or knowledge • Developers evolved from power users • Architecture overloading • Unplanned and/or unexpected expansion • Undocumented code and/or business process • No change management • Quick & dirty development
  • 29. Developers vs Performance Issues • There is no magic pill for finding a performance issue • Many problems are circumstantial Depends on who/when/how… • Repeating the problem on a controlled environment • Need for Proof! • The most difficult part of the task • Need to be systematical
  • 30. Science Just Works! • Research and Assessment, • Speculation for fixes, • Experiment, • Prove! http://www.wired.com/2013/04/whats-wrong-with-the-scientific-method/
  • 31. Methodology Research Symptoms (e.g. logs, performance data, etc.) Story (e.g. user input) Application code Hypothesis Speculation on possible reasons Search for ‘Usual Suspects’ Experiment Testing for possible reasons Analyze Check symptoms if fixed Conclusion Issue validated and proved to be fixed.
  • 32. Research & Assessment • What to collect, based on the symptom; • CPU/memory load, hangs, spikes, crashes, etc. • All the time, the same time everyday or random? • Experienced by specific users? • We are looking for a pattern between incidents.
  • 33. Data Collection Checklist Log/NSD/Semaphore files Server configuration (inc. notes.ini) Server monitoring and statistics data Web logs (for web application issues) XPages and OSGi logs (for XPages specific issues) Application and dependencies
  • 34. Isolate the Application • Sometimes, even opening in DDE may cause issues! e.g. XPages components are automatically built • Application code might have side effects e.g. Updating on another data source, adding audit logs, performance degradation on the server, etc. • There will be dependencies • Once isolated, we can start inspection…
  • 35. Usual Suspects • Database corruptions • @Today/@Now in views • Code snippets acting like an admin Updating views, replicating databases, running server commands • Code snippets using the worst practices Search in a large database, wrong looping, etc. • Anything that fits into the pattern if there is one e.g. An agent matching the incident timing
  • 37. Team Up! • Deeper investigation needs a teaming effort • Admins and Developers should collaborate • A test setup to simulate the production environment • Intensive / Controlled debugging sessions in limited time windows • Sharing expertise • Experimenting on production should be the last resort • Once a repeatable error found, cooperate for a solution
  • 39. Example Case - Analysis • JVM Crash with the HTTP task • Random times • No pattern in the log • Memory dumps point a leak in the JVM Heap • Inspected XPages applications, nothing found • Triangulated the problem into one XPages app, following clues in intensive debugging on memory • Isolated the application for a load test, nothing found • Increased logging, to collect more data, no hope!
  • 40. Example Case - Resolution • Checked the server configuration and noticed • Logging data incomplete • Removed exclusions • New logs pointed the problem: • Searching software crawling a specific page • Page generates state data and fills up the memory • Simulated the same crash on the test environment • One line of code fixed the issue
  • 41. Another Case - Analysis • A mission critical application at a bank • Web application with 2000+ users • CPU spikes and random hangs, mostly afternoon • Logs are clear, no crashes, no error messages • Isolated the application, inspected the ‘usual suspects’ • Found a web agent updating a view! • Triangulated the problem using web logs and SEMDEBUG • But, cannot validate the issue on the test environment…
  • 42. Another Case - Resolution • Cooperated with the Domino admin • Detailed assessment on the server configuration • We found the issue! • “ServerTasksAt14” running an updall task. • Another Program file running updall on a specific database, every 30 minutes • Applied to the test platform, validated by a load test • Problem solved!
  • 43. Our Story in Forty-five Minutes • Preface • Chapter I - The Beginning • Chapter 2 - Searching for Clues • Chapter 3 - Creating a Solid Platform • Chapter 4 - The Softside of Performance Gains • The Final Chapter - Results
  • 44. Quality Analysis Yields Quality Results • Page faults reduced to zero • General DB usage and administration tasks work well • SAI now over 80% • Weird overnight (agent) system operations resolved • Key DBs have 93% used space now • All DBs compressed: design, documents, all attachments • Program documents, agents all adjusted: finish, no overlap
  • 45. Note on Performance When done properly, few users tend to notice the change, but if removed they will all complain
  • 46. Teamwork vs. Performance Neither an admin nor a developer could solve all of these issues alone!
  • 47. Bonus Slide • You can get help inspecting applications and servers • Teamstudio and Ytria also sponsored IBM Connect! Cooperteam MartinScott Teamstudio Ytria
  • 48. Serdar Başeğmez • IBM Champion (2011 - 2017) • Developi Information Systems, Istanbul • OpenNTF / LUGTR / LotusNotus.com • Featured on… Engage UG, IBM Connect, ICON UK, NotesIn9…
  • 49. William Malchisky Jr. • IBM Champion (2011 - 2017) • Effective Software Solutions, LLC • Co-founder of Linuxfest at Lotusphere/Connect • Speaker at 25+ Lotus/IBM related events/LUGs • Co-authored two IBM Redbooks • Co-wrote the IBM Education Administration track for Domino 8.5
  • 50. Follow Up - Contact Information Serdar Basegmez serdar.basegmez@developi.com @serdar_basegmez Skype: sbasegmez Blog: lotusnotus.com Bill Malchisky Jr. william.malchisky@effectivesoftware.com @billmalchisky Skype: FairTaxBill Blog: billmal.com