qns_fengyusong 发表于 2015-5-31 13:16:11

Infinispan 7.2.2.Final 发布,数据网格平台

#深圳# 6月10日 亚马逊AWSome Day云计算免费培训报名中
  Infinispan 7.2.2.Final 发布,此版本主要增加了一些新特性,同时修复了一些 Bug:
Bug

[*] - No descriptions for invalid jgroups configuration files
[*] - A WARN message is shown that Partition Handling is not supported in REPL mode
[*] - ClusteringConfigurationBuilder.l1() javadoc incorrectly states that the l1 method enables l1
[*] - Some ClientClusterEventsTest tests fail randomly
[*] - NPE when configuring both SSL and authentication in the same fluid configuration API for HotRod
[*] - java.lang.ClassCastException: [B cannot be cast to org.infinispan.container.entries.CacheEntry
[*] - Remote queries fail when security is enabled and current user is not an ADMIN
[*] - NullPointerException when running a script
[*] - Prepare commands sent before the target became a member should be rejected
[*] - Transaction prepare is not replicated to new owners during state transfer
[*] - ClassCastException: org.infinispan.query.remote.indexing.ProtobufValueWrapper cannot be cast to [B
[*] - ReflectionHelper fails to detect element type for arrays of generic types
[*] - Transactions created when applying state should never be replicated
[*] - Compatibility with L1 can lead to wrong return type
[*] - JGroupsTransport.waitForChannelToConnect() never waits; fetchRebalancingStatusFromCoordinator() is susceptible to NPE
[*] - SemaphoreCompletionService exceptions are never checked
[*] - Cache.clear() does not clear the cache store with async store
[*] - Node replies with NullPointerException during shutdown
[*] - Camel throwing java.lang.LinkageError for Remote Query when running in EAP
[*] - Build fails with JDK7
Enhancement

[*] - Cannot choose to run index-less query on an indexed cache
[*] - Optimize overlapping range and interval predicates (non-indexed query)
[*] - FileDescriptorSource.fromResources and FileDescriptorSource.addProtoFiles should have a ClassLoader argument
Task

[*] - Fix test: NonTxPutIfAbsentDuringLeaveStressTest.testNodeLeavingDuringPutIfAbsent:114
  详细信息请查看更新日志。
  同时,此版本现已提供下载:
  http://infinispan.org/download/
  In?nispan是个开源的数据网格平台。它公开了一个简单的数据结构(一个Cache)来存储对象。虽然可以在本地模式下运行In?nspan,但其真正的价值在于分布   式,在这种模式下,In?nispan可以将集群缓存起来并公开大容量的堆内存。这可比简单的复制强大的多,因为它会为每个结点分配固定数量的副本——服务器故障的一种恢复手段——同时还提升了可伸缩性,这是由于存储每个结点所需的工作量是与集群大小息息相关的。

  In?nispan 提供了一种简单的机制来利用大容量的堆内存。如果对每个结点维护一个拷贝,假如集群当中有100个结点,每个结点分配2GB的堆内存,那么网格中的任何实例都能使用多达100GB的空间,这可都是内存,显然速度会非常快。同时In?nispan还兼容于JTA,这样它就能很好地处理事务了。我们还有一个超级强大的异步API,它可以保证同步的网络调用以及异步调用的并行性及可伸缩性。比方说:Future f =cache.putAsync(k, v)可以阻塞线程,再调用f.get()可以让网络调用继续进行或是忽略掉f。更为重要的是,线程还可以做别的事情,这一点非常有用。然后再回来通过调用f.get()来检查该网络调用是否能继续进行。可以将其看作是NIO与传统的阻塞性IO之间的关系。
  In?nispan公开了一个 CacheStore接口和几个高性能的实现,包括JDBC CacheStores、基于文件系统的CacheStores以及Amazon S3CacheStores等等。CacheStores可用作“温启动(warmstarts)”或是确保网格中的数据在重启后依然可用,同时在内存耗尽时还能将数据写到磁盘上。
  主要特点:

[*]  大量的堆体
[*]  极高的可扩展性
[*]  快速轻量级核心
[*]  不仅仅支持Java(PHP,Python,Ruby,C…)
[*]  支持Compute Grids
[*]  管理是关键:当你在grid上运行几百个服务时,实现管理是必须的
页: [1]
查看完整版本: Infinispan 7.2.2.Final 发布,数据网格平台