Try turning off the sessionpool's autofetch, like
sessionPool =
new SessionPool.Builder()
.nodeUrls(nodeUrls)
.user(username)
.password(password)
.maxSize(500)
.enableAutoFetch(false)
.build(),