SlideShare a Scribd company logo
1 of 37
Download to read offline
When Bad Things
Happen to Good Data:
Understanding Anti-Entropy in
Cassandra
Jason Brown
@jasobrown jasedbrown@gmail.com
About me
•  Senior Software Engineer @ Netflix
•  Apache Cassandra committer
•  E-Commerce Architect, Major League
Baseball Advanced Media
•  Wireless developer (J2ME and BREW)
Maintaining consistent state is hard in a
distributed system
CAP theorem works against you
Inconsistencies creep in
•  Node is down
•  Network partition
•  Dropped mutations
•  Process crash before commit log flush
•  File corruption
Cassandra trades C for AP
Anti-Entropy Overview
•  write time
o  tunable consistency
o  atomic batches
o  hinted handoff
•  read time
o  consistent reads
o  read repair
•  maintenance time
o  node repair
Write Time
Cassandra Writes Basics
•  determine all replica nodes in all DCs
•  send to replicas in local DC
•  send one replica node in remote DCs,
o  it will forward to peers
•  all respond back to original coordinator
Writes - request path
Writes - response path
Writes - Tunable consistency
Coordinator blocks for specified count of
replicas to respond
•  consistency level
o  ALL
o  EACH_QUORUM
o  LOCAL_QUORUM
o  ONE / TWO / THREE
o  ANY
Hinted handoff
Save a copy of the write for down nodes, and
replay later
hint = target replica + mutation data
Hinted handoff - storing
•  on coordinator, store a hint for any nodes not
currently 'up'
•  if a replica doesn't respond within
write_request_timeout_in_ms, store a hint
•  max_hint_window_in_ms - maximum
amount of time a dead host will have hints
generated.
Hinted handoff - replay
•  try to send hints to nodes
•  runs every ten minutes
•  multithreaded (as of 1.2)
•  throttable (kb per second)
Hinted Handoff - R2 down
R2 down, coordinator (R1) stores hint
Hinted handoff - replay
R2 comes back up, R1 plays hints for it
What if coordinator dies?
Atomic Batches
•  coordinator stores incoming mutation to two
peers in same DC
o  deletes from peers on successful completion
•  peers will replay the batch if not deleted
o  runs every 60 seconds
•  with 1.2, all mutates use atomic batch
Read Time
Cassandra Reads - setup
•  determine endpoints to invoke
o  consistency level vs. read repair
•  first data node to send back full data set,
other nodes only return a digest
•  wait until the CL number of nodes to return
LOCAL_QUORUM read
Pink nodes contain requested row key
Consistent reads
•  compare the digests of returned data sets
•  if any mismatches, send request again to
same CL data nodes.
o  this time no digests, full data set
•  compare the full data sets, send updates to
out of date replicas
•  block until those fixes are responded to
•  return data to caller
Read Repair
•  synchronizes the client-requested data
amongst all replicas
•  piggy-backs on normal reads, but waits for
all replicas to respond asynchronously
•  then, just like consistent reads, compares
the digests, and fix if needed
Read Repair
green lines = LOCAL_QUORUM nodes
blue lines = nodes for read repair
Read Repair - configuration
•  setting per column family
•  percentage of all calls to CF
•  Local DC vs. Global chance
Read repair fixes data that is actually
requested,
... but what about data that isn't requested?
Node Repair - introduction
•  repairs inconsistencies across all replicas for
a given range
•  nodetool repair
o  repairs the ranges the node contains
o  one of more column families (within the same
keyspace)
o  can choose local datacenter only (c* 1.2)
•  should be part of std operations
maintenance for c*, esp if you delete data
o  ensures tombstones are propagated, and avoid
resurrected data
•  repair is IO and CPU intensive
Node Repair - cautions
Node Repair - details 1
•  determine peer nodes with matching ranges
•  triggers a major (validation) compaction on
peer nodes
o  read and generate hash for every row in CF
o  add result to a Merkle Tree
o  return tree to initiator
Node Repair - details 2
•  initiator awaits trees from all nodes
•  compares each tree to every other tree
•  if any differences exist, two nodes are
exchange the conflicting ranges
o  these ranges get written out as new, local sstables
'ABC' node is repair initiator
Nodes sharing range A
Nodes sharing range B
Nodes sharing range C
Five nodes participating in repair
Anti-Entropy wrap-up
•  CAP Theorem lives, tradeoffs must be made
•  C* contains processes to make diverging
data sets consistent
•  Tunable controls exist at write and read
times, as well on-demand
Thank you!
Q & A time
@jasobrown
Notes from Netflix
•  carefully tune RR_chance
•  schedule repair operations
•  tickler
•  store more hints vs. running repair

More Related Content

More from DataStax Academy

Data Modeling for Apache Cassandra
Data Modeling for Apache CassandraData Modeling for Apache Cassandra
Data Modeling for Apache CassandraDataStax Academy
 
Production Ready Cassandra
Production Ready CassandraProduction Ready Cassandra
Production Ready CassandraDataStax Academy
 
Cassandra @ Netflix: Monitoring C* at Scale, Gossip and Tickler & Python
Cassandra @ Netflix: Monitoring C* at Scale, Gossip and Tickler & PythonCassandra @ Netflix: Monitoring C* at Scale, Gossip and Tickler & Python
Cassandra @ Netflix: Monitoring C* at Scale, Gossip and Tickler & PythonDataStax Academy
 
Cassandra @ Sony: The good, the bad, and the ugly part 1
Cassandra @ Sony: The good, the bad, and the ugly part 1Cassandra @ Sony: The good, the bad, and the ugly part 1
Cassandra @ Sony: The good, the bad, and the ugly part 1DataStax Academy
 
Cassandra @ Sony: The good, the bad, and the ugly part 2
Cassandra @ Sony: The good, the bad, and the ugly part 2Cassandra @ Sony: The good, the bad, and the ugly part 2
Cassandra @ Sony: The good, the bad, and the ugly part 2DataStax Academy
 
Standing Up Your First Cluster
Standing Up Your First ClusterStanding Up Your First Cluster
Standing Up Your First ClusterDataStax Academy
 
Real Time Analytics with Dse
Real Time Analytics with DseReal Time Analytics with Dse
Real Time Analytics with DseDataStax Academy
 
Introduction to Data Modeling with Apache Cassandra
Introduction to Data Modeling with Apache CassandraIntroduction to Data Modeling with Apache Cassandra
Introduction to Data Modeling with Apache CassandraDataStax Academy
 
Enabling Search in your Cassandra Application with DataStax Enterprise
Enabling Search in your Cassandra Application with DataStax EnterpriseEnabling Search in your Cassandra Application with DataStax Enterprise
Enabling Search in your Cassandra Application with DataStax EnterpriseDataStax Academy
 
Advanced Data Modeling with Apache Cassandra
Advanced Data Modeling with Apache CassandraAdvanced Data Modeling with Apache Cassandra
Advanced Data Modeling with Apache CassandraDataStax Academy
 
Apache Cassandra and Drivers
Apache Cassandra and DriversApache Cassandra and Drivers
Apache Cassandra and DriversDataStax Academy
 
Getting Started with Graph Databases
Getting Started with Graph DatabasesGetting Started with Graph Databases
Getting Started with Graph DatabasesDataStax Academy
 
Cassandra Data Maintenance with Spark
Cassandra Data Maintenance with SparkCassandra Data Maintenance with Spark
Cassandra Data Maintenance with SparkDataStax Academy
 
Analytics with Spark and Cassandra
Analytics with Spark and CassandraAnalytics with Spark and Cassandra
Analytics with Spark and CassandraDataStax Academy
 
Make 2016 your year of SMACK talk
Make 2016 your year of SMACK talkMake 2016 your year of SMACK talk
Make 2016 your year of SMACK talkDataStax Academy
 
Client Drivers and Cassandra, the Right Way
Client Drivers and Cassandra, the Right WayClient Drivers and Cassandra, the Right Way
Client Drivers and Cassandra, the Right WayDataStax Academy
 

More from DataStax Academy (20)

Data Modeling for Apache Cassandra
Data Modeling for Apache CassandraData Modeling for Apache Cassandra
Data Modeling for Apache Cassandra
 
Coursera Cassandra Driver
Coursera Cassandra DriverCoursera Cassandra Driver
Coursera Cassandra Driver
 
Production Ready Cassandra
Production Ready CassandraProduction Ready Cassandra
Production Ready Cassandra
 
Cassandra @ Netflix: Monitoring C* at Scale, Gossip and Tickler & Python
Cassandra @ Netflix: Monitoring C* at Scale, Gossip and Tickler & PythonCassandra @ Netflix: Monitoring C* at Scale, Gossip and Tickler & Python
Cassandra @ Netflix: Monitoring C* at Scale, Gossip and Tickler & Python
 
Cassandra @ Sony: The good, the bad, and the ugly part 1
Cassandra @ Sony: The good, the bad, and the ugly part 1Cassandra @ Sony: The good, the bad, and the ugly part 1
Cassandra @ Sony: The good, the bad, and the ugly part 1
 
Cassandra @ Sony: The good, the bad, and the ugly part 2
Cassandra @ Sony: The good, the bad, and the ugly part 2Cassandra @ Sony: The good, the bad, and the ugly part 2
Cassandra @ Sony: The good, the bad, and the ugly part 2
 
Standing Up Your First Cluster
Standing Up Your First ClusterStanding Up Your First Cluster
Standing Up Your First Cluster
 
Real Time Analytics with Dse
Real Time Analytics with DseReal Time Analytics with Dse
Real Time Analytics with Dse
 
Introduction to Data Modeling with Apache Cassandra
Introduction to Data Modeling with Apache CassandraIntroduction to Data Modeling with Apache Cassandra
Introduction to Data Modeling with Apache Cassandra
 
Cassandra Core Concepts
Cassandra Core ConceptsCassandra Core Concepts
Cassandra Core Concepts
 
Enabling Search in your Cassandra Application with DataStax Enterprise
Enabling Search in your Cassandra Application with DataStax EnterpriseEnabling Search in your Cassandra Application with DataStax Enterprise
Enabling Search in your Cassandra Application with DataStax Enterprise
 
Bad Habits Die Hard
Bad Habits Die Hard Bad Habits Die Hard
Bad Habits Die Hard
 
Advanced Data Modeling with Apache Cassandra
Advanced Data Modeling with Apache CassandraAdvanced Data Modeling with Apache Cassandra
Advanced Data Modeling with Apache Cassandra
 
Advanced Cassandra
Advanced CassandraAdvanced Cassandra
Advanced Cassandra
 
Apache Cassandra and Drivers
Apache Cassandra and DriversApache Cassandra and Drivers
Apache Cassandra and Drivers
 
Getting Started with Graph Databases
Getting Started with Graph DatabasesGetting Started with Graph Databases
Getting Started with Graph Databases
 
Cassandra Data Maintenance with Spark
Cassandra Data Maintenance with SparkCassandra Data Maintenance with Spark
Cassandra Data Maintenance with Spark
 
Analytics with Spark and Cassandra
Analytics with Spark and CassandraAnalytics with Spark and Cassandra
Analytics with Spark and Cassandra
 
Make 2016 your year of SMACK talk
Make 2016 your year of SMACK talkMake 2016 your year of SMACK talk
Make 2016 your year of SMACK talk
 
Client Drivers and Cassandra, the Right Way
Client Drivers and Cassandra, the Right WayClient Drivers and Cassandra, the Right Way
Client Drivers and Cassandra, the Right Way
 

Recently uploaded

Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 

C* Summit 2013: When Bad Things Happen to Good Data: A Deep Dive Into How Cassandra Resolves Inconsistent Data by Jason Brown

  • 1. When Bad Things Happen to Good Data: Understanding Anti-Entropy in Cassandra Jason Brown @jasobrown jasedbrown@gmail.com
  • 2. About me •  Senior Software Engineer @ Netflix •  Apache Cassandra committer •  E-Commerce Architect, Major League Baseball Advanced Media •  Wireless developer (J2ME and BREW)
  • 3. Maintaining consistent state is hard in a distributed system CAP theorem works against you
  • 4. Inconsistencies creep in •  Node is down •  Network partition •  Dropped mutations •  Process crash before commit log flush •  File corruption Cassandra trades C for AP
  • 5. Anti-Entropy Overview •  write time o  tunable consistency o  atomic batches o  hinted handoff •  read time o  consistent reads o  read repair •  maintenance time o  node repair
  • 7. Cassandra Writes Basics •  determine all replica nodes in all DCs •  send to replicas in local DC •  send one replica node in remote DCs, o  it will forward to peers •  all respond back to original coordinator
  • 10. Writes - Tunable consistency Coordinator blocks for specified count of replicas to respond •  consistency level o  ALL o  EACH_QUORUM o  LOCAL_QUORUM o  ONE / TWO / THREE o  ANY
  • 11. Hinted handoff Save a copy of the write for down nodes, and replay later hint = target replica + mutation data
  • 12. Hinted handoff - storing •  on coordinator, store a hint for any nodes not currently 'up' •  if a replica doesn't respond within write_request_timeout_in_ms, store a hint •  max_hint_window_in_ms - maximum amount of time a dead host will have hints generated.
  • 13. Hinted handoff - replay •  try to send hints to nodes •  runs every ten minutes •  multithreaded (as of 1.2) •  throttable (kb per second)
  • 14. Hinted Handoff - R2 down R2 down, coordinator (R1) stores hint
  • 15. Hinted handoff - replay R2 comes back up, R1 plays hints for it
  • 17. Atomic Batches •  coordinator stores incoming mutation to two peers in same DC o  deletes from peers on successful completion •  peers will replay the batch if not deleted o  runs every 60 seconds •  with 1.2, all mutates use atomic batch
  • 19. Cassandra Reads - setup •  determine endpoints to invoke o  consistency level vs. read repair •  first data node to send back full data set, other nodes only return a digest •  wait until the CL number of nodes to return
  • 20. LOCAL_QUORUM read Pink nodes contain requested row key
  • 21. Consistent reads •  compare the digests of returned data sets •  if any mismatches, send request again to same CL data nodes. o  this time no digests, full data set •  compare the full data sets, send updates to out of date replicas •  block until those fixes are responded to •  return data to caller
  • 22. Read Repair •  synchronizes the client-requested data amongst all replicas •  piggy-backs on normal reads, but waits for all replicas to respond asynchronously •  then, just like consistent reads, compares the digests, and fix if needed
  • 23. Read Repair green lines = LOCAL_QUORUM nodes blue lines = nodes for read repair
  • 24. Read Repair - configuration •  setting per column family •  percentage of all calls to CF •  Local DC vs. Global chance
  • 25. Read repair fixes data that is actually requested, ... but what about data that isn't requested?
  • 26. Node Repair - introduction •  repairs inconsistencies across all replicas for a given range •  nodetool repair o  repairs the ranges the node contains o  one of more column families (within the same keyspace) o  can choose local datacenter only (c* 1.2)
  • 27. •  should be part of std operations maintenance for c*, esp if you delete data o  ensures tombstones are propagated, and avoid resurrected data •  repair is IO and CPU intensive Node Repair - cautions
  • 28. Node Repair - details 1 •  determine peer nodes with matching ranges •  triggers a major (validation) compaction on peer nodes o  read and generate hash for every row in CF o  add result to a Merkle Tree o  return tree to initiator
  • 29. Node Repair - details 2 •  initiator awaits trees from all nodes •  compares each tree to every other tree •  if any differences exist, two nodes are exchange the conflicting ranges o  these ranges get written out as new, local sstables
  • 30. 'ABC' node is repair initiator
  • 35. Anti-Entropy wrap-up •  CAP Theorem lives, tradeoffs must be made •  C* contains processes to make diverging data sets consistent •  Tunable controls exist at write and read times, as well on-demand
  • 36. Thank you! Q & A time @jasobrown
  • 37. Notes from Netflix •  carefully tune RR_chance •  schedule repair operations •  tickler •  store more hints vs. running repair