gpt4 book ai didi

java - Neo4j 2.3.1 服务器在保存具有多个关系的 SDN4 实体时死机

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:40:15 24 4
gpt4 key购买 nike

我正在为指南服务编写一个应用程序,我正在 digital ocean 水滴上运行 Neo4j 2.3.1 的 3 服务器集群。我还在 Tomcat 下运行的 JSF Web 应用程序中使用 Spring Data Neo4j 4.0.0.RELEASE 来写入和查询我的数据。

我有一个节点可能与其他节点有 7 种不同的关系,我已经成功保存了 80 多个实例,但是当我尝试保存节点时,我突然开始在实例 1 主 neo4j 服务器上出现内存不足错误。我将 Neo4j 服务器的内存设置更新为以下内容:

wrapper.java.initmemory=512
wrapper.java.maxmemory=1024

我不再收到 OutOfMemoryError,但现在当我尝试保存节点时服务器出现故障。我可以在服务器出现故障之前查询数据。我从未在服务器 1 主数据/日志/console.log 文件中收到错误消息,但在服务器 2 从数据/日志/console.log 文件中我收到以下消息:

2015-12-31 15:42:00.405-0500 INFO  Instance 1  is alive
2015-12-31 15:42:00.539-0500 INFO Instance 1 was elected as coordinator
2015-12-31 15:42:00.598-0500 INFO Instance 1 is available as master at ha://0.0.0.0:6001?serverId=1 with StoreId{creationTime=1447860597504, randomId=2820629596580485150, storeVersion=15250506225055238, upgradeTime=1447860597504, upgradeId=1}
2015-12-31 15:42:00.647-0500 INFO Instance 1 is available as backup at backup://127.0.0.1:6362 with StoreId{creationTime=1447860597504, randomId=2820629596580485150, storeVersion=15250506225055238, upgradeTime=1447860597504, upgradeId=1}
2015-12-31 15:42:11.652-0500 INFO Instance 1 has failed

节点实体 Java 代码:

public class OutfitterWaterfowlHunt extends WaterfowlHunt {

@Relationship(type="RUN_BY", direction=Relationship.OUTGOING)
private GuideService guideService;

@Relationship(type="GUIDED", direction=Relationship.INCOMING)
private List<Guide> fieldStaffHunter = new ArrayList<Guide>();

@Relationship(type="ASSIGNED_BY", direction=Relationship.OUTGOING)
private Guide fieldStaff;

public void addGuide(Guide guide)
{
this.fieldStaffHunter.add(guide);
}

public List<Guide> getFieldStaffHunter() {
return fieldStaffHunter;
}

public void setFieldStaffHunter(List<Guide> fieldStaffHunter) {
this.fieldStaffHunter = fieldStaffHunter;
}

public GuideService getGuideService() {
return guideService;
}

public void setGuideService(GuideService guideService) {
this.guideService = guideService;
}

public Guide getFieldStaff() {
return fieldStaff;
}

public void setFieldStaff(Guide fieldStaff) {
this.fieldStaff = fieldStaff;
}
}



public class WaterfowlHunt extends Excursion {

@Property(name="type")
private String type;

public String getType() {
return type;
}

public void setType(String type) {
this.type = type;
}
}


public class Excursion extends BaseEntity {

@Relationship(type="OCCURED_ON", direction=Relationship.OUTGOING)
private TookPlaceOn occuredOn;

@Relationship(type="OCCURED_AT", direction=Relationship.OUTGOING)
private ExcursionLocation excursionLocation;

@Relationship(type="PARTICIPATED_IN", direction=Relationship.INCOMING)
private HuntGroupRole participatedIn;

@Relationship(type="HARVESTED", direction=Relationship.OUTGOING)
private HuntInformation harvestInfo;


public TookPlaceOn occuredOn(Day day, Long timeIn, Long timeOut)
{
TookPlaceOn tpo = new TookPlaceOn();

tpo.setDayOfExcursion(day);
tpo.setExcursion(this);

tpo.setTimeIn(timeIn);
tpo.setTimeOut(timeOut);

this.occuredOn = tpo;

day.addOccuredOn(tpo);

return tpo;
}

public void occuredAt(ExcursionLocation huntLocation)
{
this.setExcursionLocation(huntLocation);
}

public void harvested(HuntInformation harvestInfo)
{
this.setHarvestInfo(harvestInfo);
}

public HuntGroupRole participatedIn(HuntGroup huntGroup, Integer nbrOfHunters)
{
HuntGroupRole hgr = new HuntGroupRole();

hgr.setHuntGroup(huntGroup);
hgr.setHuntingSpot(this);

hgr.setNumberOfHunters(nbrOfHunters);

this.participatedIn = hgr;

huntGroup.addParticipatedIn(hgr);

return hgr;
}

public HuntGroupRole getParticipatedIn() {
return participatedIn;
}

public void setParticipatedIn(HuntGroupRole participatedIn) {
this.participatedIn = participatedIn;
}

public TookPlaceOn getOccuredOn() {
return occuredOn;
}

public void setOccuredOn(TookPlaceOn occuredOn) {
this.occuredOn = occuredOn;
}

public ExcursionLocation getExcursionLocation() {
return excursionLocation;
}

public void setExcursionLocation(ExcursionLocation excursionLocation) {
this.excursionLocation = excursionLocation;
}

public HuntInformation getHarvestInfo() {
return harvestInfo;
}

public void setHarvestInfo(HuntInformation harvestInfo) {
this.harvestInfo = harvestInfo;
}

}

我用来保存的代码是通过SDN4 GraphRepository保存的:

    @Transactional
public void saveHunt()
{
OutfitterWaterfowlHunt owh = new OutfitterWaterfowlHunt();

owh.setType("GuideTypeHere");

Day doh = this.determineDayOfHunt();

owh.occuredOn(doh, this.timeIn.getTime(), this.timeOut.getTime());
owh.participatedIn(this.huntGroup, this.nbrOfHunters);

GuideService gs = WDSSession.getInstance().getNeo4JController().retrieveGuideServiceByName("GuideServiceNameHere");

owh.setGuideService(gs);
owh.setFieldStaffHunter(this.selectedFSMembers);
owh.setFieldStaff(this.responsibleFieldStaffer);
owh.occuredAt(this.huntLocation);

HuntInformation hi = this.populateHuntInformation();

owh.setHarvestInfo(hi);

owh = WDSSession.getInstance().getNeo4JController().saveOutfitterWaterfowlHunt(owh);

StringBuffer msg = new StringBuffer();
msg.append("Successfully Saved Hunt ");
msg.append(" (");
msg.append(owh.getGraphId());
msg.append(").");

FacesContext.getCurrentInstance().addMessage(null, new FacesMessage(FacesMessage.SEVERITY_INFO, "Hunt Save Status", msg.toString()));
}

GraphRepository 保存:

    @Transactional
public OutfitterWaterfowlHunt saveOutfitterWaterfowlHunt(OutfitterWaterfowlHunt owh)
{
OutfitterWaterfowlHunt owHunt = this.outWtrFwlRepo.save(owh);

return owHunt;
}

关于什么导致服务器在保存此节点时突然开始失败的任何想法?我目前在我的 Neo4j 数据库中有 19957 个节点,其中大部分构成了我的 DateTree。有没有比我目前正在做的更好的方法来保存节点?

TIA

最佳答案

此问题已在尚未发布的 neo4j-ogm 2.0 中修复。同时解决此问题的困难方法是首先保存所有相关实体,然后保存顶级实体,但查看您的模型,这并不简单。

关于java - Neo4j 2.3.1 服务器在保存具有多个关系的 SDN4 实体时死机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34552188/

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