Skip to content

Using forUpdate in suspended transaction causes deadlock #2411

@satamas

Description

@satamas

Reproducer:

fun main(args: Array<String>) {
    Database.connect(
        "jdbc:postgresql://localhost:54321/grazie",
        user = "admin",
        password = "admin",
        driver = "org.postgresql.Driver"
    )
    while (true) {
        try {
            runBlocking {
                repeat(2) {
                    launch {
                        newSuspendedTransaction {
                            val license = UserLicenseEntity.find { UserLicenseTable.id eq 1 }.forUpdate().singleOrNull()
                            println(license?.licenseType ?: "No license found")
                            delay(50)
                        }
                    }
                }
            }
        } catch (e: Exception) {
        }
    }
}

class UserLicenseEntity(id: EntityID<Int>) : IntEntity(id) {
    val licenseType by UserLicenseTable.license_type

    companion object : IntEntityClass<UserLicenseEntity>(UserLicenseTable)
}

object UserLicenseTable : IntIdTable("user_license") {
    val license_type = text("license_type")
}

If I am not missing something, it should run endless and print licenseType. Instead, licenseType is printed once and then the program hangs

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions