blob: 291d36dacdf16331c5d7dc64de3a8b856427b3bd [file] [log] [blame]
//-
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
include /app/helpers/jade/mixins
include /app/configuration/mixins
-var form = 'affinity'
-var model = '$ctrl.clonedCache'
-var affModel = model + '.affinity'
-var rendezvousAff = affModel + '.kind === "Rendezvous"'
-var fairAff = affModel + '.kind === "Fair"'
-var customAff = affModel + '.kind === "Custom"'
-var rendPartitionsRequired = rendezvousAff + ' && ' + affModel + '.Rendezvous.affinityBackupFilter'
-var fairPartitionsRequired = fairAff + ' && ' + affModel + '.Fair.affinityBackupFilter'
panel-collapsible(ng-form=form on-open=`ui.loadPanel('${form}')`)
panel-title Affinity Collocation
panel-description
| Collocate data with data to improve performance and scalability of your application.
a.link-success(href="https://apacheignite.readme.io/docs/affinity-collocation" target="_blank") More info
panel-content.pca-form-row(ng-if=`ui.isPanelLoaded('${form}')`)
.pca-form-column-6.pc-form-grid-row
.pc-form-grid-col-60(ng-if='$ctrl.available(["1.0.0", "2.0.0"])')
+form-field__dropdown({
label: 'Function:',
model: `${affModel}.kind`,
name: '"AffinityKind"',
placeholder: 'Default',
options: 'affinityFunction',
tip: 'Key topology resolver to provide mapping from keys to nodes<br/>\
<ul>\
<li>Rendezvous - Based on Highest Random Weight algorithm</li>\
<li>Fair - Tries to ensure that all nodes get equal number of partitions with minimum amount of reassignments between existing nodes</li>\
<li>Custom - Custom implementation of key affinity fynction</li>\
<li>Default - By default rendezvous affinity function with 1024 partitions is used</li>\
</ul>'
})
.pc-form-grid-col-60(ng-if='$ctrl.available("2.0.0")')
+form-field__dropdown({
label: 'Function:',
model: `${affModel}.kind`,
name: '"AffinityKind"',
placeholder: 'Default',
options: 'affinityFunction',
tip: 'Key topology resolver to provide mapping from keys to nodes<br/>\
<ul>\
<li>Rendezvous - Based on Highest Random Weight algorithm</li>\
<li>Custom - Custom implementation of key affinity fynction</li>\
<li>Default - By default rendezvous affinity function with 1024 partitions is used</li>\
</ul>'
})
.pc-form-group
.pc-form-grid-row(ng-if=rendezvousAff)
.pc-form-grid-col-60
+form-field__number({
label: 'Partitions',
model: `${affModel}.Rendezvous.partitions`,
name: '"RendPartitions"',
required: rendPartitionsRequired,
placeholder: '1024',
min: '1',
tip: 'Number of partitions'
})
.pc-form-grid-col-60
+form-field__java-class({
label: 'Backup filter',
model: `${affModel}.Rendezvous.affinityBackupFilter`,
name: '"RendAffinityBackupFilter"',
tip: 'Backups will be selected from all nodes that pass this filter'
})
.pc-form-grid-col-60
+form-field__checkbox({
label: 'Exclude neighbors',
model: `${affModel}.Rendezvous.excludeNeighbors`,
name: '"RendExcludeNeighbors"',
tip: 'Exclude same - host - neighbors from being backups of each other and specified number of backups'
})
.pc-form-grid-row(ng-if=fairAff)
.pc-form-grid-col-60
+form-field__number({
label: 'Partitions',
model: `${affModel}.Fair.partitions`,
name: '"FairPartitions"',
required: fairPartitionsRequired,
placeholder: '256',
min: '1',
tip: 'Number of partitions'
})
.pc-form-grid-col-60
+form-field__java-class({
label: 'Backup filter',
model: `${affModel}.Fair.affinityBackupFilter`,
name: '"FairAffinityBackupFilter"',
tip: 'Backups will be selected from all nodes that pass this filter'
})
.pc-form-grid-col-60
+form-field__checkbox({
label: 'Exclude neighbors',
model: `${affModel}.Fair.excludeNeighbors`,
name: '"FairExcludeNeighbors"',
tip: 'Exclude same - host - neighbors from being backups of each other and specified number of backups'
})
.pc-form-grid-row(ng-if=customAff)
.pc-form-grid-col-60
+form-field__java-class({
label: 'Class name:',
model: `${affModel}.Custom.className`,
name: '"AffCustomClassName"',
required: customAff,
tip: 'Custom key affinity function implementation class name'
})
.pc-form-grid-col-60
+form-field__java-class({
label: 'Mapper:',
model: `${model}.affinityMapper`,
name: '"AffMapCustomClassName"',
tip: 'Provide custom affinity key for any given key'
})
//- Since ignite 2.0
.pc-form-grid-col-60(ng-if='$ctrl.available("2.0.0")')
+form-field__java-class({
label: 'Topology validator:',
model: `${model}.topologyValidator`,
name: '"topologyValidator"'
})
.pca-form-column-6
+preview-xml-java(model, 'cacheAffinity')