SlideShare a Scribd company logo
1 of 20
Running Apache Cassandra on Docker
Jim Hatcher
Solution Architect, DataStax
Twitter: @thejimhatcher
DFW Cassandra Meetup
September 24, 2018
© DataStax, All Rights Reserved.1
Agenda
© 2016 DataStax, All Rights Reserved. 2
● What is Cassandra?
● What is Docker?
● Demo
● Do we have a match?
● References
What is Cassandra?
3
Capabilities
© 2016 DataStax, All Rights Reserved. 4
● Scale Out
○ Data Size
○ Throughput
○ Concurrency
● Active Everywhere
○ Multiple active-active data centers
Cassandra is an I/O Intensive Database
© 2016 DataStax, All Rights Reserved. 5
Both in terms of IOPS and throughput
● Normal Read/Write Path
● Compaction
● Bootstrapping
● Repair
Best Practices
© 2016 DataStax, All Rights Reserved. 6
● Don’t use Shared Storage (NAS, SAN, NFS, etc.)
○ Single Point of Failure
○ Performance Limitation
● Use Locally-Attached Storage
○ SSD
○ No RAID necessary -- RAID0 is OK
● Unit of failure is the server, not the disk
○ Swap disabled
● No Virtualization
○ Physical preferred
○ Overhead
Wait a minute...
© 2016 DataStax, All Rights Reserved. 7
● Doesn’t Cassandra run well in the cloud?
● Example in AWS
○ EBS drives (i.e., shared storage)
○ Ephemeral SSD
■ Is this really any different than running with local storage?
● Tips
○ Have strong backup and restore measures in place
■ Test backups! Test restores!
○ Know how long it takes to bootstrap nodes, rebuild nodes, rebuild
DCs
■ Adjust node density accordingly
○ Test failure scenarios! Not just the happy path
What is Docker?
8
Containers
© 2016 DataStax, All Rights Reserved. 9
● Building Blocks
○ Namespaces
■ Provide isolation for processes, network, file systems, and kernel
○ Control groups
■ Provides limitations on resources (CPU, memory)
○ UnionFS
Lighter Weight than Virtual Machines
Containers
© 2016 DataStax, All Rights Reserved. 10
Source: https://www.youtube.com/watch?v=TvnZTi_gaNc
© 2016 DataStax, All Rights Reserved. 11
Demo
Install Docker on host machine
© 2016 DataStax, All Rights Reserved. 12
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
sudo apt update
apt-cache policy docker-ce
sudo apt install docker-ce
sudo systemctl status docker
sudo usermod -aG docker ${USER}
Reference:
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04
Installing Cassandra Image on host machine
© 2016 DataStax, All Rights Reserved. 13
docker pull cassandra
docker images
sudo mkdir /var/lib/container_data
sudo mkdir /var/lib/container_data/cassandra-node-01
sudo mkdir /var/lib/container_data/cassandra-node-02
sudo mkdir /var/lib/container_data/cassandra-node-03
Reference:
https://hub.docker.com/_/cassandra/
Running Cassandra Containers
© 2016 DataStax, All Rights Reserved. 14
docker run --name cassandra-node-01 -d 
-e CASSANDRA_CLUSTER_NAME="docker_test" 
-e CASSANDRA_NUM_TOKENS="8" 
-e CASSANDRA_DC="dc1" 
-e CASSANDRA_RACK="rack1" 
-e CASSANDRA_ENDPOINT_SNITCH="GossipingPropertyFileSnitch" 
-v /var/lib/container_data/cassandra-node-01:/var/lib/cassandra/data 
cassandra:latest
docker run --name cassandra-node-02 -d 
-e CASSANDRA_CLUSTER_NAME="docker_test" 
-e CASSANDRA_NUM_TOKENS="8" 
-e CASSANDRA_DC="dc1" 
-e CASSANDRA_RACK="rack2" 
-e CASSANDRA_ENDPOINT_SNITCH="GossipingPropertyFileSnitch" 
-e CASSANDRA_SEEDS="$(docker inspect --format='{{ .NetworkSettings.IPAddress }}' cassandra-node-01)" 
-v /var/lib/container_data/cassandra-node-02:/var/lib/cassandra/data 
cassandra:3.11
docker run --name cassandra-node-03 -d 
-e CASSANDRA_CLUSTER_NAME="docker_test" 
-e CASSANDRA_NUM_TOKENS="8" 
-e CASSANDRA_DC="dc1" 
-e CASSANDRA_RACK="rack3" 
-e CASSANDRA_ENDPOINT_SNITCH="GossipingPropertyFileSnitch" 
-e CASSANDRA_SEEDS="$(docker inspect --format='{{ .NetworkSettings.IPAddress }}' cassandra-node-01)" 
-v /var/lib/container_data/cassandra-node-03:/var/lib/cassandra/data 
cassandra:3.11
Running Cassandra Containers (zoomed in)
© 2016 DataStax, All Rights Reserved. 15
docker run --name cassandra-node-02 -d 
-e CASSANDRA_CLUSTER_NAME="docker_test" 
-e CASSANDRA_NUM_TOKENS="8" 
-e CASSANDRA_DC="dc1" 
-e CASSANDRA_RACK="rack2" 
-e CASSANDRA_ENDPOINT_SNITCH="GossipingPropertyFileSnitch" 
-e CASSANDRA_SEEDS="$(docker inspect --format='{{ .NetworkSettings.IPAddress }}'
cassandra-node-01)" 
-v /var/lib/container_data/cassandra-node-02:/var/lib/cassandra/data 
cassandra:3.11
© 2016 DataStax, All Rights Reserved. 16
Do we have a match?
Conclusions
© 2016 DataStax, All Rights Reserved. 17
Great option for Dev / Test / Training Instances
Questions to answer before trying in Production
How much "safety factor" do you need to give for resources?
Too much safety factor -- why are you using containers?
Too little safety factor -- running a risk for dropping nodes,
etc.
How well tested are operational procedures (scaling out, scaling in,
rebuilding nodes, rebuilding DCs, etc.)?
Resources - Docker on DSE
© 2016 DataStax, All Rights Reserved. 18
https://github.com/datastax/docker-images
https://hub.docker.com/u/datastax/
https://academy.datastax.com/content/docker-tutorial
https://academy.datastax.com/content/visualizing-your-data-tableau-using-dse-6-docker-images
https://academy.datastax.com/units/docker-tour-video?resource=guided-tour-dse-6-using-docker
https://academy.datastax.com/content/success-segment-getting-started-datastax-docker-images
https://docs.datastax.com/en/docker/doc/index.html
https://docs.datastax.com/en/docker/doc/docker/docker51/dockerReadme.html
Resources - Docker on Cassandra
© 2016 DataStax, All Rights Reserved. 19
https://hub.docker.com/_/cassandra/
http://blog.ditullio.fr/2016/06/10/docker-docker-basics-cassandra/
https://docs.docker.com/engine/docker-overview/
Continue Learning…
academy.datastax.com/developer-days
20

More Related Content

Recently uploaded

Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
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
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
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
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
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
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 

Recently uploaded (20)

Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
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
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
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
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 

Featured

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at WorkGetSmarter
 

Featured (20)

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 

Running Apache Cassandra on Docker

  • 1. Running Apache Cassandra on Docker Jim Hatcher Solution Architect, DataStax Twitter: @thejimhatcher DFW Cassandra Meetup September 24, 2018 © DataStax, All Rights Reserved.1
  • 2. Agenda © 2016 DataStax, All Rights Reserved. 2 ● What is Cassandra? ● What is Docker? ● Demo ● Do we have a match? ● References
  • 4. Capabilities © 2016 DataStax, All Rights Reserved. 4 ● Scale Out ○ Data Size ○ Throughput ○ Concurrency ● Active Everywhere ○ Multiple active-active data centers
  • 5. Cassandra is an I/O Intensive Database © 2016 DataStax, All Rights Reserved. 5 Both in terms of IOPS and throughput ● Normal Read/Write Path ● Compaction ● Bootstrapping ● Repair
  • 6. Best Practices © 2016 DataStax, All Rights Reserved. 6 ● Don’t use Shared Storage (NAS, SAN, NFS, etc.) ○ Single Point of Failure ○ Performance Limitation ● Use Locally-Attached Storage ○ SSD ○ No RAID necessary -- RAID0 is OK ● Unit of failure is the server, not the disk ○ Swap disabled ● No Virtualization ○ Physical preferred ○ Overhead
  • 7. Wait a minute... © 2016 DataStax, All Rights Reserved. 7 ● Doesn’t Cassandra run well in the cloud? ● Example in AWS ○ EBS drives (i.e., shared storage) ○ Ephemeral SSD ■ Is this really any different than running with local storage? ● Tips ○ Have strong backup and restore measures in place ■ Test backups! Test restores! ○ Know how long it takes to bootstrap nodes, rebuild nodes, rebuild DCs ■ Adjust node density accordingly ○ Test failure scenarios! Not just the happy path
  • 9. Containers © 2016 DataStax, All Rights Reserved. 9 ● Building Blocks ○ Namespaces ■ Provide isolation for processes, network, file systems, and kernel ○ Control groups ■ Provides limitations on resources (CPU, memory) ○ UnionFS Lighter Weight than Virtual Machines
  • 10. Containers © 2016 DataStax, All Rights Reserved. 10 Source: https://www.youtube.com/watch?v=TvnZTi_gaNc
  • 11. © 2016 DataStax, All Rights Reserved. 11 Demo
  • 12. Install Docker on host machine © 2016 DataStax, All Rights Reserved. 12 sudo apt install apt-transport-https ca-certificates curl software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" sudo apt update apt-cache policy docker-ce sudo apt install docker-ce sudo systemctl status docker sudo usermod -aG docker ${USER} Reference: https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04
  • 13. Installing Cassandra Image on host machine © 2016 DataStax, All Rights Reserved. 13 docker pull cassandra docker images sudo mkdir /var/lib/container_data sudo mkdir /var/lib/container_data/cassandra-node-01 sudo mkdir /var/lib/container_data/cassandra-node-02 sudo mkdir /var/lib/container_data/cassandra-node-03 Reference: https://hub.docker.com/_/cassandra/
  • 14. Running Cassandra Containers © 2016 DataStax, All Rights Reserved. 14 docker run --name cassandra-node-01 -d -e CASSANDRA_CLUSTER_NAME="docker_test" -e CASSANDRA_NUM_TOKENS="8" -e CASSANDRA_DC="dc1" -e CASSANDRA_RACK="rack1" -e CASSANDRA_ENDPOINT_SNITCH="GossipingPropertyFileSnitch" -v /var/lib/container_data/cassandra-node-01:/var/lib/cassandra/data cassandra:latest docker run --name cassandra-node-02 -d -e CASSANDRA_CLUSTER_NAME="docker_test" -e CASSANDRA_NUM_TOKENS="8" -e CASSANDRA_DC="dc1" -e CASSANDRA_RACK="rack2" -e CASSANDRA_ENDPOINT_SNITCH="GossipingPropertyFileSnitch" -e CASSANDRA_SEEDS="$(docker inspect --format='{{ .NetworkSettings.IPAddress }}' cassandra-node-01)" -v /var/lib/container_data/cassandra-node-02:/var/lib/cassandra/data cassandra:3.11 docker run --name cassandra-node-03 -d -e CASSANDRA_CLUSTER_NAME="docker_test" -e CASSANDRA_NUM_TOKENS="8" -e CASSANDRA_DC="dc1" -e CASSANDRA_RACK="rack3" -e CASSANDRA_ENDPOINT_SNITCH="GossipingPropertyFileSnitch" -e CASSANDRA_SEEDS="$(docker inspect --format='{{ .NetworkSettings.IPAddress }}' cassandra-node-01)" -v /var/lib/container_data/cassandra-node-03:/var/lib/cassandra/data cassandra:3.11
  • 15. Running Cassandra Containers (zoomed in) © 2016 DataStax, All Rights Reserved. 15 docker run --name cassandra-node-02 -d -e CASSANDRA_CLUSTER_NAME="docker_test" -e CASSANDRA_NUM_TOKENS="8" -e CASSANDRA_DC="dc1" -e CASSANDRA_RACK="rack2" -e CASSANDRA_ENDPOINT_SNITCH="GossipingPropertyFileSnitch" -e CASSANDRA_SEEDS="$(docker inspect --format='{{ .NetworkSettings.IPAddress }}' cassandra-node-01)" -v /var/lib/container_data/cassandra-node-02:/var/lib/cassandra/data cassandra:3.11
  • 16. © 2016 DataStax, All Rights Reserved. 16 Do we have a match?
  • 17. Conclusions © 2016 DataStax, All Rights Reserved. 17 Great option for Dev / Test / Training Instances Questions to answer before trying in Production How much "safety factor" do you need to give for resources? Too much safety factor -- why are you using containers? Too little safety factor -- running a risk for dropping nodes, etc. How well tested are operational procedures (scaling out, scaling in, rebuilding nodes, rebuilding DCs, etc.)?
  • 18. Resources - Docker on DSE © 2016 DataStax, All Rights Reserved. 18 https://github.com/datastax/docker-images https://hub.docker.com/u/datastax/ https://academy.datastax.com/content/docker-tutorial https://academy.datastax.com/content/visualizing-your-data-tableau-using-dse-6-docker-images https://academy.datastax.com/units/docker-tour-video?resource=guided-tour-dse-6-using-docker https://academy.datastax.com/content/success-segment-getting-started-datastax-docker-images https://docs.datastax.com/en/docker/doc/index.html https://docs.datastax.com/en/docker/doc/docker/docker51/dockerReadme.html
  • 19. Resources - Docker on Cassandra © 2016 DataStax, All Rights Reserved. 19 https://hub.docker.com/_/cassandra/ http://blog.ditullio.fr/2016/06/10/docker-docker-basics-cassandra/ https://docs.docker.com/engine/docker-overview/