Skip to content

Commit

Permalink
Merge pull request #7960 from thomasneirynck/fix/7945
Browse files Browse the repository at this point in the history
Do not perform unnecessary round-trip to ES.
  • Loading branch information
thomasneirynck authored Aug 11, 2016
2 parents 7b1ac98 + ca6ce25 commit 0c9e2af
Show file tree
Hide file tree
Showing 3 changed files with 198 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/core_plugins/kibana/public/visualize/editor/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,14 +293,25 @@ uiModules

function transferVisState(fromVis, toVis, stage) {
return function () {

//verify this before we copy the "new" state
const isAggregationsChanged = !fromVis.aggs.jsonDataEquals(toVis.aggs);

const view = fromVis.getEnabledState();
const full = fromVis.getState();
toVis.setState(view);
editableVis.dirty = false;
$state.vis = full;
$state.save();

if (stage) $scope.fetch();
/**
* Only fetch (full ES round trip), if the play-button has been pressed (ie. 'stage' variable) and if there
* has been changes in the Data-tab.
*/
if (stage && isAggregationsChanged) {
$scope.fetch();
} else {
$state.save();
}
};
}

Expand Down
168 changes: 168 additions & 0 deletions src/ui/public/vis/__tests__/_agg_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,143 @@ describe('AggConfig', function () {
});
});

describe('#toJsonDataEquals', function () {

const testsIdentical = [{
type: 'metric',
aggs: [
{
type: 'count',
schema: 'metric',
params: {field: '@timestamp'}
}
]
}, {
type: 'histogram',
aggs: [
{
type: 'avg',
schema: 'metric'
},
{
type: 'date_histogram',
schema: 'segment'
}
]
}];

testsIdentical.forEach((visConfig, index) => {
it(`identical aggregations (${index})`, function () {
const vis1 = new Vis(indexPattern, visConfig);
const vis2 = new Vis(indexPattern, visConfig);
expect(vis1.aggs.jsonDataEquals(vis2.aggs)).to.be(true);
});
});

const testsIdenticalDifferentOrder = [{
config1: {
type: 'histogram',
aggs: [
{
type: 'avg',
schema: 'metric'
},
{
type: 'date_histogram',
schema: 'segment'
}
]
},
config2: {
type: 'histogram',
aggs: [
{
schema: 'metric',
type: 'avg'

},
{
schema: 'segment',
type: 'date_histogram'
}
]
}
}];

testsIdenticalDifferentOrder.forEach((test, index) => {
it(`identical aggregations (${index}) - init json is in different order`, function () {
const vis1 = new Vis(indexPattern, test.config1);
const vis2 = new Vis(indexPattern, test.config2);
expect(vis1.aggs.jsonDataEquals(vis2.aggs)).to.be(true);
});
});

const testsDifferent = [{
config1: {
type: 'histogram',
aggs: [
{
type: 'avg',
schema: 'metric'
},
{
type: 'date_histogram',
schema: 'segment'
}
]
},
config2: {
type: 'histogram',
aggs: [
{
type: 'max',
schema: 'metric'

},
{
type: 'date_histogram',
schema: 'segment'
}
]
}
},{
config1: {
type: 'metric',
aggs: [
{
type: 'count',
schema: 'metric',
params: {field: '@timestamp'}
}
]
},
config2: {
type: 'metric',
aggs: [
{
type: 'count',
schema: 'metric',
params: {field: '@timestamp'}
},
{
type: 'date_histogram',
schema: 'segment'
}
]
}
}];

testsDifferent.forEach((test, index) => {
it(`different aggregations (${index})`, function () {
const vis1 = new Vis(indexPattern, test.config1);
const vis2 = new Vis(indexPattern, test.config2);
expect(vis1.aggs.jsonDataEquals(vis2.aggs)).to.be(false);
});
});


});

describe('#toJSON', function () {
it('includes the aggs id, params, type and schema', function () {
let vis = new Vis(indexPattern, {
Expand All @@ -213,6 +350,37 @@ describe('AggConfig', function () {
expect(state).to.have.property('type', 'date_histogram');
expect(state).to.have.property('schema', 'segment');
});



it('test serialization order is identical (for visual consistency)', function () {
let vis1 = new Vis(indexPattern, {
type: 'histogram',
aggs: [
{
type: 'date_histogram',
schema: 'segment'
}
]
});
let vis2 = new Vis(indexPattern, {
type: 'histogram',
aggs: [
{
schema: 'segment',
type: 'date_histogram'

}
]
});

//this relies on the assumption that js-engines consistently loop over properties in insertion order.
//most likely the case, but strictly speaking not guaranteed by the JS and JSON specifications.
expect(JSON.stringify(vis1.aggs.toJSON()) === JSON.stringify(vis2.aggs.toJSON())).to.be(true);

});


});

describe('#makeLabel', function () {
Expand Down
17 changes: 17 additions & 0 deletions src/ui/public/vis/agg_configs.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,23 @@ export default function AggConfigsFactory(Private) {
}
}

/**
* Data-by-data comparison of this Aggregation
* Ignores the non-array indexes
* @param aggConfigs an AggConfigs instance
*/
AggConfigs.prototype.jsonDataEquals = function (aggConfigs) {
if (aggConfigs.length !== this.length) {
return false;
}
for (let i = 0; i < this.length; i += 1) {
if (!_.isEqual(aggConfigs[i].toJSON(), this[i].toJSON())) {
return false;
}
}
return true;
};

AggConfigs.prototype.toDsl = function () {
let dslTopLvl = {};
let dslLvlCursor;
Expand Down

0 comments on commit 0c9e2af

Please sign in to comment.