Infinispan 8 中新的 Redis 缓存存储实现

转载于:http://www.itxuexiwang.com/a/shujukujishu/redis/2016/0216/147.html

nfinispan8包含了一个新的在Redisk/v服务器中存储缓存数据的cachestore。这个cachestore可以把缓存数据存储在一个集中的Redis中,所有的Infinispan客户端都可以访问。

Cachestore支持三种Redis的部署方式:单服务器、主从切换(Sentinel)和集群(需要Redis3支持)。目前支持的Redis版本包括2.8+和3.0+。

数据过期和清理由Redis负责,可以减轻Infinispan服务器人工删除cache项的工作量。

拓扑结构

独立服务器

对于单服务器部署,cachestore会指向所连的Redis的master,将其作为数据的存储。使用这种结构,Redis是没有容灾功能的,除非在它上面另外再自己构造一个。下面是独立服务器的本地cachestore的配置:

<?xmlversion="1.0"encoding="UTF-8"?>

<infinispan

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="urn:infinispan:config:8.0http://www.infinispan.org/schemas/infinispan-config-8.0.xsd

urn:infinispan:config:store:redis:8.0

http://www.infinispan.org/schemas/infinispan-cachestore-redis-config-8.0.xsd"

xmlns="urn:infinispan:config:8.0"

xmlns:redis="urn:infinispan:config:store:redis:8.0">

<cache-container>

<local-cache>

<persistencepassivation="false">

<redis-storexmlns="urn:infinispan:config:store:redis:8.0"

topology="server"socket-timeout="10000"connection-timeout="10000">

<redis-serverhost="server1"/>

<connection-poolmin-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>

</infinispan>#p#分页标题#e#

注意topology属性在这里是server。这可以保证cachestore使用的是独立的Redis服务器拓扑结构。只需要定义一个Redis服务器(如果定义了多个,只有第一个会被使用),端口会使用Redis的默认端口6379,也可以使用port属性覆盖端口。所有的连接由一个连接池进行管理,连接池同时还负责连接的创建、释放、选择处于空闲的连接。

Sentinel模式

Sentinel模式依赖于Redis的Sentinel服务器,以此来连接到Redis的master。具体来说,Infinispan连接到Redis的Sentinel服务器,请求master的名字,然后能获得正确的master服务器地址。这种拓扑结构通过RedisSentinel提供了可用性,实现了对Redis服务器的失效检测和自动恢复。

<?xmlversion="1.0"encoding="UTF-8"?>

<infinispan

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="urn:infinispan:config:8.0http://www.infinispan.org/schemas/infinispan-config-8.0.xsd

urn:infinispan:config:store:redis:8.0

http://www.infinispan.org/schemas/infinispan-cachestore-redis-config-8.0.xsd"

xmlns="urn:infinispan:config:8.0"

xmlns:redis="urn:infinispan:config:store:redis:8.0">

<cache-container>

<local-cache>

<persistencepassivation="false">

<redis-storexmlns="urn:infinispan:config:store:redis:8.0"

topology="sentinel"master-name="mymaster"socket-timeout="10000"connection-timeout="10000">

<sentinel-serverhost="server1"/>

<sentinel-serverhost="server2"/>

<sentinel-serverhost="server3"/>

<connection-poolmin-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>

</infinispan>#p#分页标题#e#

对于Sentinel模式,topology属性需要改成sentinel。还需要指定master的名字,用于选择正确的Redis的master,因为一个Sentinel服务器可以监控多个Redis的master。需要注意的是,Sentinel服务器通过一个叫sentinel-server的XML标签来定义,这与单服务器和集群都不一样。如果没有指定,Sentinel的默认端口是。至少需要指定一个Sentinel服务器,如果你有多台Sentinel服务器,也可以都加上,这样可以Sentinel服务器自身也可以实现容灾。

集群

在集群拓扑结构下,Infinispan可以连接到一个Redis集群。一个或多个集群节点可以加到infinispan(越多越好),被用于保存所有的数据。Redis集群支持失效检测,所以如果集群里有master挂掉了,就会有slave提升为master。Redis集群需要Redis3。

<?xmlversion="1.0"encoding="UTF-8"?>

<infinispan

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="urn:infinispan:config:8.0http://www.infinispan.org/schemas/infinispan-config-8.0.xsd

urn:infinispan:config:store:redis:8.0

http://www.infinispan.org/schemas/infinispan-cachestore-redis-config-8.0.xsd"

xmlns="urn:infinispan:config:8.0"

xmlns:redis="urn:infinispan:config:store:redis:8.0">

<cache-container>

<local-cache>

<persistencepassivation="false">

<redis-storexmlns="urn:infinispan:config:store:redis:8.0"

topology="cluster"socket-timeout="10000"connection-timeout="10000">

<redis-serverhost="server1"port="6379"/>

<redis-serverhost="server2"port="6379"/>

<redis-serverhost="server3"port="6379"/>

<connection-poolmin-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>

</infinispan>#p#分页标题#e#

对于集群,topology属性必须改成cluster。必须指定一个或多个Redis集群节点,可以使用redis-server标签来说明。注意如果是操作集群,不支持databaseID。

一个Redis对应多个CacheStore

Redis的独立服务器模式或者Sentinel模式都支持databaseID。一个databaseID可以让单个Redis服务器支持多个独立的database,通过一个整数ID来区分。这可以让Infinispan在单个Redis部署上支持多个cachestore,不同的store直接的数据可以加以隔离。Redis集群不支持databaseID。在redis-store标签上可以通过database属性定义databaseID。

<?xmlversion="1.0"encoding="UTF-8"?>

<infinispan

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="urn:infinispan:config:8.0http://www.infinispan.org/schemas/infinispan-config-8.0.xsd

urn:infinispan:config:store:redis:8.0

http://www.infinispan.org/schemas/infinispan-cachestore-redis-config-8.0.xsd"

xmlns="urn:infinispan:config:8.0"

xmlns:redis="urn:infinispan:config:store:redis:8.0">

<cache-container>

<local-cache>

<persistencepassivation="false">

<redis-storexmlns="urn:infinispan:config:store:redis:8.0"

topology="sentinel"master-name="mymaster"socket-timeout="10000"

connection-timeout="10000"database="5">

<sentinel-serverhost="server1"/>

<sentinel-serverhost="server2"/>

<sentinel-serverhost="server3"/>

<connection-poolmin-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>

</infinispan>#p#分页标题#e#

Redis的密码认证

Redis可选用密码进行认证,用于增加对服务器的安全性。这需要在cachestore连接的时候指定密码。redis-store标签的password属性可以指定这个密码。

<?xmlversion="1.0"encoding="UTF-8"?>

<infinispan

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="urn:infinispan:config:8.0http://www.infinispan.org/schemas/infinispan-config-8.0.xsd

urn:infinispan:config:store:redis:8.0

http://www.infinispan.org/schemas/infinispan-cachestore-redis-config-8.0.xsd"

xmlns="urn:infinispan:config:8.0"

xmlns:redis="urn:infinispan:config:store:redis:8.0">

<cache-container>

<local-cache>

<persistencepassivation="false">

<redis-storexmlns="urn:infinispan:config:store:redis:8.0"

topology="sentinel"master-name="mymaster"socket-timeout="10000"

connection-timeout="10000"password="mysecret">

<sentinel-serverhost="server1"/>

<sentinel-serverhost="server2"/>

<sentinel-serverhost="server3"/>

<connection-poolmin-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>

</infinispan>

是否有SSL支持?

Redis没有提供协议加密,而是将这个留给其他专业的软件。目前,Infinispan集成的连接Redis服务器的Redis客户端(Jedis)还没有原生的对SSL连接的支持。#p#分页标题#e#

相关推荐