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

com.thinkbiganalytics.metadata.jpa.cluster.NiFiFlowCacheClusterUpdateRepository Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
package com.thinkbiganalytics.metadata.jpa.cluster;

/*-
 * #%L
 * thinkbig-operational-metadata-jpa
 * %%
 * Copyright (C) 2017 ThinkBig Analytics
 * %%
 * Licensed 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.
 * #L%
 */

import com.thinkbiganalytics.metadata.api.cluster.NiFiFlowCacheClusterSync;
import com.thinkbiganalytics.metadata.api.cluster.NiFiFlowCacheClusterUpdateItem;
import com.thinkbiganalytics.metadata.jpa.jobrepo.nifi.JpaNifiFeedProcessorStats;

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;

import java.util.List;
import java.util.Set;

/**
 * Spring data repository for {@link JpaNifiFeedProcessorStats}
 */
public interface NiFiFlowCacheClusterUpdateRepository extends JpaRepository {


    @Query(value = "select case when(count(cache)) > 0 then true else false end "
                + " from JpaNiFiFlowCacheClusterSync as cache "
                + "where cache.updateApplied = false "
                + "and cache.clusterAddress = :clusterAddress")
    public boolean needsUpdate(@Param("clusterAddress") String clusterAddress);


    @Query(value="select item from JpaNiFiFlowCacheClusterUpdateItem as item "
                 + "join JpaNiFiFlowCacheClusterSync as cache on item.updateKey = cache.updateKey "
                 + " where cache.clusterAddress = :clusterAddress and cache.updateApplied = false")
    public List findUpdateItems(@Param("clusterAddress") String clusterAddress);


    @Query(value = "select clusterUpdate from JpaNiFiFlowCacheClusterSync clusterUpdate where clusterUpdate.clusterAddress = :clusterAddress and clusterUpdate.updateKey in (:updateKeys) and clusterUpdate.updateApplied = false")
    List findUnAppliedUpdates(@Param("clusterAddress") String clusterAddress, @Param("updateKeys") ListupdateKeys);

    @Query(value = "select clusterUpdate from JpaNiFiFlowCacheClusterSync clusterUpdate where clusterUpdate.clusterAddress not in(:clusterAddresses)")
    List findStaleClusterUpdates(@Param("clusterAddresses") ListclusterAddresses);



    @Query("select cache.updateKey from JpaNiFiFlowCacheClusterSync as cache where cache.clusterAddress not in(:clusterAddresses)")
    Set findStaleClusterUpdateItemKeys(@Param("clusterAddresses") ListclusterAddresses);


    @Modifying
    @Query("DELETE FROM JpaNiFiFlowCacheClusterSync as cache "
           + "where cache.clusterAddress not in(:clusterAddresses)")
    void deleteStaleCacheClusterSync(@Param("clusterAddresses") ListclusterAddresses);

    @Modifying
    @Query("DELETE FROM JpaNiFiFlowCacheClusterUpdateItem as item "
            + "where item.updateKey in (:updateKeys)")
    void deleteStaleClusterUpdateItems(@Param("updateKeys") SetupdateKeys);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy