ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/perlmulticore/perlmulticore.pod
Revision: 1.3
Committed: Mon Jul 6 04:00:35 2015 UTC (9 years, 3 months ago) by root
Branch: MAIN
Changes since 1.2: +295 -11 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 =head1 NAME
2    
3     The Perl Multicore Specification and Implementation
4    
5     =head1 SYNOPSIS
6    
7     #include "perlmultiore.h"
8    
9     // in your XS function:
10    
11     perlinterp_release ();
12     do_the_C_thing ();
13     perlinterp_acquire ();
14    
15     =head1 DESCRIPTION
16    
17 root 1.2 This specification describes a simple mechanism for XS modules to allow
18 root 1.1 re-use of the perl interpreter for other threads while doing some lengthy
19     operation, such as cryptography, SQL queries, disk I/O and so on.
20    
21 root 1.2 The design goals for this mechanism were to be simple to use, to be
22     extremely low overhead when not active, with both low code and data size
23     overhead and broad applicability.
24 root 1.1
25     The newest version of this document can be found at
26     L<http://perlmulticore.schmorp.de/>.
27    
28 root 1.2 The newest version of the header file that implements this specification
29     can be downloaded from L<http://perlmulticore.schmorp.de/perlmulticore.h>.
30 root 1.1
31 root 1.3 =head2 XS? HOW DO I USE THIS FROM PERL?
32    
33     This document is only about the XS-level mechanism that defines generic
34     callbacks - to make use of this, you need a module that provides an
35     implementation for these callbacks, for example
36     L<Coro::Multicore|http://pod.tst.eu/http://cvs.schmorp.de/Coro-Multicore/Multicore.pm>.
37    
38     =head2 WHICH MODULES SUPPORT IT?
39    
40     You can check L<the perl multicore registry|http://perlmulticore.schmorp.de/registry>
41     for a list of modules that support this specification.
42    
43 root 1.1 =head1 HOW DO I USE THIS IN MY MODULES?
44    
45     The usage is very simple - you include this header file in your XS module. Then, before you
46     do your lengthy operation, you release the perl interpreter:
47    
48     perlinterp_release ();
49    
50     And when you are done with your computation, you acquire it again:
51    
52     perlinterp_acquire ();
53    
54     And that's it. This doesn't load any modules and consists of only a few
55     machine instructions when no module to take advantage of it is loaded.
56    
57     Here is a simple example, an C<flock> wrapper implemented in XS. Unlike
58     perl's built-in C<flock>, it allows other threads (for example, those
59     provided by L<Coro>) to execute, instead of blocking the whole perl
60     interpreter. For the sake of this example, it requires a file descriptor
61     instead of a handle.
62    
63     #include "perlmulticore.h" // this header file
64    
65     // and in the XS portion
66     int flock (int fd, int operation)
67     CODE:
68     perlinterp_release ();
69     RETVAL = flock (fd, operation);
70     perlinterp_acquire ();
71     OUTPUT:
72     RETVAL
73    
74 root 1.3 You cna find more examples In the L<Case Studies> appendix.
75 root 1.1
76     =head2 HOW ABOUT NOT-SO LONG WORK?
77    
78     Sometimes you don't know how long your code will take - in a compression
79     library for example, compressing a few hundred Kilobyte of data can take
80     a while, while 50 Bytes will compress so fast that even attempting to do
81     something else could be more costly than just doing it.
82    
83     This is a very hard problem to solve. The best you can do at the moment is
84     to release the perl interpreter only when you think the work to be done
85     justifies the expense.
86    
87     As a rule of thumb, if you expect to need more than a few thousand cycles,
88     you should release the interpreter, else you shouldn't. When in doubt,
89     release.
90    
91     For example, in a compression library, you might want to do this:
92    
93     if (bytes_to_be_compressed > 2000) perlinterp_release ();
94     do_compress (...);
95     if (bytes_to_be_compressed > 2000) perlinterp_acquire ();
96    
97     Make sure the if conditions are exactly the same and don't change, so you
98     always call acquire when you release, and vice versa.
99    
100     When you don't have a handy indicator, you might still do something
101     useful. For example, if you do some file locking with C<fcntl> and you
102     expect the lock to be available immediately in most cases, you could try
103     with C<F_SETLK> (which doesn't wait), and only release/wait/acquire when
104     the lock couldn't be set:
105    
106     int res = fcntl (fd, F_SETLK, &flock);
107    
108     if (res)
109     {
110     // error, assume lock is held by another process and do it the slow way
111     perlinterp_release ();
112     res = fcntl (fd, F_SETLKW, &flock);
113     perlinterp_acquire ();
114     }
115    
116     =head1 THE HARD AND FAST RULES
117    
118     As with everything, there are a number of rules to follow.
119    
120     =over 4
121    
122     =item I<Never> touch any perl data structures after calling C<perlinterp_release>.
123    
124     Possibly the most important rule of them all, anything perl is
125     completely off-limits after C<perlinterp_release>, until you call
126     C<perlinterp_acquire>, after which you can access perl stuff again.
127    
128     That includes anything in the perl interpreter that you didn't prove to be
129     safe, and didn't prove to be safe in older and future versions of perl:
130     global variables, local perl scalars, even if you are sure nobody accesses
131     them and you only try to "read" their value, and so on.
132    
133     If you need to access perl things, do it before releasing the
134     interpreter with C<perlinterp_release>, or after acquiring it again with
135     C<perlinterp_acquire>.
136    
137     =item I<Always> call C<perlinterp_release> and C<perlinterp_acquire> in pairs.
138    
139     For each C<perlinterp_release> call there must be a C<perlinterp_acquire>
140     call. They don't have to be in the same function, and you can have
141     multiple calls to them, as long as every C<perlinterp_release> call is
142     followed by exactly one C<perlinterp_acquire> call.
143    
144     For example., this would be fine:
145    
146     perlinterp_release ();
147    
148     if (!function_that_fails_with_0_return_value ())
149     {
150     perlinterp_acquire ();
151     croak ("error");
152     // croak doesn't return
153     }
154    
155     perlinterp_acquire ();
156     // do other stuff
157    
158     =item I<Never> nest calls to C<perlinterp_release> and C<perlinterp_acquire>.
159    
160     That simply means that after calling C<perlinterp_release>, you must
161     call C<perlinterp_acquire> before calling C<perlinterp_release>
162     again. Likewise, after C<perlinterp_acquire>, you can call
163     C<perlinterp_release> but not another C<perlinterp_acquire>.
164    
165     =item I<Always> call C<perlinterp_release> first.
166    
167     Also simple: you I<must not> call C<perlinterp_acquire> without having
168     called C<perlinterp_release> before.
169    
170     =item I<Never> underestimate threads.
171    
172     While it's easy to add parallel execution ability to your XS module, it
173     doesn't mean it is safe. After you release the perl interpreter, it's
174     perfectly possible that it will call your XS function in another thread,
175     even while your original function still executes. In other words: your C
176     code must be thread safe, and if you use any library, that library must be
177     thread-safe, too.
178    
179     Always assume that the code between C<perlinterp_release> and
180     C<perlinterp_acquire> is executed in parallel on multiple CPUs at the same
181     time. If your code can't cope with that, you could consider using a mutex
182     to only allow one such execution, which is still better than blocking
183     everybody else from doing anything:
184    
185     static pthread_mutex_t my_mutex = PTHREAD_MUTEX_INITIALIZER;
186    
187     perlinterp_release ();
188     pthread_mutex_lock (&my_mutex);
189     do_your_non_thread_safe_thing ();
190     pthread_mutex_unlock (&my_mutex);
191     perlinterp_acquire ();
192    
193     =item I<Don't> get confused by having to release first.
194    
195     In many real world scenarios, you acquire a resource, do something, then
196     release it again. Don't let this confuse you, with this, you already own
197     the resource (the perl interpreter) so you have to I<release> first, and
198     I<acquire> it again later, not the other way around.
199    
200     =back
201    
202    
203     =head1 DESIGN PRINCIPLES
204    
205     This section discusses how the design goals were reached (you be the
206     judge), how it is implemented, and what overheads this implies.
207    
208     =over 4
209    
210     =item Simple to Use
211    
212     All you have to do is identify the place in your existing code where you
213     stop touching perl stuff, do your actual work, and start touching perl
214     stuff again.
215    
216     Then slap C<perlinterp_release ()> and C<perlinterp_acquire ()> around the
217     actual work code.
218    
219     You have to include F<perlmulticore.h> and distribute it with your XS
220     code, but all these things border on the trivial.
221    
222     =item Very Efficient
223    
224     The definition for C<perlinterp_release> and C<perlinterp_release> is very
225     short:
226    
227     #define perlinterp_release() perl_multicore_api->pmapi_release ()
228     #define perlinterp_acquire() perl_multicore_api->pmapi_acquire ()
229    
230     Both are macros that read a pointer from memory (perl_multicore_api),
231     dereference a function pointer stored at that place, and call the
232     function, which takes no arguments and returns nothing.
233    
234     The first call to C<perlinterp_release> will check for the presence
235     of any supporting module, and if none is loaded, will create a dummy
236     implementation where both C<pmapi_release> and C<pmapi_acquire> execute
237     this function:
238    
239     static void perl_multicore_nop (void) { }
240    
241     So in the case of no magical module being loaded, all calls except the
242     first are two memory accesses and a predictable function call of an empty
243     function.
244    
245     Of course, the overhead is much higher when these functions actually
246     implement anything useful, but you always get what you pay for.
247    
248     With L<Coro::Multicore>, every release/acquire involves two pthread
249     switches, two coro thread switches, a bunch of syscalls, and sometimes
250     interacting with the event loop.
251    
252     A dedicated thread pool such as the one L<IO::AIO> uses could reduce
253     these overheads, and would also reduce the dependencies (L<AnyEvent> is a
254     smaller and more portable dependency than L<Coro>), but it would require a
255     lot more work on the side of the module author wanting to support it than
256     this solution.
257    
258     =item Low Code and Data Size Overhead
259    
260     On a 64 bit system, F<perlmulticore.h> uses exactly C<8> octets (one
261     pointer) of your data segment, to store the C<perl_multicore_api>
262     pointer. In addition it creates a C<16> octet perl string to store the
263     function pointers in, and stores it in a hash provided by perl for this
264     purpose.
265    
266     This is pretty much the equivalent of executing this code:
267    
268     $existing_hash{perl_multicore_api} = "123456781234567812345678";
269    
270     And that's it, which is, as I think, indeed very little.
271    
272     As for code size, on my amd64 system, every call to C<perlinterp_release>
273     or C<perlinterp_acquire> results in a variation of the following 9-10
274     octet sequence:
275    
276     150> mov 0x200f23(%rip),%rax # <perl_multicore_api>
277     157> callq *0x8(%rax)
278    
279     The biggest part if the initialisation code, which consists of 11 lines of
280     typical XS code. On my system, all the code in F<perlmulticore.h> compiles
281     to less than 160 octets of read-only data.
282    
283     =item Broad Applicability
284    
285     While there are alternative ways to achieve the goal of parallel execution
286     with threads that might be more efficient, this mechanism was chosen
287     because it is very simple to retrofit existing modules with it, and it
288    
289     The design goals for this mechanism were to be simple to use, very
290     efficient when not needed, low code and data size overhead and broad
291     applicability.
292    
293     =back
294    
295    
296     =head1 DISABLING PERL MULTICORE AT COMPILE TIME
297    
298     You can disable the complete perl multicore API by defining the
299     symbol C<PERL_MULTICORE_DISABLE> to C<1> (e.g. by specifying
300     F<-DPERL_MULTICORE_DISABLE> as compiler argument).
301    
302     This will leave no traces of the API in the compiled code, suitable
303     "empty" C<perl_release> and C<perl_acquire> definitions will be provided.
304    
305     This could be added to perl's C<CPPFLAGS> when configuring perl on
306     platforms that do not support threading at all for example.
307    
308    
309 root 1.3 =head1 Appendix: Case StudiesX<Case Studies>
310    
311     This appendix shows some case studies on how to patch existing
312     modules. Unless they are available on CPAN, the patched modules (including
313     diffs), can be found at the perl multicore repository (see L<the
314     perlmulticore registry|http://perlmulticore.schmorp.de/registry>)
315    
316     In addition to the patches shown, the
317     L<perlmulticore.h|http://perlmulticore.schmorp.de/perlmulticore.h> header
318     must be added to the module and included in any XS or C file that uses it.
319    
320    
321     =head2 Case Study: C<Digest::MD5>
322    
323     The C<Digest::MD5> module presents some unique challenges becausu it mixes
324     Perl-I/O and CPU-based processing.
325    
326     So first let's identify the easy cases - set up (in C<new>) and
327     calculating the final digest are very fast operations and would unlikely
328     profit from running them in a separate thread. Which leaves the C<add>
329     method and the C<md5> (C<md5_hex>, C<md5_base64>) functions.
330    
331     They are both very easy to update - the C<MD5Update> call
332     doesn't access any perl data structures, so you can slap
333     C<perlinterp_release>/C<perlinterp_acquire> around it:
334    
335     if (len > 8000) perlinterp_release ();
336     MD5Update(context, data, len);
337     if (len > 8000) perlinterp_acquire ();
338    
339     This works for both C<add> and C<md5> XS functions. The C<8000> is
340     somewhat arbitrary.
341    
342     This leaves C<addfile>, which would normally be the ideal candidate,
343     because it is often used on large files and needs to wait both for I/O and
344     the CPU. Unfortunately, it is implemented like this (only the inner loop
345     is shown):
346    
347     unsigned char buffer[4096];
348    
349     while ( (n = PerlIO_read(fh, buffer, sizeof(buffer))) > 0) {
350     MD5Update(context, buffer, n);
351     }
352    
353     That is, it uses a 4KB buffer per C<MD5Update>. Putting
354     C<perlinterp_release>/C<perlinterp_acquire> calls around it would be way
355     too inefficient. Ideally, you would want to put them around the whole
356     loop.
357    
358     Unfortunately, C<Digest::MD5> uses C<PerlIO> for the actual I/O, and
359     C<PerlIO> is not thread-safe. We can't even use a mutex, as we would have
360     to protect against all other C<PerlIO> calls.
361    
362     As a compromise, we can use the C<USE_HEAP_INSTEAD_OF_STACK> option that
363     C<Digest::MD5> provide, which puts the buffer onto the stack, and use a
364     far larger buffer:
365    
366     #define USE_HEAP_INSTEAD_OF_STACK
367    
368     New(0, buffer, 1024 * 1024, unsigned char);
369    
370     while ( (n = PerlIO_read(fh, buffer, sizeof(buffer))) > 0) {
371     if (n > 8000) perlinterp_release ();
372     MD5Update(context, buffer, n);
373     if (n > 8000) perlinterp_acquire ();
374     }
375    
376     This will unfortunately still block on I/O, and allocate a large block of
377     memory, but it is better than nothing.
378    
379    
380     =head2 Case Study: C<DBD::mysql>
381    
382     Another example would be to modify C<DBD::mysql> to allow other
383     threads to execute while executing SQL queries.
384    
385     The actual code that needs to be patched is not actually in an F<.xs>
386     file, but in the F<dbdimp.c> file, which is included in an XS file.
387    
388     While there are many calls, the most important ones are the statement
389     execute calls. There are only two in F<dbdimp.c>, one call in
390     C<mysql_st_internal_execute41>, and one in C<dbd_st_execute>, both calling
391     the undocumented internal C<mysql_st_internal_execute> function.
392    
393     The difference is that the former is used with mysql 4.1+ and prepared
394     statements.
395    
396     The call in C<dbd_st_execute> is easy, as it does all the important work
397     and doesn't access any perl data structures (I checked C<DBIc_NUM_PARAMS>
398     manually to make sure):
399    
400     perlinterp_release ();
401     imp_sth->row_num= mysql_st_internal_execute(
402     sth,
403     *statement,
404     NULL,
405     DBIc_NUM_PARAMS(imp_sth),
406     imp_sth->params,
407     &imp_sth->result,
408     imp_dbh->pmysql,
409     imp_sth->use_mysql_use_result
410     );
411     perlinterp_acquire ();
412    
413     Despite the name, C<mysql_st_internal_execute41> isn't actually from
414     F<libmysqlclient>, but a long function in F<dbdimp.c>. Here is an abridged version, with
415     C<perlinterp_release>/C<perlinterp_acquire> calls:
416    
417     int i;
418     enum enum_field_types enum_type;
419     dTHX;
420     int execute_retval;
421     my_ulonglong rows=0;
422     D_imp_xxh(sth);
423    
424     if (DBIc_TRACE_LEVEL(imp_xxh) >= 2)
425     PerlIO_printf(DBIc_LOGPIO(imp_xxh),
426     "\t-> mysql_st_internal_execute41\n");
427    
428     perlinterp_release ();
429    
430     if (num_params > 0 && !(*has_been_bound))
431     {
432     if (mysql_stmt_bind_param(stmt,bind))
433     goto error;
434     }
435    
436     if (DBIc_TRACE_LEVEL(imp_xxh) >= 2)
437     {
438     perlinterp_release ();
439     PerlIO_printf(DBIc_LOGPIO(imp_xxh),
440     "\t\tmysql_st_internal_execute41 calling mysql_execute with %d num_params\n",
441     num_params);
442     perlinterp_acquire ();
443     }
444    
445    
446     execute_retval= mysql_stmt_execute(stmt);
447    
448     if (execute_retval)
449     goto error;
450    
451     /*
452     This statement does not return a result set (INSERT, UPDATE...)
453     */
454     if (!(*result= mysql_stmt_result_metadata(stmt)))
455     {
456     if (mysql_stmt_errno(stmt))
457     goto error;
458    
459     rows= mysql_stmt_affected_rows(stmt);
460     }
461     /*
462     This statement returns a result set (SELECT...)
463     */
464     else
465     {
466     for (i = mysql_stmt_field_count(stmt) - 1; i >=0; --i) {
467     enum_type = mysql_to_perl_type(stmt->fields[i].type);
468     if (enum_type != MYSQL_TYPE_DOUBLE && enum_type != MYSQL_TYPE_LONG)
469     {
470     /* mysql_stmt_store_result to update MYSQL_FIELD->max_length */
471     my_bool on = 1;
472     mysql_stmt_attr_set(stmt, STMT_ATTR_UPDATE_MAX_LENGTH, &on);
473     break;
474     }
475     }
476     /* Get the total rows affected and return */
477     if (mysql_stmt_store_result(stmt))
478     goto error;
479     else
480     rows= mysql_stmt_num_rows(stmt);
481     }
482     perlinterp_acquire ();
483     if (DBIc_TRACE_LEVEL(imp_xxh) >= 2)
484     PerlIO_printf(DBIc_LOGPIO(imp_xxh),
485     "\t<- mysql_internal_execute_41 returning %d rows\n",
486     (int) rows);
487     return(rows);
488    
489     error:
490     if (*result)
491     {
492     mysql_free_result(*result);
493     *result= 0;
494     }
495     perlinterp_acquire ();
496     if (DBIc_TRACE_LEVEL(imp_xxh) >= 2)
497     PerlIO_printf(DBIc_LOGPIO(imp_xxh),
498     " errno %d err message %s\n",
499     mysql_stmt_errno(stmt),
500     mysql_stmt_error(stmt));
501    
502     So C<perlinterp_release> is called after some logging, but before the
503     C<mysql_free_result> call.
504    
505     To make things more interesting, the function has multiple calls to
506     C<PerlIO> to log things, all of which aren't thread-safe, and need to be
507     surrounded with C<perlinterp_acquire> and C<pelrinterp_release> calls
508     to temporarily re-acquire the interpreter. This is slow, but logging is
509     normally off:
510    
511     if (DBIc_TRACE_LEVEL(imp_xxh) >= 2)
512     {
513     perlinterp_release ();
514     PerlIO_printf(DBIc_LOGPIO(imp_xxh),
515     "\t\tmysql_st_internal_execute41 calling mysql_execute with %d num_params\n",
516     num_params);
517     perlinterp_acquire ();
518     }
519    
520     The function also has a separate error exit, each of which needs it's own
521     C<perlinterp_acquire> call. First the normal function exit:
522    
523     perlinterp_acquire ();
524     if (DBIc_TRACE_LEVEL(imp_xxh) >= 2)
525     PerlIO_printf(DBIc_LOGPIO(imp_xxh),
526     "\t<- mysql_internal_execute_41 returning %d rows\n",
527     (int) rows);
528     return(rows);
529    
530     And this is the error exit:
531    
532     error:
533     if (*result)
534     {
535     mysql_free_result(*result);
536     *result= 0;
537     }
538     perlinterp_acquire ();
539    
540     This is enough to run DBI's C<execute> calls in separate threads.
541    
542     =head3 Interlude: the various C<DBD::mysql> async mechanisms
543    
544     Here is a short discussion of the four principal ways to run
545     C<DBD::mysql> SQL queries asynchronously.
546    
547     =over 4
548    
549     =item in a separate process
550    
551     Both C<AnyEvent::DBI> and C<DBD::Gofer> (via
552     C<DBD::Gofer::Transport::corostream>) can run C<DBI> calls in a separate
553     process, and this is not limited to mysql. This has to be paid with more
554     complex management, some limitations in what can be done, and an extra
555     serailisation/deserialisation step for all data.
556    
557     =item C<DBD::mysql>'s async support
558    
559     This let's you execute the SQL query, while waiting for the results
560     via an event loop or similar mechanism. This is reasonably fast and
561     very compatible, but the disadvantage are that C<DBD::mysql> requires
562     undocumented internal functions to do this, and more importantly, this
563     only covers the actual execution phase, not the data transfer phase:
564     for statements with large results, the program blocks till all of it is
565     transferred, which can include large amounts of disk I/O.
566    
567     =item C<Coro::Mysql>
568    
569     This module actually works quite similar to the perl multicore, but uses
570     Coro threads exclusively. It shares the advantages of C<DBD::mysql>'s
571     async mode, but not, at least in theory, it's disadvantages. In practise,
572     the mechanism it uses isn't undocumented, but distributions often don't
573     come with the correct header file needed top use it, and oracle's mysql
574     has broken whtis mechanism multiple times (mariadb supports it), so it's
575     actually less reliably available than C<DBD::mysql>'s async mode or perl
576     multicore.
577    
578     It also requires C<Coro>.
579    
580     =item perl multicore
581    
582     This method has all the advantages of C<Coro::Mysql> without most
583     disadvantages, except that it incurs higher overhead due to the extra
584     thread switching.
585    
586     =back
587    
588     Pick your poison.
589    
590    
591 root 1.1 =head1 AUTHOR
592    
593     Marc A. Lehmann <perlmulticore@schmorp.de>
594     http://perlmulticore.schmorp.de/
595    
596     =head1 LICENSE
597    
598     The F<perlmulticore.h> header file is put into the public
599     domain. Where this is legally not possible, or at your
600     option, it can be licensed under creativecommons CC0
601     license: L<https://creativecommons.org/publicdomain/zero/1.0/>.
602