发布于 2015-11-11 00:17:21 | 125 次阅读 | 评论: 0 | 来源: 网友投递
Infinispan 开源的数据网格平台
Infinispan是JBoss Cache缓存框架的后续项目,它是一个开源的数据网格平台,用于访问分布式状态的群集节点。GridFileSystem(网格文件系统)是一个全新的实验性的API,这些API使Infinispan后端的网格数据像“文件系统”一样展示出来。
Infinispan 8.1.0.Beta1 发布,改进的内容和 bug 修复如下:
[ISPN-5752] - PutMapCommand notifies the modification listener for created entries
[ISPN-5755] - HotRod returns local statistics instead of clustered
[ISPN-5791] - Query DSL : Projecting a Date field multiple times will render it as string
[ISPN-5863] - Default metadata not merged for DecoratedCache operations
[ISPN-5871] - FlagsEnabledTest.testWithFlagsSemantics always fails
[ISPN-5872] - Projecting a boolean property in remote mode will render it as an Integer
[ISPN-5875] - HotRod Client does not handle failover silent when nodes are stopped if using role based authentication
[ISPN-5876] - Pre-commit cache invalidation creates stale cache vulnerability
[ISPN-5877] - PutAll requests can't use skip cache load and skip indexing flags
[ISPN-5880] - XSite client failover - enhance configuration validation
[ISPN-5882] - XSite replication - take-offline.after-failures property is ignored
[ISPN-5884] - ClusteredListenerReplTest.testPrimaryOwnerGoesDownAfterBackupRaisesEvent random failures
[ISPN-5891] - IntegrationTest.testConcurrentETagChanges always fails
[ISPN-5893] - ClusteredCacheConfigurationIT.testQueueFlushIntervalMemcached always fails
[ISPN-5895] - RebalancePolicyJmxTest.testJoinAndLeaveWithRebalanceSuspendedAwaitingInitialTransfer random failures
[ISPN-5899] - ContinuousQuery tests should disable expiration reaper
[ISPN-5902] - Stream iterator/forEach & CacheNotifier should use configured Equivalence
[ISPN-5911] - Compatibility when streams are used should only unwrap the final stream results
[ISPN-5917] - Transactions rolled back early are never removed from the transaction table
[ISPN-5918] - Remote transactions can be registered after cache stop and block shutdown
[ISPN-5613] - Replication timeouts should show more information of the affected entries
[ISPN-5819] - Add global backup site ops to container
[ISPN-5845] - Update local cache stream to allow for full wrapping
[ISPN-5851] - Split global state path specification in persistent and temporary
[ISPN-5873] - Allow non-stored fields to be projected in DSL based queries
[ISPN-5896] - ClusterStreamManager segment generation should use locatePrimaryOwnerForSegment
[ISPN-5903] - Spring package split
[ISPN-5905] - Avoid creating a FilterEvalContext for non-matching subscriptions
[ISPN-5906] - Hide implementation details from package org.infinispan.query.continuous
更多内容请看:release notes。
下载地址:available。
屏幕截图
Infinispan 是个开源的数据网格平台。它公开了一个简单的数据结构(一个Cache)来存储对象。虽然可以在本地模式下运行Infinspan,但其真正的价值在于分布 式,在这种模式下,Infinispan可以将集群缓存起来并公开大容量的堆内存。这可比简单的复制强大的多,因为它会为每个结点分配固定数量的副本——服 务器故障的一种恢复手段——同时还提升了可伸缩性,这是由于存储每个结点所需的工作量是与集群大小息息相关的。