91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

大數據元數據開源解決方案apache atlas,提供數據治理,元數據管理等功能

資源截圖

代碼片段和文件信息

/**
?*?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?org.apache.atlas.falcon.bridge;

import?org.apache.atlas.AtlasClient;
import?org.apache.atlas.AtlasConstants;
import?org.apache.atlas.falcon.Util.EventUtil;
import?org.apache.atlas.falcon.model.FalconDataTypes;
import?org.apache.atlas.hive.bridge.HivemetaStoreBridge;
import?org.apache.atlas.hive.model.HiveDataTypes;
import?org.apache.atlas.v1.model.instance.Referenceable;
import?org.apache.commons.collections.CollectionUtils;
import?org.apache.commons.lang3.StringUtils;
import?org.apache.falcon.FalconException;
import?org.apache.falcon.entity.CatalogStorage;
import?org.apache.falcon.entity.FeedHelper;
import?org.apache.falcon.entity.FileSystemStorage;
import?org.apache.falcon.entity.ProcessHelper;
import?org.apache.falcon.entity.store.ConfigurationStore;
import?org.apache.falcon.entity.v0.EntityType;
import?org.apache.falcon.entity.v0.feed.CatalogTable;
import?org.apache.falcon.entity.v0.feed.ClusterType;
import?org.apache.falcon.entity.v0.feed.Feed;
import?org.apache.falcon.entity.v0.feed.Location;
import?org.apache.falcon.entity.v0.feed.LocationType;
import?org.apache.falcon.entity.v0.process.Cluster;
import?org.apache.falcon.entity.v0.process.Input;
import?org.apache.falcon.entity.v0.process.Output;
import?org.apache.falcon.entity.v0.process.Workflow;
import?org.apache.falcon.workflow.WorkflowExecutionArgs;
import?org.apache.hadoop.fs.Path;
import?org.slf4j.Logger;
import?org.slf4j.LoggerFactory;

import?java.net.URISyntaxException;
import?java.util.ArrayList;
import?java.util.HashMap;
import?java.util.List;
import?java.util.Map;

/**
?*?A?Bridge?Utility?to?register?Falcon?entities?metadata?to?Atlas.
?*/
public?class?FalconBridge?{
????private?static?final?Logger?LOG?=?LoggerFactory.getLogger(FalconBridge.class);

????public?static?final?String?COLO?=?“colo“;
????public?static?final?String?TAGS?=?“tags“;
????public?static?final?String?GROUPS?=?“groups“;
????public?static?final?String?PIPELINES?=?“pipelines“;
????public?static?final?String?WFPROPERTIES?=?“workflow-properties“;
????public?static?final?String?RUNSON?=?“runs-on“;
????public?static?final?String?STOREDIN?=?“stored-in“;
????public?static?final?String?FREQUENCY?=?“frequency“;
????


評論

共有 條評論