cd7f34d531c3a594f2d55df700d945188c5d0ddb
[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 * find interfaces with interface discovery: \\ %
413 @FSCTL\_QUERY\_NETWORK\_INTERFACE\_INFO@
414 * bind additional TCP (or RDMA) connection (channel) to established SMB3 session (session bind)
415 * windows: uses connections of same (and best quality)
416 * windows: binds only to a single node
417 * replay / retry mechanisms, epoch numbers
418
419 ==== Multi-Channel - Samba ====
420
421 * samba/smbd: multi-process
422 ** process $\Leftrightarrow$ tcp connection
423 ** ==> transfer new connection to existing smbd
424 ** use fd-passing (sendmsg/recvmsg)
425
426 * preparation: messaging rewrite using unix dgm sockets with sendmsg [DONE,4.2]
427 * add fd-passing [DONE,4.2]
428 * transfer connection already in negprot (ClientGUID) [ess.DONE]
429 * implement channel epoch numbers [WIP]
430 * implement interface discovery [WIP]
431
432 ==== Multi-Channel - Samba ====
433
434 <[center]
435 <<<smb3-mc-samba_exp.png,height=.9\textheight>>>
436 [center]>
437
438 ==== ====[plain]
439
440 <[center]
441 \Large
442 Multi-Channel Demo
443 [center]>
444
445 ==== SMB Direct (RDMA) ====
446
447 * windows:
448 ** requires multi-channel
449 ** start with TCP, bind an RDMA channel
450 ** reads and writes use RDMB write/read
451 ** protocol/metadata via send/receive
452
453 * wireshark dissector: [DONE]
454
455 * samba (TODO):
456 ** prereq: multi-channel / fd-passing
457 ** buffer / transport abstractions [TODO]
458 ** _red_problem_: libraries: not fork safe and no fd-passing \\ %
459 ==> central daemon (or kernel module) to serve as RDMA "proxy"
460
461 ==== SMB Direct (RDMA) - Plan ====
462
463 <[center]
464 <<<smb3-rdma-samba_exp.png,height=.9\textheight>>>
465 [center]>
466
467 %%%==== SMB Direct (RDMA) - Plan ====
468 %%%
469 %%%+<2->{
470 %%%* smbd-d (rdma proxy daemon)
471 %%%** listens on unix domain socket (@/var/lib/smbd-d/socket@)
472 %%%** listens for RDMA connection (as told by main smbd)
473 %%%* main smbd:
474 %%%** listens for TCP connections
475 %%%** connects to smbd-d-socket
476 %%%*** request rdma-interfaces, tell smbd-d on which to listen
477 %%%** "accepts" new smb-direct connections on smdb-d-socket
478 %%%}
479 %%%
480 %%%==== SMB Direct (RDMA) - Plan ====
481 %%%
482 %%%+<2->{
483 %%%* client
484 %%%** connects via TCP --> smbd forks child smbd (c)
485 %%%** connects via RDMA to smbd-d
486 %%%* smbd-d
487 %%%** creates socket-pair as rdma-proxy-channel
488 %%%** passes one end of socket-pair to main smbd for accept
489 %%%** sends smb direct packages over proxy-channel
490 %%%* main smbd
491 %%%** upon receiving NegProt: pass proxy-socket to c based on ClientGUID
492 %%%* c
493 %%%** continues proxy-communication with smdb-d
494 %%%}
495 %%%+<3->{
496 %%%* For @rdma\_read@ and @rdma\_write@:
497 %%%** c and smbd-d establish shared memory area
498 %%%}
499
500
501 %%% ==== Persistent Handles ====
502 %%% 
503 %%% \transdissolve
504 %%% 
505 %%% +<2->{
506 %%% * like durable file handles with strong guarantees
507 %%% * framework is already there in samba (by support for durable v2)
508 %%% ** ==> easy to satisfy at the protocol level
509 %%% }
510 %%% +<3->{
511 %%% * the difficulty lies in implementing the guarantees
512 %%% ** need make metadata persistent
513 %%% ** but don't kill performance!
514 %%% ** persistent tdbs !would! kill performance
515 %%% ** ideas:
516 %%% *** need to be sync
517 %%% *** record-level transactions (instead of db-level)
518 %%% *** only replicate to some nodes, not all
519 %%% }
520
521
522 %%==== Clustering Concepts (Windows) ====
523 %%
524 %%\transdissolve
525 %%
526 %%+<2->{
527 %%* Cluster:
528 %%** (``traditional'') failover cluster (active-passive)
529 %%** protocol: @SMB2\_SHARE\_CAP\_CLUSTER@
530 %%** Windows:
531 %%*** runs off a cluster (failover) volume
532 %%*** offers the Witness service
533 %%}
534 %%+<3->{
535 %%* Scale-Out (SOFS):
536 %%** scale-out cluster (all-active!)
537 %%** protocol: @SMB2\_SHARE\_CAP\_SCALEOUT@
538 %%** no client caching
539 %%** Windows: runs off a cluster shared volume (implies cluster)
540 %%}
541 %%+<4->{
542 %%* Continuous Availability (CA):
543 %%**  transparent failover, persistent handles
544 %%**  protocol: @SMB2\_SHARE\_CAP\_CONTINUOUS\_AVAILABILITY@
545 %%**  can independently turned on on any cluster share (failover or scale-out)
546 %%** ==> changed client retry behaviour!
547 %%}
548
549 %%% ==== Clustering -- Controlling Flags from Windows ====
550 %%% 
551 %%% \transdissolve
552 %%% 
553 %%% +<2->{
554 %%% * a share on a cluster carries
555 %%% ** @SMB2\_SHARE\_CAP\_CLUSTER@ $\Leftrightarrow$ the shared FS is a cluster volume.
556 %%% }
557 %%% +<3->{
558 %%% * a share on a cluster carries
559 %%% ** @SMB2\_SHARE\_CAP\_SCALEOUT@ $\Leftrightarrow$ the shared FS is a CSV
560 %%% *** implies  @SMB2\_SHARE\_CAP\_CLUSTER@
561 %%% }
562 %%% +<4->{
563 %%% * independently settable on a clustered share:
564 %%% ** @SMB2\_SHARE\_CAP\_CONTINUOUS\_AVAILABILITY@
565 %%% *** implies  @SMB2\_SHARE\_CAP\_CLUSTER@
566 %%% }
567 %%% 
568
569 %%==== Clustering -- Server Behaviour ====
570 %%
571 %%\transdissolve
572 %%
573 %%+<2->{
574 %%* @SMB2\_SHARE\_CAP\_CLUSTER@:
575 %%** run witness service (RPC)
576 %%** client can register and get notified about resource changes
577 %%}
578 %%+<3->{
579 %%* @SMB2\_SHARE\_CAP\_SCALEOUT@:
580 %%** do not grant batch oplocks, write leases, handle leases
581 %%** ==> no durable handles unless also CA
582 %%}
583 %%+<4->{
584 %%* @SMB2\_SHARE\_CAP\_CONTINUOUS\_AVAILABILITY@:
585 %%** offer persistent handles
586 %%** timeout from durable v2 request
587 %%}
588 %%
589
590 %%==== Clustering -- Client Behaviour (Win8) ====
591 %%
592 %%\transdissolve
593 %%
594 %%
595 %%+<2->{
596 %%* @SMB2\_SHARE\_CAP\_CLUSTER@:
597 %%** clients happily work if witness is not available
598 %%}
599 %%+<3->{
600 %%* @SMB2\_SHARE\_CAP\_SCALEOUT@:
601 %%** clients happily connect if @CLUSTER@ is not set.
602 %%** clients DO request oplocks/leases/durable handles
603 %%** clients are not confused if they get these
604 %%}
605 %%+<4->{
606 %%* @SMB2\_SHARE\_CAP\_CONTINUOUS\_AVAILABILITY@:
607 %%** clients happily connect if @CLUSTER@ is not set.
608 %%** clients typically request persistent handle with RWH lease
609 %%}
610
611 %%%+<5->{
612 %%%* Note:\\ %
613 %%%Win8 sends @SMB2\_FLAGS\_REPLAY\_OPERATION@ in writes and reads (from 2nd in a row) \\ %
614 %%%$\Leftrightarrow$ \\ %
615 %%%The server announces @SMB2\_CAP\_PERSISTENT\_HANDLES@.
616 %%%}
617
618 %%% ==== Clustering -- Client Behaviour (Win8) : Retries  ====
619 %%% 
620 %%% +<2->{
621 %%% * Test: Win8 against slightly pimped Samba (2 IPs)
622 %%% }
623 %%% +<3->{
624 %%% * Server-Matrix (on/off):
625 %%% ** persistent handle cap
626 %%% ** durable handles
627 %%% ** cluster share cap
628 %%% ** scale out cap
629 %%% ** ca share cap
630 %%% }
631 %%% +<4->{
632 %%% * The test:
633 %%% ** connect to share with explorer
634 %%% ** start copying file (2G)
635 %%% ** kill smbd
636 %%% ** wait for the client to pop up an error dialog
637 %%% ** click cancel
638 %%% ** stop capture
639 %%% }
640 %%% 
641 %%% ==== Clustering -- Client Behaviour (Win8) : Retries  ====
642 %%% 
643 %%% +<2->{
644 %%% * only two different retry characteristics: CA $\leftrightarrow$ non-CA
645 %%% }
646 %%% +<3->{
647 %%% * non-CA-case
648 %%% ** 3 consecutive attempt rounds:
649 %%% *** for each of the two IPs: \\ %
650 %%% arp IP \\ %
651 %%% three tcp syn attempts to IP with 0.5 sec breaks
652 %%% ** ==> some 2.1 seconds for 1 round
653 %%% ** between attempts:
654 %%% ** dns, ping, arp ... 5.8 seconds
655 %%% ** ==> _red_18 seconds_
656 %%% }
657 %%% +<4->{
658 %%% * CA-Case
659 %%% ** retries attempt rounds from above for _red_14 minutes_
660 %%% }
661 %%% 
662 %%% 
663 %%% 
664 %%% ==== ====[plain]
665 %%% 
666 %%% \transdissolve
667 %%% 
668 %%% <[center]
669 %%% <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
670 %%% [center]>
671 %%% 
672 %%% 
673
674 %%==== Clustering with Samba/CTDB ====
675 %%
676 %%+<2->{
677 %%* all-active SMB-cluster with Samba and CTDB... \\ %
678 %%+<3->{...since 2007! \smiley }
679 %%}
680 %%+<4->{
681 %%* transparent for the client
682 %%** CTDB:
683 %%*** metadata and messaging engine for Samba in a cluster
684 %%*** plus cluster resource manager (IPs, services...)
685 %%** client only sees one ``big'' SMB server
686 %%** we could not change the client!...
687 %%** works ``well enough''
688 %%}
689 %%+<5->{
690 %%* challenge:
691 %%** how to integrate SMB3 clustering with Samba/CTDB
692 %%** good: rather orthogonal
693 %%** ctdb-clustering transparent mostly due to management
694 %%}
695 %%
696 %%==== Witness Service ====
697 %%
698 %%+<2->{
699 %%* an RPC service
700 %%** monitoring of availability of resources (shares, NICs)
701 %%** server asks client to move to another resource
702 %%}
703 %%+<3->{
704 %%* remember:
705 %%** available on a Windows SMB3 share $\Leftrightarrow$ @SMB2\_SHARE\_CAP\_CLUSTER@
706 %%** but clients happily connect w/o witness
707 %%}
708 %%+<4->{
709 %%* status in Samba [WIP (Metze, Gregor Beck)]:
710 %%** async RPC: WIP, good progress ($\Rightarrow$ Metze's talk)
711 %%** wireshark dissector: essentially done
712 %%** client: in @rpcclient@ - done
713 %%** server: dummy PoC / tracer bullet implementation done
714 %%** CTDB: changes / integration needed
715 %%}
716
717
718 %%% ==== ====[plain]
719 %%% 
720 %%% <[center]
721 %%% {\Large
722 %%% !@https://wiki.samba.org/index.php/SMB3@!
723 %%% }
724 %%% [center]>
725 %%% 
726 %%% ==== ====[plain]
727 %%% 
728 %%% \transdissolve
729 %%% 
730 %%% <[center]
731 %%% <[columns]
732 %%% [[[.6\textwidth]]]
733 %%% 
734 %%% [[[.3\textwidth]]]
735 %%% <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
736 %%% [columns]>
737 %%% [center]>
738 %%% 
739
740
741 ==== Misc ====[plain]
742
743 %\transdissolve
744
745 <[center]
746 <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
747 [center]>
748
749 ==== Misc ====
750
751 <[block]{File Systems}
752 * gpfs, gluster, ceph, btrfs...
753 * support through vfs modules
754 * fuse-based: avoid context switches
755 * instrument SMB3 storage features (fsctls)
756 [block]>
757
758 ==== Misc ====
759
760 %%<[block]{Under the hood}
761 %%* restructurings, reconsilations
762 %%* ctdb moved into samba tree
763 %%* published libs: talloc, tdb, tevent ...
764 %%[block]>
765
766 <[block]{Testing}
767 * unprivileged selftest, autobuild
768 * selfcontained testing: wrapper
769 ** socket wrapper
770 ** nss wrapper
771 ** uid wrapper
772 ** resolv wrapper [_red_new_]
773 * externalized as separate projects:
774 ** ==> @http://cwrap.org/@
775 ** git on samba.org
776 ** ==> Adreas Schneider's talk
777 [block]>
778
779
780 ==== Forecast: Cloudy ====
781
782 <[block]{Possible involvement with OpenStack}
783 * SMB storage service for Windows (and other) VMs
784 * SMB3 storage backend for Hyper-V images
785 * also: chances for AD-integration into auth
786 [block]>
787
788 ==== Credits ====
789
790 <[block]{especially but not exclusively}
791 * Volker Lendecke
792 * Stefan Metzmacher
793 * Ralph Böhme
794 * Jeremy Allison
795 * David Disseldorp
796 * Andreas Schneider
797 [block]>
798
799
800 ==== Conclusion ====
801
802 <[block]{Remember}
803 * Samba 4.X is quite different from 3.Y
804 [block]>
805
806 <[block]{What's coming?}
807 * Performance: the story continues
808 * Interop: strengthen strenths
809 * SMB(3) features: a lot to come ( ==> cluster, hyper-v, ...)
810 * Some clouds in the sky...
811 [block]>
812
813
814 ==== Thanks for your attention! ====[plain]
815
816 %\transdissolve
817
818 <[center]
819 <[columns]
820 [[[.5\textwidth]]]
821 <<<samba-chilli-flavour-crop-bright-1280.jpg,height=.8\textheight>>>
822 [[[.4\textwidth]]]
823
824 {\Large
825
826 Questions?
827
828 --*4em--
829
830 @obnox\@samba.org@
831
832 @ma\@sernet.de@
833
834 }
835
836 [columns]>
837 [center]>
838