SlideShare une entreprise Scribd logo
1  sur  55
KEEPING IT REALTIME
Globally distributed Kafka, optimized for scale, reliability & cost	

!
Jos Boumans - @jiboumans
http://www.jamesallenonf1.com/2015/02/why-the-look-of-cars-is-so-important-to-f1-revamp/
https://upload.wikimedia.org/wikipedia/commons/7/71/Metamorphosis.jpg
http://www.daftblogger.com/wp-content/uploads/2010/02/kafka-drawing-251x300.jpg
http://fotos.subefotos.com/7a6b3e6df9453d5adf150087e5300834o.jpg
How to measure
everything
Architecting
in AWS for
resilience & cost
www.slideshare.net/jiboumans/aws-architecting-for-resilience-cost-at-scale
http://www.slideshare.net/jiboumans/how-to-measure-everything-a-million-metrics-per-second-with-minimal-developer-overhead
KRUX
VP of Operations & Infrastructure
http://www.krux.com/
SOME OF OUR CUSTOMERS
A LOT OFTRAFFIC
http://www.americapictures.net/buenos-aires-traffic-city-night-argentina.html
AVERAGE DATA EVENTS / SEC
http://investor.fb.com/results.cfm
http://www.statisticbrain.com/twitter-statistics/
http://stats.wikimedia.org/EN/TablesPageViewsMonthlyCombined.htm
0 30,000 60,000 90,000 120,000 150,000
Twitter: NewTweets Wikipedia: PageViews
Facebook: Messages Sent (Oct 2014) Krux: PageView Data Points
MONTHLY UNIQUE USERS
0M 500M 1,000M 1,500M 2,000M 2,500M
http://reportcard.wmflabs.org/
http://www.statisticbrain.com/twitter-statistics/
http://newsroom.fb.com/company-info/
http://www.goodreads.com/book/show/23346719-disclaimer
http://www.hawaiimedicalfasting.com/eb_product_category/intravenous-iv/
http://www.matthewsnc.gov/Departments/Finance.aspx
USE CASES
Discovery, Processing & Statistics
http://www.antiquefarmhouse.com/past/southern-inspired-decor/vintage-style-handcrafted-wooden-suitcases-set-of-3.html
http://www.cdyear.com/category/hollow-words-answers/hollow-words-answers-second-set-answers/
http://stackify.com/11-ways-to-tail-a-log-file-on-windows-unix/
http://toxbank.net/video/text-search1
http://www.intel.com/pressroom/kits/pentiumee/
http://mymuybueno.com/shop/product.php?ProductID=47
http://www.dreamstime.com/royalty-free-stock-image-piles-berries-image2483996
http://www.keepcalm-o-matic.co.uk/p/keep-calm-exciting-things-are-happening/
http://www.thecollegesolution.com/college-abacus-a-one-stop-shop-for-net-price-calculators/
http://www.michelemmartin.com/thebambooprojectblog/2014/07/design-your-career-harvest-insights.html
http://www.slideshare.net/jiboumans/how-to-measure-everything-a-million-metrics-
per-second-with-minimal-developer-overhead
MAKING GOOD CHOICES
It All Dependstm
http://myyearwithoutclothesshopping.com/shopping-clothes-emotions/defining-moments-and-powerful-choices/
Kinesis SQS RabbitMQ Kafka
Features
Scale up via API
call
Scale up by
AWS
Open Source
(erlang)
Apache Open
Source (scala)
Very consistent
latencies
Dead letter
queue
Dead letter
queue
Performance
Disk IO bound
Works with
AWS tools
Works with
AWS tools
Message &
queue TTL
TTL on age or
queue size
Concerns
Limited amount
of supported
clients libs
Cross
datacenter
replication
Poor partition
tolerance
(documented)
Metrics &
insights need
custom code
All complex
logic in client
Maximum
payload 64kb
Performance/
availability
memory bound
Built in
management
via CLI only
Maximum life
cycle 24 hours
Maximum life
cycle 14 days
Drop acked
messages
Reliance on
Zookeeper
5 QPS/Shard Cost at scale
Verdict ? X X :)
https://aphyr.com/tags/jepsen
http://www.slideshare.net/adamw1pl/eval-repl-mq
BASIC QUEUE SETUP
The ‘Hello world!’ of Kafka
https://tammydotts.wordpress.com/2012/08/15/ikea-hangover/
KAFKA
At least once: Default	

At most once: Client logic
http://www.thessdreview.com/daily-news/latest-buzz/current-ssd-projects-on-the-go/
http://kafka.apache.org/documentation.html#quickstart
http://blog.empathybox.com/post/62279088548/a-few-notes-on-kafka-and-jepsen
ZOOKEEPER
Stores state for Kafka Producers & Consumers	

Use Netflix’ Exhibitor to manage it
http://www.amazon.com/If-Ran-Zoo-Classic-Seuss-ebook/dp/B00ESF29CA
https://zookeeper.apache.org
https://github.com/Netflix/exhibitor/wiki
6num.partitions
=
initial cluster
https://kafka.apache.org/08/ops.html
3
replication.factor
int($IP)
broker.id
ADVANCED SETUP
Filling in the missing pieces
http://www.eurobricks.com/forum/index.php?showtopic=100681
Web Server
User
Request
Logs
Kafka
???
Web Server
User
Request
Logs
Kafka
???
Transport &
Stream
Listener
Message
Processing
Web Server Request Kafka
Transport &
Krux Stream
INSERTING MESSAGES
http://i0.wp.com/farm3.staticflickr.com/2275/1908144722_ed74ee469a.jpg
OPTIMIZE LOGS FOR USAGE
Log directly to JSON
LogFormat ‘{	
	 "TS": "%{%s}t",	
	 "PATH": "%U",	
	 "RESP": "%>s",	
	 "RT": "%D",	
	 "V": "1"	
}' response_time
http://httpd.apache.org/docs/2.4/mod/mod_log_config.html
RELAY DATA IN REALTIME
netcat & udp are your friends
CustomLog "|	
	 /bin/nc -uj	
	 localhost 9999		
" response_time
https://code.google.com/p/openbsd-netcat/source/browse/trunk/netcat.c#73
TRANSPORT OPTIONS
We use PipeD (Krux OSS) on localhost	

Also consider Heka, FluentD or Flume
http://www.launchgram.com/videogames/super-mario-bros-u/ https://github.com/krux/piped
{ udp_port: 9002,	
tcp_port: 9002,	
admin_port: 9003,	
!
statsd_port: 8125,	
statsd_prefix: "prod.piped.topic1.",	
!
servers: [ [ 	
"tcp://listener1:9002",	
"tcp://listener2:9002",	
"tcp://listener3:9002","	
] ]	
}
https://github.com/krux/piped/blob/master/etc/config.js.example
$ echo stats | telnet localhost 9003	
{ "stats": {	
"connections": {	
"admin": 6, "tcp": 0,	
"udp": 889481, "socket": 0,	
"file": 0, "failed": 0	
"idle": 0, "total": 889481,	
"last": 1442619384,	
},	
"start_time": 1442614299,		 "uptime": 5084.679370715	
},	
"active_servers": [ "tcp://listener1:9002" ],	
"all_servers": {	
"tcp://listener1:9002": {	
"available": true,	 "slow": false,	
"down": false,	 	 "messages": 889481,	
"state_changes": 1,	"state_changed": 5083,	
"idle": 0,		 	 	 "last_sent": 1442619384,	
},	
		 ....	
}	
}
https://github.com/krux/piped
CONVERSION
Use Krux Kafka Stream listener 	

to convert log lines to Kafka Messages
http://www.huffingtonpost.com/linda-roy/life-lessons-through-rock-music_b_5551259.html https://github.com/krux/tcp-stream-kafka-producer
java -jar	
	 krux-tcp-stream-kafka-producer-1.3.0-full.jar 	
	 --client.id listener1	
	 --port.topic 9001:topic1	
	 --port.topic 9002:topic2	
	 --http-port 9999	
	 --heartbeat-topic listener.heartbeat	 	
	 --compression.codec snappy	
	 --stats
https://github.com/krux/java-stdlib
https://github.com/krux/tcp-stream-kafka-producer
$ curl -v http://localhost:9999/__status | jq .	
{"state": "OK",	
"status": "tcp_stream_listener_server is running nominally",	
"version": "1.2.5",	
"client_id": "server1.example.com",	
"last_msg_proc_time_nsec": {	
"topic1": 81768,	
"topic2": 168378	
},	
"topic_message_rates": {	
"topic1": {	
"count": 1624,	
"mean_rate": 0.12189879603244635,	
"5_min_rate": 0.1373407202192449,	
"15_min_rate": 0.13443727558716745,	
"1_min_rate": 0.15729613021961694	
},	
.... 	
"port_mappings": {	
"9001": ["topic1"], "9002": ["topic2"]	
} 	
}
https://stedolan.github.io/jq/
snappy
compression.codec
https://kafka.apache.org/08/ops.html
async
producer.type
1
required.acks
http://gorrick.deviantart.com/art/junk-mail-171765833 https://cwiki.apache.org/confluence/display/KAFKA/Ecosystem
EMPTYINGTHE MAILBOX
Web Server
User
Request
Logs
Kafka
???
Web Server
User
Request
Logs
Kafka
???
Transport &
Stream
Listener
Message
Processing
Web Server
User
Request
Logs
Kafka
Transport &
Krux Stream
Listener
Message
Processing
Kafka Stdlib
or Stream
Processors
MESSAGE PROCESSING
Several ways to skin a cat
http://devopslibrary.com/2015/03/13/e09-elk-stack-for-logging-tutorial/
https://elijahpaul.co.uk/monitoring-pfsense-2-1-logs-using-elk-logstash-kibana-elasticsearch/
https://www.elastic.co/
https://www.elastic.co/guide/en/logstash/current/plugins-inputs-kafka.html
### Logstash configuration for consuming from Kafka - Part 1	
!
input {	
kafka {	
auto_offset_reset => smallest 	
group_id => "logstash-cluster"	
white_list => "topic1,topic2"	
decorate_events => true 	
zk_connect => "zk1:2181,zk2:2181,zk3:2181/kafka-root"	
}	
}	
!
filter {	
mutate {	
add_field => { "_temp_type" => "kafka:%{[kafka][topic]}" }	
}	
mutate {	
rename => { "_temp_type" => "type" }	
}	
}
https://www.elastic.co/guide/en/logstash/current/plugins-inputs-kafka.html
https://www.elastic.co/guide/en/logstash/current/plugins-filters-mutate.html
### Logstash configuration for consuming from Kafka - Part 2	
!
output {	
elasticsearch {	
host => [ "es1", "es2", "es3" ]	
cluster => "elasticsearch-cluster"	
index => "%{[kafka][consumer_group]}-%{[kafka][topic]}-%
{+YYYY.MM.dd.HH}"	
}	
!
statsd {	
namespace => "prod.logstash"	
increment => ["%{[kafka][consumer_group].%{[kafka][topic]}"]	
}	
}
https://www.elastic.co/guide/en/logstash/current/plugins-outputs-statsd.html
https://www.elastic.co/guide/en/logstash/current/plugins-outputs-elasticsearch.html
DIY PROCESSING
Krux Kafka Stdlib (java)
http://www.amazon.com/SK-Hand-Tools-86255-Combination/dp/B0002NYCSQ
https://github.com/krux/java-stdlib
https://github.com/krux/java-kafka-client-libs
// democonsumer --topic-threads topic1,5 --topic-threads topic2	
public class DemoConsumer {	
public static void main( String[] args ) {	
// Sets up stdlib & kafka CLI options	
		 OptionParser parser = new OptionParser();	
KafkaConsumer.addStandardOptionsToParser( parser );	
KruxStdLib.setOptionParser( parser );	
OptionSet options = KruxStdLib.initialize( args );	
	
// Attach the handler to the consumer	
final DemoHandler<Object> myHandler = new DemoHandler<Object>();	
KafkaConsumer runner = new KafkaConsumer( options, myHandler );	
	
// Run the consumer	
runner.start();	
}	
public class DemoHandler<T> implements MessageHandler {	
public void onMessage( Object message ) { 	
// Business logic for message processing goes here	
		 KruxStdLib.STATSD.incr("message_size", message.length);	
} 	
}
https://github.com/krux/java-kafka-client-libs
http://blog.ncce.org/2015/03/18/4-tech-savvy-destinations-at-ncce2015/
https://storm.apache.org/
http://spark.apache.org/streaming/
http://www.slideshare.net/ptgoetz/apache-storm-vs-spark-streaming
>largest
message
fetch.message.
max.bytes
https://kafka.apache.org/documentation.html#consumerconfigs
100
rebalance.max.retries
smallest
auto.offset.reset
https://www.youtube.com/watch?v=mnl9mRcE6cI
MULTI DATACENTER
???
Web
Request in
DC2
User
Kafka in
DC2 & Krux
Mirror Maker
Web Server
User
Request
Logs
Kafka in
DC1
Transport &
Krux Stream
Listener
Message
Processing
Krux Kafka
Stdlib or
Stream
Processors
Web
Request in
DC2
User
Web Server
User
Request
Logs
Kafka in
DC1
Transport &
Krux Stream
Listener
Message
Processing
Krux Kafka
Stdlib or
Stream
Processors
REPLICATION
Optimize for central processing
http://marketingthink.com/wp-content/uploads/2014/01/ddb31ea12f42fec6_109733191_10.jpg
https://github.com/krux/kafka-mirror-maker
https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=27846330
KRUX KAFKA MIRROR MAKER
java -jar krux-kafka-mirror-maker-0.4.1.jar 	
--consumer-config mirror.consumer	
--producer-config mirror.producer	
--blacklist listener.heartbeat 	
--http-port 9090	
--stats 	
!
# mirror.producer via SSH Tunnel (optional)	
metadata.broker.list = 	
localhost:19092,localhost:19093,...
https://github.com/krux/kafka-mirror-maker
$ curl http://localhost:9090/__status | jq .	
{	
"state": "OK",	
"status": "krux_mirror_maker is running nominally",	
"version": "0.4.1",	
"mirrored_topics": [	
"topic1",	
"topic2"	
],	
"topic_consumption_stats": {	
"topic1": {	
"count": 105031,	
"mean_rate": 0.12150422084817518,	
"5_min_rate": 0.12091734189375856,	
"15_min_rate": 0.11807509586505133,	
"1_min_rate": 0.14123037951258793	
},	
...	
}	
}
https://stedolan.github.io/jq/
6log.retention.hours
https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=27846330
http://www.slideshare.net/ToddPalino/kafka-at-scale-multitier-architectures
VPN/SSH
transport options
Topic Lag
monitor this
MANAGEMENT & INSIGHTS
Trust but verify
http://www.dilbertcelart.com/dale/c26.jpg
Kafka in
DC2 & Krux
Mirror Maker
Web
Request in
DC2
User
Web Server
User
Request
Logs
Kafka in
DC1
Transport &
Krux Stream
Listener
Message
Processing
Krux Kafka
Stdlib or
Stream
Processors
Stats &
Insights
???
A PICTURE IS WORTH A
THOUSAND CLI CALLS
KAFKA MANAGER
FromYahoo - manage clusters, topics & partitions via UI
https://github.com/yahoo/kafka-manager
INTEGRATING GRAPHITE
Continuous metrics & reporting via 	

Krux Kafka Metrics Reporter
https://github.com/krux/kafka-metrics-reporter
https://kafka.apache.org/documentation.html#monitoring
###	
### Kafka metrics config settings - server.properties 	
###	
!
# Add this jar to your Java Classpath	
kafka.metrics.reporters= 	
com.krux.metrics.reporter.KafkaGraphiteMetricsReporter	
kafka.graphite.metrics.reporter.enabled=true	
kafka.graphite.metrics.host=graphite.example.com	
kafka.graphite.metrics.port=2013	
kafka.graphite.metrics.env=prod
https://github.com/krux/kafka-metrics-reporter
TOPIC LAG
As provided by Krux Kafka Metrics Reporter
http://socialjugg.com/category/fresh/
http://prawnandquartered.com/2011/01/26/if-were-playing-the-a-team-i-get-dibs-on-murdock/
http://www.rediscoverthe80s.com/2013/10/a-team-at-30-10-best-hannibal-smith.html
Kafka in
DC2 & Krux
Mirror Maker
Web
Request in
DC2
User
Web Server
User
Request
Logs
Kafka in
DC1
Transport &
Krux Stream
Listener
Message
Processing
Krux Kafka
Stdlib or
Stream
Processors
Stats &
Insights
Krux Kafka
Graphite
Kafka
Manager
THE FINAL PICTURE
Q & A
http://vickicaruana.blogspot.com/2011/01/are-you-afraid-to-raise-your-hand.html
@jiboumans	

http://slideshare.net/jiboumans

Contenu connexe

Dernier

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
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
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
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
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
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
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
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
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
 
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
 
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
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
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
 
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
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
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
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 

Dernier (20)

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?
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
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)
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
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
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
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
 
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
 
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
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
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
 
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
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
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
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 

En vedette

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
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
 

En vedette (20)

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
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...
 

Keeping it realtime