mirror of https://github.com/apache/cassandra
name commitlog sync and writer threads. patch by Sammy Yu; reviewed by jbellis for CASSANDRA-419
git-svn-id: https://svn.apache.org/repos/asf/incubator/cassandra/branches/cassandra-0.4@810984 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6e64cfb948
commit
bb2b7eef43
|
|
@ -214,7 +214,7 @@ public class CommitLog
|
|||
}
|
||||
}
|
||||
}
|
||||
}).start();
|
||||
}, "PERIODIC-COMMIT-LOG-SYNCER").start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ public class CommitLogExecutorService extends AbstractExecutorService implements
|
|||
}
|
||||
}
|
||||
};
|
||||
new Thread(runnable).start();
|
||||
new Thread(runnable, "COMMIT-LOG-WRITER").start();
|
||||
|
||||
MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
|
||||
try
|
||||
|
|
|
|||
Loading…
Reference in New Issue