SlideShare a Scribd company logo
1 of 91
Download to read offline
Ytria and TLCC present:
From Frustration to Fascination:
Dissecting Replication
The Webinar will start at 10:30 AM New York Time!
1
From Frustration to Fascination: Dissecting Replication
2
Your Hosts Today:
Howard Greenberg
TLCC
@TLCCLtd
Rob Evangelista
TLCC
TLCC Courses and Services
• The Leader in Notes and Domino Training since
1997
• Self Paced Distance Learning Courses for
Notes/Domino
– XPages, Development, and Administration (user too!)
• OnSite Private Classes
• Mentoring/Consulting Services
• Free demo courses
– Intro. To XPages Development
– Application Development 1
3
TLCC Admin Courses
4
 Notes Domino 9 System Administration 1 and 2
 Notes Domino 9 System Administration Update
 Notes Domino 8.5 System Administration 1 and 2
 Notes Domino 8.5 System Administration Update
More information on TLCC courses can be found at:
www.tlcc.com
Asking Questions
5
Q & A at the end!
Type in your
questions as they
come up
Your Presenters Today:
6
Ben Menesi
Ytria
Kim Greene
Kim Greene Consulting, Inc.
@iSeriesDomino@BenMenesi
From Frustration to
Fascination:
Dissecting Replication
Ben Menesi
&
Kim Greene
@BenMenesi@iSeriesDomino
Kim Greene
 Owner of Kim Greene Consulting, Inc.
 15+ years of experience with Domino and
20+ years of experience with IBM i (AS/400, iSeries)
 Services include System & Application performance
optimization, Administration, upgrades, health, performance, security
etc. checks, migrations, custom development, enterprise integration
 Blog: www.bleedyellow.com/blogs/dominodiva
@iSeriesDomino http://www.kimgreene.com
Speaker
Ben Menesi
 Chief Product Officer at Ytria, Inc.
 IBM Notes Administration and Development for
various enterprise IBM customers
 Wearing both Admin and Dev hats
 Speaker at numerous LUG conferences such as
IBM Connect, MWLUG, NLLUG, ICON UK, BLUG, etc…
 IBM Champion 2014 for Collaboration Solutions
 Blog: http://www.techlab.ytria.com
@BenMenesi http://www.ytria.com
Speaker
Brief Company Description
 Advanced IBM Business Partner founded in 1999 in Montreal, Canada
 EZSuite portfolio: 10 products for Notes Administration & Development
 Released our newest product, replicationEZ in September 2012
 Idea is to manage all about replication -> loads of testing, tons of
interesting stuff learned in the process.
 Promise: Not a Marketing session
 Let’s cut to the chase!
http://www.ytria.com
Ytria
Replicator Server task
Connection documents
Cluster Replication
Quick Introduction to Replication
What happens when two databases replicate?
Security considerations, selective replication
Document comparison, possible scenarios, problems
Best Practices, stories, myths, mistakes, geek fun stuff
Replication is a huge subject, and is impossible to exhaustively
cover in an hour. So we’ll mostly be discussing the fun stuff!
Agenda
1.) Replication related tasks
2.) Connection documents
3.) Cluster Replication
Quick Introduction
1.) Replication related tasks
2.) Connection documents
3.) Cluster Replication
Quick Introduction
REPLICA
 Responsible for synchronizing source database with its replicas
 One instance loaded by default
 To load multiple replica tasks:
 Use REPLICATORS=n in notes.ini
 ‘load replica’ at Domino console
 Replicator sits idle until connection document (or console command)
triggers it
 Replica task = muscle
 Connection document = brain
 Performs cluster replication
Replication Server Task
CLREPL
Types of Replication
 PULL-PUSH: Server A contacts server B and PULLS new and modified
information. Then it PUSHES all its new and modified information to server B.
 Server A does all the work
 PULL-PULL: Server A contacts server B and PULLS new and modified info.
Then Server B contacts server A and does the same.
 Work is shared by servers
 PUSH-ONLY: Server A contacts server B and PUSHES all new and modified
info.
 No updates received
 PULL ONLY: Server A contacts server B and PULLS any new and modified
info.
 No updates sent
A B
A B
A B
A B
The Replicator Server Task
1.) Replication related tasks
2.) Connection documents
3.) Cluster Replication
Quick Introduction
Digesting connection documents
 Connection documents are definitions for server to server connections
 Control replication and mail routing
 Specify which databases, folders to replicate (or not!) and when
 Digesting a connection document
 Source Server
 Server doing work, REPLICA task responsible, connects to
SERVER task on server
Connection Documents
Digesting connection documents
 What to replicate
 Replication type and files / directories to replicate, and avoid
 Tip: Are you replicating names.nsf, admin4.nsf and events4.nsf
throughout the domain??
 Replication time limit
 Tip: Set the replication time limit less than the repeat interval
Connection Documents
Digesting connection documents
 Repeat interval
 Starts when previous replication session ends
 Tip: Easier to troubleshoot if using specific times
Connection Documents
Interesting stuff
 How do you know where & how a given DB is supposed to replicate?
 Method 1
 Copy connection documents view and add a new column to
display the ‘filenames’ item in the first categorized column
Connection Documents
Interesting stuff
 How do you know where & how a given DB is supposed to replicate?
 Method 2
 Use a 3rd party solution such as replicationEZ
Connection Documents
• Customer example
– Shipping company with 40+ servers on cruisers
– Replicating via satellite
– Let’s look at one of their business critical apps to see how it
replicates
– Result: EACH server replicating with 40-1 servers!!!
– Proper setup and overview of connection documents = Save ~ 95%
on bandwidth
Connection Documents
Connection Documents
1.) Replication related tasks
2.) Connection documents
3.) Cluster Replication
Quick Introduction
Quick overview of clustering
 What is a domino cluster?
 Collection of 2 to 6 Domino servers (6 is a recommended max) to
provide high availability and / or workload balancing
 How does it work?
 Each server contains replicas of the apps to be clustered
 If user attempts to access a clustered application and it’s not
available, Notes opens a replica of the DB on a different cluster server
 Domino continuously synchronizes databases
 CLREPL server task
 Requirements
 All cluster mates share same Domino Directory
 A given server can only be a member of one cluster at a time
Domino Clustering
Important regarding clustering
 Clustering is In Memory replication
 As changes occur they are queued and sent to the cluster server(s)
 If server goes down, changes can be lost
 Always use traditional replication as backup
 Control with connection documents
 Streaming cluster replication
 First introduced in Domino 8.0, enhanced cluster replication
 Event-drive, changes pushed to cluster mates as they happen
Domino Clustering
Important regarding clustering
 Tip: Ping server using NSPINGSERVER API Call
 Much faster (3x according to our testing) than any other method in LS
 Returns if server is busy (ERR_SERVER_UNAVAILABLE)
 If server is restricted (ERR_SERVER_RESTRICTED)
 pdwIndex – Availablity index for server (0 if not participating in load
balancing)
 phList – Text list containing cluster name & all cluster mates
Domino Clustering
1.) Check if access rights sufficient
2.) Check replication history
3.) Build document list for processing
4.) Apply selection formulas
5.) Compare documents
6.) Make changes
When Databases Replicate
1.) Check if access rights sufficient
2.) Check replication history
3.) Build document list for processing
4.) Apply selection formulas
5.) Compare documents
6.) Make changes
When Databases Replicate
Gotta have access!
 Server level security considerations
 Controlled in ‘Security’ section of the Server document
 If server isn’t listed, replication will fail or new replica won’t create
 Database level security considerations
 Check the ACL settings
 Make sure “source” server has access to destination database and vice versa
Access Considerations
 Tip 1:
 If you can’t create replicas, but are allowed to create new databases
on a given server, you can create an empty DB and change its
Replica ID
 You got around your Notes environment setup (True Story )
 Tip 2:
 If you create a new replica for a huge database manually, you might
want to specify a fake Replication formula so that once it’s evaluated
no documents will be transferred. This will create a “Replica Stub”.
Then delete the formula and use the “Replicate” server task to
synchronize the databases.
 Tip 3:
 Access to CP command at OS level overrides Notes security
Who can create a new replica
It’s replication time!
 Building list of databases to process
 ACLs are used as a filter
 No access to database = no replication
 Replication of each database with matching Replica ID
 More on this later
The Replicator Server Task
1.) Check if access rights sufficient
2.) Check replication history
3.) Build document list for processing
4.) Apply selection formulas
5.) Compare documents
6.) Make changes
When Databases Replicate
How does it work?
 When replicator is about to sync two DBs it looks at the history to find out
what happened since their last “talk”
A B
PUSH: Server A checks History in
“Local” database (on server A)
A B
PULL: Server A checks History in
“Remote” database (on server B)
A B
PULL & PUSH: Server A checks History
in both “Local” and “Remote” DBs
Replication History
If there is no replication history or it’s disregarded
 Calculation based on all documents: cleaner BUT longer replication
When is the replication History disregarded?
 If access rights have changed
 If Replication Formulas changed
Watch out!
 If local <> server replication, no trace in server Replication History
 If no changes detected = no trace in replication history
 How come my DB that’s supposed to replicate every 5 minutes hasn’t
replicated in 1.5 hours??
Replication History
1.) Check if access rights sufficient
2.) Check replication history
3.) Build document list for processing
4.) Apply selection formulas
5.) Compare documents
6.) Make changes
When Databases Replicate
Managing selective replication using readers fields
 When building document list, basic Notes security applies
 Server needs access to documents
 If this is not true, the server won’t see document
 (Much like how servers disregard replicating apps they
have no access to)
 This is something you can play with. It’s actually a technique that a lot
of folks prefer over using replication formulas.
 Make sure servers involved in replication are in readers fields
Document Level Security
• Customer example – security application
– Clustered server environment
• 2 servers
– Database on primary server contained documents not in replica on
secondary server
• Not all documents impacted
– Document properties revealed Readers field
• LocalDomainServers not present in documents not replicating to
secondary server
Document Level Security
1.) Check if access rights sufficient
2.) Check replication history
3.) Build document list for processing
4.) Apply selection formulas
5.) Compare documents
6.) Make changes
When Databases Replicate
What are Selective Replication Formulas?
 Selective Replication Formulas are one way to replicate a subset of
your database contents
 Use case
 If you use multiple replicas on the same server (which you
probably shouldn’t) you want to use replication formulas instead
of readers fields
Where do I find them?
 It’s pretty tough to *REALLY* oversee them
 Some think this is a database level setting, but you can have as
many scenarios as you’d like and there are rules you have to
consider
Selective Replication Formulas
Correct Setup
 Multiple possible scenarios for each server to server relationship
 It’s best to create selective replication formulas in the receiver
database
Selective Replication Formulas
A
Receiver: B
Sender: A
B
Receiver: B
Sender: -ALL-
Incorrect Setup
 By default, selective replication formulas are NOT set to replicate!
 It’s not advised to use database B to setup rules for what database
“A” is supposed to receive!
Selective Replication Formulas
A
Won’t work
unless
replicated!
B
Receiver: A
Sender: B
Receiver: A
Sender: -ALL-
What can we replicate using formulas?
Selective Replication Formulas
Do NOT change this field!
Won’t receive replication formulas
from other replicas by default!
Do Replication Formulas always take affect?
 NO!
 Cluster Replication will DISREGARD any replication formulas in
place
 It’s #1 target is to ensure the DBs taking part in cluster
replication are 100% the same
 TIP: Don’t use selective replication formulas for databases that are
set to take part in cluster replication
 Scheduled replication will use selective replication formulas
 CLREPL will disregard them
 Result: Confusion, increased processing time (+ numerous view
index updates!)
Selective Replication Formulas
• Customer example – documents not replicating to server
– 3 servers in a cluster
– Some documents not replicating from user’s local replica to replica
on primary server
– Documents present in replicas on 2 backup servers
– Culprit found!
Selection Formulas
1.) Check if access rights sufficient
2.) Check replication history
3.) Build document list for processing
4.) Apply selection formulas
5.) Compare documents
6.) Make changes
When Databases Replicate
Document Identifiers & Properties
 Document Universal ID
 16-byte identifier that uniquely identifies a document across replicas
 @DocumentUniqueID in formulas
 NotesDocument.UniversalID in LS
 Note ID
 Uniquely identifies documents in ONE notes database
 @NoteID in formulas
 NotesDocument.NoteID in LS
Anatomy of Documents and Items
Document Identifiers & Properties
 Sequence Number
 Both documents and items have them
 Increases every time a document is saved
 Devs, careful with ctrl+s!
 The doc.Sequence number = highest item’s sequence number
 Ways to get:
 @Elements($Revisions)
 Risky because the limit might have been hit, and in this case it’s
incorrect
 NSFNoteGetInfo API Call: SQ number part of the returned header
information
 Ytria scanEZ
Anatomy of Documents and Items
• Customer example – sequence number
– Scenario
• Field value constantly overwritten upon change at 9PM at night
• Analysis of document evening prior
– Item sequence number = 241
• Analysis of document next AM
– Item sequence number = 2
• How can this be possible?
– Item Sequence number resets
• Be careful with document save
frequency!
Anatomy of Documents and Items
Document Identifiers & Properties
 $Revisions
 Standard Document field that contains 8 byte entries for each time a doc
has been saved.
 CAUTION! There can be a DB level limit here.
 $Updatedby
 Stores a list of editors (Canonical names = > 40 bytes). First entry is
usually creator, but if DB limit hit, won’t be accurate.
 Computed when composed created by field is advised.
 BEWARE! Not necessarily in sync with $Revisions!
 If there are multiple modifications by the same person after each
other, it’ll only record ONE entry.
Anatomy of Documents and Items
Document Identifiers & Properties
 $UpdatedBy item: No duplicate entries when same person saves document
multiple times in a row (space saving considerations)
Anatomy of Documents and Items
Document Identifiers & Properties
 Creation date
 @Created in formulas, NotesDocument.Created in LS
 The initial creation date (more on this later)
 Created Initially & Added in this file
 Sooo important! Two different date stamps
 @Created in formulas and NotesDocument.Created
 Returns initial creation timestamp
 Added in this file
 When the document was created in this file
Anatomy of Documents and Items
Document Identifiers & Properties
 Difference between the Initial Creation & Added in this file = time it took
to replicate document
 This time date value can ONLY be retrieved using the
AddedToThisFile API call, and not from Formulas
– Customer Example
 Created Initially > Added in this file
 So how can this happen?
 Tip: Ensure servers replicating are getting their time from the same
server!!
Anatomy of Documents and Items
What are Deletion Stubs?
 Deletion Stub definition
 When a document is deleted from the database, a light place holder is
created that contains little information
 In case enabled, Soft Deletions are an interim step in this process
 Soft Deletions have a different class, and are only different from
deletion stubs because they actually do contain all their items
 What do deletion stubs contain?
 Document UNID
 Creation Time (Initial)
 Deletion Time (Both initial & in this file)
 Sequence number
Deletion Stubs
How Long Are They Kept in the DB?
 By default they will be deleted after 90 days
 Can be changed on Space Savers tab of replication settings window.
(Not very obvious, but field value takes affect even if removal is not
checked)
 Note: Purging of deletion stubs interval will be the 1/3rd of this value!
 In the default case this means it’ll happen every 30 days, which will
possibly leave you with deletion stubs that are kept in the database
for <120 days!
Deletion Stubs
• Customer example
– Scenario:
• 2 servers in a cluster
• Replica of mail files on secondary server larger than on primary server
– Quotas being blown on secondary server when users failed over
• Same number of documents in each database
• Only difference found was number of deletion stubs
• Purge happens on database open
– Replica on secondary server contained thousands more deletion stubs
than replica on primary server
Deletion Stubs
How to locate to them?
 NOT displayed in views (in fact, they aren’t even documents – different
class)
 TIP: When using GetdocumentbyUNID in LS, object returned by a
Deletion Stub will raise an error when trying to work with it
 doc is nothing is NOT enough protection here!
 When getting document object, once “Is Nothing” check has been
done, you should do an “ If TestDoc.Size = 0 Then” type check to
handle any errors due to deletion stubs.
 Favorite comment below an article regarding this:
Deletion Stubs
How to locate to them?
 How to get their sequence number?
 Only way is to use the Notes API
 Both NSFDbGetNoteInfo and NSFDbGetNoteInfoByUNID calls
return the note header without attempting to open it, i.e. will let
you gather the sequence number too
Deletion Stubs
How to locate to them?
 Use scanEZ (using the Lite version this is free!)
Deletion Stubs
How to remove them?
 Reset Purge interval
 Unless the customer has a tool to get rid of deletion stubs manually
(like scanEZ), changing the database replication settings -> space
savers, and setting the parameter ‘Remove documents not modified
in the last (days)’ to 0, closing and reopening the database clears the
deletion stubs
 The TRICK, is to NOT put a checkmark next to ‘Remove
documents modified in the last (days)’ as that will delete
documents from the database that were not intended to be
deleted!!!
 Use DataBase Maintenance Tool (DBMT) in Domino 9.x
 Clearing deletion stubs programmatically ONLY works through the C API
Deletion Stubs
Let’s recap: how documents are compared
 If replication History is present
 Documents are compared where
 Last Modified Date was later than Last Replication history
describing the last time the two DBs talked
 If replication History has been cleared or does not exist
 All notes will be compared based on their UNIDs
 Results in a longer replication time
 ‘Cleaner’ replication
 Very helpful for solving replication issues
 Tip: use scanEZ’s Replication Auditor to imitate replication
 Will look behind the curtain (even if replication history present) and
calculate what would happen if replication would happen with no
replication History present
Comparing Documents
Find all differences between replicas
scanEZ Replication Auditor
How are documents compared?
Comparing Documents
Note doesn’t exist in one of the databases
(or it’s a deletion stub)
Document / Profile Document class note
exists in both databases
Design Note (or deletion stub)
exists in both databases A B
A B
A
 There are three major scenarios:
1.) Design note or deletion stub
Comparing Documents
Design Note (or deletion stub)
exists in both databases A B
 Sequence Number & Initial Modification time decides which note ‘wins’
 NO Conflict created, even if both notes modified!
 Devs: careful with Ctrl+S!
2.) Document or Profile document
Comparing Documents
Document / Profile Document class note
exists in both databases
 If Sequence number is the same then
 Are the Initial Modification Dates the same?
 Yes: Nothing to replicate
 No: Possible conflict (according to conflict handling options on form)
 If Sequence number NOT the same then
 Find last Sync Date from $Revisions
 Either conflict or simple update
 Let’s take a closer look!
A B
2.1) Document or Profile document: Update
Comparing Documents
A B
• Sequence Nr: 4
• Init. Modification:
24/09/2013 10:11
$Revisions
24/09/2013 10:11
24/09/2013 09:14
23/09/2013 21:50
20/09/2013 15:35
$Revisions
24/09/2013 09:14
23/09/2013 21:50
20/09/2013 15:35
• Sequence Nr: 3
• Init. Modification:
24/09/2013 09:14
 Result: B is updated
2.1) Document or Profile document: Conflict
Comparing Documents
 Result: Conflict created with A as winner
A BA B
• Sequence Nr: 4
• Init. Modification:
24/09/2013 10:11
• Sequence Nr: 3
• Init. Modification:
24/09/2013 11:14
$Revisions
25/09/2013 10:11
24/09/2013 09:14
23/09/2013 21:50
20/09/2013 15:35
$Revisions
24/09/2013 11:14
23/09/2013 21:50
20/09/2013 15:35
3.) Note doesn’t exist or deletion stub in
one DB
Comparing Documents
Note doesn’t exist in one of the databases
(or it’s a deletion stub)
 If doc / design doesn’t exist in the other database, it is created.
 In case it is a deletion stub, creation is silent
 If doc / design is a deletion stub in the other database then it’ll be deleted
 UNLESS: document has larger sequence number, and beats deletion
stub
 Deleted document comes back
A
1.) Check if access rights sufficient
2.) Check replication history
3.) Build document list for processing
4.) Apply selection formulas
5.) Compare documents
6.) Changes made
When Databases Replicate
Replication / save conflicts
Ghost documents
What can go wrong?
What are replication / save conflicts?
 Save conflicts
 Created when 2 or more users edit the same document at the same
time in the same replica
 Replication conflicts
 Created when 2 or more users edit the same document and save the
changes in different replicas between replications
 What is the parent document?
 Parent document = winner. No change on the backend items.
 What is/are the conflict document(s)?
 Response document ($Ref item appended) plus an empty text type
item named $Conflict
Replication or Save Conflicts
Parent
Conflict
What are replication / save conflicts?
How do I prevent
conflicts from being
created?
What’s the best way to
solve them?
How do I find all
conflicts?
Anything else to
watch out for?
Is there any way to
handle how they are
created?
 We might be asking ourselves the following questions…
Replication or Save Conflicts
How do I prevent them from being created?
 There are many-many different tactics and best practices
 You should know of a few general rules...
 ... And a few specifics about save or replication conflicts
 Prevent Conflicts in general
 Manage author items
 Dynamic author list
 Ensure only a limited subset of people are authorized to
edit documents
Replication or Save Conflicts
How do I prevent them from being created?
 Prevent Save Conflicts
 Document locking
 Avoid the LS
doc.computewithform()
 Avoid doc.save() in
querysave and
postsave form events
without closing form
 Prevent Replication
Conflicts
 Ensure scheduled
agents don’t run on
both servers (Ytria
agentEZ or agent
aggregator thanks to
Thomas Lindberg)
 Replicate more often,
consider clustering
 Keep number of
replicas to a minimum
 Avoid mass-updating
docs unless necessary!
Replication or Save Conflicts
• Customer example
 scanEZ indicates conflicts were found in the NAB
 Connection documents view does not show any conflicts ... UH-OH!
 Don’t let the view fool you!
 61/104 Views in the 8.5.3 NAB hide Conflicts!
 Tip: There is a Conflicts folder
How do we find them?
What to watch out for?
 DON’T let your users edit Conflict docs! They’ll turn into duplicates which is
definitely not something we want.
 Protect your conflicts: Either hide them from the views, or use the
QueryModeChange event.
 Below an example of how to do this:
Sub QueryOpen(Source As Notesuidocument, Continue As Variant)
Dim doc As NotesDocument
Set doc=source.Document
If doc.Hasitem("$Conflict") Then
Msgbox "This is a conflict document. Editing
conflicts is not permitted in this database", 16, Error
continue=False
End If
End Sub
Don’t let them duplicate
What’s the best way to solve conflicts?
 It’s easy! Delete conflict document!
 Seriously. Three scenarios (but you’ll need to compare docs in any
case)
1.) Winner document contains all necessary information and
loser is expendable
2.) Loser (conflict) document contains all the information
3.) Both loser and winner documents contain critical information
How do we solve them
What’s the best way to solve conflicts?
1.) Winner document contains all necessary information and
loser is expendable.
 This is the simplest possible scenario: winner (parent)
document does not contain any items to indicate it’s part of a
conflict
How do we solve them
Parent
Conflict
 It is safe to remove conflict document
What’s the best way to solve conflicts?
2.) Loser document contains all the necessary information
 This is where it gets a little tricky: conflict document contains
$Ref and $Conflict items: if parent is deleted, conflict becomes
an orphan and it’ll be hard to locate it.
 In this case, consider using script found at breakingpar.com to
turn loser into winner
 Essentially this means you get rid of the $Conflict and $Ref
items before removing the winner (=parent)
How do we solve them
Parent
Conflict
 Remove $Ref and $Conflict items
 Delete parent document
What’s the best way to solve conflicts?
3. Both winner and loser contain necessary information and
need to be merged.
 Several solutions out there, but scanEZ is just the BEST way to
go about it.
 You have to compare all conflicts with the parent document
(Yes, there might be more) and ideally – select the values you’d
like to keep.
How do we solve them
Parent
Conflict
 Compare documents and merge item values into
parent before deleting conflict
Ytria’s scanEZ
How do we solve them
Replication / save conflicts
Ghost documents
What can go wrong?
What are they?
 Two kinds of issues referred to as “GHOSTS”
Ghosts / Resurrected Documents
Replication Ghosts
Resurrected Ghost Documents
What are they?
 Two kinds of issues referred to as “GHOSTS”
Ghosts / Resurrected Documents
Replication Ghosts
Resurrected Ghost Documents
What if it already happened?
 Use the Initial creation & created in this file dates
 Like we said, the second one is quite tricky to get. If you implement
the API Call, you could have an agent stamp all docs using a
special field, so you can display the following in a view:
 Initial creation
 Creation in this file
 Difference between these two dates
 ... And categorize by something like @If(Createdinthisfile-
@Created>Delstublifetime;”Problem”;”OK”)
Ghosts / Resurrected Documents
Initial
Creation
Created in
this file
(?) DB
Created
Amount of time > than Del. Stub Lifetime?
What if it already happened?
 Use scanEZ’s Post Replication Auditor
Ghosts / Resurrected Documents
Preventive actions – PIRC
 Use the PIRC (Purge Interval Replication Control) feature
 New in 8.5.3
 Prevents documents older than deletion stub lifetime from replicating
into DB
 Tip:
 If have docs older than deletion stub lifetime, replicate them
first and then enable PIRC
 Optionally: use replicator with –NOPIRC to include documents that
PIRC won’t let replicate
 You WANT to use PIRC!
Ghosts / Resurrected Documents
• Customer example
– User reported in early May thousands (34,000+) documents deleted
months prior reappeared
– Application had been PIRC enabled on all 3 servers in cluster
– Primary server moved to new box
• New replicas created via AdminP
– BEWARE: PIRC database setting doesn’t carry forward when creating
new database replica
Ghosts / Resurrected Documents
Ytria’s multi-server replication tool
 Find out when and how replication happened
 Load & analyze all replicas across all servers
 Visually understand how replication happened
 Immediately find databases with document, acl or agent inconsistencies
Ytria ReplicationEZ
Questions????
7
Use the Q&A pane in WebEx
to ask questions
We will answer your questions
verbally
Upcoming Events:
5/13 – TLCC XPages Webinar
5/14 – Ytria Webinar on replicationEZ
6/16-17 – Social Connections in Prague
8/27-29 – MWLug in Grand Rapids, MI
Question and Answer Time!
8
Ytria Questions?
customer@ytria.com
888-987-4299
TLCC Questions?
howardg@tlcc.com rob@tlcc.com
888-241-8522 or 561-953-0095
Howard Greenberg
@TLCCLtd
@Ytria
@BenMenesi
@iSeriesDomino
Rob Evangelista
Kim Greene
Ben Menesi

More Related Content

What's hot

Face Off Domino vs Exchange On Premises
Face Off Domino vs Exchange On PremisesFace Off Domino vs Exchange On Premises
Face Off Domino vs Exchange On PremisesGabriella Davis
 
Help! My Travelers complain about performance, what to do ??
Help! My Travelers complain about performance, what to do ??Help! My Travelers complain about performance, what to do ??
Help! My Travelers complain about performance, what to do ??ICON UK EVENTS Limited
 
Marty, You're Just Not Thinking Fourth Dimensionally
Marty, You're Just Not Thinking Fourth DimensionallyMarty, You're Just Not Thinking Fourth Dimensionally
Marty, You're Just Not Thinking Fourth DimensionallyTeamstudio
 
An introduction to configuring Domino for Docker
An introduction to configuring Domino for DockerAn introduction to configuring Domino for Docker
An introduction to configuring Domino for DockerGabriella Davis
 
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
 
Inform2015 - What's New in Domino 9 & 9.0.1 for Admins
Inform2015 - What's New in Domino 9 & 9.0.1 for AdminsInform2015 - What's New in Domino 9 & 9.0.1 for Admins
Inform2015 - What's New in Domino 9 & 9.0.1 for AdminsJared Roberts
 
[DanNotes] XPages - Beyound the Basics
[DanNotes] XPages - Beyound the Basics[DanNotes] XPages - Beyound the Basics
[DanNotes] XPages - Beyound the BasicsUlrich Krause
 
XPages: No Experience Needed
XPages: No Experience NeededXPages: No Experience Needed
XPages: No Experience NeededKathy Brown
 
ILUG 2008 Templates, Templates Everywhere
ILUG 2008 Templates, Templates EverywhereILUG 2008 Templates, Templates Everywhere
ILUG 2008 Templates, Templates EverywhereKevin Pettitt
 
What's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-PremisesWhat's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-PremisesGabriella Davis
 
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
 
Best Practices for Installing IBM Verse on Premises
Best Practices for Installing IBM Verse on PremisesBest Practices for Installing IBM Verse on Premises
Best Practices for Installing IBM Verse on PremisesTimsterC
 
How to use the new Domino Query Language
How to use the new Domino Query LanguageHow to use the new Domino Query Language
How to use the new Domino Query LanguageTim Davis
 
Open Source Library System Software: Libraries Are Doing it For Themselves
Open Source Library System Software: Libraries Are Doing it For ThemselvesOpen Source Library System Software: Libraries Are Doing it For Themselves
Open Source Library System Software: Libraries Are Doing it For Themselvesloriayre
 

What's hot (20)

Face Off Domino vs Exchange On Premises
Face Off Domino vs Exchange On PremisesFace Off Domino vs Exchange On Premises
Face Off Domino vs Exchange On Premises
 
Help! My Travelers complain about performance, what to do ??
Help! My Travelers complain about performance, what to do ??Help! My Travelers complain about performance, what to do ??
Help! My Travelers complain about performance, what to do ??
 
Marty, You're Just Not Thinking Fourth Dimensionally
Marty, You're Just Not Thinking Fourth DimensionallyMarty, You're Just Not Thinking Fourth Dimensionally
Marty, You're Just Not Thinking Fourth Dimensionally
 
An introduction to configuring Domino for Docker
An introduction to configuring Domino for DockerAn introduction to configuring Domino for Docker
An introduction to configuring Domino for Docker
 
From VB Script to PowerShell
From VB Script to PowerShellFrom VB Script to PowerShell
From VB Script to PowerShell
 
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
 
PS scripting and modularization
PS scripting and modularizationPS scripting and modularization
PS scripting and modularization
 
Inform2015 - What's New in Domino 9 & 9.0.1 for Admins
Inform2015 - What's New in Domino 9 & 9.0.1 for AdminsInform2015 - What's New in Domino 9 & 9.0.1 for Admins
Inform2015 - What's New in Domino 9 & 9.0.1 for Admins
 
Life in the Fast Lane: Full Speed XPages!, #dd13
Life in the Fast Lane: Full Speed XPages!, #dd13Life in the Fast Lane: Full Speed XPages!, #dd13
Life in the Fast Lane: Full Speed XPages!, #dd13
 
Server Core2
Server Core2Server Core2
Server Core2
 
[DanNotes] XPages - Beyound the Basics
[DanNotes] XPages - Beyound the Basics[DanNotes] XPages - Beyound the Basics
[DanNotes] XPages - Beyound the Basics
 
XPages: No Experience Needed
XPages: No Experience NeededXPages: No Experience Needed
XPages: No Experience Needed
 
ILUG 2008 Templates, Templates Everywhere
ILUG 2008 Templates, Templates EverywhereILUG 2008 Templates, Templates Everywhere
ILUG 2008 Templates, Templates Everywhere
 
PowerShell Remoting
PowerShell RemotingPowerShell Remoting
PowerShell Remoting
 
What's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-PremisesWhat's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-Premises
 
Ms vs ibm_v1.3
Ms vs ibm_v1.3Ms vs ibm_v1.3
Ms vs ibm_v1.3
 
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
 
Best Practices for Installing IBM Verse on Premises
Best Practices for Installing IBM Verse on PremisesBest Practices for Installing IBM Verse on Premises
Best Practices for Installing IBM Verse on Premises
 
How to use the new Domino Query Language
How to use the new Domino Query LanguageHow to use the new Domino Query Language
How to use the new Domino Query Language
 
Open Source Library System Software: Libraries Are Doing it For Themselves
Open Source Library System Software: Libraries Are Doing it For ThemselvesOpen Source Library System Software: Libraries Are Doing it For Themselves
Open Source Library System Software: Libraries Are Doing it For Themselves
 

Viewers also liked

Connect 2014 - BP202: Rapid XPages Development Using the Application Layout C...
Connect 2014 - BP202: Rapid XPages Development Using the Application Layout C...Connect 2014 - BP202: Rapid XPages Development Using the Application Layout C...
Connect 2014 - BP202: Rapid XPages Development Using the Application Layout C...Howard Greenberg
 
MWLUG 2015 - AD114 Take Your XPages Development to the Next Level
MWLUG 2015 - AD114 Take Your XPages Development to the Next LevelMWLUG 2015 - AD114 Take Your XPages Development to the Next Level
MWLUG 2015 - AD114 Take Your XPages Development to the Next Levelbalassaitis
 
AD502: The Mobile Disruption: Why XPages Development is Targeting Mobile First
AD502: The Mobile Disruption: Why XPages Development is Targeting Mobile FirstAD502: The Mobile Disruption: Why XPages Development is Targeting Mobile First
AD502: The Mobile Disruption: Why XPages Development is Targeting Mobile FirstJohn Head
 
Responsive Layout Frameworks for XPages Application UI
Responsive Layout Frameworks for XPages Application UIResponsive Layout Frameworks for XPages Application UI
Responsive Layout Frameworks for XPages Application UIChris Toohey
 
Extension Library - Viagra for XPages
Extension Library - Viagra for XPagesExtension Library - Viagra for XPages
Extension Library - Viagra for XPagesUlrich Krause
 
Intro to XPages for Administrators (DanNotes, November 28, 2012)
Intro to XPages for Administrators (DanNotes, November 28, 2012)Intro to XPages for Administrators (DanNotes, November 28, 2012)
Intro to XPages for Administrators (DanNotes, November 28, 2012)Per Henrik Lausten
 
Creating a Great XPages User Interface, TLCC Teamstudio Webinar - Feb, 2014
Creating a Great XPages User Interface, TLCC Teamstudio Webinar - Feb, 2014Creating a Great XPages User Interface, TLCC Teamstudio Webinar - Feb, 2014
Creating a Great XPages User Interface, TLCC Teamstudio Webinar - Feb, 2014Howard Greenberg
 
Jmp103-Get the Jump on Mobilizing Your Notes and Domino Applications Today!
Jmp103-Get the Jump on Mobilizing Your Notes and Domino Applications Today!Jmp103-Get the Jump on Mobilizing Your Notes and Domino Applications Today!
Jmp103-Get the Jump on Mobilizing Your Notes and Domino Applications Today!Howard Greenberg
 
Living on the Grid - Unlock the Power of Dojo Data Grids in XPages - MWLUG 2013
Living on the Grid - Unlock the Power of Dojo Data Grids in XPages - MWLUG 2013Living on the Grid - Unlock the Power of Dojo Data Grids in XPages - MWLUG 2013
Living on the Grid - Unlock the Power of Dojo Data Grids in XPages - MWLUG 2013balassaitis
 
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
 
AD503: XPages Mobile Development in IBM Domino 9.0.1 and Beyond
AD503: XPages Mobile Development in IBM Domino 9.0.1 and BeyondAD503: XPages Mobile Development in IBM Domino 9.0.1 and Beyond
AD503: XPages Mobile Development in IBM Domino 9.0.1 and BeyondTony McGuckin
 
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...Paul Withers
 
IBM ConnectED 2015 - AD302 - Responsive Application Development for XPages
IBM ConnectED 2015 - AD302 - Responsive Application Development for XPagesIBM ConnectED 2015 - AD302 - Responsive Application Development for XPages
IBM ConnectED 2015 - AD302 - Responsive Application Development for XPagesbeglee
 
IBM ConnectED 2015 - MAS103 XPages Performance and Scalability
IBM ConnectED 2015 - MAS103 XPages Performance and ScalabilityIBM ConnectED 2015 - MAS103 XPages Performance and Scalability
IBM ConnectED 2015 - MAS103 XPages Performance and ScalabilityPaul Withers
 
XPages Application Layout Control - TLCC March, 2014 Webinar
XPages Application Layout Control - TLCC March, 2014 WebinarXPages Application Layout Control - TLCC March, 2014 Webinar
XPages Application Layout Control - TLCC March, 2014 WebinarHoward Greenberg
 
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
 
Speed up your XPages Application performance
Speed up your XPages Application performanceSpeed up your XPages Application performance
Speed up your XPages Application performanceMaarga Systems
 
MWLUG Session- AD112 - Take a Trip Into the Forest - A Java Primer on Maps, ...
MWLUG Session-  AD112 - Take a Trip Into the Forest - A Java Primer on Maps, ...MWLUG Session-  AD112 - Take a Trip Into the Forest - A Java Primer on Maps, ...
MWLUG Session- AD112 - Take a Trip Into the Forest - A Java Primer on Maps, ...Howard Greenberg
 
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
 
Presenting Data – An Alternative to the View Control
Presenting Data – An Alternative to the View ControlPresenting Data – An Alternative to the View Control
Presenting Data – An Alternative to the View ControlTeamstudio
 

Viewers also liked (20)

Connect 2014 - BP202: Rapid XPages Development Using the Application Layout C...
Connect 2014 - BP202: Rapid XPages Development Using the Application Layout C...Connect 2014 - BP202: Rapid XPages Development Using the Application Layout C...
Connect 2014 - BP202: Rapid XPages Development Using the Application Layout C...
 
MWLUG 2015 - AD114 Take Your XPages Development to the Next Level
MWLUG 2015 - AD114 Take Your XPages Development to the Next LevelMWLUG 2015 - AD114 Take Your XPages Development to the Next Level
MWLUG 2015 - AD114 Take Your XPages Development to the Next Level
 
AD502: The Mobile Disruption: Why XPages Development is Targeting Mobile First
AD502: The Mobile Disruption: Why XPages Development is Targeting Mobile FirstAD502: The Mobile Disruption: Why XPages Development is Targeting Mobile First
AD502: The Mobile Disruption: Why XPages Development is Targeting Mobile First
 
Responsive Layout Frameworks for XPages Application UI
Responsive Layout Frameworks for XPages Application UIResponsive Layout Frameworks for XPages Application UI
Responsive Layout Frameworks for XPages Application UI
 
Extension Library - Viagra for XPages
Extension Library - Viagra for XPagesExtension Library - Viagra for XPages
Extension Library - Viagra for XPages
 
Intro to XPages for Administrators (DanNotes, November 28, 2012)
Intro to XPages for Administrators (DanNotes, November 28, 2012)Intro to XPages for Administrators (DanNotes, November 28, 2012)
Intro to XPages for Administrators (DanNotes, November 28, 2012)
 
Creating a Great XPages User Interface, TLCC Teamstudio Webinar - Feb, 2014
Creating a Great XPages User Interface, TLCC Teamstudio Webinar - Feb, 2014Creating a Great XPages User Interface, TLCC Teamstudio Webinar - Feb, 2014
Creating a Great XPages User Interface, TLCC Teamstudio Webinar - Feb, 2014
 
Jmp103-Get the Jump on Mobilizing Your Notes and Domino Applications Today!
Jmp103-Get the Jump on Mobilizing Your Notes and Domino Applications Today!Jmp103-Get the Jump on Mobilizing Your Notes and Domino Applications Today!
Jmp103-Get the Jump on Mobilizing Your Notes and Domino Applications Today!
 
Living on the Grid - Unlock the Power of Dojo Data Grids in XPages - MWLUG 2013
Living on the Grid - Unlock the Power of Dojo Data Grids in XPages - MWLUG 2013Living on the Grid - Unlock the Power of Dojo Data Grids in XPages - MWLUG 2013
Living on the Grid - Unlock the Power of Dojo Data Grids in XPages - MWLUG 2013
 
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
 
AD503: XPages Mobile Development in IBM Domino 9.0.1 and Beyond
AD503: XPages Mobile Development in IBM Domino 9.0.1 and BeyondAD503: XPages Mobile Development in IBM Domino 9.0.1 and Beyond
AD503: XPages Mobile Development in IBM Domino 9.0.1 and Beyond
 
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
 
IBM ConnectED 2015 - AD302 - Responsive Application Development for XPages
IBM ConnectED 2015 - AD302 - Responsive Application Development for XPagesIBM ConnectED 2015 - AD302 - Responsive Application Development for XPages
IBM ConnectED 2015 - AD302 - Responsive Application Development for XPages
 
IBM ConnectED 2015 - MAS103 XPages Performance and Scalability
IBM ConnectED 2015 - MAS103 XPages Performance and ScalabilityIBM ConnectED 2015 - MAS103 XPages Performance and Scalability
IBM ConnectED 2015 - MAS103 XPages Performance and Scalability
 
XPages Application Layout Control - TLCC March, 2014 Webinar
XPages Application Layout Control - TLCC March, 2014 WebinarXPages Application Layout Control - TLCC March, 2014 Webinar
XPages Application Layout Control - TLCC March, 2014 Webinar
 
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
 
Speed up your XPages Application performance
Speed up your XPages Application performanceSpeed up your XPages Application performance
Speed up your XPages Application performance
 
MWLUG Session- AD112 - Take a Trip Into the Forest - A Java Primer on Maps, ...
MWLUG Session-  AD112 - Take a Trip Into the Forest - A Java Primer on Maps, ...MWLUG Session-  AD112 - Take a Trip Into the Forest - A Java Primer on Maps, ...
MWLUG Session- AD112 - Take a Trip Into the Forest - A Java Primer on Maps, ...
 
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
 
Presenting Data – An Alternative to the View Control
Presenting Data – An Alternative to the View ControlPresenting Data – An Alternative to the View Control
Presenting Data – An Alternative to the View Control
 

Similar to Webinar: From Frustration to Fascination: Dissecting Replication

From frustration to fascination: dissecting Replication
From frustration to fascination: dissecting ReplicationFrom frustration to fascination: dissecting Replication
From frustration to fascination: dissecting ReplicationBenedek Menesi
 
10135 a 07
10135 a 0710135 a 07
10135 a 07Bố Su
 
Bp106 Worst Practices Final
Bp106   Worst Practices FinalBp106   Worst Practices Final
Bp106 Worst Practices FinalBill Buchan
 
NFSv4 Replication for Grid Computing
NFSv4 Replication for Grid ComputingNFSv4 Replication for Grid Computing
NFSv4 Replication for Grid Computingpeterhoneyman
 
Engage2022 - Domino Admin Tips
Engage2022 - Domino Admin TipsEngage2022 - Domino Admin Tips
Engage2022 - Domino Admin TipsGabriella Davis
 
Preventing serversickness
Preventing serversicknessPreventing serversickness
Preventing serversicknessGabriella Davis
 
Clustered PHP - DC PHP 2009
Clustered PHP - DC PHP 2009Clustered PHP - DC PHP 2009
Clustered PHP - DC PHP 2009marcelesser
 
Engage 2020 - HCL Notes V11 Performance Boost
Engage 2020 - HCL Notes V11 Performance BoostEngage 2020 - HCL Notes V11 Performance Boost
Engage 2020 - HCL Notes V11 Performance BoostChristoph Adler
 
Engage 2020 - HCL Notes V11 Performance Boost
Engage 2020 - HCL Notes V11 Performance BoostEngage 2020 - HCL Notes V11 Performance Boost
Engage 2020 - HCL Notes V11 Performance Boostpanagenda
 
MongoDB Replication and Sharding
MongoDB Replication and ShardingMongoDB Replication and Sharding
MongoDB Replication and ShardingTharun Srinivasa
 
Management and Automation of MongoDB Clusters - Slides
Management and Automation of MongoDB Clusters - SlidesManagement and Automation of MongoDB Clusters - Slides
Management and Automation of MongoDB Clusters - SlidesSeveralnines
 
Elastic search from the trenches
Elastic search from the trenchesElastic search from the trenches
Elastic search from the trenchesVinícius Carvalho
 
IBM Connections – Managing Growth and Expansion
IBM Connections – Managing Growth and ExpansionIBM Connections – Managing Growth and Expansion
IBM Connections – Managing Growth and ExpansionLetsConnect
 
Stephan Ewen - Experiences running Flink at Very Large Scale
Stephan Ewen -  Experiences running Flink at Very Large ScaleStephan Ewen -  Experiences running Flink at Very Large Scale
Stephan Ewen - Experiences running Flink at Very Large ScaleVerverica
 
Syntergy upgrade open text content server with replicator - 7-3-2016
Syntergy   upgrade open text content server with replicator - 7-3-2016Syntergy   upgrade open text content server with replicator - 7-3-2016
Syntergy upgrade open text content server with replicator - 7-3-2016Vijay Sharma
 
Devry CIS 246 Full Course Latest
Devry CIS 246 Full Course LatestDevry CIS 246 Full Course Latest
Devry CIS 246 Full Course LatestAtifkhilji
 

Similar to Webinar: From Frustration to Fascination: Dissecting Replication (20)

From frustration to fascination: dissecting Replication
From frustration to fascination: dissecting ReplicationFrom frustration to fascination: dissecting Replication
From frustration to fascination: dissecting Replication
 
10135 a 07
10135 a 0710135 a 07
10135 a 07
 
Bp106 Worst Practices Final
Bp106   Worst Practices FinalBp106   Worst Practices Final
Bp106 Worst Practices Final
 
NFSv4 Replication for Grid Computing
NFSv4 Replication for Grid ComputingNFSv4 Replication for Grid Computing
NFSv4 Replication for Grid Computing
 
Engage2022 - Domino Admin Tips
Engage2022 - Domino Admin TipsEngage2022 - Domino Admin Tips
Engage2022 - Domino Admin Tips
 
Preventing serversickness
Preventing serversicknessPreventing serversickness
Preventing serversickness
 
Clustered PHP - DC PHP 2009
Clustered PHP - DC PHP 2009Clustered PHP - DC PHP 2009
Clustered PHP - DC PHP 2009
 
Engage 2020 - HCL Notes V11 Performance Boost
Engage 2020 - HCL Notes V11 Performance BoostEngage 2020 - HCL Notes V11 Performance Boost
Engage 2020 - HCL Notes V11 Performance Boost
 
Engage 2020 - HCL Notes V11 Performance Boost
Engage 2020 - HCL Notes V11 Performance BoostEngage 2020 - HCL Notes V11 Performance Boost
Engage 2020 - HCL Notes V11 Performance Boost
 
MongoDB Replication and Sharding
MongoDB Replication and ShardingMongoDB Replication and Sharding
MongoDB Replication and Sharding
 
Management and Automation of MongoDB Clusters - Slides
Management and Automation of MongoDB Clusters - SlidesManagement and Automation of MongoDB Clusters - Slides
Management and Automation of MongoDB Clusters - Slides
 
Elastic search from the trenches
Elastic search from the trenchesElastic search from the trenches
Elastic search from the trenches
 
IBM Connections – Managing Growth and Expansion
IBM Connections – Managing Growth and ExpansionIBM Connections – Managing Growth and Expansion
IBM Connections – Managing Growth and Expansion
 
Stephan Ewen - Experiences running Flink at Very Large Scale
Stephan Ewen -  Experiences running Flink at Very Large ScaleStephan Ewen -  Experiences running Flink at Very Large Scale
Stephan Ewen - Experiences running Flink at Very Large Scale
 
L2 lotus help
L2 lotus helpL2 lotus help
L2 lotus help
 
Lotus Domino Admin.
Lotus Domino Admin.Lotus Domino Admin.
Lotus Domino Admin.
 
6421 b Module-11
6421 b Module-116421 b Module-11
6421 b Module-11
 
Syntergy upgrade open text content server with replicator - 7-3-2016
Syntergy   upgrade open text content server with replicator - 7-3-2016Syntergy   upgrade open text content server with replicator - 7-3-2016
Syntergy upgrade open text content server with replicator - 7-3-2016
 
Devry CIS 246 Full Course Latest
Devry CIS 246 Full Course LatestDevry CIS 246 Full Course Latest
Devry CIS 246 Full Course Latest
 
Amazon Redshift Deep Dive
Amazon Redshift Deep Dive Amazon Redshift Deep Dive
Amazon Redshift Deep Dive
 

More from Howard Greenberg

January OpenNTF Webinar - Backup your Domino Server - New Options in V12
January OpenNTF Webinar - Backup your Domino Server - New Options in V12January OpenNTF Webinar - Backup your Domino Server - New Options in V12
January OpenNTF Webinar - Backup your Domino Server - New Options in V12Howard Greenberg
 
October OpenNTF Webinar - What we like about Domino/Notes 12, recommended new...
October OpenNTF Webinar - What we like about Domino/Notes 12, recommended new...October OpenNTF Webinar - What we like about Domino/Notes 12, recommended new...
October OpenNTF Webinar - What we like about Domino/Notes 12, recommended new...Howard Greenberg
 
September-2021 OpenNTF Webinar: Domino Online Meeting Integration (DOMI)
September-2021 OpenNTF Webinar: Domino Online Meeting Integration (DOMI)September-2021 OpenNTF Webinar: Domino Online Meeting Integration (DOMI)
September-2021 OpenNTF Webinar: Domino Online Meeting Integration (DOMI)Howard Greenberg
 
August OpenNTF Webinar - Git and GitHub Explained
August OpenNTF Webinar - Git and GitHub ExplainedAugust OpenNTF Webinar - Git and GitHub Explained
August OpenNTF Webinar - Git and GitHub ExplainedHoward Greenberg
 
July OpenNTF Webinar - HCL Presents Keep, a new API for Domino
July OpenNTF Webinar - HCL Presents Keep, a new API for DominoJuly OpenNTF Webinar - HCL Presents Keep, a new API for Domino
July OpenNTF Webinar - HCL Presents Keep, a new API for DominoHoward Greenberg
 
June OpenNTF Webinar - Domino V12 Certification Manager
June OpenNTF Webinar - Domino V12 Certification ManagerJune OpenNTF Webinar - Domino V12 Certification Manager
June OpenNTF Webinar - Domino V12 Certification ManagerHoward Greenberg
 
April, 2021 OpenNTF Webinar - Domino Administration Best Practices
April, 2021 OpenNTF Webinar - Domino Administration Best PracticesApril, 2021 OpenNTF Webinar - Domino Administration Best Practices
April, 2021 OpenNTF Webinar - Domino Administration Best PracticesHoward Greenberg
 
OpenNTF Webinar, March, 2021
OpenNTF Webinar, March, 2021OpenNTF Webinar, March, 2021
OpenNTF Webinar, March, 2021Howard Greenberg
 
February OpenNTF Webinar: Introduction to Ansible for Newbies
February OpenNTF Webinar: Introduction to Ansible for NewbiesFebruary OpenNTF Webinar: Introduction to Ansible for Newbies
February OpenNTF Webinar: Introduction to Ansible for NewbiesHoward Greenberg
 
January OpenNTF Webinar: 4D - Domino Docker Deep Dive
January OpenNTF Webinar: 4D - Domino Docker Deep DiveJanuary OpenNTF Webinar: 4D - Domino Docker Deep Dive
January OpenNTF Webinar: 4D - Domino Docker Deep DiveHoward Greenberg
 
December OpenNTF Webinar: The Volt MX LotusScript Toolkit
December OpenNTF Webinar: The Volt MX LotusScript ToolkitDecember OpenNTF Webinar: The Volt MX LotusScript Toolkit
December OpenNTF Webinar: The Volt MX LotusScript ToolkitHoward Greenberg
 
OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1
OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1
OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1Howard Greenberg
 
OpenNTF Webinar, October 2020
OpenNTF Webinar, October 2020OpenNTF Webinar, October 2020
OpenNTF Webinar, October 2020Howard Greenberg
 
August Webinar - Water Cooler Talks: A Look into a Developer's Workbench
August Webinar - Water Cooler Talks: A Look into a Developer's WorkbenchAugust Webinar - Water Cooler Talks: A Look into a Developer's Workbench
August Webinar - Water Cooler Talks: A Look into a Developer's WorkbenchHoward Greenberg
 
July 2020 OpenNTF Webinar - Hear the Latest from the User Groups!
July 2020 OpenNTF Webinar - Hear the Latest from the User Groups!July 2020 OpenNTF Webinar - Hear the Latest from the User Groups!
July 2020 OpenNTF Webinar - Hear the Latest from the User Groups!Howard Greenberg
 
OpenNTF Webinar, May 19, 2020
OpenNTF Webinar, May 19, 2020OpenNTF Webinar, May 19, 2020
OpenNTF Webinar, May 19, 2020Howard Greenberg
 
Dev112 let's calendar that
Dev112   let's calendar thatDev112   let's calendar that
Dev112 let's calendar thatHoward Greenberg
 
Bp101-Can Domino Be Hacked
Bp101-Can Domino Be HackedBp101-Can Domino Be Hacked
Bp101-Can Domino Be HackedHoward Greenberg
 

More from Howard Greenberg (20)

January OpenNTF Webinar - Backup your Domino Server - New Options in V12
January OpenNTF Webinar - Backup your Domino Server - New Options in V12January OpenNTF Webinar - Backup your Domino Server - New Options in V12
January OpenNTF Webinar - Backup your Domino Server - New Options in V12
 
BRPA November Meeting
BRPA November MeetingBRPA November Meeting
BRPA November Meeting
 
October OpenNTF Webinar - What we like about Domino/Notes 12, recommended new...
October OpenNTF Webinar - What we like about Domino/Notes 12, recommended new...October OpenNTF Webinar - What we like about Domino/Notes 12, recommended new...
October OpenNTF Webinar - What we like about Domino/Notes 12, recommended new...
 
September-2021 OpenNTF Webinar: Domino Online Meeting Integration (DOMI)
September-2021 OpenNTF Webinar: Domino Online Meeting Integration (DOMI)September-2021 OpenNTF Webinar: Domino Online Meeting Integration (DOMI)
September-2021 OpenNTF Webinar: Domino Online Meeting Integration (DOMI)
 
August OpenNTF Webinar - Git and GitHub Explained
August OpenNTF Webinar - Git and GitHub ExplainedAugust OpenNTF Webinar - Git and GitHub Explained
August OpenNTF Webinar - Git and GitHub Explained
 
July OpenNTF Webinar - HCL Presents Keep, a new API for Domino
July OpenNTF Webinar - HCL Presents Keep, a new API for DominoJuly OpenNTF Webinar - HCL Presents Keep, a new API for Domino
July OpenNTF Webinar - HCL Presents Keep, a new API for Domino
 
June OpenNTF Webinar - Domino V12 Certification Manager
June OpenNTF Webinar - Domino V12 Certification ManagerJune OpenNTF Webinar - Domino V12 Certification Manager
June OpenNTF Webinar - Domino V12 Certification Manager
 
April, 2021 OpenNTF Webinar - Domino Administration Best Practices
April, 2021 OpenNTF Webinar - Domino Administration Best PracticesApril, 2021 OpenNTF Webinar - Domino Administration Best Practices
April, 2021 OpenNTF Webinar - Domino Administration Best Practices
 
OpenNTF Webinar, March, 2021
OpenNTF Webinar, March, 2021OpenNTF Webinar, March, 2021
OpenNTF Webinar, March, 2021
 
February OpenNTF Webinar: Introduction to Ansible for Newbies
February OpenNTF Webinar: Introduction to Ansible for NewbiesFebruary OpenNTF Webinar: Introduction to Ansible for Newbies
February OpenNTF Webinar: Introduction to Ansible for Newbies
 
January OpenNTF Webinar: 4D - Domino Docker Deep Dive
January OpenNTF Webinar: 4D - Domino Docker Deep DiveJanuary OpenNTF Webinar: 4D - Domino Docker Deep Dive
January OpenNTF Webinar: 4D - Domino Docker Deep Dive
 
December OpenNTF Webinar: The Volt MX LotusScript Toolkit
December OpenNTF Webinar: The Volt MX LotusScript ToolkitDecember OpenNTF Webinar: The Volt MX LotusScript Toolkit
December OpenNTF Webinar: The Volt MX LotusScript Toolkit
 
OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1
OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1
OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1
 
OpenNTF Webinar, October 2020
OpenNTF Webinar, October 2020OpenNTF Webinar, October 2020
OpenNTF Webinar, October 2020
 
August Webinar - Water Cooler Talks: A Look into a Developer's Workbench
August Webinar - Water Cooler Talks: A Look into a Developer's WorkbenchAugust Webinar - Water Cooler Talks: A Look into a Developer's Workbench
August Webinar - Water Cooler Talks: A Look into a Developer's Workbench
 
July 2020 OpenNTF Webinar - Hear the Latest from the User Groups!
July 2020 OpenNTF Webinar - Hear the Latest from the User Groups!July 2020 OpenNTF Webinar - Hear the Latest from the User Groups!
July 2020 OpenNTF Webinar - Hear the Latest from the User Groups!
 
Open ntf 2020-jun
Open ntf 2020-junOpen ntf 2020-jun
Open ntf 2020-jun
 
OpenNTF Webinar, May 19, 2020
OpenNTF Webinar, May 19, 2020OpenNTF Webinar, May 19, 2020
OpenNTF Webinar, May 19, 2020
 
Dev112 let's calendar that
Dev112   let's calendar thatDev112   let's calendar that
Dev112 let's calendar that
 
Bp101-Can Domino Be Hacked
Bp101-Can Domino Be HackedBp101-Can Domino Be Hacked
Bp101-Can Domino Be Hacked
 

Recently uploaded

Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 

Recently uploaded (20)

Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 

Webinar: From Frustration to Fascination: Dissecting Replication

  • 1. Ytria and TLCC present: From Frustration to Fascination: Dissecting Replication The Webinar will start at 10:30 AM New York Time! 1
  • 2. From Frustration to Fascination: Dissecting Replication 2 Your Hosts Today: Howard Greenberg TLCC @TLCCLtd Rob Evangelista TLCC
  • 3. TLCC Courses and Services • The Leader in Notes and Domino Training since 1997 • Self Paced Distance Learning Courses for Notes/Domino – XPages, Development, and Administration (user too!) • OnSite Private Classes • Mentoring/Consulting Services • Free demo courses – Intro. To XPages Development – Application Development 1 3
  • 4. TLCC Admin Courses 4  Notes Domino 9 System Administration 1 and 2  Notes Domino 9 System Administration Update  Notes Domino 8.5 System Administration 1 and 2  Notes Domino 8.5 System Administration Update More information on TLCC courses can be found at: www.tlcc.com
  • 5. Asking Questions 5 Q & A at the end! Type in your questions as they come up
  • 6. Your Presenters Today: 6 Ben Menesi Ytria Kim Greene Kim Greene Consulting, Inc. @iSeriesDomino@BenMenesi
  • 7. From Frustration to Fascination: Dissecting Replication Ben Menesi & Kim Greene @BenMenesi@iSeriesDomino
  • 8. Kim Greene  Owner of Kim Greene Consulting, Inc.  15+ years of experience with Domino and 20+ years of experience with IBM i (AS/400, iSeries)  Services include System & Application performance optimization, Administration, upgrades, health, performance, security etc. checks, migrations, custom development, enterprise integration  Blog: www.bleedyellow.com/blogs/dominodiva @iSeriesDomino http://www.kimgreene.com Speaker
  • 9. Ben Menesi  Chief Product Officer at Ytria, Inc.  IBM Notes Administration and Development for various enterprise IBM customers  Wearing both Admin and Dev hats  Speaker at numerous LUG conferences such as IBM Connect, MWLUG, NLLUG, ICON UK, BLUG, etc…  IBM Champion 2014 for Collaboration Solutions  Blog: http://www.techlab.ytria.com @BenMenesi http://www.ytria.com Speaker
  • 10. Brief Company Description  Advanced IBM Business Partner founded in 1999 in Montreal, Canada  EZSuite portfolio: 10 products for Notes Administration & Development  Released our newest product, replicationEZ in September 2012  Idea is to manage all about replication -> loads of testing, tons of interesting stuff learned in the process.  Promise: Not a Marketing session  Let’s cut to the chase! http://www.ytria.com Ytria
  • 11. Replicator Server task Connection documents Cluster Replication Quick Introduction to Replication What happens when two databases replicate? Security considerations, selective replication Document comparison, possible scenarios, problems Best Practices, stories, myths, mistakes, geek fun stuff Replication is a huge subject, and is impossible to exhaustively cover in an hour. So we’ll mostly be discussing the fun stuff! Agenda
  • 12. 1.) Replication related tasks 2.) Connection documents 3.) Cluster Replication Quick Introduction
  • 13. 1.) Replication related tasks 2.) Connection documents 3.) Cluster Replication Quick Introduction
  • 14. REPLICA  Responsible for synchronizing source database with its replicas  One instance loaded by default  To load multiple replica tasks:  Use REPLICATORS=n in notes.ini  ‘load replica’ at Domino console  Replicator sits idle until connection document (or console command) triggers it  Replica task = muscle  Connection document = brain  Performs cluster replication Replication Server Task CLREPL
  • 15. Types of Replication  PULL-PUSH: Server A contacts server B and PULLS new and modified information. Then it PUSHES all its new and modified information to server B.  Server A does all the work  PULL-PULL: Server A contacts server B and PULLS new and modified info. Then Server B contacts server A and does the same.  Work is shared by servers  PUSH-ONLY: Server A contacts server B and PUSHES all new and modified info.  No updates received  PULL ONLY: Server A contacts server B and PULLS any new and modified info.  No updates sent A B A B A B A B The Replicator Server Task
  • 16. 1.) Replication related tasks 2.) Connection documents 3.) Cluster Replication Quick Introduction
  • 17. Digesting connection documents  Connection documents are definitions for server to server connections  Control replication and mail routing  Specify which databases, folders to replicate (or not!) and when  Digesting a connection document  Source Server  Server doing work, REPLICA task responsible, connects to SERVER task on server Connection Documents
  • 18. Digesting connection documents  What to replicate  Replication type and files / directories to replicate, and avoid  Tip: Are you replicating names.nsf, admin4.nsf and events4.nsf throughout the domain??  Replication time limit  Tip: Set the replication time limit less than the repeat interval Connection Documents
  • 19. Digesting connection documents  Repeat interval  Starts when previous replication session ends  Tip: Easier to troubleshoot if using specific times Connection Documents
  • 20. Interesting stuff  How do you know where & how a given DB is supposed to replicate?  Method 1  Copy connection documents view and add a new column to display the ‘filenames’ item in the first categorized column Connection Documents
  • 21. Interesting stuff  How do you know where & how a given DB is supposed to replicate?  Method 2  Use a 3rd party solution such as replicationEZ Connection Documents
  • 22. • Customer example – Shipping company with 40+ servers on cruisers – Replicating via satellite – Let’s look at one of their business critical apps to see how it replicates – Result: EACH server replicating with 40-1 servers!!! – Proper setup and overview of connection documents = Save ~ 95% on bandwidth Connection Documents
  • 24. 1.) Replication related tasks 2.) Connection documents 3.) Cluster Replication Quick Introduction
  • 25. Quick overview of clustering  What is a domino cluster?  Collection of 2 to 6 Domino servers (6 is a recommended max) to provide high availability and / or workload balancing  How does it work?  Each server contains replicas of the apps to be clustered  If user attempts to access a clustered application and it’s not available, Notes opens a replica of the DB on a different cluster server  Domino continuously synchronizes databases  CLREPL server task  Requirements  All cluster mates share same Domino Directory  A given server can only be a member of one cluster at a time Domino Clustering
  • 26. Important regarding clustering  Clustering is In Memory replication  As changes occur they are queued and sent to the cluster server(s)  If server goes down, changes can be lost  Always use traditional replication as backup  Control with connection documents  Streaming cluster replication  First introduced in Domino 8.0, enhanced cluster replication  Event-drive, changes pushed to cluster mates as they happen Domino Clustering
  • 27. Important regarding clustering  Tip: Ping server using NSPINGSERVER API Call  Much faster (3x according to our testing) than any other method in LS  Returns if server is busy (ERR_SERVER_UNAVAILABLE)  If server is restricted (ERR_SERVER_RESTRICTED)  pdwIndex – Availablity index for server (0 if not participating in load balancing)  phList – Text list containing cluster name & all cluster mates Domino Clustering
  • 28. 1.) Check if access rights sufficient 2.) Check replication history 3.) Build document list for processing 4.) Apply selection formulas 5.) Compare documents 6.) Make changes When Databases Replicate
  • 29. 1.) Check if access rights sufficient 2.) Check replication history 3.) Build document list for processing 4.) Apply selection formulas 5.) Compare documents 6.) Make changes When Databases Replicate
  • 30. Gotta have access!  Server level security considerations  Controlled in ‘Security’ section of the Server document  If server isn’t listed, replication will fail or new replica won’t create  Database level security considerations  Check the ACL settings  Make sure “source” server has access to destination database and vice versa Access Considerations
  • 31.  Tip 1:  If you can’t create replicas, but are allowed to create new databases on a given server, you can create an empty DB and change its Replica ID  You got around your Notes environment setup (True Story )  Tip 2:  If you create a new replica for a huge database manually, you might want to specify a fake Replication formula so that once it’s evaluated no documents will be transferred. This will create a “Replica Stub”. Then delete the formula and use the “Replicate” server task to synchronize the databases.  Tip 3:  Access to CP command at OS level overrides Notes security Who can create a new replica
  • 32. It’s replication time!  Building list of databases to process  ACLs are used as a filter  No access to database = no replication  Replication of each database with matching Replica ID  More on this later The Replicator Server Task
  • 33. 1.) Check if access rights sufficient 2.) Check replication history 3.) Build document list for processing 4.) Apply selection formulas 5.) Compare documents 6.) Make changes When Databases Replicate
  • 34. How does it work?  When replicator is about to sync two DBs it looks at the history to find out what happened since their last “talk” A B PUSH: Server A checks History in “Local” database (on server A) A B PULL: Server A checks History in “Remote” database (on server B) A B PULL & PUSH: Server A checks History in both “Local” and “Remote” DBs Replication History
  • 35. If there is no replication history or it’s disregarded  Calculation based on all documents: cleaner BUT longer replication When is the replication History disregarded?  If access rights have changed  If Replication Formulas changed Watch out!  If local <> server replication, no trace in server Replication History  If no changes detected = no trace in replication history  How come my DB that’s supposed to replicate every 5 minutes hasn’t replicated in 1.5 hours?? Replication History
  • 36. 1.) Check if access rights sufficient 2.) Check replication history 3.) Build document list for processing 4.) Apply selection formulas 5.) Compare documents 6.) Make changes When Databases Replicate
  • 37. Managing selective replication using readers fields  When building document list, basic Notes security applies  Server needs access to documents  If this is not true, the server won’t see document  (Much like how servers disregard replicating apps they have no access to)  This is something you can play with. It’s actually a technique that a lot of folks prefer over using replication formulas.  Make sure servers involved in replication are in readers fields Document Level Security
  • 38. • Customer example – security application – Clustered server environment • 2 servers – Database on primary server contained documents not in replica on secondary server • Not all documents impacted – Document properties revealed Readers field • LocalDomainServers not present in documents not replicating to secondary server Document Level Security
  • 39. 1.) Check if access rights sufficient 2.) Check replication history 3.) Build document list for processing 4.) Apply selection formulas 5.) Compare documents 6.) Make changes When Databases Replicate
  • 40. What are Selective Replication Formulas?  Selective Replication Formulas are one way to replicate a subset of your database contents  Use case  If you use multiple replicas on the same server (which you probably shouldn’t) you want to use replication formulas instead of readers fields Where do I find them?  It’s pretty tough to *REALLY* oversee them  Some think this is a database level setting, but you can have as many scenarios as you’d like and there are rules you have to consider Selective Replication Formulas
  • 41. Correct Setup  Multiple possible scenarios for each server to server relationship  It’s best to create selective replication formulas in the receiver database Selective Replication Formulas A Receiver: B Sender: A B Receiver: B Sender: -ALL-
  • 42. Incorrect Setup  By default, selective replication formulas are NOT set to replicate!  It’s not advised to use database B to setup rules for what database “A” is supposed to receive! Selective Replication Formulas A Won’t work unless replicated! B Receiver: A Sender: B Receiver: A Sender: -ALL-
  • 43. What can we replicate using formulas? Selective Replication Formulas Do NOT change this field! Won’t receive replication formulas from other replicas by default!
  • 44. Do Replication Formulas always take affect?  NO!  Cluster Replication will DISREGARD any replication formulas in place  It’s #1 target is to ensure the DBs taking part in cluster replication are 100% the same  TIP: Don’t use selective replication formulas for databases that are set to take part in cluster replication  Scheduled replication will use selective replication formulas  CLREPL will disregard them  Result: Confusion, increased processing time (+ numerous view index updates!) Selective Replication Formulas
  • 45. • Customer example – documents not replicating to server – 3 servers in a cluster – Some documents not replicating from user’s local replica to replica on primary server – Documents present in replicas on 2 backup servers – Culprit found! Selection Formulas
  • 46. 1.) Check if access rights sufficient 2.) Check replication history 3.) Build document list for processing 4.) Apply selection formulas 5.) Compare documents 6.) Make changes When Databases Replicate
  • 47. Document Identifiers & Properties  Document Universal ID  16-byte identifier that uniquely identifies a document across replicas  @DocumentUniqueID in formulas  NotesDocument.UniversalID in LS  Note ID  Uniquely identifies documents in ONE notes database  @NoteID in formulas  NotesDocument.NoteID in LS Anatomy of Documents and Items
  • 48. Document Identifiers & Properties  Sequence Number  Both documents and items have them  Increases every time a document is saved  Devs, careful with ctrl+s!  The doc.Sequence number = highest item’s sequence number  Ways to get:  @Elements($Revisions)  Risky because the limit might have been hit, and in this case it’s incorrect  NSFNoteGetInfo API Call: SQ number part of the returned header information  Ytria scanEZ Anatomy of Documents and Items
  • 49. • Customer example – sequence number – Scenario • Field value constantly overwritten upon change at 9PM at night • Analysis of document evening prior – Item sequence number = 241 • Analysis of document next AM – Item sequence number = 2 • How can this be possible? – Item Sequence number resets • Be careful with document save frequency! Anatomy of Documents and Items
  • 50. Document Identifiers & Properties  $Revisions  Standard Document field that contains 8 byte entries for each time a doc has been saved.  CAUTION! There can be a DB level limit here.  $Updatedby  Stores a list of editors (Canonical names = > 40 bytes). First entry is usually creator, but if DB limit hit, won’t be accurate.  Computed when composed created by field is advised.  BEWARE! Not necessarily in sync with $Revisions!  If there are multiple modifications by the same person after each other, it’ll only record ONE entry. Anatomy of Documents and Items
  • 51. Document Identifiers & Properties  $UpdatedBy item: No duplicate entries when same person saves document multiple times in a row (space saving considerations) Anatomy of Documents and Items
  • 52. Document Identifiers & Properties  Creation date  @Created in formulas, NotesDocument.Created in LS  The initial creation date (more on this later)  Created Initially & Added in this file  Sooo important! Two different date stamps  @Created in formulas and NotesDocument.Created  Returns initial creation timestamp  Added in this file  When the document was created in this file Anatomy of Documents and Items
  • 53. Document Identifiers & Properties  Difference between the Initial Creation & Added in this file = time it took to replicate document  This time date value can ONLY be retrieved using the AddedToThisFile API call, and not from Formulas – Customer Example  Created Initially > Added in this file  So how can this happen?  Tip: Ensure servers replicating are getting their time from the same server!! Anatomy of Documents and Items
  • 54. What are Deletion Stubs?  Deletion Stub definition  When a document is deleted from the database, a light place holder is created that contains little information  In case enabled, Soft Deletions are an interim step in this process  Soft Deletions have a different class, and are only different from deletion stubs because they actually do contain all their items  What do deletion stubs contain?  Document UNID  Creation Time (Initial)  Deletion Time (Both initial & in this file)  Sequence number Deletion Stubs
  • 55. How Long Are They Kept in the DB?  By default they will be deleted after 90 days  Can be changed on Space Savers tab of replication settings window. (Not very obvious, but field value takes affect even if removal is not checked)  Note: Purging of deletion stubs interval will be the 1/3rd of this value!  In the default case this means it’ll happen every 30 days, which will possibly leave you with deletion stubs that are kept in the database for <120 days! Deletion Stubs
  • 56. • Customer example – Scenario: • 2 servers in a cluster • Replica of mail files on secondary server larger than on primary server – Quotas being blown on secondary server when users failed over • Same number of documents in each database • Only difference found was number of deletion stubs • Purge happens on database open – Replica on secondary server contained thousands more deletion stubs than replica on primary server Deletion Stubs
  • 57. How to locate to them?  NOT displayed in views (in fact, they aren’t even documents – different class)  TIP: When using GetdocumentbyUNID in LS, object returned by a Deletion Stub will raise an error when trying to work with it  doc is nothing is NOT enough protection here!  When getting document object, once “Is Nothing” check has been done, you should do an “ If TestDoc.Size = 0 Then” type check to handle any errors due to deletion stubs.  Favorite comment below an article regarding this: Deletion Stubs
  • 58. How to locate to them?  How to get their sequence number?  Only way is to use the Notes API  Both NSFDbGetNoteInfo and NSFDbGetNoteInfoByUNID calls return the note header without attempting to open it, i.e. will let you gather the sequence number too Deletion Stubs
  • 59. How to locate to them?  Use scanEZ (using the Lite version this is free!) Deletion Stubs
  • 60. How to remove them?  Reset Purge interval  Unless the customer has a tool to get rid of deletion stubs manually (like scanEZ), changing the database replication settings -> space savers, and setting the parameter ‘Remove documents not modified in the last (days)’ to 0, closing and reopening the database clears the deletion stubs  The TRICK, is to NOT put a checkmark next to ‘Remove documents modified in the last (days)’ as that will delete documents from the database that were not intended to be deleted!!!  Use DataBase Maintenance Tool (DBMT) in Domino 9.x  Clearing deletion stubs programmatically ONLY works through the C API Deletion Stubs
  • 61. Let’s recap: how documents are compared  If replication History is present  Documents are compared where  Last Modified Date was later than Last Replication history describing the last time the two DBs talked  If replication History has been cleared or does not exist  All notes will be compared based on their UNIDs  Results in a longer replication time  ‘Cleaner’ replication  Very helpful for solving replication issues  Tip: use scanEZ’s Replication Auditor to imitate replication  Will look behind the curtain (even if replication history present) and calculate what would happen if replication would happen with no replication History present Comparing Documents
  • 62. Find all differences between replicas scanEZ Replication Auditor
  • 63. How are documents compared? Comparing Documents Note doesn’t exist in one of the databases (or it’s a deletion stub) Document / Profile Document class note exists in both databases Design Note (or deletion stub) exists in both databases A B A B A  There are three major scenarios:
  • 64. 1.) Design note or deletion stub Comparing Documents Design Note (or deletion stub) exists in both databases A B  Sequence Number & Initial Modification time decides which note ‘wins’  NO Conflict created, even if both notes modified!  Devs: careful with Ctrl+S!
  • 65. 2.) Document or Profile document Comparing Documents Document / Profile Document class note exists in both databases  If Sequence number is the same then  Are the Initial Modification Dates the same?  Yes: Nothing to replicate  No: Possible conflict (according to conflict handling options on form)  If Sequence number NOT the same then  Find last Sync Date from $Revisions  Either conflict or simple update  Let’s take a closer look! A B
  • 66. 2.1) Document or Profile document: Update Comparing Documents A B • Sequence Nr: 4 • Init. Modification: 24/09/2013 10:11 $Revisions 24/09/2013 10:11 24/09/2013 09:14 23/09/2013 21:50 20/09/2013 15:35 $Revisions 24/09/2013 09:14 23/09/2013 21:50 20/09/2013 15:35 • Sequence Nr: 3 • Init. Modification: 24/09/2013 09:14  Result: B is updated
  • 67. 2.1) Document or Profile document: Conflict Comparing Documents  Result: Conflict created with A as winner A BA B • Sequence Nr: 4 • Init. Modification: 24/09/2013 10:11 • Sequence Nr: 3 • Init. Modification: 24/09/2013 11:14 $Revisions 25/09/2013 10:11 24/09/2013 09:14 23/09/2013 21:50 20/09/2013 15:35 $Revisions 24/09/2013 11:14 23/09/2013 21:50 20/09/2013 15:35
  • 68. 3.) Note doesn’t exist or deletion stub in one DB Comparing Documents Note doesn’t exist in one of the databases (or it’s a deletion stub)  If doc / design doesn’t exist in the other database, it is created.  In case it is a deletion stub, creation is silent  If doc / design is a deletion stub in the other database then it’ll be deleted  UNLESS: document has larger sequence number, and beats deletion stub  Deleted document comes back A
  • 69. 1.) Check if access rights sufficient 2.) Check replication history 3.) Build document list for processing 4.) Apply selection formulas 5.) Compare documents 6.) Changes made When Databases Replicate
  • 70. Replication / save conflicts Ghost documents What can go wrong?
  • 71. What are replication / save conflicts?  Save conflicts  Created when 2 or more users edit the same document at the same time in the same replica  Replication conflicts  Created when 2 or more users edit the same document and save the changes in different replicas between replications  What is the parent document?  Parent document = winner. No change on the backend items.  What is/are the conflict document(s)?  Response document ($Ref item appended) plus an empty text type item named $Conflict Replication or Save Conflicts Parent Conflict
  • 72. What are replication / save conflicts? How do I prevent conflicts from being created? What’s the best way to solve them? How do I find all conflicts? Anything else to watch out for? Is there any way to handle how they are created?  We might be asking ourselves the following questions… Replication or Save Conflicts
  • 73. How do I prevent them from being created?  There are many-many different tactics and best practices  You should know of a few general rules...  ... And a few specifics about save or replication conflicts  Prevent Conflicts in general  Manage author items  Dynamic author list  Ensure only a limited subset of people are authorized to edit documents Replication or Save Conflicts
  • 74. How do I prevent them from being created?  Prevent Save Conflicts  Document locking  Avoid the LS doc.computewithform()  Avoid doc.save() in querysave and postsave form events without closing form  Prevent Replication Conflicts  Ensure scheduled agents don’t run on both servers (Ytria agentEZ or agent aggregator thanks to Thomas Lindberg)  Replicate more often, consider clustering  Keep number of replicas to a minimum  Avoid mass-updating docs unless necessary! Replication or Save Conflicts
  • 75. • Customer example  scanEZ indicates conflicts were found in the NAB  Connection documents view does not show any conflicts ... UH-OH!  Don’t let the view fool you!  61/104 Views in the 8.5.3 NAB hide Conflicts!  Tip: There is a Conflicts folder How do we find them?
  • 76. What to watch out for?  DON’T let your users edit Conflict docs! They’ll turn into duplicates which is definitely not something we want.  Protect your conflicts: Either hide them from the views, or use the QueryModeChange event.  Below an example of how to do this: Sub QueryOpen(Source As Notesuidocument, Continue As Variant) Dim doc As NotesDocument Set doc=source.Document If doc.Hasitem("$Conflict") Then Msgbox "This is a conflict document. Editing conflicts is not permitted in this database", 16, Error continue=False End If End Sub Don’t let them duplicate
  • 77. What’s the best way to solve conflicts?  It’s easy! Delete conflict document!  Seriously. Three scenarios (but you’ll need to compare docs in any case) 1.) Winner document contains all necessary information and loser is expendable 2.) Loser (conflict) document contains all the information 3.) Both loser and winner documents contain critical information How do we solve them
  • 78. What’s the best way to solve conflicts? 1.) Winner document contains all necessary information and loser is expendable.  This is the simplest possible scenario: winner (parent) document does not contain any items to indicate it’s part of a conflict How do we solve them Parent Conflict  It is safe to remove conflict document
  • 79. What’s the best way to solve conflicts? 2.) Loser document contains all the necessary information  This is where it gets a little tricky: conflict document contains $Ref and $Conflict items: if parent is deleted, conflict becomes an orphan and it’ll be hard to locate it.  In this case, consider using script found at breakingpar.com to turn loser into winner  Essentially this means you get rid of the $Conflict and $Ref items before removing the winner (=parent) How do we solve them Parent Conflict  Remove $Ref and $Conflict items  Delete parent document
  • 80. What’s the best way to solve conflicts? 3. Both winner and loser contain necessary information and need to be merged.  Several solutions out there, but scanEZ is just the BEST way to go about it.  You have to compare all conflicts with the parent document (Yes, there might be more) and ideally – select the values you’d like to keep. How do we solve them Parent Conflict  Compare documents and merge item values into parent before deleting conflict
  • 81. Ytria’s scanEZ How do we solve them
  • 82. Replication / save conflicts Ghost documents What can go wrong?
  • 83. What are they?  Two kinds of issues referred to as “GHOSTS” Ghosts / Resurrected Documents Replication Ghosts Resurrected Ghost Documents
  • 84. What are they?  Two kinds of issues referred to as “GHOSTS” Ghosts / Resurrected Documents Replication Ghosts Resurrected Ghost Documents
  • 85. What if it already happened?  Use the Initial creation & created in this file dates  Like we said, the second one is quite tricky to get. If you implement the API Call, you could have an agent stamp all docs using a special field, so you can display the following in a view:  Initial creation  Creation in this file  Difference between these two dates  ... And categorize by something like @If(Createdinthisfile- @Created>Delstublifetime;”Problem”;”OK”) Ghosts / Resurrected Documents Initial Creation Created in this file (?) DB Created Amount of time > than Del. Stub Lifetime?
  • 86. What if it already happened?  Use scanEZ’s Post Replication Auditor Ghosts / Resurrected Documents
  • 87. Preventive actions – PIRC  Use the PIRC (Purge Interval Replication Control) feature  New in 8.5.3  Prevents documents older than deletion stub lifetime from replicating into DB  Tip:  If have docs older than deletion stub lifetime, replicate them first and then enable PIRC  Optionally: use replicator with –NOPIRC to include documents that PIRC won’t let replicate  You WANT to use PIRC! Ghosts / Resurrected Documents
  • 88. • Customer example – User reported in early May thousands (34,000+) documents deleted months prior reappeared – Application had been PIRC enabled on all 3 servers in cluster – Primary server moved to new box • New replicas created via AdminP – BEWARE: PIRC database setting doesn’t carry forward when creating new database replica Ghosts / Resurrected Documents
  • 89. Ytria’s multi-server replication tool  Find out when and how replication happened  Load & analyze all replicas across all servers  Visually understand how replication happened  Immediately find databases with document, acl or agent inconsistencies Ytria ReplicationEZ
  • 90. Questions???? 7 Use the Q&A pane in WebEx to ask questions We will answer your questions verbally
  • 91. Upcoming Events: 5/13 – TLCC XPages Webinar 5/14 – Ytria Webinar on replicationEZ 6/16-17 – Social Connections in Prague 8/27-29 – MWLug in Grand Rapids, MI Question and Answer Time! 8 Ytria Questions? customer@ytria.com 888-987-4299 TLCC Questions? howardg@tlcc.com rob@tlcc.com 888-241-8522 or 561-953-0095 Howard Greenberg @TLCCLtd @Ytria @BenMenesi @iSeriesDomino Rob Evangelista Kim Greene Ben Menesi