Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HW5 is completed #5

Merged
merged 4 commits into from
May 28, 2024
Merged

HW5 is completed #5

merged 4 commits into from
May 28, 2024

Conversation

DimVlas
Copy link
Owner

@DimVlas DimVlas commented May 22, 2024

Домашнее задание №5 «Параллельное исполнение»

Чек-лист студента (Что это?)

Критерии оценки

  • Пайплайн зелёный - 4 балла
  • Добавлены новые юнит-тесты - до 4 баллов
  • Понятность и чистота кода - до 2 баллов

Зачёт от 7 баллов

Copy link
Collaborator

@agneum agneum left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Спасибо за вариант решения. Хорошая работа
Итого: 9 баллов из 10. Принято

Comment on lines 42 to 49
for workerCount.Load() >= workerMaxCount {
time.Sleep(time.Millisecond * 10)
}

if errCount.Load() >= errMaxCount { // если кол-во ошибок больше допустимого
// прекращаем запускать воркеры
break
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Оптимальнее и надёжнее будет запустить в работу на постоянной основе n горутин-воркеров и передавать им в работу задачи на выполнение через канал

Сейчас на каждую задачу запускается и не переиспользуется горутина. Кроме того, приходится контролировать количество воркеров

Comment on lines 111 to 116
case <-errorCh:
errCount++
if errCount >= m {
return ErrErrorsLimitExceeded
}
case tasksCh <- tasks[i]:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Подсчёт ошибок лучше вынести из цикла по задачам.

@DimVlas DimVlas merged commit 88f0a3c into master May 28, 2024
3 checks passed
@DimVlas DimVlas deleted the hw05_parallel_execution branch May 29, 2024 17:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants