Utanç verici derecede paralel sorunların üstesinden gelmek için çoklu işlem nasıl kullanılır ?
Utanç verici derecede paralel sorunlar tipik olarak üç temel bölümden oluşur:
- Giriş verilerini okuyun (bir dosyadan, veritabanından, tcp bağlantısından vb.).
- Her hesaplamanın diğer hesaplamalardan bağımsız olduğu giriş verilerinde hesaplamalar çalıştırın .
- Hesaplamaların sonuçlarını yazın (bir dosyaya, veritabanına, tcp bağlantısına vb.).
Programı iki boyutta paralelleştirebiliriz:
- Her hesaplama bağımsız olduğundan Bölüm 2 birden çok çekirdekte çalışabilir; işlem sırası önemli değil.
- Her bölüm bağımsız olarak çalışabilir. Bölüm 1 verileri bir girdi kuyruğuna yerleştirebilir, bölüm 2 verileri girdi kuyruğundan çekebilir ve sonuçları bir çıktı kuyruğuna koyabilir ve bölüm 3 sonuçları çıktı kuyruğundan çekip yazabilir.
Bu, eşzamanlı programlamada en temel model gibi görünüyor, ancak yine de onu çözmeye çalışırken kayboldum, bu yüzden çoklu işlem kullanılarak bunun nasıl yapıldığını göstermek için kanonik bir örnek yazalım .
Örnek problem: Girdi olarak tamsayı satırları olan bir CSV dosyası verildiğinde , toplamlarını hesaplayın. Problemi hepsi paralel çalışabilecek üç kısma ayırın:
- Girdi dosyasını ham veriye işleyin (tamsayıların listeleri / yinelenenleri)
- Paralel olarak verilerin toplamını hesaplayın
- Toplamları çıkar
Aşağıda, bu üç görevi çözen geleneksel, tek işlemli bağlı Python programı verilmiştir:
#!/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:])
Bu programı alalım ve yukarıda özetlenen üç parçayı paralelleştirmek için çoklu işlemeyi kullanmak üzere yeniden yazalım. Aşağıda, yorumlardaki bölümleri ele almak için detaylandırılması gereken bu yeni, paralelleştirilmiş programın bir iskeleti verilmiştir:
#!/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:])
Bu kod parçalarının yanı sıra test amacıyla örnek CSV dosyaları oluşturabilen başka bir kod parçası da github'da bulunabilir .
Eşzamanlılık uzmanlarının bu soruna nasıl yaklaşacağına dair buradaki herhangi bir içgörüyü takdir ediyorum.
İşte bu problem hakkında düşünürken aklıma gelen bazı sorular. Herhangi birini / tümünü ele almak için bonus puanlar:
- Verileri okumak ve kuyruğa yerleştirmek için çocuk süreçlerim olmalı mı, yoksa ana süreç bunu tüm girdiler okunana kadar engellemeden yapabilir mi?
- Aynı şekilde, işlenen kuyruktan sonuçları yazmak için bir alt süreç kullanmalı mıyım yoksa ana süreç tüm sonuçları beklemek zorunda kalmadan bunu yapabilir mi?
- Toplam işlemler için bir işlem havuzu kullanmalı mıyım ?
- Cevabınız evet ise, havuzda giriş ve çıkış işlemlerini de engellemeden giriş kuyruğuna gelen sonuçları işlemeye başlamak için hangi yöntemi çağırırım? apply_async () ? map_async () ? imap () ? imap_unordered () ?
- Veri girerken girdi ve çıktı kuyruklarını sifonlamamıza gerek olmadığını, ancak tüm girdiler ayrıştırılana ve tüm sonuçlar hesaplanana kadar beklediğimizi varsayalım (örneğin, tüm girdi ve çıkışın sistem belleğine sığacağını biliyoruz). Algoritmayı herhangi bir şekilde değiştirmeli miyiz (örneğin, herhangi bir işlemi G / Ç ile aynı anda çalıştırmamalı mıyız)?