apache ignite系列(二):配置

ignite有两种配置方式,一种是基于XML文件的配置,一种是基于JAVA代码的配置:

这里将ignite常用的配置集中罗列出来了,一般建议使用xml配置。

1,基于XML的配置


<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:util="http://www.springframework.org/schema/util"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/utilhttp://www.springframework.org/schema/util/spring-util.xsd"><bean id="igniteCfg" class="org.apache.ignite.configuration.IgniteConfiguration"><!-- Consistent globally unique node identifier which survives node restarts. --><!-- 全局一致性id --><!--<property name="consistentId" value="cord"/>--><!--Set to true to enable distributed class loading for examples, default is false. --><!-- 分布式计算class传播 --><property name="peerClassLoadingEnabled" value="true"/><!-- Set deployment mode. --><!-- 部署模式,控制类加载. --><property name="deploymentMode" value="CONTINUOUS"/><!-- Disable missed resources caching. --><!-- 禁用丢失资源缓存 --><property name="peerClassLoadingMissedResourcesCacheSize" value="0"/><!-- 设为false表示服务端模式 --><property name="clientMode" value="false"/><!-- Network timeout --><!-- 连接超时时间 --><property name="networkTimeout" value="10000" /><!--Exclude force peer class loading of a class, even if exists locally.--><!-- 配置需要传播的class的路径 --><property name="peerClassLoadingLocalClassPathExclude"><list><value>org.cord.*</value></list></property><!-- 配置需要监听的事件类型--><property name="includeEventTypes"><list><util:constant static-field="org.apache.ignite.events.EventType.EVT_CACHE_OBJECT_PUT"/><util:constant static-field="org.apache.ignite.events.EventType.EVT_CACHE_OBJECT_READ"/><util:constant static-field="org.apache.ignite.events.EventType.EVT_CACHE_OBJECT_REMOVED"/></list></property><!-- Configure internal thread pool. --><!-- 公共线程池大小--><property name="publicThreadPoolSize" value="64"/><!-- Configure system thread pool. --><!-- 系统线程池大小--><property name="systemThreadPoolSize" value="32"/><property name="cacheConfiguration"><list><bean class="org.apache.ignite.configuration.CacheConfiguration"><!-- 缓存名--><property name="name" value="IGNITE_CACHE_KEY_PCOMM_RATE"/><!-- 原子模式类型,ATOMIC:原子型,保证性能; TRANSACTIONAL:事务型,分布式锁--><property name="atomicityMode" value="ATOMIC"/><!--PARTITIONED:分区; REPLICATED:复制;LOCAL:本地 --><property name="cacheMode" value="REPLICATED"/><!-- 备份数量--><property name="backups" value="1"/><!-- 禁用jcache标准中缓存读取获取的是副本的机制 --><property name="copyOnRead" value="false"/><!-- 内存区名--><property name="dataRegionName" value="Default_Region"/><!-- 是否以二进制形式存储--><!--<property name="storeKeepBinary" value="true"/>--><!-- 索引类型--><property name="indexedTypes"><list><value>java.lang.Long</value><value>com.palic.demo.data.domain.CommRate</value></list></property></bean></list></property><!-- Redefining maximum memory size for the cluster node usage. --><property name="dataStorageConfiguration"><bean class="org.apache.ignite.configuration.DataStorageConfiguration"><!-- Redefining the default region's settings --><!-- 默认存储区间配置--><property name="defaultDataRegionConfiguration"><bean class="org.apache.ignite.configuration.DataRegionConfiguration"><!-- 存储区名--><property name="name" value="Default_Region"/><!-- 存储区大小--><!-- Setting the size of the default region to 1GB. --><!--<property name="maxSize" value="#{1L * 1024 * 1024 * 1024}"/>--><property name="maxSize" value="#{512 * 1024 * 1024}"/><!-- 是否开启持久化--><!-- Enabling Apache Ignite Persistent Store. --><!--<property name="persistenceEnabled" value="true"/>--></bean></property><property name="dataRegionConfigurations"><list><!-- 自定义内存区--><!--Defining a data region that will consume up to 500 MB of RAM andwill have eviction and persistence enabled.--><bean class="org.apache.ignite.configuration.DataRegionConfiguration"><!-- Custom region name. --><property name="name" value="500MB_Region"/><!-- 100 MB initial size. --><property name="initialSize" value="#{100L * 1024 * 1024}"/><!-- 500 MB maximum size. --><property name="maxSize" value="#{500L * 1024 * 1024}"/><!-- Enabling persistence for the region. --><!--<property name="persistenceEnabled" value="true"/>--></bean></list></property><!-- 预写日志模式--><!-- Sets property that defines behavior of wal fsync. --><!--<property name="walMode">--><!--<util:constant static-field="org.apache.ignite.configuration.WALMode.DEFAULT"/>--><!--</property>--><property name="walMode" value="DEFAULT"/><!-- 检查点频率--><!--Checkpointing frequency which is a minimal interval when the dirty pages will be written to the Persistent Store.--><property name="checkpointFrequency" value="180000"/><!--<property name="checkpointFrequency" value="10000"/>--><!-- 检查点线程数--><!-- Number of threads for checkpointing.--><property name="checkpointThreads" value="4"/><!-- 在检查点同步完成后预写日志历史保留数量 --><!-- Number of checkpoints to be kept in WAL after checkpoint is finished.--><property name="walHistorySize" value="20"/><!--<property name="walHistorySize" value="2"/>--><!-- 持久化文件路径 --><!--&lt;!&ndash; Path where data and indexes will be persisted. &ndash;&gt;--><!--<property name="storagePath" value="D:\\Test\\db" />--><!--&lt;!&ndash; Path to the directory where WAL (Write Ahead Log) is stored. &ndash;&gt;--><!--<property name="walPath" value="D:\\Test\\db\\wal" />--><!--&lt;!&ndash; Path to the directory where WAL (Write Ahead Log) archive is stored. &ndash;&gt;--><!--<property name="walArchivePath" value="D:\\Test\\db\\wal\\archive" />--></bean></property><property name="discoverySpi"><bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi"><property name="localPort" value="48500"/><property name="localPortRange" value="20"/><property name="joinTimeout" value="0"/><property name="networkTimeout" value="5000" /><property name="ipFinder"><bean class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder"><property name="addresses"><!-- 集群ip列表--><list><value>127.0.0.1:48500..48520</value></list></property></bean></property></bean></property><property name="communicationSpi"><bean class="org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi"><property name="localPort" value="48100"/></bean></property></bean>
</beans>

基于此XML配置启动ignite节点的方式如下:

@Configuration
public class IgniteConfig {@Autowiredprivate IgniteConfiguration igniteCfg;@Bean@ConditionalOnMissingBeanpublic Ignite initIgnite() {//推荐借助spring bean的方式注入ignite配置信息,只需要将配置xml文件import即可//启动类加上注解@ImportResource(locations={"classpath:default-config.xml"})Ignite ignite = Ignition.start(igniteCfg);//Ignite ignite = Ignition.start(classpath:default-config.xml)}
}

2,基于JAVA代码的配置

......IgniteConfiguration cfg = new IgniteConfiguration();cfg.setClientMode(false);//配置集群发现cfg.setDiscoverySpi(new TcpDiscoverySpi().setLocalPort(48500).setLocalPortRange(20).setIpFinder(new TcpDiscoveryVmIpFinder().setAddresses(Arrays.asList("127.0.0.1:48500..48520"))));//基本配置cfg.setCommunicationSpi(new TcpCommunicationSpi().setLocalPort(48100));cfg.setDeploymentMode(CONTINUOUS);cfg.setPeerClassLoadingEnabled(true);cfg.setPeerClassLoadingLocalClassPathExclude("com.org.ignite.*");cfg.setIncludeEventTypes(EventType.EVT_TASK_STARTED, EventType.EVT_TASK_FINISHED, EventType.EVT_TASK_FAILED);cfg.setPublicThreadPoolSize(64);cfg.setSystemThreadPoolSize(32);//添加cache配置List<CacheConfiguration> cacheConf = new ArrayList<>();CacheConfiguration<String, Integer> conf = new CacheConfiguration<String, Integer>("test").setCacheMode(CacheMode.REPLICATED).setIndexedTypes(String.class, Integer.class).setAtomicityMode(CacheAtomicityMode.ATOMIC).setCopyOnRead(false).setBackups(1);cacheConf.add(conf);cfg.setCacheConfiguration(cacheConf.toArray(new CacheConfiguration[]{}));//基于java代码配置启动Ignition.start(cfg);
......

一般建议基于XML配置,spring bean注入,如果确实需要JAVA配置,可以结合XML配置灵活处理。

​ 在ignite集群中,配置信息是可以动态传播的,而如果是修改配置文件,则需要重启节点才可生效,并且如果有些关键配置不一致,也会导致启动节点报错,无法加入集群。所以最好的做法是,在普通节点中只配置节点相关配置,以及集群发现配置,至于变动性最大的缓存cache配置,可以由应用节点配置,这样便于的集中管控缓存配置。除此之外,使用xml配置,可以保证普通节点与应用节点的配置的一致性,而不需要单独再维护一套代码配置。

转载于:https://www.cnblogs.com/cord/p/9397613.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/465206.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

高频面试题,malloc实现

面试官&#xff1a;你好&#xff0c;请先做自我介绍我&#xff1a;巴拉巴拉&#xff0c;我喜欢打篮球……面试官&#xff1a;请解释下malloc的实现原理我&#xff1a;我不会面试官&#xff1a;那就先这样&#xff0c;我们就不浪费大家的时间了。在开发c或c时&#xff0c;经常需…

单机版简易考试系统开发过程讲解(C#注册机、用户注册、考试系统、×××全部源码)...

前些日子有个朋友&#xff0c;找我做一个考试软件&#xff0c;浙江省驾驶员理论包考专用系统&#xff0c;总共也没几个页面需要做&#xff0c;但是他以前的数据库VFP的数据&#xff0c;题库里有几千条数据&#xff0c;若人工录入几乎比太可行&#xff0c;他把原来的软件&#x…

linux下usb调试工具,LINUX USB调试

LinuxUSB驱动程序调试&#xff1a;这是LinuxUSB驱动程序调试--003&#xff1a;Ubuntu下的准备工作的详细页面&#xff0c;介绍了和linux,有关的知识、技巧、经验&#xff0c;和一些linux源码等。Ubuntu下的准备工作&#xff1a;(1)如何查看内核中的printk输出&#xff1a; dmes…

CF 1025C Plasticine zebra

昨晚忘记判只有一个字符的情况fst了呜呜呜 挺有趣的题&#xff0c;昨晚连刚带猜弄出结论 考虑答案的取值&#xff0c;最优答案可能是一个后缀&#xff0c;或者是一个前缀&#xff0c;或者是一个后缀加上前缀 那么翻转之后最优答案的可选值就有了1的前缀n的后缀 对于一个合法的z…

嵌入式|这些年我都是怎么找兼职的?

‍‍‍‍1这篇文章是在上一篇文章之后写的&#xff0c;因为上篇文章写到了嵌入式找兼职的一些坑&#xff0c;下面有同学留言说要怎么找到兼职项目&#xff0c;所以这篇文章会写一些我的兼职经历还有总结建议&#xff0c;希望对大家如何找兼职有一些帮助。这篇文章是写第二次了&…

WCF 第五章 行为 实现事务(操作行为)

有两个场景一般用作事务的参考。多步骤商业过程是典型跨度分&#xff0c;天&#xff0c;月的长时间运行过程。它们可以涉及多个组织和基于人的工作流。短期运行事务是那些在几秒钟完成并很少有外部依赖的商业操作。尽管它们都有定义的很好的接口和确定的工作流&#xff0c;它们…

linux java的启动内存溢出,java - Java的R代码可在Linux上运行,但不能在Windows中运行 - 堆栈内存溢出...

我在做什么&#xff1f;我正在用Java编写一个数据分析程序&#xff0c;该程序依赖R的arulesViz库来挖掘关联规则。我想要什么&#xff1f;我的目的是将规则存储在Java中的String变量中&#xff0c;以便以后进行处理。它是如何工作的&#xff1f;该代码分别使用String.format和e…

这届毕业生薪资高,是真的

‍‍‍‍最近一份校招的薪资上了知乎的热搜榜。大家想查薪资的&#xff0c;可以用这个微信小程序offershow>查薪资的小程序<可以看到这个小程序可以查到的企业还挺多的&#xff0c;方便大家在选择工作谈薪资的时候做下参考。额&#xff0c;我这篇文章不是为了介绍这个小程…

心得 : 面向对象和面向过程的区别【分享】

面向对象&#xff1a;用线性的思维。与面向过程相辅相成。在软件开发过程中&#xff0c;宏观上&#xff0c;用面向对象来把握事物间复杂的关系&#xff0c;分析系统。微观上&#xff0c;仍然使用面向过程。 “面向过程”是一种是事件为中心的编程思想。就是分析出解决问题所需的…

linux 系统监控脚本

Linux下性能预警及应急处理 自己编写一个脚本程序&#xff0c;该程序在工作时段&#xff08;8&#xff1a;00-22&#xff1a;00&#xff09;&#xff0c;每隔一个小时执行一次&#xff1b;在其他时段每隔两小时执行一次。 每次执行都要完成如下任务&#xff1a; 1、检测进程CPU…

这辆迷你摩托车,很酷!

摘要&#xff1a;平衡小车大家应该见到过很多了&#xff0c;比如最有名的要数野生钢铁侠稚晖君的自行车平衡小车了。那个玩意太高级一般人做不出来&#xff0c;作为学生或者DIY爱好者做一辆小型的mini平衡小车还是可以实现的。随着16届恩智浦杯全国大学生智能汽车大赛新增单车拉…

自测题

什么是硬件&#xff1f;什么是软件&#xff1f; 硬件是看得见摸得着东西&#xff0c;软件是数据程序 电脑常见的硬件有&#xff1a;主板、机箱、CPU、内存条、硬盘、光驱、显示器、键盘、鼠标等&#xff1b; 电脑的软件有很多&#xff0c;像windows系统&#xff0c;office系列…

linux errno 线程,Linux errno 错误对照表

errno 在 中定义&#xff0c;错误 Exx 的宏定义在 /usr/include/asm-generic 文件夹下面的 errno-base.h 和 errno.h&#xff0c;分别定义了 1-34 、35-132 的错误定义。strerror() 函数依据 errno 值返回错误描述字符串&#xff0c;下面程序打印对照表&#xff1a;Code highli…

如何当好独立CIO(1)

如何当好独立CIO(1)出处:信息方略 文: 刘少东 评论( 0 )条 论坛 博客导读&#xff1a;独立CIO一般有比较丰富的信息化管理经历&#xff0c;具有新的想法和思路&#xff0c;视野也更加开阔&#xff0c;能够以局外人的身份冷静、客观地分析企业战略&#xff1b;同时&#xff0c;这…

提高单片机设计的10个细节

前言1 干扰对单片机应用系统的影响1.1测量数据误差加大1.2 控制系统失灵1.3 影响单片机RAM存储器和E2PROM等1.4 程序运行失常2 如何提高我们设备的抗干扰能力2.1 解决来自电源端的干扰2.2 模拟信号采样抗干扰技术2.3 数字信号传输通道的抗干扰技术2.4 硬件监控电路2.5 PCB电路合…

bzoj 2653 洛谷 P2839 [国家集训队] middle

2653: middle Time Limit: 20 Sec Memory Limit: 512 MBSubmit: 2381 Solved: 1340[Submit][Status][Discuss]Description 一个长度为n的序列a&#xff0c;设其排过序之后为b&#xff0c;其中位数定义为b[n/2]&#xff0c;其中a,b从0开始标号,除法取下整。给你一个长度为n的序…

linux统计单拷贝基因家族,为什么要进行基因家族分析?

原标题&#xff1a;为什么要进行基因家族分析&#xff1f;某物种基因组被测序后&#xff0c;大部分课题组都会发表一些基因家族分析的文章&#xff0c;此举常常被误解为“灌水”&#xff0c;其实不然&#xff0c;理清基因组内基因家族成员分类组成&#xff0c;是挖掘和物种特性…

童继龙:论ERP顾问的创新分享与专业精神

童继龙&#xff1a;论ERP顾问的创新分享与专业精神出处:51CTO博客 文: 童继龙 评论( 0 )条 论坛 博客导读&#xff1a;公司的核心价值观中有一部分为“持续创新”&#xff0c;对实施同事的行为态度考核中有两项为“创新分享”和“专业精神”&#xff0c;因为上海实施部的新同事…

图解分析 Linux 网络包发送过程

大家好&#xff0c;下面的文章转发一个鹅厂同学的文章&#xff0c;这篇文章从应用到内核&#xff0c;写的非常不错&#xff0c;希望大家分析某个技术也可以从这方面入手。-----大家好&#xff0c;我是飞哥!半年前我以源码的方式描述了网络包的接收过程。之后不断有粉丝提醒我还…

linux下shell编程课程设计,Linux下shell编程实例

1. 推断一文件是不是块或字符设备文件。假设是将其复制到 /dev 文件夹下read -p "input a file:" filenameif [ -b $filename -o -c $filename ]thencp $filename /dev/fi2.编写一个脚本。进行简单的减法运算。要求提示输入变量#!/bin/bashread -p "input a num…