gpt4 book ai didi

jboss - 如何将缓存的 Keycloak 数据保存到持久数据存储?

转载 作者:行者123 更新时间:2023-12-05 07:30:04 30 4
gpt4 key购买 nike

我们在 2 个 Docker 容器中运行 Keycloak(v4.4,独立模式)。我们希望这些容器是无状态的,因此我们必须将所有缓存数据持久保存到后备存储(数据库或其他缓存解决方案,如 Redis)。我们不能让缓存的数据只存在于内存中,因为我们的任何一个容器都可能随时被销毁。

理想情况下,我们希望将缓存数据持久化到我们自己的 Redis 实例中。由于 Keycloak 使用 Infinispan,似乎这是配置 Infinispan 以使用 Redis 的方法:http://infinispan.org/docs/cachestores/redis/ .

天真地,我尝试通过将我的 standalone-4.4.0.xml 文件更新为如下所示,让 Keycloak 在 Redis 中存储 session 信息(注意 redis-store第 5 行的元素):

<subsystem xmlns="urn:jboss:domain:infinispan:6.0">
<cache-container name="keycloak">
<local-cache name="sessions">
<persistence passivation="false">
<redis-store xmlns="urn:infinispan:config:store:redis:8.0"
topology="server" socket-timeout="10000" connection-timeout="10000">
<redis-server host="server1" />
<connection-pool min-idle="6" max-idle="10" max-total="20" min-evictable-idle-time="30000" time-between-eviction-runs="30000" />
</redis-store>
</persistence>
</local-cache>
<local-cache name="realms">
<object-memory size="10000"/>
</local-cache>
<local-cache name="users">
<object-memory size="10000"/>
</local-cache>
<local-cache name="authenticationSessions"/>
<local-cache name="offlineSessions"/>
<local-cache name="clientSessions"/>
<local-cache name="offlineClientSessions"/>
<local-cache name="loginFailures"/>
<local-cache name="work"/>
<local-cache name="authorization">
<object-memory size="10000"/>
</local-cache>
<local-cache name="keys">
<object-memory size="1000"/>
<expiration max-idle="3600000"/>
</local-cache>
<local-cache name="actionTokens">
<object-memory size="-1"/>
<expiration max-idle="-1" interval="300000"/>
</local-cache>
</cache-container>
<cache-container name="server" default-cache="default" module="org.wildfly.clustering.server">
<local-cache name="default">
<transaction mode="BATCH"/>
</local-cache>
</cache-container>
<cache-container name="web" default-cache="passivation" module="org.wildfly.clustering.web.infinispan">
<local-cache name="passivation">
<redis-store xmlns="urn:infinispan:config:store:redis:8.0"
topology="server" socket-timeout="10000" connection-timeout="10000">
<redis-server host="server1" />
<connection-pool min-idle="6" max-idle="10" max-total="20" min-evictable-idle-time="30000" time-between-eviction-runs="30000" />
</redis-store>
</persistence>
</local-cache>
</cache-container>
<cache-container name="ejb" aliases="sfsb" default-cache="passivation" module="org.wildfly.clustering.ejb.infinispan">
<local-cache name="passivation">
<locking isolation="REPEATABLE_READ"/>
<transaction mode="BATCH"/>
<file-store passivation="true" purge="false"/>
</local-cache>
</cache-container>
<cache-container name="hibernate" module="org.infinispan.hibernate-cache">
<local-cache name="entity">
<transaction mode="NON_XA"/>
<object-memory size="10000"/>
<expiration max-idle="100000"/>
</local-cache>
<local-cache name="local-query">
<object-memory size="10000"/>
<expiration max-idle="100000"/>
</local-cache>
<local-cache name="timestamps"/>
</cache-container>
</subsystem>

但是当我启动 Keycloak 时,我得到这个错误:

'persistence' 不是此处允许的元素

问题:是否有一种直接的方法来配置 Keycloak 以将缓存数据保存在 Redis 或其他持久性数据存储中?

最佳答案

子系统版本 urn:jboss:domain:infinispan:6.0 不知道你的 xml 的这个模式,所以你必须更新子系统或者如果你使用最新的图像Keycloak (6.0.1) 可能会更容易实现一个新的 InfinispanConnectionProviderFactory,它基本上只涉及用 Wildfly 做这个:

/subsystem=keycloak-server/spi=connectionsInfinispan/:remove()
/subsystem=keycloak-server/spi=connectionsInfinispan/:add(default-provider=custom)
/subsystem=keycloak-server/spi=connectionsInfinispan/provider=custom/:add(properties={},enabled=true)

为此,当然,您必须实现扩展并部署它。但随后在代码级别,您可以使用最新 Infinispan 的全部功能。

我看到您想使用 Redis,这是它​​的另一个大问题,请阅读此答案 https://stackoverflow.com/a/57362238/571689我会告诉您以下您会遇到的问题。

关于jboss - 如何将缓存的 Keycloak 数据保存到持久数据存储?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52506538/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com