gpt4 book ai didi

java - Apache 点燃 : StripedExecutor queue and backup performance

转载 作者:行者123 更新时间:2023-11-29 09:26:48 25 4
gpt4 key购买 nike

我们有一个带有 2 个数据节点和分布式缓存的集群 (Ignite v2.7)。

我们将数据加载到此缓存并开始大量读/写操作。集群完美运行。根据 JMX,StripedExecutor 队列为空。

我们在此缓存上启用备份,将数据加载到此缓存并开始大量读/写操作。根据 JMX,StripedExecutor 队列在一个节点上不断增长。 Sys-stripe 线程消耗 CPU,但 StripedExecutor 运行缓慢。

我们使用三种读取操作:

  1. 从客户端节点分发 sql,选择表单 xxx where ...

  2. 从客户端节点启动计算,
    集合 offerSearchResults = ignite.compute(ignite.cluster().forServers()).broadcast(new GetProductOfferJob(), computeTaskData);GetProductOfferJob 使用 cache.get

  3. 来自客户端节点的近缓存,cache.get

这是备份内部的错误吗?

数据区域配置:

<property name="dataStorageConfiguration">
<bean class="org.apache.ignite.configuration.DataStorageConfiguration">
<property name="systemRegionInitialSize" value="#{100 * 1024 * 1024}"/>
<property name="pageSize" value="16384"/>
<property name="walMode" value="LOG_ONLY"/>
<property name="writeThrottlingEnabled" value="true"/>
<property name="dataRegionConfigurations">
<list>
<bean class="org.apache.ignite.configuration.DataRegionConfiguration">
<property name="name" value="default_data_region"/>
<property name="initialSize" value="#{10L * 1024 * 1024 * 1024}"/>
<property name="maxSize" value="#{50L * 1024 * 1024 * 1024}"/>
<property name="metricsEnabled" value="false"/>
<property name="persistenceEnabled" value="true"/>
</bean>
</list>
</property>
</bean>
</property>

缓存配置:

<bean class="org.apache.ignite.configuration.CacheConfiguration">
<property name="name" value="ATTR_VALUE"/>
<property name="dataRegionName" value="default_data_region"/>
<property name="cacheMode" value="PARTITIONED"/>
<property name="backups" value="1"/>
<property name="sqlSchema" value="ATTR_VALUE"/>
<property name="onheapCacheEnabled" value="true"/>
<property name="copyOnRead" value="false"/>
<property name="keyConfiguration">
<bean class="org.apache.ignite.cache.CacheKeyConfiguration">
<property name="typeName" value="entity.key.AttributeValueKey"/>
<property name="affinityKeyFieldName" value="segId"/>
</bean>
</property>
<property name="queryEntities">
<list>
<bean class="org.apache.ignite.cache.QueryEntity">
<property name="keyType" value="entity.key.AttributeValueKey"/>
<property name="valueType" value="entity.AttributeValue"/>
<property name="fields">
<map>
<entry key="segId" value="java.lang.String"/>
<entry key="value" value="java.lang.String"/>
<entry key="attrId" value="java.lang.Long"/>
<entry key="entityObjectId" value="java.lang.Integer"/>
</map>
</property>
<property name="keyFields">
<set>
<value>segId</value>
<value>value</value>
<value>attrId</value>
<value>entityObjectId</value>
</set>
</property>
</bean>
</list>
</property>
</bean>

最佳答案

当您在缓存上启用备份时,集群的负载量增加了一倍。

在 0 个备份的情况下,每次写入都是一个节点上的一个操作。

对于 1 个备份,每次写入都是两次操作 - 每个节点一个。

由于负载加倍,集群似乎已经窒息了。我假设您需要添加一些节点来处理这种负载量。

关于java - Apache 点燃 : StripedExecutor queue and backup performance,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55124543/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com