├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── conf ├── meta.conf └── node.conf ├── include ├── logger.h ├── zp_binlog.h ├── zp_command.h ├── zp_conf.h ├── zp_const.h └── zp_util.h ├── src ├── common │ ├── zp_binlog.cc │ ├── zp_command.cc │ ├── zp_conf.cc │ └── zp_util.cc ├── meta │ ├── zp_meta.cc │ ├── zp_meta.proto │ ├── zp_meta_client_conn.cc │ ├── zp_meta_client_conn.h │ ├── zp_meta_command.cc │ ├── zp_meta_command.h │ ├── zp_meta_condition_cron.cc │ ├── zp_meta_condition_cron.h │ ├── zp_meta_election.cc │ ├── zp_meta_election.h │ ├── zp_meta_info_store.cc │ ├── zp_meta_info_store.h │ ├── zp_meta_migrate_register.cc │ ├── zp_meta_migrate_register.h │ ├── zp_meta_node_offset.h │ ├── zp_meta_server.cc │ ├── zp_meta_server.h │ ├── zp_meta_update_thread.cc │ └── zp_meta_update_thread.h └── node │ ├── client.proto │ ├── zp_binlog_receive_bgworker.cc │ ├── zp_binlog_receive_bgworker.h │ ├── zp_binlog_sender.cc │ ├── zp_binlog_sender.h │ ├── zp_data_client_conn.cc │ ├── zp_data_client_conn.h │ ├── zp_data_command.cc │ ├── zp_data_command.h │ ├── zp_data_entity.h │ ├── zp_data_partition.cc │ ├── zp_data_partition.h │ ├── zp_data_server.cc │ ├── zp_data_server.h │ ├── zp_data_table.cc │ ├── zp_data_table.h │ ├── zp_metacmd_bgworker.cc │ ├── zp_metacmd_bgworker.h │ ├── zp_node.cc │ ├── zp_ping_thread.cc │ ├── zp_ping_thread.h │ ├── zp_sync_conn.cc │ ├── zp_sync_conn.h │ ├── zp_trysync_thread.cc │ └── zp_trysync_thread.h └── tools ├── Makefile ├── README.md ├── check_binlog_hole.cc ├── checknfix.cc ├── dump_meta.cc ├── empty_trash.cc └── logflat.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/README.md -------------------------------------------------------------------------------- /conf/meta.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/conf/meta.conf -------------------------------------------------------------------------------- /conf/node.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/conf/node.conf -------------------------------------------------------------------------------- /include/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/include/logger.h -------------------------------------------------------------------------------- /include/zp_binlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/include/zp_binlog.h -------------------------------------------------------------------------------- /include/zp_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/include/zp_command.h -------------------------------------------------------------------------------- /include/zp_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/include/zp_conf.h -------------------------------------------------------------------------------- /include/zp_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/include/zp_const.h -------------------------------------------------------------------------------- /include/zp_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/include/zp_util.h -------------------------------------------------------------------------------- /src/common/zp_binlog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/common/zp_binlog.cc -------------------------------------------------------------------------------- /src/common/zp_command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/common/zp_command.cc -------------------------------------------------------------------------------- /src/common/zp_conf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/common/zp_conf.cc -------------------------------------------------------------------------------- /src/common/zp_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/common/zp_util.cc -------------------------------------------------------------------------------- /src/meta/zp_meta.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta.cc -------------------------------------------------------------------------------- /src/meta/zp_meta.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta.proto -------------------------------------------------------------------------------- /src/meta/zp_meta_client_conn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_client_conn.cc -------------------------------------------------------------------------------- /src/meta/zp_meta_client_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_client_conn.h -------------------------------------------------------------------------------- /src/meta/zp_meta_command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_command.cc -------------------------------------------------------------------------------- /src/meta/zp_meta_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_command.h -------------------------------------------------------------------------------- /src/meta/zp_meta_condition_cron.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_condition_cron.cc -------------------------------------------------------------------------------- /src/meta/zp_meta_condition_cron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_condition_cron.h -------------------------------------------------------------------------------- /src/meta/zp_meta_election.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_election.cc -------------------------------------------------------------------------------- /src/meta/zp_meta_election.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_election.h -------------------------------------------------------------------------------- /src/meta/zp_meta_info_store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_info_store.cc -------------------------------------------------------------------------------- /src/meta/zp_meta_info_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_info_store.h -------------------------------------------------------------------------------- /src/meta/zp_meta_migrate_register.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_migrate_register.cc -------------------------------------------------------------------------------- /src/meta/zp_meta_migrate_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_migrate_register.h -------------------------------------------------------------------------------- /src/meta/zp_meta_node_offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_node_offset.h -------------------------------------------------------------------------------- /src/meta/zp_meta_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_server.cc -------------------------------------------------------------------------------- /src/meta/zp_meta_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_server.h -------------------------------------------------------------------------------- /src/meta/zp_meta_update_thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_update_thread.cc -------------------------------------------------------------------------------- /src/meta/zp_meta_update_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/meta/zp_meta_update_thread.h -------------------------------------------------------------------------------- /src/node/client.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/client.proto -------------------------------------------------------------------------------- /src/node/zp_binlog_receive_bgworker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_binlog_receive_bgworker.cc -------------------------------------------------------------------------------- /src/node/zp_binlog_receive_bgworker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_binlog_receive_bgworker.h -------------------------------------------------------------------------------- /src/node/zp_binlog_sender.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_binlog_sender.cc -------------------------------------------------------------------------------- /src/node/zp_binlog_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_binlog_sender.h -------------------------------------------------------------------------------- /src/node/zp_data_client_conn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_data_client_conn.cc -------------------------------------------------------------------------------- /src/node/zp_data_client_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_data_client_conn.h -------------------------------------------------------------------------------- /src/node/zp_data_command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_data_command.cc -------------------------------------------------------------------------------- /src/node/zp_data_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_data_command.h -------------------------------------------------------------------------------- /src/node/zp_data_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_data_entity.h -------------------------------------------------------------------------------- /src/node/zp_data_partition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_data_partition.cc -------------------------------------------------------------------------------- /src/node/zp_data_partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_data_partition.h -------------------------------------------------------------------------------- /src/node/zp_data_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_data_server.cc -------------------------------------------------------------------------------- /src/node/zp_data_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_data_server.h -------------------------------------------------------------------------------- /src/node/zp_data_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_data_table.cc -------------------------------------------------------------------------------- /src/node/zp_data_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_data_table.h -------------------------------------------------------------------------------- /src/node/zp_metacmd_bgworker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_metacmd_bgworker.cc -------------------------------------------------------------------------------- /src/node/zp_metacmd_bgworker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_metacmd_bgworker.h -------------------------------------------------------------------------------- /src/node/zp_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_node.cc -------------------------------------------------------------------------------- /src/node/zp_ping_thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_ping_thread.cc -------------------------------------------------------------------------------- /src/node/zp_ping_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_ping_thread.h -------------------------------------------------------------------------------- /src/node/zp_sync_conn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_sync_conn.cc -------------------------------------------------------------------------------- /src/node/zp_sync_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_sync_conn.h -------------------------------------------------------------------------------- /src/node/zp_trysync_thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_trysync_thread.cc -------------------------------------------------------------------------------- /src/node/zp_trysync_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/src/node/zp_trysync_thread.h -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/check_binlog_hole.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/tools/check_binlog_hole.cc -------------------------------------------------------------------------------- /tools/checknfix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/tools/checknfix.cc -------------------------------------------------------------------------------- /tools/dump_meta.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/tools/dump_meta.cc -------------------------------------------------------------------------------- /tools/empty_trash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/tools/empty_trash.cc -------------------------------------------------------------------------------- /tools/logflat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qihoo360/zeppelin/HEAD/tools/logflat.sh --------------------------------------------------------------------------------