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

Состояние триггера функции (enabled/paused) #424

Open
max-arnold opened this issue Mar 20, 2024 · 2 comments
Open

Comments

@max-arnold
Copy link

Товарищи разработчики, а добавьте в Terraform провайдер возможность создавать yandex_function_trigger в приостановленном состоянии (paused).

Такой триггер удобно держать на DLQ и запускать вручную после разбора причин по которым в очередь что-то свалилось.

Для SQS так можно, см флаг enabled: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lambda_event_source_mapping#enabled

Это распространенная практика https://theburningmonk.com/2024/01/how-would-you-reprocess-lambda-dead-letter-queue-messages-on-demand/

@opportunity356
Copy link
Contributor

@max-arnold спасибо за ваш issue. Обсудил с коллегами из Serverless. В данный момент API сервиса не поддерживает создание триггера в остановленном состоянии. Соответственно пока что нельзя поддержать подобный функционал в terraform.

Команда сервиса завела фича-реквест, но сроки реализации пока не известны.

@max-arnold
Copy link
Author

Временно обошёл проблему так:

resource "yandex_function_trigger" "event_dl" {
  name = "event-dl"
  message_queue {
    queue_id           = yandex_message_queue.event_dl.arn
    service_account_id = var.yc_service_account_id
    batch_cutoff       = 0
    batch_size         = 10
    visibility_timeout = 120
  }
  function {
    id                 = module.function_event_task.function_id
    service_account_id = var.yc_service_account_id
  }
  provisioner "local-exec" {
    interpreter = ["/bin/bash", "-c"]
    command     = <<-EOT
yc --config <(jq '{profiles: {"dynamic": {"service-account-key": .}}}' yc-service-account-key.json) --profile dynamic --cloud-id ${var.yc_cloud_id} --folder-id ${var.yc_folder_id} serverless trigger pause --name ${self.name}
EOT
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants