[ 
https://issues.apache.org/jira/browse/CLOUDSTACK-9298?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15178874#comment-15178874
 ] 

ASF GitHub Bot commented on CLOUDSTACK-9298:
--------------------------------------------

Github user rafaelweingartner commented on a diff in the pull request:

    https://github.com/apache/cloudstack/pull/1425#discussion_r54969574
  
    --- Diff: 
server/test/com/cloud/api/query/dao/GenericDaoBaseWithTagInformationBaseTest.java
 ---
    @@ -0,0 +1,59 @@
    +// 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.
    +package com.cloud.api.query.dao;
    +
    +import static org.junit.Assert.assertEquals;
    +
    +import java.io.Serializable;
    +
    +import org.apache.cloudstack.api.BaseResponseWithTagInformation;
    +import org.apache.cloudstack.api.response.ResourceTagResponse;
    +import org.powermock.api.mockito.PowerMockito;
    +
    +import com.cloud.api.ApiDBUtils;
    +import com.cloud.api.query.vo.BaseViewWithTagInformationVO;
    +
    +public abstract class GenericDaoBaseWithTagInformationBaseTest<T extends 
BaseViewWithTagInformationVO,
    +                                                                ID extends 
Serializable,
    +                                                                Z extends 
BaseResponseWithTagInformation> {
    +
    +    public void prepareSetup(String tagKey, String tagValue){
    +        PowerMockito.spy(ApiDBUtils.class);
    +        PowerMockito.stub(PowerMockito.method(ApiDBUtils.class, 
"newResourceTagResponse")).toReturn(getResourceTagResponse(tagKey, tagValue));
    +    }
    +
    +    private ResourceTagResponse getResourceTagResponse(String tagKey, 
String tagValue){
    +        ResourceTagResponse tagResponse = new ResourceTagResponse();
    +        tagResponse.setKey(tagKey);
    +        tagResponse.setValue(tagValue);
    +        return tagResponse;
    +    }
    +
    +    public void 
testUpdateTagInformation(GenericDaoBaseWithTagInformation<T, ID, Z> dao, T 
baseView, Z baseResponse,
    --- End diff --
    
    What about checking every property that the method "updateTagInformation" 
touches?
    Additionally, to test that, you do not need to pass as parameter "tagId, 
key and others" to set at the baseView. If you always use the same values (I 
see no problem on that), no need to receive those parameters.


> Improve performance of resource retrieval that have tags associated and 
> target volumes, VMs and templates
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: CLOUDSTACK-9298
>                 URL: https://issues.apache.org/jira/browse/CLOUDSTACK-9298
>             Project: CloudStack
>          Issue Type: Improvement
>      Security Level: Public(Anyone can view this level - this is the 
> default.) 
>          Components: API
>    Affects Versions: 4.9.0
>            Reporter: Nicolas Vazquez
>             Fix For: 4.9.0
>
>
> h2. Description of the problem
> When retrieving a large number of resources which have tags associated with, 
> retrieval methods took too long. Our goal is to improve performance of this 
> methods
> h3. ListTemplatesCmd API method
> It is proposed to include tags information into template_view to avoid 
> querying the database for each tag, managing that information in memory.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to