Basic sharding configuration is used to configure a sharding binary provider for Artifactory instance.
The following parameters are available for a basic sharding configuration:
Parameter | Description |
---|---|
| Sharding |
| Default: 0 (0 means the The minimum number of successful writes that must be maintained for an upload to be successful. The next balance cycle (triggered with the GC mechanism) will eventually transfer the binary to enough nodes such that the redundancy commitment is preserved. In other words, Leniency governs the minimal allowed redundancy in cases where the redundancy commitment was not kept temporarily. For example, if The amount of currently active nodes must always be greater or equal than the configured |
| This parameter dictates the strategy for reading binaries from the mounts that make up the sharded filestore. Possible values are: roundRobin (default): Binaries are read from each mount using a round robin strategy. |
| This parameter dictates the strategy for writing binaries to the mounts that make up the sharded filestore. Possible values are: roundRobin (default):Binaries are written to each mount using a round robin strategy. freeSpace:Binaries are written to the mount with the greatest absolute volume of free space available. percentageFreeSpace:Binaries are written to the mount with the percentage of free space available. |
| Default: 1 The number of copies that should be stored for each binary in the filestore. Note that redundancy must be less than or equal to the number of mounts in your system for Artifactory to work with this configuration. |
| Default: 30,000 ms To support the specified redundancy, accumulates the write stream in a buffer, and uses “r” threads (according to the specified redundancy) to write to each of the redundant copies of the binary being written. A binary can only be considered written once all redundant threads have completed their write operation. Since all threads are competing for the write stream buffer, each one will complete the write operation at a different time. This parameter specifies the amount of time (ms) that any thread will wait for all the others to complete their write operation. TipIf a write operation fails, you can try increasing the value of this parameter. |
| Default: 32 Kb The size of the write buffer used to accumulate the write stream before being replicated for writing to the “r” redundant copies of the binary. TipIf a write operation fails, you can try increasing the value of this parameter. |
| Default: true Set this flag to false if you want to disable the balancing sharding mechanism. |
| Default: 0.0 ms Once a failed mount has been restored, this parameter specifies how long each balancing session may run before it lapses until the next Garbage Collection has been completed. For more details about balancing, see Using Balancing to Recover from Mount Failure. NoteThe default value is set to 0.0 ms to allow for the sharding balancing operation to complete without interruption. TipTo restore your system to full redundancy more quickly after a mount failure, you may increase the value of this parameter. If you find this causes an unacceptable degradation of overall system performance, you can consider decreasing the value of this parameter, but this means that the overall time taken for Artifactory to restore full redundancy will be longer. |
| Default: false If this flag is false, when a binary is uploaded Artifactory checks if the binary is present in the other shards. If the number of instances found in the other shards is greater than the value of redundancy, Artifactory will delete the number of instances of the binary greater than redundancy in the next balance cycle. For example, if Artifactory finds 4 binary instances in the other shards and redundancy = 2, in the next balance cycle Artifactory will delete 2 instances of that binary. If this flag is true, the check during upload is disabled and the balance cycle is not triggered. |
| Default: 36,000,000 ms (10 hours) To implement its write behavior, Artifactory needs to periodically query the mounts in the sharded filestore to check for free space. Since this check may be a resource-intensive operation, you may use this parameter to control the time interval between free space checks. TipIf you anticipate a period of intensive upload of large volumes of binaries, you can consider decreasing the value of this parameter in order to reduce the transient imbalance between mounts in your system. |
| Default: 2 Artifactory maintains a pool of threads to execute writes to each redundant unit of storage. Depending on the intensity of write activity, eventually, some of the threads may become idle and are then candidates for being killed. However, Artifactory does need to maintain some threads alive for when write activities begin again. This parameter specifies the minimum number of threads that should be kept alive to supply redundant storage units. |
| Default: 120,000 ms (2 min) The maximum period of time threads may remain idle before becoming candidates for being killed. |
| Default: 1 The number of threads to use for the rebalancing operations. |
| Default: 2 The number of threads to use for checking that shards are accessible. |
| Default: 15000 milliseconds (15 seconds) The maximum time to wait while checking if shards are accessible. |
Basic Sharding Example 1
The code snippet shows a sample configuration for the following setup.
A cached sharding binary provider with three mounts and redundancy of 2.
Each mount "X" writes to a directory called /filestoreX.
The read strategy for the provider is roundRobin.
The write strategy for the provider is percentageFreeSpace.
<config version="4"> <chain> <provider id="cache-fs" type="cache-fs"> <!-- This is a cached filestore --> <provider id="sharding" type="sharding"> <!-- This is a sharding provider --> <sub-provider id="shard1" type="state-aware"/> <!-- There are three mounts --> <sub-provider id="shard2" type="state-aware"/> <sub-provider id="shard3" type="state-aware"/> </provider> </provider> </chain> // Specify the read and write strategy and redundancy for the sharding binary provider <provider id="sharding" type="sharding"> <readBehavior>roundRobin</readBehavior> <writeBehavior>percentageFreeSpace</writeBehavior> <redundancy>2</redundancy> </provider> //For each sub-provider (mount), specify the filestore location <provider id="shard1" type="state-aware"> <fileStoreDir>filestore1</fileStoreDir> </provider> <provider id="shard2" type="state-aware"> <fileStoreDir>filestore2</fileStoreDir> </provider> <provider id="shard3" type="state-aware"> <fileStoreDir>filestore3</fileStoreDir> </provider> </config>
Basic Sharding Example 2
The following code snippet shows the double-shards template.
<config version="4"> <chain template="double-shards" /> <provider id="shard-fs-1" type="state-aware"> <fileStoreDir>shard-fs-1</fileStoreDir> </provider> <provider id="shard-fs-2" type="state-aware"> <fileStoreDir>shard-fs-2</fileStoreDir> </provider> </config>
The double-shards template uses a cached provider with two mounts and a redundancy of 1, that is, only one copy of each artifact is stored.
<chain> <provider id="cache-fs" type="cache-fs"> <provider id="sharding" type="sharding"> <redundancy>1</redundancy> <sub-provider id="shard-fs-1" type="state-aware"/> <sub-provider id="shard-fs-2" type="state-aware"/> </provider> </provider> </chain>
To modify the parameters of the template, you can change the values of the elements in the template definition. For example, to increase redundancy of the configuration to 2, you only need to modify the <redundancy>
tag as shown in the following sample.
<chain> <provider id="cache-fs" type="cache-fs"> <provider id="sharding" type="sharding"> <redundancy>2</redundancy> <sub-provider id="shard-fs-1" type="state-aware"/> <sub-provider id="shard-fs-2" type="state-aware"/> </provider> </provider> </chain>