All Downloads are FREE. Search and download functionalities are using the official Maven repository.

configuration.initial.module-shards.conf Maven / Gradle / Ivy

There is a newer version: 21.1.0
Show newest version
# This file describes which shards live on which members
# The format for a module-shards is as follows,
# {
#    name = ""
#    shards = [
#        {
#            name=""
#            replicas = [
#                ""
#            ]
#     ]
# }
#
# For Helium we support only one shard per module. Beyond Helium
# we will support more than 1
# The replicas section is a collection of member names. This information
# will be used to decide on which members replicas of a particular shard will be
# located. Once replication is integrated with the distributed data store then
# this section can have multiple entries.
#
#


module-shards = [
    {
        name = "default"
        shards = [
            {
                name="default"
                replicas = [
                    "member-1"
                ]
            }
        ]
    },
    {
        name = "topology"
        shards = [
            {
                name="topology"
                replicas = [
                    "member-1"
                ]
            }
        ]
    },
    {
        name = "inventory"
        shards = [
            {
                name="inventory"
                replicas = [
                    "member-1"
                ]
            }
        ]
    },
]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy