SlideShare uma empresa Scribd logo
1 de 46
Baixar para ler offline
Rnotify
A Scalable Distributed
filesystems Notifications
Solution for Applications
Ashwin Raghav
www.rnotifications.com
github.com/ashwinraghav/rnotify-c/
1
1Tuesday, April 30, 13
Agenda
• Motivation
• Problem Statement / State of the art
• General Overview
• Hypothesis
• Approach
• Evaluation
• Conclusion
2
2Tuesday, April 30, 13
Motivation
• Applications need File System
Notifications
• Previously applications polled
file systems naively
• Now,All Operating Systems
provide FS Notifications API
3
3Tuesday, April 30, 13






 



 


Problem
VFS is an abstraction
to treat all filesystems
uniformly
All FS read/writes
happen viaVFS - ideal
place to implement
notifications
Does not work
with Distributed
File Systems
4
4Tuesday, April 30, 13
Problems / State of the art
Use ad-hoc (polling) implementations for Distributed FS.
Polling creates an unfortunate tension between
resource consumption and timeliness
Any general solution must be location transparent,
scalable, tunable.
Use inotify to subscribe to local filesystems
5
5Tuesday, April 30, 13
Requirements
• Compatibility with existing applications that use Inotify
• Provide Horizontal Scalability, Decomposition of Functionality,
Tunable Performance
• Location Transparency
• High Throughput notifications per client
6
6Tuesday, April 30, 13
Assumptions
• Relaxing Reliability Guarantees
• Modifying Notification Semantics
• Congestion Control Semantics
• Failure Notification Semantics
7
7Tuesday, April 30, 13
Related Work
• FAM (File Alteration Monitor) - does not scale
• Internet scale systems like Thialfi, Zookeeper are built for larger scales
of clients.
• Bayeux, Scribe, Siena, Hermes, Swag etc assume overlay networks to
establish multicast trees for message dissemination
• Inotify was introduced in kernel 2.6.13 - for local FS notifications
8
8Tuesday, April 30, 13





























Overview
Multiplexing/
Proxying
Subscriptions
Serializing
Notifications
Demultiplexing
Notifications





















9
9Tuesday, April 30, 13
Hypothesis
As a result of clearly decomposing functionality into
replicable components, Rnotify can be tuned to fit different
notification workloads to consistently deliver notifications
at low latency.
10
10Tuesday, April 30, 13
Key Properties
• Low Latency Notifications (under 10ms)
• Compatible with applications that use Inotify
• Tuned to fit workloads
• Greedy Applications can use Rnotify by distributing their
workloads across nodes.
11
11Tuesday, April 30, 13
Approach
• Registration
• Notification
• Replica Configuration Management
12
12Tuesday, April 30, 13





























Registration





















• Inform the Proxy about the newly watched file
• Place Registrations on preferred Publishers
13
13Tuesday, April 30, 13
   










• Client Driven Registration
• Registration is transactional
from the application ‘s point
of view
• Client Driven Migration of
subscriptions
Client Library & API usage
14
14Tuesday, April 30, 13










Client Library & API usage
15
15Tuesday, April 30, 13





























Notification Pipeline





















• Congestion Control
• Opportunistic Batching
• Publisher Selection
16
16Tuesday, April 30, 13
 












Dispatchers
• Serialize notification blocks
• Congestion Control
• Dispatch to Publisher
17
17Tuesday, April 30, 13
Congestion Control at
Dispatcher












Subscription Id Number of notifications in
Time window
1 1000
2 3000
Frequency List
Frequency List
Frequency List
NOTIFICATION_BURST is
sent to Publisher
18
18Tuesday, April 30, 13
Avoid atomic broadcasts




















Frequency List
Frequency List
Frequency List
Frequency List
19
19Tuesday, April 30, 13

























Publishers
• Identify the subscribers for a
notification
• Dispatch to the subscribers
20
20Tuesday, April 30, 13
Representing State - Publisher
Get all
Subscribers
Get all
Notifications
File Id IP address of Subscribers
1 192.168.1.2:3000
192.168.3.4:3001
2 192.168.1.2:3000
192.168.3.4:3001
Subscriber Undelivered Notifications
192.168.1.2:3000 N1, N2, N3
192.168.3.4:3001 N4, N5, N6
File Id Notifications
1 N1, N2, N3,
2 N4, N5
Append new
Notification
21
21Tuesday, April 30, 13





























Publisher Selection





















How do the dispatchers and Registrar maintain a shared
understanding of ‘preferred’ publishers?
22
22Tuesday, April 30, 13
Partition and Placement of Publishers





pos3 = SHA1(Publisher3_IP_ADDR)
pos4 = SHA1(Publisher4_IP_ADDR)
pos2 = SHA1(Publisher2_IP_ADDR)
pos1 = SHA1(Publisher1_IP_ADDR)
23
23Tuesday, April 30, 13
Partition and Placement of Subscriptions





file3 = SHA1(File_Path3)
file4 = SHA1(File_Path4)
file2 = SHA1(File_Path2)
file1 = SHA1( File_Path1)
24
24Tuesday, April 30, 13
Arrival of Publisher





new_publisher = SHA1(New_Pub_IP_Addr)
Reissue_registrations_between(pos1, pos2)
Lock free way to make configuration eventually consistent
25
25Tuesday, April 30, 13
Dispatcher Replication
• Dispatcher is provided the registrar location at startup
• It acquires the publisher list from the registrar
transactionally.
• Inform the Proxies independently
26
26Tuesday, April 30, 13
Evaluation Strategy
Mid size GlusterFS
deployment on EC2
Postmark Benchmark
to represent FS activity
Using Chef to startup
serviced clients
Measure Latency end
to end
8xl machines with 32 cores each
helped simulate several clients each
All machines were
acquired within a
placement group
27
27Tuesday, April 30, 13
Evaluation - Scalability
Tune Dispatchers based on FS throughput
Tune Publishers based on number of clients
28
28Tuesday, April 30, 13
Scalability - Overactive FileSystems
Post Mark threads writing to different
directories29
29Tuesday, April 30, 13
Scalability - Overactive FileSystems
PostMark threads writing to same directory30
30Tuesday, April 30, 13
PostMark threads
writing to different
files
PostMark
threads writing
to same files
Applications like
web/mail server
HPC
applications
Scalability - Overactive FileSystems
31
31Tuesday, April 30, 13
Scalability - Servicing many clients
32
32Tuesday, April 30, 13
Performance
Demonstrate consistency
Demonstrate footprint in comparison
to naive polling
33
33Tuesday, April 30, 13
Performance - Consistency
34
34Tuesday, April 30, 13
Comparison to naive Polling
• Developed a poller
Node.js REST API
• For just 100 clients , 5
files, 50000 stats per
second
• Has an extremely heavy
footprint on the FS
performance
35
35Tuesday, April 30, 13
Greedy Applications
• Increasing the number of
notifications delivered
per client
• Linear increase in latency
• Messages spend more
time in queues
36
36Tuesday, April 30, 13
Inotify - Inefficient Applications
37
37Tuesday, April 30, 13
Greedy Applications
If you need to consume
more notifications,
Distribute yourself
Inefficient
Application
38
38Tuesday, April 30, 13
Summary - Why is this
work different?
• FAM does not scale and is obsolete.
• All PubSub systems do not cater to many notifications per
client
• Multicast Trees are established for reliability (Performance
suffers)
• Pub Sub systems provide a richer set of semantics with lower
performance
39
39Tuesday, April 30, 13
Future Work
• Introduce a security model
• Introduce message ordering
• Provide message delivery reliability
40
40Tuesday, April 30, 13
Conclusion
• Rnotify is a solution to receive notifications from POSIX
compliant Distributed File Systems
• Tuned to fit different notification workloads
• Incrementally Scalable, location transparent and mimics Inotify
• We have tested Rnotify to scale to 2.5 million notifications per
second
• Latency under 10ms for 88% notifications
41
41Tuesday, April 30, 13
Questions
42
42Tuesday, April 30, 13




 
















Subscription Proxy
• Resides on the File Host &
Proxies subscriptions &
notifications.
• Idempotent API wrappers for
subscription
43
43Tuesday, April 30, 13
Design Alternatives
• File System Modification
• VFS Modification
• Modifying Inotify Implementation
44
44Tuesday, April 30, 13
Latency Tests - Zero
45
45Tuesday, April 30, 13
Throughput Tests - Zero
46
46Tuesday, April 30, 13

Mais conteúdo relacionado

Semelhante a Rnotify

OpenAIRE services & tools: Zenodo and what's next (Danish OpenAIRE workshop)
OpenAIRE services & tools: Zenodo and what's next (Danish OpenAIRE workshop)OpenAIRE services & tools: Zenodo and what's next (Danish OpenAIRE workshop)
OpenAIRE services & tools: Zenodo and what's next (Danish OpenAIRE workshop)Pedro Príncipe
 
Windows OS Architecture in Summery
Windows OS Architecture in SummeryWindows OS Architecture in Summery
Windows OS Architecture in SummeryAsanka Dilruk
 
Linux Operating System Resembles Unix Operating. System
Linux Operating System Resembles Unix Operating. SystemLinux Operating System Resembles Unix Operating. System
Linux Operating System Resembles Unix Operating. SystemOlga Bautista
 
The three investigators: OraChk, TFA and DBSAT
The three investigators: OraChk, TFA and DBSATThe three investigators: OraChk, TFA and DBSAT
The three investigators: OraChk, TFA and DBSATMarkus Flechtner
 
Functional reactive programming
Functional reactive programmingFunctional reactive programming
Functional reactive programmingAraf Karsh Hamid
 
Multi-Tenant Data Cloud with YARN & Helix
Multi-Tenant Data Cloud with YARN & HelixMulti-Tenant Data Cloud with YARN & Helix
Multi-Tenant Data Cloud with YARN & HelixKishore Gopalakrishna
 
Princeton Dec 2022 Meetup_ NiFi + Flink + Pulsar
Princeton Dec 2022 Meetup_ NiFi + Flink + PulsarPrinceton Dec 2022 Meetup_ NiFi + Flink + Pulsar
Princeton Dec 2022 Meetup_ NiFi + Flink + PulsarTimothy Spann
 
OpenAIRE Metrics Service: Usage Statistics (24x7 presentation at #OR2018)
OpenAIRE Metrics Service: Usage Statistics (24x7 presentation at #OR2018)OpenAIRE Metrics Service: Usage Statistics (24x7 presentation at #OR2018)
OpenAIRE Metrics Service: Usage Statistics (24x7 presentation at #OR2018)OpenAIRE
 
A user journey in OpenAIRE services through the lens of repository managers -...
A user journey in OpenAIRE services through the lens of repository managers -...A user journey in OpenAIRE services through the lens of repository managers -...
A user journey in OpenAIRE services through the lens of repository managers -...OpenAIRE
 
Exploring Postgres with Bruce Momjian
Exploring Postgres with Bruce MomjianExploring Postgres with Bruce Momjian
Exploring Postgres with Bruce MomjianEDB
 
IRUS-UK: Does anyone use the material in your repository?
IRUS-UK: Does anyone use the material in your repository?IRUS-UK: Does anyone use the material in your repository?
IRUS-UK: Does anyone use the material in your repository?Repository Fringe
 
Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...eSAT Journals
 
Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...eSAT Publishing House
 
LDV: Light-weight Database Virtualization
LDV: Light-weight Database VirtualizationLDV: Light-weight Database Virtualization
LDV: Light-weight Database VirtualizationTanu Malik
 

Semelhante a Rnotify (20)

OpenAIRE services & tools: Zenodo and what's next (Danish OpenAIRE workshop)
OpenAIRE services & tools: Zenodo and what's next (Danish OpenAIRE workshop)OpenAIRE services & tools: Zenodo and what's next (Danish OpenAIRE workshop)
OpenAIRE services & tools: Zenodo and what's next (Danish OpenAIRE workshop)
 
Windows OS Architecture in Summery
Windows OS Architecture in SummeryWindows OS Architecture in Summery
Windows OS Architecture in Summery
 
Linux Operating System Resembles Unix Operating. System
Linux Operating System Resembles Unix Operating. SystemLinux Operating System Resembles Unix Operating. System
Linux Operating System Resembles Unix Operating. System
 
JSSPP 2010
JSSPP 2010JSSPP 2010
JSSPP 2010
 
NISO ResourceSync Training Session
NISO ResourceSync Training SessionNISO ResourceSync Training Session
NISO ResourceSync Training Session
 
The three investigators: OraChk, TFA and DBSAT
The three investigators: OraChk, TFA and DBSATThe three investigators: OraChk, TFA and DBSAT
The three investigators: OraChk, TFA and DBSAT
 
Functional reactive programming
Functional reactive programmingFunctional reactive programming
Functional reactive programming
 
Multi-Tenant Data Cloud with YARN & Helix
Multi-Tenant Data Cloud with YARN & HelixMulti-Tenant Data Cloud with YARN & Helix
Multi-Tenant Data Cloud with YARN & Helix
 
Princeton Dec 2022 Meetup_ NiFi + Flink + Pulsar
Princeton Dec 2022 Meetup_ NiFi + Flink + PulsarPrinceton Dec 2022 Meetup_ NiFi + Flink + Pulsar
Princeton Dec 2022 Meetup_ NiFi + Flink + Pulsar
 
OpenAIRE Metrics Service: Usage Statistics (24x7 presentation at #OR2018)
OpenAIRE Metrics Service: Usage Statistics (24x7 presentation at #OR2018)OpenAIRE Metrics Service: Usage Statistics (24x7 presentation at #OR2018)
OpenAIRE Metrics Service: Usage Statistics (24x7 presentation at #OR2018)
 
A user journey in OpenAIRE services through the lens of repository managers -...
A user journey in OpenAIRE services through the lens of repository managers -...A user journey in OpenAIRE services through the lens of repository managers -...
A user journey in OpenAIRE services through the lens of repository managers -...
 
ResourceSync tutorial OAI8
ResourceSync tutorial OAI8ResourceSync tutorial OAI8
ResourceSync tutorial OAI8
 
Exploring Postgres with Bruce Momjian
Exploring Postgres with Bruce MomjianExploring Postgres with Bruce Momjian
Exploring Postgres with Bruce Momjian
 
IRUS-UK at Repository Fringe 2014
IRUS-UK at Repository Fringe 2014IRUS-UK at Repository Fringe 2014
IRUS-UK at Repository Fringe 2014
 
IRUS-UK: Does anyone use the material in your repository?
IRUS-UK: Does anyone use the material in your repository?IRUS-UK: Does anyone use the material in your repository?
IRUS-UK: Does anyone use the material in your repository?
 
Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...
 
Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...Optimization of workload prediction based on map reduce frame work in a cloud...
Optimization of workload prediction based on map reduce frame work in a cloud...
 
tr-4537
tr-4537tr-4537
tr-4537
 
Introduction to reactive programming
Introduction to reactive programmingIntroduction to reactive programming
Introduction to reactive programming
 
LDV: Light-weight Database Virtualization
LDV: Light-weight Database VirtualizationLDV: Light-weight Database Virtualization
LDV: Light-weight Database Virtualization
 

Último

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
 
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
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
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 Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
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
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsHyundai Motor Group
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 

Último (20)

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
 
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
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
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 Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
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
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 

Rnotify