发布于 2015-05-27 23:29:14 | 84 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的精品教程,程序狗速度看过来!

Infinispan 开源的数据网格平台

Infinispan是JBoss Cache缓存框架的后续项目,它是一个开源的数据网格平台,用于访问分布式状态的群集节点。GridFileSystem(网格文件系统)是一个全新的实验性的API,这些API使Infinispan后端的网格数据像“文件系统”一样展示出来。


Infinispan 7.2.2.Final 发布,此版本主要增加了一些新特性,同时修复了一些 Bug:

Bug

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

Enhancement

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

Task

  • [ISPN-3924] - Fix test: NonTxPutIfAbsentDuringLeaveStressTest.testNodeLeavingDuringPutIfAbsent:114

详细信息请查看更新日志

同时,此版本现已提供下载:

http://infinispan.org/download/

Infinispan 是个开源的数据网格平台。它公开了一个简单的数据结构(一个Cache)来存储对象。虽然可以在本地模式下运行Infinspan,但其真正的价值在于分布 式,在这种模式下,Infinispan可以将集群缓存起来并公开大容量的堆内存。这可比简单的复制强大的多,因为它会为每个结点分配固定数量的副本——服 务器故障的一种恢复手段——同时还提升了可伸缩性,这是由于存储每个结点所需的工作量是与集群大小息息相关的。

Infinispan是JBoss Cache缓存框架的后续项目,它是一个开源的数据网格平台,用于访问分布式状态的群集节点。GridFileSystem(网格文件系统)是一个全新的实验性的API,这些API使Infinispan后端的网格数据像“文件系统”一样展示出来。

Infinispan 提供了一种简单的机制来利用大容量的堆内存。如果对每个结点维护一个拷贝,假如集群当中有100个结点,每个结点分配2GB的堆内存, 那么网格中的任何实例都能使用多达100GB的空间,这可都是内存,显然速度会非常快。同时Infinispan还兼容于JTA,这样它就能很好地处理事务 了。我们还有一个超级强大的异步API,它可以保证同步的网络调用以及异步调用的并行性及可伸缩性。比方说:Future f = cache.putAsync(k, v) 可以阻塞线程,再调用f.get()可以让网络调用继续进行或是忽略掉f。更为重要的是,线程还可以做别的事情,这一点非常有用。然后再回来通过调用 f.get()来检查该网络调用是否能继续进行。可以将其看作是NIO与传统的阻塞性IO之间的关系。

Infinispan公开了一个 CacheStore接口和几个高性能的实现,包括JDBC CacheStores、基于文件系统的CacheStores以及Amazon S3 CacheStores等等。CacheStores可用作“温启动(warm starts)”或是确保网格中的数据在重启后依然可用,同时在内存耗尽时还能将数据写到磁盘上。

主要特点:

  • 大量的堆体

  • 极高的可扩展性

  • 快速轻量级核心

  • 不仅仅支持Java(PHP,Python,Ruby,C…)

  • 支持Compute Grids

  • 管理是关键:当你在grid上运行几百个服务时,实现管理是必须的



历史版本 :
Infinispan 9.2.0 CR1 发布,分布式集群缓存系统
Infinispan 9.1.4.final 发布,分布式集群缓存系统
Infinispan Spark connector 0.6 发布
Infinispan 9.2.0.Beta1 和 9.1.3.Final 发布
Infinispan 9.2.0.Alpha2 和 9.1.2.Final 发布
Infinispan 9.2.0.Alpha1 带来新的分布式和集群式集合类型
Infinispan 9.1.1.Final 发布,分布式集群缓存系统
Infinispan 9.1.0.CR1 发布,分布式集群缓存系统
Infinispan 9.1.0.Beta1 发布,分布式集群缓存系统
Infinispan 9.1.0.Alpha1 发布,分布式集群缓存系统
Infinispan 的 Hotrod 客户端 C++/C# 8.1.1.Final 发布
Infinispan 的 Hotrod 客户端 C++/C# 8.1.0 正式发布
最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务