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

Add chunk to selectAllUuidsByWithoutAgent #83

Merged
merged 1 commit into from
Jul 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,16 @@ class JvmSql : SqlGeneratorSupport() {

fun selectAllUuidsByWithoutAgent(): String =
"""
SELECT uuid FROM
jvms
WHERE
customerId = :customerId
AND uuid NOT IN (
SELECT
jvmUuid
FROM
agent_state
)
SELECT uuid FROM
jvms
WHERE
customerId = :customerId
AND uuid NOT IN (
SELECT
jvmUuid
FROM
agent_state
)
LIMIT 10000
""".trimIndent()
}
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,18 @@ class GarbageCollectService(
customerId,
baseDateTime.minusMillis(intervalService.batchSweepMarginMilliSecond)
)
val uuidsWithoutAgent = jvmDao.findAllUuidsByWithoutAgent(customerId)

jvmDao.deleteAllByCustomerIdAndUuids(customerId, agentStates.map { it.jvmUuid } + uuidsWithoutAgent)
jvmDao.deleteAllByCustomerIdAndUuids(customerId, agentStates.map { it.jvmUuid })
.also { logger.info { "[$customerId] $it jvm is swiped. " } }
agentStateDao.deleteAllByCustomerIdAndIds(customerId, agentStates.map { it.id })
.also { logger.info { "[$customerId] $it agent state is swiped. " } }
} while (agentStates.isNotEmpty())

do {
val uuidsWithoutAgent = jvmDao.findAllUuidsByWithoutAgent(customerId)
jvmDao.deleteAllByCustomerIdAndUuids(customerId, uuidsWithoutAgent)
.also { logger.info { "[$customerId] $it jvm without agent is swiped." } }
} while (uuidsWithoutAgent.isNotEmpty())
} catch (e: Exception) {
logger.warn(e) { "[$customerId] error occurred while sweepAgentStates, but ignored. " }
}
Expand Down