国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

aerospike 集群搭建

ranwu / 1948人閱讀

摘要:是一個分布式的存儲服務,與,等相比,最大的特點是支持內存和磁盤的混合存儲,并且對的支持非常好,將索引存在內存中,數據存在中,保持極高性能的同時,能有效的節約成本單機安裝安裝啟動查看日志集群安裝首先用上面的步驟在每個節點安裝,再

aerospike 是一個分布式的 kv 存儲服務,與 redis,memcached 等相比,最大的特點是支持內存和磁盤的混合存儲,并且對 ssd 的支
持非常好,將索引存在內存中,數據存在 ssd 中,保持極高性能的同時,能有效的節約成本

單機安裝

安裝

wget -O aerospike.tgz "https://www.aerospike.com/download/server/latest/artifact/el6"
tar -xvf aerospike.tgz
cd aerospike-server-community-*-el6
sudo ./asinstall

啟動

sudo service aerospike start

查看日志

tail -f /var/log/aerospike/aerospike.log
集群安裝

首先用上面的步驟在每個節點安裝 aerospike,再修改配置文件 /etc/aerospike/aerospike.conf,添加集群的地址列表,啟動服務即可

下面是一個配置文件樣例

service {
    user root
    group root
    paxos-single-replica-limit 1
    pidfile /var/run/aerospike/asd.pid
    proto-fd-max 15000
}

logging {
    file /var/log/aerospike/aerospike.log {
        context any info
    }
}

network {
    service {
        address 0.0.0.0
        port 3000
        # add current node address here
        access-address 172.31.25.40 3002
    }

    heartbeat {
        mode mesh
        # add current node address here        
        address 172.31.25.40
        port 3002
        # add all cluster node address here
        mesh-seed-address-port 172.31.25.40 3002
        mesh-seed-address-port 172.31.23.48 3002
        mesh-seed-address-port 172.31.19.27 3002
        interval 150
        timeout 10
    }

    fabric {
        address any
        port 3001
    }

    info {
        address any
        port 3003
    }
}

namespace test {
    memory-size 8G
    storage-engine memory
}
參考鏈接

Install on Red Hat: https://www.aerospike.com/doc...

Network Heartbeat: https://www.aerospike.com/doc...

轉載請注明出處 
本文鏈接:http://www.hatlonely.com/2018...

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/17768.html

相關文章

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<