¿Cómo se utiliza el multiprocesamiento para abordar problemas embarazosamente paralelos ?
Los problemas vergonzosamente paralelos suelen constar de tres partes básicas:
- Leer datos de entrada (de un archivo, base de datos, conexión tcp, etc.).
- Ejecute cálculos sobre los datos de entrada, donde cada cálculo es independiente de cualquier otro cálculo .
- Escribe los resultados de los cálculos (en un archivo, base de datos, conexión tcp, etc.).
Podemos paralelizar el programa en dos dimensiones:
- La parte 2 se puede ejecutar en varios núcleos, ya que cada cálculo es independiente; el orden de procesamiento no importa.
- Cada parte puede funcionar de forma independiente. La parte 1 puede colocar datos en una cola de entrada, la parte 2 puede sacar datos de la cola de entrada y poner los resultados en una cola de salida, y la parte 3 puede sacar resultados de la cola de salida y escribirlos.
Este parece un patrón más básico en la programación concurrente, pero todavía estoy perdido tratando de resolverlo, así que escribamos un ejemplo canónico para ilustrar cómo se hace esto usando multiprocesamiento .
Este es el problema de ejemplo: dado un archivo CSV con filas de números enteros como entrada, calcule sus sumas. Separe el problema en tres partes, que pueden ejecutarse en paralelo:
- Procesar el archivo de entrada en datos brutos (listas / iterables de enteros)
- Calcule las sumas de los datos, en paralelo
- Salida de las sumas
A continuación se muestra un programa tradicional de Python vinculado a un solo proceso que resuelve estas tres tareas:
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# basicsums.py
"""A program that reads integer values from a CSV file and writes out their
sums to another CSV file.
"""
import csv
import optparse
import sys
def make_cli_parser():
"""Make the command line interface parser."""
usage = "\n\n".join(["python %prog INPUT_CSV OUTPUT_CSV",
__doc__,
"""
ARGUMENTS:
INPUT_CSV: an input CSV file with rows of numbers
OUTPUT_CSV: an output file that will contain the sums\
"""])
cli_parser = optparse.OptionParser(usage)
return cli_parser
def parse_input_csv(csvfile):
"""Parses the input CSV and yields tuples with the index of the row
as the first element, and the integers of the row as the second
element.
The index is zero-index based.
:Parameters:
- `csvfile`: a `csv.reader` instance
"""
for i, row in enumerate(csvfile):
row = [int(entry) for entry in row]
yield i, row
def sum_rows(rows):
"""Yields a tuple with the index of each input list of integers
as the first element, and the sum of the list of integers as the
second element.
The index is zero-index based.
:Parameters:
- `rows`: an iterable of tuples, with the index of the original row
as the first element, and a list of integers as the second element
"""
for i, row in rows:
yield i, sum(row)
def write_results(csvfile, results):
"""Writes a series of results to an outfile, where the first column
is the index of the original row of data, and the second column is
the result of the calculation.
The index is zero-index based.
:Parameters:
- `csvfile`: a `csv.writer` instance to which to write results
- `results`: an iterable of tuples, with the index (zero-based) of
the original row as the first element, and the calculated result
from that row as the second element
"""
for result_row in results:
csvfile.writerow(result_row)
def main(argv):
cli_parser = make_cli_parser()
opts, args = cli_parser.parse_args(argv)
if len(args) != 2:
cli_parser.error("Please provide an input file and output file.")
infile = open(args[0])
in_csvfile = csv.reader(infile)
outfile = open(args[1], 'w')
out_csvfile = csv.writer(outfile)
# gets an iterable of rows that's not yet evaluated
input_rows = parse_input_csv(in_csvfile)
# sends the rows iterable to sum_rows() for results iterable, but
# still not evaluated
result_rows = sum_rows(input_rows)
# finally evaluation takes place as a chain in write_results()
write_results(out_csvfile, result_rows)
infile.close()
outfile.close()
if __name__ == '__main__':
main(sys.argv[1:])
Tomemos este programa y reescribamoslo para usar multiprocesamiento para paralelizar las tres partes descritas anteriormente. A continuación se muestra un esqueleto de este nuevo programa paralelo, que debe desarrollarse para abordar las partes en los comentarios:
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# multiproc_sums.py
"""A program that reads integer values from a CSV file and writes out their
sums to another CSV file, using multiple processes if desired.
"""
import csv
import multiprocessing
import optparse
import sys
NUM_PROCS = multiprocessing.cpu_count()
def make_cli_parser():
"""Make the command line interface parser."""
usage = "\n\n".join(["python %prog INPUT_CSV OUTPUT_CSV",
__doc__,
"""
ARGUMENTS:
INPUT_CSV: an input CSV file with rows of numbers
OUTPUT_CSV: an output file that will contain the sums\
"""])
cli_parser = optparse.OptionParser(usage)
cli_parser.add_option('-n', '--numprocs', type='int',
default=NUM_PROCS,
help="Number of processes to launch [DEFAULT: %default]")
return cli_parser
def main(argv):
cli_parser = make_cli_parser()
opts, args = cli_parser.parse_args(argv)
if len(args) != 2:
cli_parser.error("Please provide an input file and output file.")
infile = open(args[0])
in_csvfile = csv.reader(infile)
outfile = open(args[1], 'w')
out_csvfile = csv.writer(outfile)
# Parse the input file and add the parsed data to a queue for
# processing, possibly chunking to decrease communication between
# processes.
# Process the parsed data as soon as any (chunks) appear on the
# queue, using as many processes as allotted by the user
# (opts.numprocs); place results on a queue for output.
#
# Terminate processes when the parser stops putting data in the
# input queue.
# Write the results to disk as soon as they appear on the output
# queue.
# Ensure all child processes have terminated.
# Clean up files.
infile.close()
outfile.close()
if __name__ == '__main__':
main(sys.argv[1:])
Estos fragmentos de código, así como otro fragmento de código que puede generar archivos CSV de ejemplo con fines de prueba, se pueden encontrar en github .
Agradecería cualquier idea aquí sobre cómo los gurús de la concurrencia abordarían este problema.
Aquí hay algunas preguntas que tuve al pensar en este problema. Puntos de bonificación por abordar cualquiera / todos:
- ¿Debería tener procesos secundarios para leer los datos y colocarlos en la cola, o puede el proceso principal hacer esto sin bloquear hasta que se lean todas las entradas?
- Del mismo modo, ¿debería tener un proceso secundario para escribir los resultados de la cola procesada, o el proceso principal puede hacer esto sin tener que esperar todos los resultados?
- ¿Debo usar un grupo de procesos para las operaciones de suma?
- Si es así, ¿a qué método llamo en el grupo para que comience a procesar los resultados que ingresan a la cola de entrada, sin bloquear también los procesos de entrada y salida? apply_async () ? map_async () ? imap () ? imap_unordered () ?
- Supongamos que no necesitamos desviar las colas de entrada y salida a medida que los datos ingresan, pero podríamos esperar hasta que se analizaran todas las entradas y se calcularan todos los resultados (por ejemplo, porque sabemos que todas las entradas y salidas caben en la memoria del sistema). ¿Deberíamos cambiar el algoritmo de alguna manera (por ejemplo, no ejecutar ningún proceso al mismo tiempo que la E / S)?