gpt4 book ai didi

java - titan 图数据库中并发更新的问题

转载 作者:行者123 更新时间:2023-12-02 02:56:40 25 4
gpt4 key购买 nike

public class a {
private static TitanGraph titanGraph = null;
static GraphTraversalSource traversalSource = null;
public static void main(String a[])
{
titanGraph = TitanFunctions.getTitanGraph();
traversalSource = titanGraph.traversal();
// Task to be executed by each thread
Runnable r = new Runnable() {
public void run() {

long ab = traversalSource.V().has("RequestJob", "RequestId", 203)
.has("JobLockStatus","F")
.property("JobLockStatus", "B").count().next();
titanGraph.tx().commit();
System.out.println("value: "+ab+" : " +Thread.currentThread().getName());
}
};
Thread t1 = new Thread(r, "T1");
Thread t2 = new Thread(r, "T2");
t1.start();
t2.start();
}}

在上面的程序中,两个并发线程正在尝试将同一个 RequestId=203 的值从 “F” 更新为 “B”
似乎两个线程都将状态值获取为 “F” 并将其更新为 B。但我希望只有一个线程应该将值从“F”更改为“B”。更新值后,我还使用 commit() 来保存更改。
如果任何线程将状态从“(F)ree”更改为“(B)usy”..其他线程应该看到更改后的值..(“B”)。
请帮我解决这个问题。

最佳答案

您可以使用互斥体或 synchronized() block 来确保在任何给定时间只有一个线程可以执行该操作。像下面这样的东西可能会起作用:

titanGraph = TitanFunctions.getTitanGraph();
traversalSource = titanGraph.traversal();
Runnable r = new Runnable() {
public void run() {
synchronized(titanGraph){
long ab = traversalSource.V().has("RequestJob", "RequestId", 203)
.has("JobLockStatus","F")
.property("JobLockStatus", "B").count().next();
titanGraph.tx().commit();
}
}
};
Thread t1 = new Thread(r, "T1");
Thread t2 = new Thread(r, "T2");
t1.start();
t2.start();

因此,上面的 block synchronized(titanGraph) 基本上是在说明,对于该 block 内的任何内容,它只能由对括号内的对象具有锁定的线程执行。在本例中为titanGraph。如果线程没有锁,那么它会等待锁变得可用。

Here是一个关于使用synchronized

的非常好的教程

关于java - titan 图数据库中并发更新的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42971443/

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