the real question was the following ... but it has...
# ask-community
d
the real question was the following ... but it has been answered as duplicated of the previous: https://github.com/dagster-io/dagster/discussions/12016
dagster bot surface to discussion 1
c
Hi Daniele. I believe that the answer suggested in this discussion would work for you:
Copy code
@job(
    config={
        "execution": {
            "config": {
                "multiprocess": {
                    "max_concurrent": 1,
                },
            }
        }
    }
)
def update_service_job():
    tables = update_service()
    tables.map(lambda table: update_table(table_name=table))
I'll go ahead and mark the correct answer on the github discussion
d
hi claire , Just to confirm that it was what i was searching for.
❤️ 1