Search in sources :

Example 1 with DefaultKeeperConfig

use of com.ctrip.xpipe.redis.keeper.config.DefaultKeeperConfig in project x-pipe by ctripcorp.

the class AbstractIntegratedTest method createMetaService.

protected MetaServerKeeperService createMetaService(final List<MetaServerMeta> metaServerMetas) {
    DefaultMetaServerLocator metaServerLocator = new DefaultMetaServerLocator(new MetaServerAddressAware() {

        @Override
        public String getMetaServerUrl() {
            return String.format("http://%s:%d", "localhost", metaServerMetas.get(0).getPort());
        }
    });
    DefaultMetaService metaService = new DefaultMetaService();
    metaService.setConfig(new DefaultKeeperConfig());
    metaService.setMetaServerLocator(metaServerLocator);
    return metaService;
}
Also used : DefaultMetaService(com.ctrip.xpipe.redis.keeper.meta.DefaultMetaService) DefaultKeeperConfig(com.ctrip.xpipe.redis.keeper.config.DefaultKeeperConfig) MetaServerAddressAware(com.ctrip.xpipe.redis.core.config.MetaServerAddressAware) DefaultMetaServerLocator(com.ctrip.xpipe.redis.core.metaserver.DefaultMetaServerLocator)

Example 2 with DefaultKeeperConfig

use of com.ctrip.xpipe.redis.keeper.config.DefaultKeeperConfig in project x-pipe by ctripcorp.

the class DefaultReplicationStoreTest method testInterruptedException.

@Test
public void testInterruptedException() throws IOException {
    String keeperRunid = randomKeeperRunid();
    int dataLen = 100;
    store = new DefaultReplicationStore(baseDir, new DefaultKeeperConfig(), keeperRunid, createkeeperMonitor());
    RdbStore rdbStore = store.beginRdb(randomKeeperRunid(), -1, new LenEofType(dataLen));
    rdbStore.writeRdb(Unpooled.wrappedBuffer(randomString(dataLen).getBytes()));
    rdbStore.endRdb();
    Thread.currentThread().interrupt();
    store = new DefaultReplicationStore(baseDir, new DefaultKeeperConfig(), keeperRunid, createkeeperMonitor());
    // clear interrupt
    Thread.interrupted();
    store.appendCommands(Unpooled.wrappedBuffer(randomString(dataLen).getBytes()));
    store = new DefaultReplicationStore(baseDir, new DefaultKeeperConfig(), keeperRunid, createkeeperMonitor());
}
Also used : RdbStore(com.ctrip.xpipe.redis.core.store.RdbStore) DefaultKeeperConfig(com.ctrip.xpipe.redis.keeper.config.DefaultKeeperConfig) LenEofType(com.ctrip.xpipe.redis.core.protocal.protocal.LenEofType) Test(org.junit.Test) AbstractRedisKeeperTest(com.ctrip.xpipe.redis.keeper.AbstractRedisKeeperTest)

Example 3 with DefaultKeeperConfig

use of com.ctrip.xpipe.redis.keeper.config.DefaultKeeperConfig in project x-pipe by ctripcorp.

the class DefaultReplicationStoreTest method testReadWhileDestroy.

@Test
public void testReadWhileDestroy() throws Exception {
    store = new DefaultReplicationStore(baseDir, new DefaultKeeperConfig(), randomKeeperRunid(), createkeeperMonitor());
    store.getMetaStore().becomeActive();
    int dataLen = 1000;
    RdbStore rdbStore = store.beginRdb(randomKeeperRunid(), -1, new LenEofType(dataLen));
    rdbStore.writeRdb(Unpooled.wrappedBuffer(randomString(dataLen).getBytes()));
    rdbStore.endRdb();
    CountDownLatch latch = new CountDownLatch(2);
    AtomicBoolean result = new AtomicBoolean(true);
    executors.execute(new AbstractExceptionLogTask() {

        @Override
        protected void doRun() throws Exception {
            try {
                sleep(2);
                store.close();
                store.destroy();
            } finally {
                latch.countDown();
            }
        }
    });
    executors.execute(new AbstractExceptionLogTask() {

        @Override
        protected void doRun() throws Exception {
            try {
                store.fullSyncIfPossible(new FullSyncListener() {

                    @Override
                    public ChannelFuture onCommand(ReferenceFileRegion referenceFileRegion) {
                        return null;
                    }

                    @Override
                    public void beforeCommand() {
                    }

                    @Override
                    public void setRdbFileInfo(EofType eofType, long rdbFileKeeperOffset) {
                    }

                    @Override
                    public void onFileData(ReferenceFileRegion referenceFileRegion) throws IOException {
                        sleep(10);
                    }

                    @Override
                    public boolean isOpen() {
                        return true;
                    }

                    @Override
                    public void exception(Exception e) {
                        logger.info("[exception][fail]" + e.getMessage());
                        result.set(false);
                    }

                    @Override
                    public void beforeFileData() {
                    }
                });
            } catch (Exception e) {
                logger.info("[exception][fail]" + e.getMessage());
                result.set(false);
            } finally {
                latch.countDown();
            }
        }
    });
    latch.await(100, TimeUnit.MILLISECONDS);
    Assert.assertFalse(result.get());
}
Also used : RdbStore(com.ctrip.xpipe.redis.core.store.RdbStore) LenEofType(com.ctrip.xpipe.redis.core.protocal.protocal.LenEofType) EofType(com.ctrip.xpipe.redis.core.protocal.protocal.EofType) LenEofType(com.ctrip.xpipe.redis.core.protocal.protocal.LenEofType) CountDownLatch(java.util.concurrent.CountDownLatch) IOException(java.io.IOException) ReferenceFileRegion(com.ctrip.xpipe.netty.filechannel.ReferenceFileRegion) AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) FullSyncListener(com.ctrip.xpipe.redis.core.store.FullSyncListener) DefaultKeeperConfig(com.ctrip.xpipe.redis.keeper.config.DefaultKeeperConfig) AbstractExceptionLogTask(com.ctrip.xpipe.concurrent.AbstractExceptionLogTask) Test(org.junit.Test) AbstractRedisKeeperTest(com.ctrip.xpipe.redis.keeper.AbstractRedisKeeperTest)

Example 4 with DefaultKeeperConfig

use of com.ctrip.xpipe.redis.keeper.config.DefaultKeeperConfig in project x-pipe by ctripcorp.

the class DefaultReplicationStoreTest method testReadWrite.

@Test
public void testReadWrite() throws Exception {
    store = new DefaultReplicationStore(baseDir, new DefaultKeeperConfig(), randomKeeperRunid(), createkeeperMonitor());
    store.getMetaStore().becomeActive();
    StringBuffer exp = new StringBuffer();
    int cmdCount = 4;
    int cmdLen = 10;
    store.beginRdb("master", -1, new LenEofType(-1));
    for (int j = 0; j < cmdCount; j++) {
        ByteBuf buf = Unpooled.buffer();
        String cmd = UUID.randomUUID().toString().substring(0, cmdLen);
        exp.append(cmd);
        buf.writeBytes(cmd.getBytes());
        store.getCommandStore().appendCommands(buf);
    }
    String result = readCommandFileTilEnd(store, exp.length());
    assertEquals(exp.toString(), result);
    store.close();
}
Also used : DefaultKeeperConfig(com.ctrip.xpipe.redis.keeper.config.DefaultKeeperConfig) LenEofType(com.ctrip.xpipe.redis.core.protocal.protocal.LenEofType) ByteBuf(io.netty.buffer.ByteBuf) Test(org.junit.Test) AbstractRedisKeeperTest(com.ctrip.xpipe.redis.keeper.AbstractRedisKeeperTest)

Aggregations

DefaultKeeperConfig (com.ctrip.xpipe.redis.keeper.config.DefaultKeeperConfig)4 LenEofType (com.ctrip.xpipe.redis.core.protocal.protocal.LenEofType)3 AbstractRedisKeeperTest (com.ctrip.xpipe.redis.keeper.AbstractRedisKeeperTest)3 Test (org.junit.Test)3 RdbStore (com.ctrip.xpipe.redis.core.store.RdbStore)2 AbstractExceptionLogTask (com.ctrip.xpipe.concurrent.AbstractExceptionLogTask)1 ReferenceFileRegion (com.ctrip.xpipe.netty.filechannel.ReferenceFileRegion)1 MetaServerAddressAware (com.ctrip.xpipe.redis.core.config.MetaServerAddressAware)1 DefaultMetaServerLocator (com.ctrip.xpipe.redis.core.metaserver.DefaultMetaServerLocator)1 EofType (com.ctrip.xpipe.redis.core.protocal.protocal.EofType)1 FullSyncListener (com.ctrip.xpipe.redis.core.store.FullSyncListener)1 DefaultMetaService (com.ctrip.xpipe.redis.keeper.meta.DefaultMetaService)1 ByteBuf (io.netty.buffer.ByteBuf)1 IOException (java.io.IOException)1 CountDownLatch (java.util.concurrent.CountDownLatch)1 AtomicBoolean (java.util.concurrent.atomic.AtomicBoolean)1