当前位置: 首页>>代码示例>>Java>>正文


Java SchemaLoader.mkdirs方法代码示例

本文整理汇总了Java中org.apache.cassandra.SchemaLoader.mkdirs方法的典型用法代码示例。如果您正苦于以下问题:Java SchemaLoader.mkdirs方法的具体用法?Java SchemaLoader.mkdirs怎么用?Java SchemaLoader.mkdirs使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.cassandra.SchemaLoader的用法示例。


在下文中一共展示了SchemaLoader.mkdirs方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testRegularMode

import org.apache.cassandra.SchemaLoader; //导入方法依赖的package包/类
@Test
public void testRegularMode() throws ConfigurationException
{
    SchemaLoader.mkdirs();
    SchemaLoader.cleanup();
    StorageService.instance.initServer(0);
    for (String path : DatabaseDescriptor.getAllDataFileLocations())
    {
        // verify that storage directories are there.
        assertTrue(new File(path).exists());
    }
    // a proper test would be to call decommission here, but decommission() mixes both shutdown and datatransfer
    // calls.  This test is only interested in the shutdown-related items which a properly handled by just
    // stopping the client.
    //StorageService.instance.decommission();
    StorageService.instance.stopClient();
}
 
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:18,代码来源:StorageServiceServerTest.java

示例2: testRegularMode

import org.apache.cassandra.SchemaLoader; //导入方法依赖的package包/类
@Test
public void testRegularMode() throws IOException, InterruptedException, ConfigurationException
{
    SchemaLoader.mkdirs();
    SchemaLoader.cleanup();
    StorageService.instance.initServer(0);
    for (String path : DatabaseDescriptor.getAllDataFileLocations())
    {
        // verify that storage directories are there.
        assertTrue(new File(path).exists());
    }
    // a proper test would be to call decommission here, but decommission() mixes both shutdown and datatransfer
    // calls.  This test is only interested in the shutdown-related items which a properly handled by just
    // stopping the client.
    //StorageService.instance.decommission();
    StorageService.instance.stopClient();
}
 
开发者ID:pgaref,项目名称:ACaZoo,代码行数:18,代码来源:StorageServiceServerTest.java

示例3: setup

import org.apache.cassandra.SchemaLoader; //导入方法依赖的package包/类
@BeforeClass
public static void setup() throws Exception
{
    SchemaLoader.mkdirs();
    SchemaLoader.cleanup();
    Keyspace.setInitialized();
    StorageService.instance.initServer(0);
}
 
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:9,代码来源:CloudstackSnitchTest.java

示例4: testClientOnlyMode

import org.apache.cassandra.SchemaLoader; //导入方法依赖的package包/类
@Test
public void testClientOnlyMode() throws ConfigurationException
{
    SchemaLoader.mkdirs();
    SchemaLoader.cleanup();
    StorageService.instance.initClient(0);

    // verify that no storage directories were created.
    for (String path : DatabaseDescriptor.getAllDataFileLocations())
    {
        assertFalse(new File(path).exists());
    }
    StorageService.instance.stopClient();
}
 
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:15,代码来源:StorageServiceClientTest.java

示例5: setup

import org.apache.cassandra.SchemaLoader; //导入方法依赖的package包/类
@BeforeClass
public static void setup() throws Exception
{
    SchemaLoader.mkdirs();
    SchemaLoader.cleanup();
    StorageService.instance.initServer(0);
}
 
开发者ID:pgaref,项目名称:ACaZoo,代码行数:8,代码来源:EC2SnitchTest.java

示例6: testClientOnlyMode

import org.apache.cassandra.SchemaLoader; //导入方法依赖的package包/类
@Test
public void testClientOnlyMode() throws IOException, ConfigurationException
{
    SchemaLoader.mkdirs();
    SchemaLoader.cleanup();
    StorageService.instance.initClient();

    // verify that no storage directories were created.
    for (String path : DatabaseDescriptor.getAllDataFileLocations())
    {
        assertFalse(new File(path).exists());
    }
    StorageService.instance.stopClient();
}
 
开发者ID:pgaref,项目名称:ACaZoo,代码行数:15,代码来源:StorageServiceClientTest.java


注:本文中的org.apache.cassandra.SchemaLoader.mkdirs方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。