SlideShare a Scribd company logo
Yokozuna
Distributed SearchYou Don’t Think About
Ryan Zezeski May 14th 2013
1Tuesday, May 21, 13
Live Demo
2Tuesday, May 21, 13
Live Demos
3Tuesday, May 21, 13
PROBLEM?
4Tuesday, May 21, 13
PROBLEM?
SOLUTION!
5Tuesday, May 21, 13
Solution Pre-made
6Tuesday, May 21, 13
Piece At A Time
7Tuesday, May 21, 13
Goals
• Don’t screw up
• Show howYokozuna
doesn’t make you think
(too hard)
• Teach you about Search
• Neat things you can do
withYokozuna
8Tuesday, May 21, 13
PROBLEM: SEARCH
FOR COMMITS
ABOUT SPECIFIC
FEATURE/BUG
MAKE IT GOOGLE-LIKE
9Tuesday, May 21, 13
SOLUTION: INDEX
COMMITS IN
YOKOZUNA -
“COMMIT LOG
SEARCHER” (CLS)
10Tuesday, May 21, 13
Anatomy of a Commit
Msg
11Tuesday, May 21, 13
Primary Key
12Tuesday, May 21, 13
Any Node Will Do
13Tuesday, May 21, 13
Term Query
14Tuesday, May 21, 13
Query Any Node
15Tuesday, May 21, 13
Boolean (1)
repo:riak_kv repo:riak_core
16Tuesday, May 21, 13
Boolean (2)
repo:riak_kv AND author:”Ryan Zezeski”
17Tuesday, May 21, 13
Boolean (3)
commit_author:"Ryan Zezeski" OR
commit_author:"Joseph Blomstedt" NOT
commit_repo:riak_kv
18Tuesday, May 21, 13
Range (1)
commit_repo:riak_core
AND commit_dt:[NOW-1YEAR TO NOW]
19Tuesday, May 21, 13
Range (2)
commit_repo:riak_core
AND commit_dt:[NOW-1YEAR TO NOW]
I RAN THIS ON
2013-05-10
sort=dt asc
20Tuesday, May 21, 13
Wildcard (1)
*:*
GET TOTAL
COUNT FIRST
21Tuesday, May 21, 13
Wildcard (2)
commit_repo:riak_*
NOTICE COUNT
IS LOWER
22Tuesday, May 21, 13
WHAT ABOUT
SEARCHING
SUMMARY AND
BODY?
23Tuesday, May 21, 13
THE INVERTED
INDEX
24Tuesday, May 21, 13
AN INDEX - BUT
INVERTED
25Tuesday, May 21, 13
EVERYONE KNOWS
WHAT IT IS
26Tuesday, May 21, 13
EVEN NON-TECH
PEOPLE
27Tuesday, May 21, 13
YES...EVENYOUR
PARENTS
28Tuesday, May 21, 13
What’s In A Book?
29Tuesday, May 21, 13
• WORDS
• PARAGRAPHS
• SECTIONS
• CHAPTERS
• ETC.
30Tuesday, May 21, 13
AND PAGE
NUMBERS
31Tuesday, May 21, 13
32Tuesday, May 21, 13
PAGE NUMBERS ARE
AN IMPLICIT INDEX
33Tuesday, May 21, 13
PAGE NUMBER TO
WORDS
WORD TO PAGE
NUMBERS
INVERTED
34Tuesday, May 21, 13
STOLEN FROM BLOG OF RICKY HO: http://
horicky.blogspot.com/2013/02/text-processing-
part-2-inverted-index.html
35Tuesday, May 21, 13
HOW DOYOU GET
THE WORDS IN THE
FIRST PLACE?
36Tuesday, May 21, 13
Analysis - The Iceberg
That Sunk The Titanic
37Tuesday, May 21, 13
Phrase (1)
subject:hinted OR subject:handoff
OR body:hinted OR body:handoff
38Tuesday, May 21, 13
Phrase (2)
subject:”hinted handoff”
OR body:”hinted handoff”
39Tuesday, May 21, 13
Phrase (3)
subject:”partition vnode”
OR body:”partition vnode”
40Tuesday, May 21, 13
Phrase (4)
subject:”partition vnode”~4
OR body:”partition vnode”~4
41Tuesday, May 21, 13
Exact Term
subject:behavior OR body:behavior
42Tuesday, May 21, 13
Fuzzy Term
subject:behavior~1 OR body:behavior~1
43Tuesday, May 21, 13
Ranking
ADD SCORE TO
FL
SCORE ADDED
TO EVERY
RESULT
44Tuesday, May 21, 13
RECALL, PRECISION,
AND RELEVANCY, OH
MY!
45Tuesday, May 21, 13
RELEVANCY - FOR A
GIVEN QUERY &
DOC SET THERE IS
AN IDEAL ANSWER
OF ONLY RELEVANT
DOCS
46Tuesday, May 21, 13
RECALL = WHAT %
OF IDEAL ANSWER
SET WAS RETRIEVED
47Tuesday, May 21, 13
PRECISION = WHAT
% OF ANSWER IS
RELEVANT
48Tuesday, May 21, 13
RECALLvs.PRECISION
ASYOU INCREASE
RECALLYOU
DEGRADE PRECISION
49Tuesday, May 21, 13
SOLR DETERMINES
RELEVANCYVIA THE
NOTION OF
SIMILARITY
50Tuesday, May 21, 13
SOLR USES TF-IDF:
TERM FREQUENCY,
INVERSE DOCUMENT
FREQUENCY
51Tuesday, May 21, 13
Dismax + Facets +
Highlighting
FACETS
HIGHLIGHTING
DISMAX
52Tuesday, May 21, 13
FACET - A
TAXONOMY OF
YOUR QUERY BASED
ON FIELD’SVALUES
53Tuesday, May 21, 13
FACETS ALLOW
“DRILL DOWN” -
THEY GUIDE THE
USER
54Tuesday, May 21, 13
HIGHLIGHTING
GIVESYOUR RESULTS
CONTEXT - ALLOWS
QUICKER
DETERMINATION OF
RELEVANCY
55Tuesday, May 21, 13
DISMAX - DISjunction
MAX - A QUERY
HANDLER MEANT
FOR DIRECT USER
INPUT
56Tuesday, May 21, 13
All Nodes Up
57Tuesday, May 21, 13
All Nodes Up - Query
58Tuesday, May 21, 13
Node 4 Down
59Tuesday, May 21, 13
Node 4 Down - Query
60Tuesday, May 21, 13
Node 3 & 4 Down
61Tuesday, May 21, 13
Node 3 & 4 Down -
Query
62Tuesday, May 21, 13
REPLICATION
PROVIDES HIGH
AVAILABILITY
2 3 41
START WITH 4 NODES
63Tuesday, May 21, 13
Write 3 Replicas
2 3 41
64Tuesday, May 21, 13
Take 2 Nodes Down
2 3 41
1 REPLICA STILL
AVAILABLE
65Tuesday, May 21, 13
WHAT IF DATA IS
WRITTEN WHILE
NODES ARE DOWN?
66Tuesday, May 21, 13
YZ Not StoredYet
67Tuesday, May 21, 13
StoreYZ Log
68Tuesday, May 21, 13
QueryYZ - Node 1& 2
69Tuesday, May 21, 13
Set XFer Limit To 0
70Tuesday, May 21, 13
Start Nodes 3 & 4
71Tuesday, May 21, 13
Query Solr Direct
WHEN MAKING THIS
DEMO I WAS
EXPECTING THIS TO BE
0 BUT I FORGOT ABOUT
AAE WHICH STARTED
KICKING IN BEFORE
HANDOFF - SELF
HEALING FTW!
72Tuesday, May 21, 13
Set Xfer Limit To 64
73Tuesday, May 21, 13
Handoff Occurs
74Tuesday, May 21, 13
0 Pending Xfers
75Tuesday, May 21, 13
Solr Direct (Again)
NOTICE IT’S NOW 301,
UP FROM 54, MORE
PROOF THAT HANDOFF
OCCURRED - NOTE
THIS QUERY IS GOING
DIRECT TO ONLY 1
SHARD
76Tuesday, May 21, 13
Query Node 4YZ
NOW HITYOKOZUNA
ON NODE4 (NOTICE
CHANGE IN PORT #) -
THIS WILL RUN A DIST
SEARCH AND THUS
RETURN CORRECT
COUNT
77Tuesday, May 21, 13
Data Ownership
AVNODE
THE RING
78Tuesday, May 21, 13
Node Down
X
X
X
XX
X
X
X
X
X
79Tuesday, May 21, 13
Write Fallback
X
X
X
XX
X
X
X
X
X
80Tuesday, May 21, 13
Node Up
HINTED
HANDOFF WILL
MOVE REPLICA
TO PRIMARY
81Tuesday, May 21, 13
WHAT IFYOU RM -RF
THE INDEX DIR?
82Tuesday, May 21, 13
Kill The Data
RM -RF THE INDEX DIRECTORY
KILL THE SOLR PROC
83Tuesday, May 21, 13
Auto Restart
YOKOZUNA NOTICES SOLR DIED
AND AUTOMATICALLY RESTARTS
IT
84Tuesday, May 21, 13
Node 4 - 0 Results
85Tuesday, May 21, 13
AAE Notices Missing
Data
86Tuesday, May 21, 13
Node 4 - 13 Results
DATA IS RE-INDEXED OVER TIME
87Tuesday, May 21, 13
More AAE Repair
88Tuesday, May 21, 13
Node 4 - 128 Results
MORE INDEXES ARE REPAIRED,
THIS CONTINUES UNTIL AAE
REPAIRS ALL INDEXES
89Tuesday, May 21, 13
WHAT EVEN IS
ACTIVE ANTI-
ENTROPY?
90Tuesday, May 21, 13
Mo Systems Mo Failure
• index update could get
lost
• files can become
truncated/corrupted
• accidental `rm -rf`
• segfault at right time
• etc...
91Tuesday, May 21, 13
MYRAID OF FAILURE
SCENARIOS - FROM
OBVIOUS TO NEARLY
INVISIBLE
92Tuesday, May 21, 13
ENTROPY IS DAMAGE
AAE IS SELF HEALING
STRIKER!!!! EHEM, I
MEAN, ENTROPY!!!!
93Tuesday, May 21, 13
REPAIR EFFICIENTLY -
NOT STUPIDLY
94Tuesday, May 21, 13
LearnYou Some Merkle
For A Great Good
BIG UPS TO @jtuple FOR THE AAE DIAGRAMS
95Tuesday, May 21, 13
Segments
EACH SEGMENT IS LIST OF
KEY-HASH PAIRS
96Tuesday, May 21, 13
Segment Hashes
HASH OF HASHES IN
SEGMENT
97Tuesday, May 21, 13
Hash O’ Hashes
98Tuesday, May 21, 13
WHAT HAPPENS
DURING
EXCHANGE?
99Tuesday, May 21, 13
Start With 2 Trees
100Tuesday, May 21, 13
Compare Top Hashes
TOP HASHES DON’T
MATCH -
SOMETHING IS
DIFFERENT
101Tuesday, May 21, 13
Compare Child Hashes
NARROW DOWN
THE DIVERGENT
SEGMENT
102Tuesday, May 21, 13
Recur
NARROW DOWN
THE DIVERGENT
SEGMENT CONT...
103Tuesday, May 21, 13
Iter Key-Hash Pairs
ITER FINAL LIST OF
HASHES TO FIND
DIVERGENT KEYS
104Tuesday, May 21, 13
Repair Divergent Keys
REPAIR (RE-INDEX)
KEYS THAT ARE
DIVERGENT (RED)
105Tuesday, May 21, 13
CODE FOR
DETECTION AND
REPAIR - NOT
PREVENTION
106Tuesday, May 21, 13
WHAT HAPPENS IF 3
NODES GO DOWN?
107Tuesday, May 21, 13
Stop 3 Nodes
108Tuesday, May 21, 13
Query
109Tuesday, May 21, 13
CONSISTENCY
vs.
AVAILABILITY
110Tuesday, May 21, 13
Uptime - Story of 9s
UPTIME = (MTBF - MTTR) / MTBF
111Tuesday, May 21, 13
Uptime is Flawed
IF THE SYSTEM IS
DOWN, BUT NO
ONE MAKES A
REQUEST, IS IT
REALLY DOWN?
112Tuesday, May 21, 13
Yield - Uptime of the
People
YIELD = QUERIES COMPLETED / QUERIES
OFFERED
113Tuesday, May 21, 13
Harvest vs.Yield
HARVEST = DATA AVAIL / COMPLETE DATA
IF FACE OF FAILUREYOU CAN’T HAVE BOTH
FOR A SINGLE REQUEST
114Tuesday, May 21, 13
IN TIMES OF
TROUBLE -
YOKOZUNA
CHOOSES HARVEST
FOR QUERIES
115Tuesday, May 21, 13
TECHNICALLY -
YOKOZUNA IS
ALWAYS < 100%
HARVEST IN A NON-
QUIESCENT CLUSTER
116Tuesday, May 21, 13
YOKOZUNA FAVORS
YIELD FOR WRITES
117Tuesday, May 21, 13
ONCE RIAK 1.4 SHIPS
-YOKOZUNA LANDS
IN MASTER
118Tuesday, May 21, 13
THANKYOU
HTTP://GITHUB.COM/BASHO/YOKOZUNA
119Tuesday, May 21, 13

More Related Content

Viewers also liked

How to find a job in healthcare administration ?
How to find a job in healthcare administration ?How to find a job in healthcare administration ?
How to find a job in healthcare administration ?
John Reek
 
Presentation for NGO " The Association for the Health of Society"
Presentation for NGO " The Association for the Health of Society"Presentation for NGO " The Association for the Health of Society"
Presentation for NGO " The Association for the Health of Society"Sofia glinyana
 
M health innovations as a health systems strengthening tool 2014
M health innovations as a health systems strengthening tool 2014M health innovations as a health systems strengthening tool 2014
M health innovations as a health systems strengthening tool 2014
torooti
 
Intelligent Health Services.Tuula Tiihonen, Sitra.
Intelligent Health Services.Tuula Tiihonen, Sitra.Intelligent Health Services.Tuula Tiihonen, Sitra.
Intelligent Health Services.Tuula Tiihonen, Sitra.
Upgraded - Health Startup Association of Finland
 
Health Care 2020: Emerging Innovations in the Health Care Payment and Deliver...
Health Care 2020: Emerging Innovations in the Health Care Payment and Deliver...Health Care 2020: Emerging Innovations in the Health Care Payment and Deliver...
Health Care 2020: Emerging Innovations in the Health Care Payment and Deliver...
Mid-Atlantic Telehealth Resource Center
 
Future Health Systems: Innovations for Equity
Future Health Systems: Innovations for EquityFuture Health Systems: Innovations for Equity
Future Health Systems: Innovations for Equity
IDS
 
Redesigning the Patient Experience using Digital Wayfinding
Redesigning the Patient Experience using Digital WayfindingRedesigning the Patient Experience using Digital Wayfinding
Redesigning the Patient Experience using Digital Wayfinding
Jibestream
 
The Future of Healthcare | Smart Health coLAB
The Future of Healthcare | Smart Health coLABThe Future of Healthcare | Smart Health coLAB
The Future of Healthcare | Smart Health coLAB
Julien de Salaberry
 
Findings on health information technology and electronic health records
Findings on health information technology and electronic health recordsFindings on health information technology and electronic health records
Findings on health information technology and electronic health records
Deloitte United States
 

Viewers also liked (9)

How to find a job in healthcare administration ?
How to find a job in healthcare administration ?How to find a job in healthcare administration ?
How to find a job in healthcare administration ?
 
Presentation for NGO " The Association for the Health of Society"
Presentation for NGO " The Association for the Health of Society"Presentation for NGO " The Association for the Health of Society"
Presentation for NGO " The Association for the Health of Society"
 
M health innovations as a health systems strengthening tool 2014
M health innovations as a health systems strengthening tool 2014M health innovations as a health systems strengthening tool 2014
M health innovations as a health systems strengthening tool 2014
 
Intelligent Health Services.Tuula Tiihonen, Sitra.
Intelligent Health Services.Tuula Tiihonen, Sitra.Intelligent Health Services.Tuula Tiihonen, Sitra.
Intelligent Health Services.Tuula Tiihonen, Sitra.
 
Health Care 2020: Emerging Innovations in the Health Care Payment and Deliver...
Health Care 2020: Emerging Innovations in the Health Care Payment and Deliver...Health Care 2020: Emerging Innovations in the Health Care Payment and Deliver...
Health Care 2020: Emerging Innovations in the Health Care Payment and Deliver...
 
Future Health Systems: Innovations for Equity
Future Health Systems: Innovations for EquityFuture Health Systems: Innovations for Equity
Future Health Systems: Innovations for Equity
 
Redesigning the Patient Experience using Digital Wayfinding
Redesigning the Patient Experience using Digital WayfindingRedesigning the Patient Experience using Digital Wayfinding
Redesigning the Patient Experience using Digital Wayfinding
 
The Future of Healthcare | Smart Health coLAB
The Future of Healthcare | Smart Health coLABThe Future of Healthcare | Smart Health coLAB
The Future of Healthcare | Smart Health coLAB
 
Findings on health information technology and electronic health records
Findings on health information technology and electronic health recordsFindings on health information technology and electronic health records
Findings on health information technology and electronic health records
 

Recently uploaded

RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
KAMESHS29
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
Alpen-Adria-Universität
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
DianaGray10
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
Neo4j
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
Rohit Gautam
 
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
SOFTTECHHUB
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
danishmna97
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
名前 です男
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
ThomasParaiso2
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
Kumud Singh
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
Adtran
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 

Recently uploaded (20)

RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
 
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
Goodbye Windows 11: Make Way for Nitrux Linux 3.5.0!
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 

Yokozuna, Distributed Search You Don't Think About