Does the community edition of VoltDB support Passive Database Replication? -


i tried experiments want know differences between community of voltdb , enterprise.and did this:

    1. wrote words deployment.xml of master cluster:        <dr id="1" />     2. started master cluster successd.        [the master cluster started successfully.][http://i.stack.imgur.com/bo5e9.png]       3. wrote words deployment.xml of replica cluster:        <dr id="2">            <connection source="voltsvr1" />        </dr>     4. created table master cluster:        create table store (        keyspace varbinary(128) not null,        key varchar(128) not null,        value varbinary(2056) not null,        primary key (keyspace, key)        );        partition table store on column key;        dr table store;      5. started replica cluster --replica option:        [the replica cluster started successfully.][http://i.stack.imgur.com/5zbxj.png]       6. used same statements create same table store  table in      master cluster:        create table store (        keyspace varbinary(128) not null,        key varchar(128) not null,        value varbinary(2056) not null,        primary key (keyspace, key)        );        partition table store on column key;        dr table store;      7. loaded data table store of master cluster,   table store of replica cluster could't data master cluster. 

i want know what's problem? lot help!

database replication not available in community edition of voltdb. xdcr (active/active, active/passive), high availability, export, , full durability available in enterprise edition. our github wiki page offers brief description of differences here: https://github.com/voltdb/voltdb#commercial-voltdb-differences

thanks,

john


Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -