storePathRootDir=/cache1/rocketmq/broker/data
├── abort
├── checkpoint
├── commitlog
│ └── 00000000037580963840
├── config
│ ├── consumerFilter.json
│ ├── consumerFilter.json.bak
│ ├── consumerOffset.json
│ ├── consumerOffset.json.bak
│ ├── delayOffset.json
│ ├── delayOffset.json.bak
│ ├── subscriptionGroup.json
│ ├── subscriptionGroup.json.bak
│ ├── topics.json
│ └── topics.json.bak
├── consumequeue
│ ├── BenchmarkTest
│ ├── BenchmarkTestZj
│ └── ZJ_TEST
├── index
│ └── 20200720163452641
└── lock
public class StorePathConfigHelper {
public static String getStorePathConsumeQueue(final String rootDir) {
return rootDir + File.separator + "consumequeue";
}
public static String getStorePathConsumeQueueExt(final String rootDir) {
return rootDir + File.separator + "consumequeue_ext";
}
public static String getStorePathIndex(final String rootDir) {
return rootDir + File.separator + "index";
}
public static String