lce14: content
[obnox/slides/2014-10-lce.git] / base-wiki.wiki
1 %
2 % colors:
3 %  _blue_text text_
4 %  _red_text text_
5 %
6
7 ==== ====[plain]
8
9 %%\transdissolve
10
11 <[center]
12 <[columns]
13 [[[.3\textwidth]]]
14 <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
15 [[[.3\textwidth]]]
16 <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
17 [[[.3\textwidth]]]
18 <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
19 [columns]>
20 [center]>
21
22
23 ==== Samba... ====
24
25 <[center]
26 <<<samba-kisses-better-selection.jpg,height=.8\textheight>>>
27 [center]>
28
29
30 ==== Short History ====
31
32 * 1.9.17: 1996/08
33 * 2.0: 1999/01: domain-member, +SWAT
34 * 2.2: 2001/04: NT4-DC
35 * 3.0: 2003/09: AD-member, Samba4 project started
36 * 3.2: 2008/07: GPLv3, experimental clustering
37 * 3.3: 2009/01: clustering
38 * 3.4: 2009/07: merged S3+S4 code
39 * 3.5: 2010/03: experimental SMB 2.0
40 * 3.6: 2011/09: SMB 2.0
41 * 4.0: 2012/12: AD/DC, SMB 2.0 durable handles, 2.1, 3.0
42 * 4.1: 2013/10: stability
43 * 4.2: soon: AD trusts, performance, scalability, CTDB included
44
45 ==== Release Stream ====
46
47
48 <[center]
49 <<<samba-release-stream_exp.png,width=.8\textwidth>>>
50 [center]>
51
52 ==== Samba Team ====
53
54 <[center]
55 <<<samba-team-20141011.png,height=.9\textheight>>>
56 [center]>
57
58 ==== Samba Team ====
59
60 <[center]
61 <<<samba-team-20141011-colorized.png,height=.9\textheight>>>
62 [center]>
63
64
65 ==== Samba File Server Topics / Challenges ====
66
67 # performance: scalable file server
68 #* scale-up: exhaust powerful boxes
69 #* scale-out: flexible all-active clusters
70 #* scale-down: perform well on low-end boxes
71 # interop: multi-protocol access (nfs, afp, ...)
72 # server workloads / SMB features
73 #* tune for: small \# of connections, threaded applications
74 #* Hyper-V, ...
75 #* SMB3 (clustering, RDMA, ...)
76 # special file systems support (gluster, ceph, gpfs, btrfs, ...)
77 # cloud / openstack?...
78 %* (samba $\leftrightarrow$ cifs.ko alternative to nfs?...)
79
80
81 %% ==== Samba File Serving Topics ====
82 %% 
83 %% * Performance
84 %% * Clustering (CTDB)
85 %% * SMB features (SMB3...)
86 %% * Interop (protocols, NFS, AFP, ...)
87 %% * special file systems support (gluster, ceph, gpfs, btrfs...)
88 %% * ...
89
90 %%==== Other Samba Topics ====
91 %%
92 %%* Auth/Domain Member
93 %%* RPC server
94 %%* AD Sever
95 %%* ...
96
97 ==== Performance ====[plain]
98
99 %%\transdissolve
100
101 <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
102
103
104 ==== Performance - low end systems ====
105
106
107 <[block]{Reduction of CPU usage for low profile platforms like arm (SMB2)}
108 * Samba 4.0:
109 ** didn't saturate 1G nic (arm), CPU 100\%
110 * reduced memory allocations
111 * instrument SMB 2.1 multi-credit / large MTU
112 * Samba 4.2:
113 ** saturates 1G nic (arm), CPU $<$ 100\%
114 * ==> continuing
115 [block]>
116
117 ==== Performance - DB performance ====
118
119 <[block]{TDB}
120 * trivial database
121 * used for IPC (smbd processes)
122 * cluster (CTDB): local copies
123 [block]>
124
125 <[block]{hot databases}
126 * @locking.tdb@ (open files)
127 * @brlock.tdb@ (byte range locks)
128 * @notify\_index.tdb@ (for change notify)
129 [block]>
130
131 ==== Performance - DB performance ====
132
133 <[block]{problem 1}
134 * fcntl bty range locks for record locks
135 * contention via single kernel spinlock
136 [block]>
137
138 <[block]{solution}
139 * alternative to fcntl: pthread robust mutexes
140 * ==> massive speedup
141 * ==> included in TDB 1.3.1,  Samba 4.2
142 [block]>
143
144 ==== Performance - DB performance ====
145
146 <[block]{problem 2}
147 * freelist:
148 ** single chain, contended (@locking.tdb@)
149 ** gets fragmented (singly linked)
150 * especially a problem in ctdb-cluster: vacuuming
151 [block]>
152
153 <[block]{improvements}
154 * make use of small per-record freelists (dead records)
155 * add automatic defragmentation upon traversal
156 * ==> included in TDB 1.3.1, Samba 4.2
157 [block]>
158
159 ==== Performance - DB performance ====
160 <[block]{problem 3}
161 * change notify not scalable
162 [block]>
163
164 <[block]{first improvement}
165 * restructured @notify.tdb@ to
166 ** global @notify\_index.tdb@ and
167 ** local @notify.tdb@
168 ** ==> better but still not good enough for some workloads
169 [block]>
170
171 <[block]{next steps}
172 * replace DB-approach by new scalable, async notify daemon using messaging
173 * some false positives do not harm
174 * ==> TODO
175 [block]>
176
177
178 ==== Performance - scaling ====
179
180 <[block]{parellelism}
181 * samba is multi-process:
182 ** smbd child process $\leftrightarrow$ TCP connection
183 ** event-loop in one process
184 * within a smbd process:
185 ** pthread-pool jobs for potentially blocking syscalls
186 ** ==> parallelism for reads/writes
187 ** default for async I/O since Samba 4.0
188 [block]>
189
190 ==== Performance - scaling ====
191
192 <[block]{messaging}
193 * classical messaging:
194 ** messages.tdb and signals between processes
195 ** does not scale well
196 * new massaging in Samba 4.2:
197 ** fast and scalable messaging based on unix datagram messages
198 ** ==> WIP: integrate with AD/DC messaging
199 ** ==> features fd-passing for sockets (SMB3 multi-channel)
200 ** ==> TODO: integrate into CTDB inter-node-messaging
201 [block]>
202
203
204 ==== Interop ====[plain]
205
206 %\transdissolve
207
208 <[center]
209 <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
210 [center]>
211
212
213 ==== Interop-Central ====
214
215 <[block]{multi-protocol access}
216 * nfs (kernel, ganesha, ...)
217 * afp: netatalk
218 * local access
219 * SMB2+ unix-extensions
220 [block]>
221
222
223 ==== File Server Layout/Scope ====
224
225 <[center]
226 <<<samba-layers.jpg,height=.8\textheight>>>
227 [center]>
228
229
230 ==== Interop - Fruit ====
231
232
233 <[columns]
234 [[[.9\textwidth]]]
235 * MacOS 10.9: SMB 2.1 preferred file protocol
236 * @vfs\_fruit@ - new module in Samba 4.2
237 [[[.05\textwidth]]]
238 [columns]>
239
240 <[columns]
241 [[[.55\textwidth]]]
242
243 * spotlight
244 ** indexed search
245 ** dcerpc service
246 ** ==> under review
247 * AAPL
248 ** SMB2 create context
249 ** speed up directory listings
250 ** ==> under review
251
252 [[[.4\textwidth]]]
253 <<<apfel_1280.jpg,width=.9\textwidth>>>
254 [columns]>
255
256 ==== ====[plain]
257
258 <[center]
259 \Large
260 Fruit Demo
261 [center]>
262
263 ==== SMB features ====[plain]
264
265 %\transdissolve
266
267 <[center]
268 <[columns]
269 [[[.6\textwidth]]]
270
271 [[[.3\textwidth]]]
272 <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
273 [columns]>
274 [center]>
275
276
277 ==== SMB features in Samba ====
278
279
280 %<[center]
281 %<[columns]
282 %[[[.7\textwidth]]]
283
284 * SMB 2.0:
285 ** durable file handles [4.0]
286 * SMB 2.1:
287 ** multi-credit / large mtu [4.0]
288 ** dynamic reauthentication [4.0]
289 ** leasing [WIP++]
290 ** resilient file handles [tracer]
291 * SMB 3.0:
292 ** new crypto (sign/encrypt) [4.0]
293 ** secure negotiation [4.0]
294 ** durable handles v2 [4.0]
295 ** persistent file handles [tracer]
296 ** multi-channel [WIP+]
297 ** SMB direct [designed/starting]
298 ** cluster features [designing]
299 *** witness [WIP]
300 ** storage features [WIP]
301 * SMB 3.1: [WIP]
302
303 %[[[.3\textwidth]]]
304 %<<<durable-crop-colormod-1024,width=.9\textwidth,right>>>
305 %[columns]>
306 %[center]>
307
308
309 %%==== ====[plain]
310 %%
311 %%old
312 %%
313 %
314 %%==== Clusterd Samba / CTDB (SOFS since 2007) ====
315 %%
316 %%<[center]
317 %%<<<design-ctdb-three-nodes.png,width=.9\textwidth>>>
318 %%[center]>
319
320
321
322 %%% === SMB 3.0 ====
323 %%% 
324 %%% \transdissolve
325 %%% 
326 %%% +<2->{
327 %%% * new crypto (signing, transport encryption)
328 %%% * persistent file handles
329 %%% * multi-channel
330 %%% * RDMA transport (SMB direct)
331 %%% * storage features
332 %%% * clustering
333 %%% ** witness
334 %%% ** transparent failover (continuous availability)
335 %%% ** all-active (scale-out)
336 %%% }
337 %%% 
338 %%% ==== SMB3 - Goals ====
339 %%% 
340 %%% \transdissolve
341 %%% 
342 %%% +<2->{
343 %%% * fault tolerance / reliability
344 %%% * performance / throughput / scaling
345 %%% * focus on support for server workloads \\ %
346 %%% (as opposed to workstation workloads)
347 %%% * especially support for:
348 %%% ** Hyper-V
349 %%% ** MS-SQL
350 %%% * goals:
351 %%% ** replace block storage in data center
352 %%% ** block (SCSI) over SMB
353 %%% }
354 %%% 
355 %%% ==== Requirements for Hyper-V ====
356 %%% 
357 %%% \transdissolve
358 %%% 
359 %%% +<2->{
360 %%% * minimum requirements:
361 %%% ** SMB 3.0
362 %%% ** is that really all??? - maybe resilient file handles..
363 %%% }
364 %%% +<3->{
365 %%% * desired features:
366 %%% ** cluster ($\ge 2$ nodes)
367 %%% ** CA / persistent handles
368 %%% ** RDMA / SMB direct
369 %%% ** multi channel
370 %%% }
371
372 %%% ==== SMB Protocol in Samba ====
373 %%% 
374 %%% \transdissolve
375 %%% 
376 %%% +<2->{
377 %%% * Samba $<$ 3.5:
378 %%% ** SMB 1
379 %%% * Samba 3.5:
380 %%% ** experimental incomplete support for SMB 2.0
381 %%% * Samba 3.6:
382 %%% ** official support for SMB 2.0
383 %%% ** missing: durable handles
384 %%% ** default server max proto: SMB 1
385 %%% * Samba 4.0:
386 %%% ** SMB 2.0: complete with durable handles
387 %%% ** SMB 2.1: basis, multi-credit, dynamic reauthentication
388 %%% ** SMB 3.0: basis, crypto, secure negotiation, durable v2
389 %%% ** default server max proto: SMB 3.0
390 %%% * Samba 4.1
391 %%% ** SMB 3.02: basic
392 %%% }
393
394 %%% ====  ==== [plain]
395 %%% <[center]
396 %%% {\Large
397 %%% Technical Details...
398 %%% }
399 %%% [center]>
400
401 %%% ==== ====[plain]
402 %%% 
403 %%% \transdissolve
404 %%% 
405 %%% <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
406 %%% 
407 %%% 
408 %%% 
409
410 ==== Multi-Channel - Windows/Protocol ====
411
412 +<2->{
413 * find interfaces with interface discovery: \\ %
414 @FSCTL\_QUERY\_NETWORK\_INTERFACE\_INFO@
415 * bind additional TCP (or RDMA) connection (channel) to established SMB3 session (session bind)
416 * windows: uses connections of same (and best quality)
417 * windows: binds only to a single node
418 * replay / retry mechanisms, epoch numbers
419 }
420
421 ==== Multi-Channel - Samba ====
422
423 +<2->{
424 * samba/smbd: multi-process
425 ** process $\Leftrightarrow$ tcp connection
426 ** ==> transfer new connection to existing smbd
427 ** use fd-passing (sendmsg/recvmsg)
428 }
429 +<3->{
430 * preparation: messaging rewrite using unix dgm sockets with sendmsg [DONE,4.2]
431 * add fd-passing [DONE,4.2]
432 * transfer connection already in negprot (ClientGUID) [ess.DONE]
433 * implement channel epoch numbers [WIP]
434 * implement interface discovery [WIP]
435 }
436
437 ==== Multi-Channel - Samba ====
438
439 <[center]
440 <<<smb3-mc-samba_exp.png,height=.9\textheight>>>
441 [center]>
442
443 ==== ====[plain]
444
445 <[center]
446 \Large
447 Multi-Channel Demo
448 [center]>
449
450 ==== SMB Direct (RDMA) ====
451
452 +<2->{
453 * windows:
454 ** requires multi-channel
455 ** start with TCP, bind an RDMA channel
456 ** reads and writes use RDMB write/read
457 ** protocol/metadata via send/receive
458 }
459 +<3->{
460 * wireshark dissector: [DONE]
461 }
462 +<4->{
463 * samba (TODO):
464 ** prereq: multi-channel / fd-passing
465 ** buffer / transport abstractions [TODO]
466 ** _red_problem_: libraries: not fork safe and no fd-passing \\ %
467 ==> central daemon (or kernel module) to serve as RDMA "proxy"
468 }
469
470 ==== SMB Direct (RDMA) - Plan ====
471
472 <[center]
473 <<<smb3-rdma-samba_exp.png,height=.9\textheight>>>
474 [center]>
475
476 ==== SMB Direct (RDMA) - Plan ====
477
478 +<2->{
479 * smbd-d (rdma proxy daemon)
480 ** listens on unix domain socket (@/var/lib/smbd-d/socket@)
481 ** listens for RDMA connection (as told by main smbd)
482 * main smbd:
483 ** listens for TCP connections
484 ** connects to smbd-d-socket
485 *** request rdma-interfaces, tell smbd-d on which to listen
486 ** "accepts" new smb-direct connections on smdb-d-socket
487 }
488
489 ==== SMB Direct (RDMA) - Plan ====
490
491 +<2->{
492 * client
493 ** connects via TCP --> smbd forks child smbd (c)
494 ** connects via RDMA to smbd-d
495 * smbd-d
496 ** creates socket-pair as rdma-proxy-channel
497 ** passes one end of socket-pair to main smbd for accept
498 ** sends smb direct packages over proxy-channel
499 * main smbd
500 ** upon receiving NegProt: pass proxy-socket to c based on ClientGUID
501 * c
502 ** continues proxy-communication with smdb-d
503 }
504 +<3->{
505 * For @rdma\_read@ and @rdma\_write@:
506 ** c and smbd-d establish shared memory area
507 }
508
509
510 %%% ==== Persistent Handles ====
511 %%% 
512 %%% \transdissolve
513 %%% 
514 %%% +<2->{
515 %%% * like durable file handles with strong guarantees
516 %%% * framework is already there in samba (by support for durable v2)
517 %%% ** ==> easy to satisfy at the protocol level
518 %%% }
519 %%% +<3->{
520 %%% * the difficulty lies in implementing the guarantees
521 %%% ** need make metadata persistent
522 %%% ** but don't kill performance!
523 %%% ** persistent tdbs !would! kill performance
524 %%% ** ideas:
525 %%% *** need to be sync
526 %%% *** record-level transactions (instead of db-level)
527 %%% *** only replicate to some nodes, not all
528 %%% }
529
530
531 %%==== Clustering Concepts (Windows) ====
532 %%
533 %%\transdissolve
534 %%
535 %%+<2->{
536 %%* Cluster:
537 %%** (``traditional'') failover cluster (active-passive)
538 %%** protocol: @SMB2\_SHARE\_CAP\_CLUSTER@
539 %%** Windows:
540 %%*** runs off a cluster (failover) volume
541 %%*** offers the Witness service
542 %%}
543 %%+<3->{
544 %%* Scale-Out (SOFS):
545 %%** scale-out cluster (all-active!)
546 %%** protocol: @SMB2\_SHARE\_CAP\_SCALEOUT@
547 %%** no client caching
548 %%** Windows: runs off a cluster shared volume (implies cluster)
549 %%}
550 %%+<4->{
551 %%* Continuous Availability (CA):
552 %%**  transparent failover, persistent handles
553 %%**  protocol: @SMB2\_SHARE\_CAP\_CONTINUOUS\_AVAILABILITY@
554 %%**  can independently turned on on any cluster share (failover or scale-out)
555 %%** ==> changed client retry behaviour!
556 %%}
557
558 %%% ==== Clustering -- Controlling Flags from Windows ====
559 %%% 
560 %%% \transdissolve
561 %%% 
562 %%% +<2->{
563 %%% * a share on a cluster carries
564 %%% ** @SMB2\_SHARE\_CAP\_CLUSTER@ $\Leftrightarrow$ the shared FS is a cluster volume.
565 %%% }
566 %%% +<3->{
567 %%% * a share on a cluster carries
568 %%% ** @SMB2\_SHARE\_CAP\_SCALEOUT@ $\Leftrightarrow$ the shared FS is a CSV
569 %%% *** implies  @SMB2\_SHARE\_CAP\_CLUSTER@
570 %%% }
571 %%% +<4->{
572 %%% * independently settable on a clustered share:
573 %%% ** @SMB2\_SHARE\_CAP\_CONTINUOUS\_AVAILABILITY@
574 %%% *** implies  @SMB2\_SHARE\_CAP\_CLUSTER@
575 %%% }
576 %%% 
577
578 %%==== Clustering -- Server Behaviour ====
579 %%
580 %%\transdissolve
581 %%
582 %%+<2->{
583 %%* @SMB2\_SHARE\_CAP\_CLUSTER@:
584 %%** run witness service (RPC)
585 %%** client can register and get notified about resource changes
586 %%}
587 %%+<3->{
588 %%* @SMB2\_SHARE\_CAP\_SCALEOUT@:
589 %%** do not grant batch oplocks, write leases, handle leases
590 %%** ==> no durable handles unless also CA
591 %%}
592 %%+<4->{
593 %%* @SMB2\_SHARE\_CAP\_CONTINUOUS\_AVAILABILITY@:
594 %%** offer persistent handles
595 %%** timeout from durable v2 request
596 %%}
597 %%
598
599 %%==== Clustering -- Client Behaviour (Win8) ====
600 %%
601 %%\transdissolve
602 %%
603 %%
604 %%+<2->{
605 %%* @SMB2\_SHARE\_CAP\_CLUSTER@:
606 %%** clients happily work if witness is not available
607 %%}
608 %%+<3->{
609 %%* @SMB2\_SHARE\_CAP\_SCALEOUT@:
610 %%** clients happily connect if @CLUSTER@ is not set.
611 %%** clients DO request oplocks/leases/durable handles
612 %%** clients are not confused if they get these
613 %%}
614 %%+<4->{
615 %%* @SMB2\_SHARE\_CAP\_CONTINUOUS\_AVAILABILITY@:
616 %%** clients happily connect if @CLUSTER@ is not set.
617 %%** clients typically request persistent handle with RWH lease
618 %%}
619
620 %%%+<5->{
621 %%%* Note:\\ %
622 %%%Win8 sends @SMB2\_FLAGS\_REPLAY\_OPERATION@ in writes and reads (from 2nd in a row) \\ %
623 %%%$\Leftrightarrow$ \\ %
624 %%%The server announces @SMB2\_CAP\_PERSISTENT\_HANDLES@.
625 %%%}
626
627 %%% ==== Clustering -- Client Behaviour (Win8) : Retries  ====
628 %%% 
629 %%% +<2->{
630 %%% * Test: Win8 against slightly pimped Samba (2 IPs)
631 %%% }
632 %%% +<3->{
633 %%% * Server-Matrix (on/off):
634 %%% ** persistent handle cap
635 %%% ** durable handles
636 %%% ** cluster share cap
637 %%% ** scale out cap
638 %%% ** ca share cap
639 %%% }
640 %%% +<4->{
641 %%% * The test:
642 %%% ** connect to share with explorer
643 %%% ** start copying file (2G)
644 %%% ** kill smbd
645 %%% ** wait for the client to pop up an error dialog
646 %%% ** click cancel
647 %%% ** stop capture
648 %%% }
649 %%% 
650 %%% ==== Clustering -- Client Behaviour (Win8) : Retries  ====
651 %%% 
652 %%% +<2->{
653 %%% * only two different retry characteristics: CA $\leftrightarrow$ non-CA
654 %%% }
655 %%% +<3->{
656 %%% * non-CA-case
657 %%% ** 3 consecutive attempt rounds:
658 %%% *** for each of the two IPs: \\ %
659 %%% arp IP \\ %
660 %%% three tcp syn attempts to IP with 0.5 sec breaks
661 %%% ** ==> some 2.1 seconds for 1 round
662 %%% ** between attempts:
663 %%% ** dns, ping, arp ... 5.8 seconds
664 %%% ** ==> _red_18 seconds_
665 %%% }
666 %%% +<4->{
667 %%% * CA-Case
668 %%% ** retries attempt rounds from above for _red_14 minutes_
669 %%% }
670 %%% 
671 %%% 
672 %%% 
673 %%% ==== ====[plain]
674 %%% 
675 %%% \transdissolve
676 %%% 
677 %%% <[center]
678 %%% <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
679 %%% [center]>
680 %%% 
681 %%% 
682
683 %%==== Clustering with Samba/CTDB ====
684 %%
685 %%+<2->{
686 %%* all-active SMB-cluster with Samba and CTDB... \\ %
687 %%+<3->{...since 2007! \smiley }
688 %%}
689 %%+<4->{
690 %%* transparent for the client
691 %%** CTDB:
692 %%*** metadata and messaging engine for Samba in a cluster
693 %%*** plus cluster resource manager (IPs, services...)
694 %%** client only sees one ``big'' SMB server
695 %%** we could not change the client!...
696 %%** works ``well enough''
697 %%}
698 %%+<5->{
699 %%* challenge:
700 %%** how to integrate SMB3 clustering with Samba/CTDB
701 %%** good: rather orthogonal
702 %%** ctdb-clustering transparent mostly due to management
703 %%}
704 %%
705 %%==== Witness Service ====
706 %%
707 %%+<2->{
708 %%* an RPC service
709 %%** monitoring of availability of resources (shares, NICs)
710 %%** server asks client to move to another resource
711 %%}
712 %%+<3->{
713 %%* remember:
714 %%** available on a Windows SMB3 share $\Leftrightarrow$ @SMB2\_SHARE\_CAP\_CLUSTER@
715 %%** but clients happily connect w/o witness
716 %%}
717 %%+<4->{
718 %%* status in Samba [WIP (Metze, Gregor Beck)]:
719 %%** async RPC: WIP, good progress ($\Rightarrow$ Metze's talk)
720 %%** wireshark dissector: essentially done
721 %%** client: in @rpcclient@ - done
722 %%** server: dummy PoC / tracer bullet implementation done
723 %%** CTDB: changes / integration needed
724 %%}
725
726
727 %%% ==== ====[plain]
728 %%% 
729 %%% <[center]
730 %%% {\Large
731 %%% !@https://wiki.samba.org/index.php/SMB3@!
732 %%% }
733 %%% [center]>
734 %%% 
735 %%% ==== ====[plain]
736 %%% 
737 %%% \transdissolve
738 %%% 
739 %%% <[center]
740 %%% <[columns]
741 %%% [[[.6\textwidth]]]
742 %%% 
743 %%% [[[.3\textwidth]]]
744 %%% <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
745 %%% [columns]>
746 %%% [center]>
747 %%% 
748
749
750 ==== Misc ====[plain]
751
752 %\transdissolve
753
754 <[center]
755 <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
756 [center]>
757
758 ==== Misc ====
759
760 <[block]{File Systems}
761 * gpfs, gluster, ceph, btrfs...
762 * support through vfs modules
763 * fuse-based: avoid context switches
764 * instrument SMB3 storage features (fsctls)
765 [block]>
766
767 ==== Misc ====
768
769 %%<[block]{Under the hood}
770 %%* restructurings, reconsilations
771 %%* ctdb moved into samba tree
772 %%* published libs: talloc, tdb, tevent ...
773 %%[block]>
774
775 <[block]{Testing}
776 * unprivileged selftest, autobuild
777 * selfcontained testing: wrapper
778 ** socket wrapper
779 ** nss wrapper
780 ** uid wrapper
781 ** resolv wrapper [_red_new_]
782 * externalized as separate projects:
783 ** ==> @http://cwrap.org/@
784 ** git on samba.org
785 ** ==> Adreas Schneider's talk
786 [block]>
787
788
789 ==== Forecast: Cloudy ====
790
791 <[block]{Possible involvement with OpenStack}
792 * SMB storage service for Windows (and other) VMs
793 * SMB3 storage backend for Hyper-V images
794 * also: chances for AD-integration into auth
795 [block]>
796
797 ==== Credits ====
798
799 <[block]{especially but not exclusively}
800 * Volker Lendecke
801 * Stefan Metzmacher
802 * Ralph Böhme
803 * David Disseldorp
804 * Andreas Schneider
805 [block]>
806
807
808 ==== Conclusion ====
809
810 <[block]{Remember}
811 * Samba 4.X is quite different from 3.Y
812 [block]>
813
814 <[block]{What's coming?}
815 * Performance: the story continues
816 * Interop: strengthen strenths
817 * SMB(3) features: a lot to come ( ==> cluster, hyper-v, ...)
818 * Some clouds in the sky...
819 [block]>
820
821
822 ==== Thanks for your attention! ====[plain]
823
824 %\transdissolve
825
826 <[center]
827 <[columns]
828 [[[.5\textwidth]]]
829 <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
830 [[[.4\textwidth]]]
831
832 {\Large
833
834 Questions?
835
836 --*4em--
837
838 @obnox\@samba.org@
839
840 @ma\@sernet.de@
841
842 }
843
844 [columns]>
845 [center]>
846