-- -- PostgreSQL database dump -- -- Dumped from database version 11.8 -- Dumped by pg_dump version 11.8 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; -- -- Name: podium_core; Type: SCHEMA; Schema: -; Owner: podium_md -- CREATE SCHEMA podium_core; ALTER SCHEMA podium_core OWNER TO podium_md; -- -- Name: podium_reporting; Type: SCHEMA; Schema: -; Owner: podium_md -- CREATE SCHEMA podium_reporting; ALTER SCHEMA podium_reporting OWNER TO podium_md; -- -- Name: update_def_if_null(); Type: FUNCTION; Schema: podium_core; Owner: podium_md -- CREATE FUNCTION podium_core.update_def_if_null() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN IF (NEW.sname IS NULL OR NEW.sname = '') THEN update podium_core.pd_prop_definition set sname = nid where nid = NEW.nid; END IF; IF (NEW.display_name IS NULL OR NEW.display_name = '') THEN update podium_core.pd_prop_definition set display_name = nid where nid = NEW.nid; END IF; RETURN NEW; END; $$; ALTER FUNCTION podium_core.update_def_if_null() OWNER TO podium_md; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: pd_entity; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_entity ( nid bigint NOT NULL, source_nid bigint NOT NULL, sname text NOT NULL, full_name text, entity_type text NOT NULL, business_name text, business_desc text, threshold numeric, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, file_format_type text DEFAULT 'TEXT_TAB_DELIMITED'::character varying NOT NULL, modifiedby text, createdby text, source_conn_nid bigint, entity_sub_type text, entity_uuid character(36) NOT NULL ); ALTER TABLE podium_core.pd_entity OWNER TO podium_md; -- -- Name: pd_entity_metric; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_entity_metric ( nid bigint NOT NULL, metric_value numeric NOT NULL, entity_nid bigint NOT NULL, metric_definition_nid bigint NOT NULL, partition_name character varying(255), start_time timestamp with time zone, end_time timestamp with time zone, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_entity_metric OWNER TO podium_md; -- -- Name: pd_metric_category; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_metric_category ( nid bigint NOT NULL, sname text NOT NULL, description text, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_metric_category OWNER TO podium_md; -- -- Name: pd_metric_definition; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_metric_definition ( nid bigint NOT NULL, sname text NOT NULL, class_name text NOT NULL, argument_str text, metric_rank integer DEFAULT 0 NOT NULL, is_enabled boolean DEFAULT true NOT NULL, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_metric_definition OWNER TO podium_md; -- -- Name: data_entity_metric_hist_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.data_entity_metric_hist_v AS SELECT tmp.entity_nid, tmp.metric_nid, tmp.metric_name, tmp.metric_value, tmp.computation_time, mc.nid AS metric_category_nid FROM (( SELECT e.entity_nid, m.nid AS metric_nid, m.sname AS metric_name, e.metric_value, e.start_time AS computation_time, CASE WHEN (ent.entity_sub_type = 'QVD'::text) THEN 'QVD'::text ELSE 'QDC'::text END AS metric_category FROM podium_core.pd_metric_definition m, podium_core.pd_entity_metric e, ( SELECT ent_1.nid, ent_1.entity_sub_type FROM podium_core.pd_entity ent_1 WHERE (ent_1.entity_type <> 'EXTERNAL'::text)) ent WHERE ((m.nid = e.metric_definition_nid) AND (ent.nid = e.entity_nid) AND (m.is_enabled = true))) tmp JOIN podium_core.pd_metric_category mc ON ((mc.sname = tmp.metric_category))); ALTER TABLE podium_core.data_entity_metric_hist_v OWNER TO podium_md; -- -- Name: pd_metric_weight; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_metric_weight ( nid bigint NOT NULL, kpi_category text NOT NULL, metric_weight numeric NOT NULL, metric_definition_nid bigint NOT NULL, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, metric_category_nid bigint NOT NULL ); ALTER TABLE podium_core.pd_metric_weight OWNER TO podium_md; -- -- Name: data_entity_kpi_hist_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.data_entity_kpi_hist_v AS SELECT e.entity_nid, w.kpi_category, e.computation_time, sum((e.metric_value * w.metric_weight)) AS kpi_score FROM podium_core.data_entity_metric_hist_v e, podium_core.pd_metric_weight w, podium_core.pd_metric_category mc WHERE ((e.metric_nid = w.metric_definition_nid) AND (w.metric_category_nid = mc.nid) AND (mc.nid = e.metric_category_nid)) GROUP BY e.entity_nid, e.computation_time, w.kpi_category; ALTER TABLE podium_core.data_entity_kpi_hist_v OWNER TO podium_md; -- -- Name: data_entity_metric_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.data_entity_metric_v AS SELECT tmp.entity_nid, tmp.metric_nid, tmp.metric_name, tmp.metric_value, mc.nid AS metric_category_nid FROM (( SELECT e.entity_nid, m.nid AS metric_nid, m.sname AS metric_name, e.metric_value, CASE WHEN (ent.entity_sub_type = 'QVD'::text) THEN 'QVD'::text ELSE 'QDC'::text END AS metric_category FROM podium_core.pd_metric_definition m, ( SELECT em.entity_nid, em.metric_definition_nid, em.metric_value FROM podium_core.pd_entity_metric em WHERE ((em.start_time < CURRENT_TIMESTAMP) AND (em.end_time > CURRENT_TIMESTAMP))) e, ( SELECT ent_1.nid, ent_1.entity_sub_type FROM podium_core.pd_entity ent_1 WHERE (ent_1.entity_type <> 'EXTERNAL'::text)) ent WHERE ((m.nid = e.metric_definition_nid) AND (ent.nid = e.entity_nid) AND (m.is_enabled = true))) tmp JOIN podium_core.pd_metric_category mc ON ((mc.sname = tmp.metric_category))); ALTER TABLE podium_core.data_entity_metric_v OWNER TO podium_md; -- -- Name: data_entity_kpi_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.data_entity_kpi_v AS SELECT e.entity_nid, w.kpi_category, sum((e.metric_value * w.metric_weight)) AS kpi_score FROM podium_core.data_entity_metric_v e, podium_core.pd_metric_weight w, podium_core.pd_metric_category mc WHERE ((e.metric_nid = w.metric_definition_nid) AND (w.metric_category_nid = mc.nid) AND (mc.nid = e.metric_category_nid)) GROUP BY e.entity_nid, w.kpi_category; ALTER TABLE podium_core.data_entity_kpi_v OWNER TO podium_md; -- -- Name: entity_kpi_qvd_catalog_hist_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.entity_kpi_qvd_catalog_hist_v AS SELECT e.entity_nid, w.kpi_category, e.computation_time, sum((e.metric_value * w.metric_weight)) AS kpi_score FROM podium_core.data_entity_metric_hist_v e, podium_core.pd_metric_weight w, podium_core.pd_metric_category mc WHERE ((e.metric_nid = w.metric_definition_nid) AND (w.metric_category_nid = mc.nid) AND (mc.sname = 'QVD_CATALOG'::text) AND (e.metric_category_nid = ( SELECT pd_metric_category.nid FROM podium_core.pd_metric_category WHERE (pd_metric_category.sname = 'QVD'::text)))) GROUP BY e.entity_nid, e.computation_time, w.kpi_category; ALTER TABLE podium_core.entity_kpi_qvd_catalog_hist_v OWNER TO podium_md; -- -- Name: entity_kpi_qvd_catalog_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.entity_kpi_qvd_catalog_v AS SELECT e.entity_nid, w.kpi_category, sum((e.metric_value * w.metric_weight)) AS kpi_score FROM podium_core.data_entity_metric_v e, podium_core.pd_metric_weight w, podium_core.pd_metric_category mc WHERE ((e.metric_nid = w.metric_definition_nid) AND (w.metric_category_nid = mc.nid) AND (mc.sname = 'QVD_CATALOG'::text) AND (e.metric_category_nid = ( SELECT pd_metric_category.nid FROM podium_core.pd_metric_category WHERE (pd_metric_category.sname = 'QVD'::text)))) GROUP BY e.entity_nid, w.kpi_category; ALTER TABLE podium_core.entity_kpi_qvd_catalog_v OWNER TO podium_md; -- -- Name: pd_prop_definition; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prop_definition ( nid bigint NOT NULL, sname text, description text, display_name text, default_value text, property_dependency_nid bigint, editable boolean, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, prop_type_nid bigint, nullable boolean ); ALTER TABLE podium_core.pd_prop_definition OWNER TO podium_md; -- -- Name: pd_prop_setting; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prop_setting ( nid bigint NOT NULL, prop_def_nid bigint, prop_value text, parent_class text, parent_nid bigint, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_prop_setting OWNER TO podium_md; -- -- Name: entity_meter; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.entity_meter AS SELECT CASE WHEN (meter.elevel = ANY (ARRAY['REGISTERED'::text, 'MANAGED'::text])) THEN 'Metered Entities'::text ELSE 'Unlimited Entities'::text END AS category, meter.elevel, meter.entity_cnt FROM ( SELECT 'QVD'::text AS elevel, count(*) AS entity_cnt FROM podium_core.pd_entity e WHERE ((e.entity_type = 'INTERNAL'::text) AND (e.entity_sub_type = 'QVD'::text)) UNION SELECT prop_set.prop_value AS elevel, count(*) AS entity_cnt FROM podium_core.pd_entity e, ( SELECT pd_prop_definition.nid FROM podium_core.pd_prop_definition WHERE (pd_prop_definition.sname = 'entity.level'::text)) prop, podium_core.pd_prop_setting prop_set WHERE ((e.entity_type = 'INTERNAL'::text) AND (e.entity_sub_type IS NULL) AND (prop_set.prop_def_nid = prop.nid) AND (prop_set.parent_nid = e.nid)) GROUP BY prop_set.prop_value) meter ORDER BY CASE WHEN (meter.elevel = ANY (ARRAY['REGISTERED'::text, 'MANAGED'::text])) THEN 'Metered Entities'::text ELSE 'Unlimited Entities'::text END; ALTER TABLE podium_core.entity_meter OWNER TO podium_md; -- -- Name: existing_prop_desc; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.existing_prop_desc ( prop_name text, prop_desc text ); ALTER TABLE podium_core.existing_prop_desc OWNER TO podium_md; -- -- Name: pd_3_0_install_date; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_3_0_install_date ( install_date timestamp with time zone, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, nid integer, createdby text, modifiedby text ); ALTER TABLE podium_core.pd_3_0_install_date OWNER TO podium_md; -- -- Name: pd_acl_sync_log_details; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_acl_sync_log_details ( nid bigint NOT NULL, delivery_time timestamp with time zone NOT NULL, start_time timestamp with time zone, end_time timestamp with time zone, policy_name text, policy_type text, source_name text, entity_name text, entity_nid bigint, resource_name text, permissions text, workorder_status text, log text, base_log_nid bigint NOT NULL, actor_name text, target_owner text, target_system text, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, status_log text, record_count bigint ); ALTER TABLE podium_core.pd_acl_sync_log_details OWNER TO podium_md; -- -- Name: pd_acl_synchronization_log_details_base_log_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_acl_synchronization_log_details_base_log_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_acl_synchronization_log_details_base_log_nid_seq OWNER TO podium_md; -- -- Name: pd_acl_synchronization_log_details_base_log_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_acl_synchronization_log_details_base_log_nid_seq OWNED BY podium_core.pd_acl_sync_log_details.base_log_nid; -- -- Name: pd_acl_synchronization_log_details_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_acl_synchronization_log_details_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_acl_synchronization_log_details_nid_seq OWNER TO podium_md; -- -- Name: pd_acl_synchronization_log_details_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_acl_synchronization_log_details_nid_seq OWNED BY podium_core.pd_acl_sync_log_details.nid; -- -- Name: pd_acl_synchronization_logs; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_acl_synchronization_logs ( nid bigint NOT NULL, start_time timestamp with time zone, end_time timestamp with time zone, workorder_status text, sync_type text, actor_name text, schedule_id bigint, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, status_log text, delivery_time time with time zone, record_count bigint ); ALTER TABLE podium_core.pd_acl_synchronization_logs OWNER TO podium_md; -- -- Name: pd_acl_synchronization_logs_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_acl_synchronization_logs_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_acl_synchronization_logs_nid_seq OWNER TO podium_md; -- -- Name: pd_acl_synchronization_logs_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_acl_synchronization_logs_nid_seq OWNED BY podium_core.pd_acl_synchronization_logs.nid; -- -- Name: pd_ad_log_details; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_ad_log_details ( nid bigint NOT NULL, base_log_nid bigint NOT NULL, object_name text, object_type text, operation_type text, log text, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, actor_name text, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_ad_log_details OWNER TO podium_md; -- -- Name: pd_active_directory_log_details_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_active_directory_log_details_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_active_directory_log_details_nid_seq OWNER TO podium_md; -- -- Name: pd_active_directory_log_details_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_active_directory_log_details_nid_seq OWNED BY podium_core.pd_ad_log_details.nid; -- -- Name: pd_active_directory_logs; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_active_directory_logs ( nid bigint NOT NULL, connection_nid bigint NOT NULL, delivery_time timestamp with time zone NOT NULL, start_time timestamp with time zone, end_time timestamp with time zone, record_count bigint, workorder_status text, status_log text, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, actor_name text, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_active_directory_logs OWNER TO podium_md; -- -- Name: pd_active_directory_logs_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_active_directory_logs_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_active_directory_logs_nid_seq OWNER TO podium_md; -- -- Name: pd_active_directory_logs_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_active_directory_logs_nid_seq OWNED BY podium_core.pd_active_directory_logs.nid; -- -- Name: pd_ad_connection_info; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_ad_connection_info ( nid bigint NOT NULL, alias text NOT NULL, group_query text NOT NULL, user_query text, base_dn text NOT NULL, hostname text NOT NULL, port integer, bind_dn text NOT NULL, password text NOT NULL, is_ssl boolean NOT NULL, is_default boolean NOT NULL, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_ad_connection_info OWNER TO podium_md; -- -- Name: pd_ad_connection_info_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_ad_connection_info_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_ad_connection_info_nid_seq OWNER TO podium_md; -- -- Name: pd_ad_connection_info_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_ad_connection_info_nid_seq OWNED BY podium_core.pd_ad_connection_info.nid; -- -- Name: pd_audit_log; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_audit_log ( nid bigint NOT NULL, obj_nid bigint NOT NULL, obj_parent_nid bigint, obj_sname text NOT NULL, obj_parent_sname text, user_sname text NOT NULL, operation_type text NOT NULL, info_message text, object_type text NOT NULL, user_ip text, user_browser_info text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, severity character varying(100) DEFAULT 'INFO'::character varying NOT NULL ); ALTER TABLE podium_core.pd_audit_log OWNER TO podium_md; -- -- Name: pd_audit_log_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_audit_log_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_audit_log_nid_seq OWNER TO podium_md; -- -- Name: pd_audit_log_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_audit_log_nid_seq OWNED BY podium_core.pd_audit_log.nid; -- -- Name: pd_bundle; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_bundle ( nid bigint NOT NULL, description text, bundle_gui_state_nid bigint, sname text NOT NULL ); ALTER TABLE podium_core.pd_bundle OWNER TO podium_md; -- -- Name: pd_bundle_gui_state; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_bundle_gui_state ( nid bigint NOT NULL, gui_state text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_bundle_gui_state OWNER TO podium_md; -- -- Name: pd_bundle_gui_state_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_bundle_gui_state_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_bundle_gui_state_nid_seq OWNER TO podium_md; -- -- Name: pd_bundle_gui_state_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_bundle_gui_state_nid_seq OWNED BY podium_core.pd_bundle_gui_state.nid; -- -- Name: pd_bundle_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_bundle_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_bundle_nid_seq OWNER TO podium_md; -- -- Name: pd_bundle_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_bundle_nid_seq OWNED BY podium_core.pd_bundle.nid; -- -- Name: pd_cluster; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_cluster ( nid bigint NOT NULL, sname text NOT NULL, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer, is_default boolean DEFAULT false NOT NULL ); ALTER TABLE podium_core.pd_cluster OWNER TO podium_md; -- -- Name: pd_cluster_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_cluster_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_cluster_nid_seq OWNER TO podium_md; -- -- Name: pd_cluster_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_cluster_nid_seq OWNED BY podium_core.pd_cluster.nid; -- -- Name: pd_connection_group; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_connection_group ( nid bigint NOT NULL, connection_nid bigint NOT NULL, group_nid bigint NOT NULL, createdby text, modifiedby text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_connection_group OWNER TO podium_md; -- -- Name: pd_connection_group_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_connection_group_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_connection_group_nid_seq OWNER TO podium_md; -- -- Name: pd_connection_group_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_connection_group_nid_seq OWNED BY podium_core.pd_connection_group.nid; -- -- Name: pd_dataset; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_dataset ( nid bigint NOT NULL, sname text NOT NULL, description text, isshared boolean DEFAULT false NOT NULL, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_dataset OWNER TO podium_md; -- -- Name: pd_dataset_entity; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_dataset_entity ( dataset_nid bigint NOT NULL, entity_nid bigint NOT NULL ); ALTER TABLE podium_core.pd_dataset_entity OWNER TO podium_md; -- -- Name: pd_entity_group; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_entity_group ( entity_nid bigint NOT NULL, group_nid bigint NOT NULL, nid bigint NOT NULL, createdby text, modifiedby text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_entity_group OWNER TO podium_md; -- -- Name: pd_entity_tag; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_entity_tag ( nid bigint NOT NULL, entity_nid bigint NOT NULL, tag text NOT NULL, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, is_external boolean DEFAULT false NOT NULL ); ALTER TABLE podium_core.pd_entity_tag OWNER TO podium_md; -- -- Name: pd_field; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_field ( nid bigint NOT NULL, entity_nid bigint NOT NULL, sname text NOT NULL, business_name text, business_desc text, technical_desc text, field_index integer NOT NULL, not_null text, threshold numeric, encrypted_at_source text, do_encrypt text, external_data_type text, internal_data_type text NOT NULL, is_key text, is_fk text, validation_value text, is_validation_regex text, nullif_value text, is_nullif_regex text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_field OWNER TO podium_md; -- -- Name: pd_field_tag; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_field_tag ( nid bigint NOT NULL, field_nid bigint NOT NULL, tag text NOT NULL, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, is_external boolean DEFAULT false NOT NULL ); ALTER TABLE podium_core.pd_field_tag OWNER TO podium_md; -- -- Name: pd_source; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_source ( nid bigint NOT NULL, source_hier_nid bigint, sname text NOT NULL, source_type text, source_inbound_protocol text NOT NULL, business_name text, business_desc text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, base_directory text, source_conn_nid bigint, cluster_nid bigint, source_sub_type text ); ALTER TABLE podium_core.pd_source OWNER TO podium_md; -- -- Name: pd_source_tag; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_source_tag ( nid bigint NOT NULL, source_nid bigint NOT NULL, tag text NOT NULL, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, is_external boolean DEFAULT false NOT NULL ); ALTER TABLE podium_core.pd_source_tag OWNER TO podium_md; -- -- Name: pd_dashboard_tile_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.pd_dashboard_tile_v AS SELECT source_info.nid AS source_nid, entity_info.nid AS entity_nid, entity_info.sname AS entity_name, source_info.sname AS source_name, entity_info.entity_type, entity_info.entity_sub_type, entity_info.entity_type AS entity_level, entity_tags.tag AS entity_tag, entity_info.business_name AS entity_business_name, entity_info.business_desc AS entity_business_desc, CASE WHEN ((ek.operational_score IS NULL) OR (em.total_records = (0)::numeric)) THEN NULL::double precision ELSE (floor((100.0 * ek.operational_score)))::double precision END AS operational_score, CASE WHEN ((ek.popularity_score IS NULL) AND (em.field_count IS NULL)) THEN NULL::double precision WHEN ((ek.popularity_score IS NULL) AND (em.field_count IS NOT NULL)) THEN (0)::double precision ELSE (floor((100.0 * ek.popularity_score)))::double precision END AS popularity_score, CASE WHEN ((ek.quality_score IS NULL) OR (em.total_records = (0)::numeric)) THEN NULL::double precision ELSE (floor((100.0 * ek.quality_score)))::double precision END AS quality_score, CASE WHEN ((em.row_count_num IS NULL) OR (to_timestamp((em.last_load_date)::double precision) = '1970-01-01 05:00:00'::timestamp without time zone)) THEN NULL::double precision ELSE (em.row_count_num)::double precision END AS row_count_num, CASE WHEN (em.field_count IS NULL) THEN NULL::double precision ELSE (em.field_count)::double precision END AS field_count, CASE WHEN (em.table_size_mb IS NULL) THEN NULL::double precision ELSE (em.table_size_mb)::double precision END AS table_size_mb, CASE WHEN (em.last_load_date IS NULL) THEN to_timestamp((0)::double precision) ELSE to_timestamp((floor((em.last_load_date / (1000)::numeric)))::double precision) END AS last_load_date, ds.nid AS dataset_nid, eg.group_nid, source_info.business_name AS source_business_name, source_info.business_desc AS source_business_desc, source_tags.tag AS source_tag, field_info.sname AS field_name, field_info.business_name AS field_business_name, field_info.business_desc AS field_business_desc, field_tags.tag AS field_tag FROM ((((((((((podium_core.pd_entity entity_info JOIN podium_core.pd_source source_info ON ((source_info.nid = entity_info.source_nid))) LEFT JOIN podium_core.pd_entity_tag entity_tags ON ((entity_info.nid = entity_tags.entity_nid))) LEFT JOIN podium_core.pd_dataset_entity de ON ((entity_info.nid = de.entity_nid))) LEFT JOIN podium_core.pd_dataset ds ON ((ds.nid = de.dataset_nid))) LEFT JOIN podium_core.pd_entity_group eg ON ((entity_info.nid = eg.entity_nid))) LEFT JOIN podium_core.pd_source_tag source_tags ON ((source_info.nid = source_tags.source_nid))) JOIN podium_core.pd_field field_info ON ((entity_info.nid = field_info.entity_nid))) LEFT JOIN podium_core.pd_field_tag field_tags ON ((field_info.nid = field_tags.field_nid))) LEFT JOIN ( SELECT em_1.entity_nid, sum( CASE WHEN (e.entity_sub_type = 'QVD'::text) THEN CASE WHEN (em_1.metric_name = 'QVD_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END ELSE CASE WHEN (em_1.metric_name = 'GOOD_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END END) AS row_count_num, sum( CASE WHEN (e.entity_sub_type = 'QVD'::text) THEN CASE WHEN (em_1.metric_name = 'QVD_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END ELSE CASE WHEN (em_1.metric_name = 'TOTAL_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END END) AS total_records, sum( CASE WHEN (em_1.metric_name = 'NUMBER_OF_FIELDS'::text) THEN em_1.metric_value ELSE NULL::numeric END) AS field_count, sum( CASE WHEN (em_1.metric_name = 'HDFS_SIZE_BYTES'::text) THEN (em_1.metric_value / 1048576.0) ELSE NULL::numeric END) AS table_size_mb, sum( CASE WHEN (e.entity_sub_type = 'QVD'::text) THEN CASE WHEN (em_1.metric_name = 'QVD_FILE_ENTITY_UPDATE_TIME'::text) THEN em_1.metric_value ELSE NULL::numeric END ELSE CASE WHEN (em_1.metric_name = 'LAST_FINISHED_LOAD'::text) THEN em_1.metric_value ELSE NULL::numeric END END) AS last_load_date FROM podium_core.data_entity_metric_v em_1, podium_core.pd_entity e WHERE (e.nid = em_1.entity_nid) GROUP BY em_1.entity_nid) em ON ((entity_info.nid = em.entity_nid))) LEFT JOIN ( SELECT data_entity_kpi_v.entity_nid, sum( CASE WHEN (data_entity_kpi_v.kpi_category = 'OPERATIONAL'::text) THEN data_entity_kpi_v.kpi_score ELSE NULL::numeric END) AS operational_score, sum( CASE WHEN (data_entity_kpi_v.kpi_category = 'QUALITY'::text) THEN data_entity_kpi_v.kpi_score ELSE NULL::numeric END) AS quality_score, sum( CASE WHEN (data_entity_kpi_v.kpi_category = 'POPULARITY'::text) THEN data_entity_kpi_v.kpi_score ELSE NULL::numeric END) AS popularity_score FROM podium_core.data_entity_kpi_v GROUP BY data_entity_kpi_v.entity_nid) ek ON ((entity_info.nid = ek.entity_nid))) WHERE (entity_info.entity_type <> 'EXTERNAL'::text); ALTER TABLE podium_core.pd_dashboard_tile_v OWNER TO podium_md; -- -- Name: pd_entity_relation; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_entity_relation ( nid bigint NOT NULL, parent_source_nid bigint NOT NULL, parent_entity_nid bigint NOT NULL, child_source_nid bigint NOT NULL, child_entity_nid bigint NOT NULL, vadd_rule_nid bigint NOT NULL, relation_details text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, is_valid boolean DEFAULT true NOT NULL, relation_confidence numeric DEFAULT 1.0 NOT NULL ); ALTER TABLE podium_core.pd_entity_relation OWNER TO podium_md; -- -- Name: pd_dashboard_related_tile_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.pd_dashboard_related_tile_v AS SELECT row_number() OVER () AS nid, relation.parent_entity_nid, tile.source_nid, tile.entity_nid, tile.entity_name, tile.source_name, tile.entity_type, tile.entity_sub_type, tile.entity_level, tile.entity_tag, tile.entity_business_name, tile.entity_business_desc, tile.operational_score, tile.popularity_score, tile.quality_score, tile.row_count_num, tile.field_count, tile.table_size_mb, tile.last_load_date, tile.group_nid, 'CHILD'::text AS relation_type FROM podium_core.pd_dashboard_tile_v tile, ( SELECT pd_entity_relation.parent_entity_nid, pd_entity_relation.child_entity_nid FROM podium_core.pd_entity_relation WHERE (pd_entity_relation.is_valid = true) GROUP BY pd_entity_relation.parent_entity_nid, pd_entity_relation.child_entity_nid) relation WHERE (relation.child_entity_nid = tile.entity_nid) UNION ALL SELECT row_number() OVER () AS nid, relation.child_entity_nid AS parent_entity_nid, tile.source_nid, tile.entity_nid, tile.entity_name, tile.source_name, tile.entity_type, tile.entity_sub_type, tile.entity_level, tile.entity_tag, tile.entity_business_name, tile.entity_business_desc, tile.operational_score, tile.popularity_score, tile.quality_score, tile.row_count_num, tile.field_count, tile.table_size_mb, tile.last_load_date, tile.group_nid, 'PARENT'::text AS relation_type FROM podium_core.pd_dashboard_tile_v tile, ( SELECT pd_entity_relation.child_entity_nid, pd_entity_relation.parent_entity_nid FROM podium_core.pd_entity_relation WHERE (pd_entity_relation.is_valid = true) GROUP BY pd_entity_relation.child_entity_nid, pd_entity_relation.parent_entity_nid) relation WHERE (relation.parent_entity_nid = tile.entity_nid); ALTER TABLE podium_core.pd_dashboard_related_tile_v OWNER TO podium_md; -- -- Name: pd_dashbrd_with_fld_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.pd_dashbrd_with_fld_v AS SELECT source_info.nid AS source_nid, entity_info.nid AS entity_nid, entity_info.sname AS entity_name, source_info.sname AS source_name, entity_info.entity_type, entity_info.entity_sub_type, entity_info.entity_type AS entity_level, ''::text AS entity_tag, entity_info.business_name AS entity_business_name, entity_info.business_desc AS entity_business_desc, CASE WHEN ((ek.operational_score IS NULL) OR (em.total_records = (0)::numeric)) THEN NULL::double precision ELSE (floor((100.0 * ek.operational_score)))::double precision END AS operational_score, CASE WHEN ((ek.popularity_score IS NULL) AND (em.field_count IS NULL)) THEN NULL::double precision WHEN ((ek.popularity_score IS NULL) AND (em.field_count IS NOT NULL)) THEN (0)::double precision ELSE (floor((100.0 * ek.popularity_score)))::double precision END AS popularity_score, CASE WHEN ((ek.quality_score IS NULL) OR (em.total_records = (0)::numeric)) THEN NULL::double precision ELSE (floor((100.0 * ek.quality_score)))::double precision END AS quality_score, CASE WHEN ((em.row_count_num IS NULL) OR (to_timestamp((em.last_load_date)::double precision) = '1970-01-01 05:00:00'::timestamp without time zone)) THEN NULL::double precision ELSE (em.row_count_num)::double precision END AS row_count_num, CASE WHEN (em.field_count IS NULL) THEN NULL::double precision ELSE (em.field_count)::double precision END AS field_count, CASE WHEN (em.table_size_mb IS NULL) THEN NULL::double precision ELSE (em.table_size_mb)::double precision END AS table_size_mb, CASE WHEN (em.last_load_date IS NULL) THEN to_timestamp((0)::double precision) ELSE to_timestamp((floor((em.last_load_date / (1000)::numeric)))::double precision) END AS last_load_date, de.dataset_nid, eg.group_nid, source_info.business_name AS source_business_name, source_info.business_desc AS source_business_desc, ''::text AS source_tag, field_info.sname AS field_name, field_info.business_name AS field_business_name, field_info.business_desc AS field_business_desc, ''::text AS field_tag, field_info.nid AS field_nid FROM ((((((( SELECT ent.nid, ent.source_nid, ent.sname, ent.entity_type, ent.entity_sub_type, ent.business_name, ent.business_desc FROM podium_core.pd_entity ent WHERE (ent.entity_type <> 'EXTERNAL'::text)) entity_info JOIN ( SELECT src.nid, src.sname, src.business_name, src.business_desc FROM podium_core.pd_source src WHERE (src.source_type = 'PODIUM_INTERNAL'::text)) source_info ON ((source_info.nid = entity_info.source_nid))) LEFT JOIN podium_core.pd_dataset_entity de ON ((entity_info.nid = de.entity_nid))) LEFT JOIN podium_core.pd_entity_group eg ON ((entity_info.nid = eg.entity_nid))) JOIN podium_core.pd_field field_info ON ((entity_info.nid = field_info.entity_nid))) LEFT JOIN ( SELECT em_1.entity_nid, sum( CASE WHEN (e.entity_sub_type = 'QVD'::text) THEN CASE WHEN (em_1.metric_name = 'QVD_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END ELSE CASE WHEN (em_1.metric_name = 'GOOD_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END END) AS row_count_num, sum( CASE WHEN (e.entity_sub_type = 'QVD'::text) THEN CASE WHEN (em_1.metric_name = 'QVD_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END ELSE CASE WHEN (em_1.metric_name = 'TOTAL_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END END) AS total_records, sum( CASE WHEN (em_1.metric_name = 'NUMBER_OF_FIELDS'::text) THEN em_1.metric_value ELSE NULL::numeric END) AS field_count, sum( CASE WHEN (em_1.metric_name = 'HDFS_SIZE_BYTES'::text) THEN (em_1.metric_value / 1048576.0) ELSE NULL::numeric END) AS table_size_mb, sum( CASE WHEN (e.entity_sub_type = 'QVD'::text) THEN CASE WHEN (em_1.metric_name = 'QVD_FILE_ENTITY_UPDATE_TIME'::text) THEN em_1.metric_value ELSE NULL::numeric END ELSE CASE WHEN (em_1.metric_name = 'LAST_FINISHED_LOAD'::text) THEN em_1.metric_value ELSE NULL::numeric END END) AS last_load_date FROM podium_core.data_entity_metric_v em_1, ( SELECT ent.nid, ent.entity_sub_type FROM podium_core.pd_entity ent WHERE (ent.entity_type <> 'EXTERNAL'::text)) e WHERE (e.nid = em_1.entity_nid) GROUP BY em_1.entity_nid) em ON ((entity_info.nid = em.entity_nid))) LEFT JOIN ( SELECT data_entity_kpi_v.entity_nid, sum( CASE WHEN (data_entity_kpi_v.kpi_category = 'OPERATIONAL'::text) THEN data_entity_kpi_v.kpi_score ELSE NULL::numeric END) AS operational_score, sum( CASE WHEN (data_entity_kpi_v.kpi_category = 'QUALITY'::text) THEN data_entity_kpi_v.kpi_score ELSE NULL::numeric END) AS quality_score, sum( CASE WHEN (data_entity_kpi_v.kpi_category = 'POPULARITY'::text) THEN data_entity_kpi_v.kpi_score ELSE NULL::numeric END) AS popularity_score FROM podium_core.data_entity_kpi_v GROUP BY data_entity_kpi_v.entity_nid) ek ON ((entity_info.nid = ek.entity_nid))); ALTER TABLE podium_core.pd_dashbrd_with_fld_v OWNER TO podium_md; -- -- Name: pd_dashbrd_with_fld_tag_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.pd_dashbrd_with_fld_tag_v AS SELECT main.source_nid, main.entity_nid, main.entity_name, main.source_name, main.entity_type, main.entity_sub_type, main.entity_level, entity_tags.tag AS entity_tag, main.entity_business_name, main.entity_business_desc, main.operational_score, main.popularity_score, main.quality_score, main.row_count_num, main.field_count, main.table_size_mb, main.last_load_date, main.dataset_nid, main.group_nid, main.source_business_name, main.source_business_desc, ''::text AS source_tag, main.field_name, main.field_business_name, main.field_business_desc, ''::text AS field_tag FROM (podium_core.pd_dashbrd_with_fld_v main LEFT JOIN podium_core.pd_entity_tag entity_tags ON ((main.entity_nid = entity_tags.entity_nid))) WHERE (main.entity_type <> 'EXTERNAL'::text) UNION SELECT main.source_nid, main.entity_nid, main.entity_name, main.source_name, main.entity_type, main.entity_sub_type, main.entity_level, ''::text AS entity_tag, main.entity_business_name, main.entity_business_desc, main.operational_score, main.popularity_score, main.quality_score, main.row_count_num, main.field_count, main.table_size_mb, main.last_load_date, main.dataset_nid, main.group_nid, main.source_business_name, main.source_business_desc, source_tags.tag AS source_tag, main.field_name, main.field_business_name, main.field_business_desc, ''::text AS field_tag FROM (podium_core.pd_dashbrd_with_fld_v main LEFT JOIN podium_core.pd_source_tag source_tags ON ((main.source_nid = source_tags.source_nid))) WHERE (main.entity_type <> 'EXTERNAL'::text) UNION SELECT main.source_nid, main.entity_nid, main.entity_name, main.source_name, main.entity_type, main.entity_sub_type, main.entity_level, ''::text AS entity_tag, main.entity_business_name, main.entity_business_desc, main.operational_score, main.popularity_score, main.quality_score, main.row_count_num, main.field_count, main.table_size_mb, main.last_load_date, main.dataset_nid, main.group_nid, main.source_business_name, main.source_business_desc, ''::text AS source_tag, main.field_name, main.field_business_name, main.field_business_desc, field_tags.tag AS field_tag FROM (podium_core.pd_dashbrd_with_fld_v main LEFT JOIN podium_core.pd_field_tag field_tags ON ((main.field_nid = field_tags.field_nid))) WHERE (main.entity_type <> 'EXTERNAL'::text); ALTER TABLE podium_core.pd_dashbrd_with_fld_tag_v OWNER TO podium_md; -- -- Name: pd_dashbrd_without_fld_tag_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.pd_dashbrd_without_fld_tag_v AS SELECT source_info.nid AS source_nid, entity_info.nid AS entity_nid, entity_info.sname AS entity_name, source_info.sname AS source_name, entity_info.entity_type, entity_info.entity_sub_type, entity_info.entity_type AS entity_level, ''::text AS entity_tag, entity_info.business_name AS entity_business_name, entity_info.business_desc AS entity_business_desc, CASE WHEN ((ek.operational_score IS NULL) OR (em.total_records = (0)::numeric)) THEN NULL::double precision ELSE (floor((100.0 * ek.operational_score)))::double precision END AS operational_score, CASE WHEN ((ek.popularity_score IS NULL) AND (em.field_count IS NULL)) THEN NULL::double precision WHEN ((ek.popularity_score IS NULL) AND (em.field_count IS NOT NULL)) THEN (0)::double precision ELSE (floor((100.0 * ek.popularity_score)))::double precision END AS popularity_score, CASE WHEN ((ek.quality_score IS NULL) OR (em.total_records = (0)::numeric)) THEN NULL::double precision ELSE (floor((100.0 * ek.quality_score)))::double precision END AS quality_score, CASE WHEN ((em.row_count_num IS NULL) OR (to_timestamp((em.last_load_date)::double precision) = '1970-01-01 05:00:00'::timestamp without time zone)) THEN NULL::double precision ELSE (em.row_count_num)::double precision END AS row_count_num, CASE WHEN (em.field_count IS NULL) THEN NULL::double precision ELSE (em.field_count)::double precision END AS field_count, CASE WHEN (em.table_size_mb IS NULL) THEN NULL::double precision ELSE (em.table_size_mb)::double precision END AS table_size_mb, CASE WHEN (em.last_load_date IS NULL) THEN to_timestamp((0)::double precision) ELSE to_timestamp((floor((em.last_load_date / (1000)::numeric)))::double precision) END AS last_load_date, de.dataset_nid, eg.group_nid, source_info.business_name AS source_business_name, source_info.business_desc AS source_business_desc, ''::text AS source_tag, ''::text AS field_tag FROM (((((( SELECT ent.nid, ent.source_nid, ent.sname, ent.entity_type, ent.entity_sub_type, ent.business_name, ent.business_desc FROM podium_core.pd_entity ent WHERE (ent.entity_type <> 'EXTERNAL'::text)) entity_info JOIN ( SELECT src.nid, src.sname, src.business_name, src.business_desc FROM podium_core.pd_source src WHERE (src.source_type = 'PODIUM_INTERNAL'::text)) source_info ON ((source_info.nid = entity_info.source_nid))) LEFT JOIN podium_core.pd_dataset_entity de ON ((entity_info.nid = de.entity_nid))) LEFT JOIN podium_core.pd_entity_group eg ON ((entity_info.nid = eg.entity_nid))) LEFT JOIN ( SELECT em_1.entity_nid, sum( CASE WHEN (e.entity_sub_type = 'QVD'::text) THEN CASE WHEN (em_1.metric_name = 'QVD_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END ELSE CASE WHEN (em_1.metric_name = 'GOOD_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END END) AS row_count_num, sum( CASE WHEN (e.entity_sub_type = 'QVD'::text) THEN CASE WHEN (em_1.metric_name = 'QVD_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END ELSE CASE WHEN (em_1.metric_name = 'TOTAL_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END END) AS total_records, sum( CASE WHEN (em_1.metric_name = 'NUMBER_OF_FIELDS'::text) THEN em_1.metric_value ELSE NULL::numeric END) AS field_count, sum( CASE WHEN (em_1.metric_name = 'HDFS_SIZE_BYTES'::text) THEN (em_1.metric_value / 1048576.0) ELSE NULL::numeric END) AS table_size_mb, sum( CASE WHEN (e.entity_sub_type = 'QVD'::text) THEN CASE WHEN (em_1.metric_name = 'QVD_FILE_ENTITY_UPDATE_TIME'::text) THEN em_1.metric_value ELSE NULL::numeric END ELSE CASE WHEN (em_1.metric_name = 'LAST_FINISHED_LOAD'::text) THEN em_1.metric_value ELSE NULL::numeric END END) AS last_load_date FROM podium_core.data_entity_metric_v em_1, ( SELECT ent.nid, ent.entity_sub_type FROM podium_core.pd_entity ent WHERE (ent.entity_type <> 'EXTERNAL'::text)) e WHERE (e.nid = em_1.entity_nid) GROUP BY em_1.entity_nid) em ON ((entity_info.nid = em.entity_nid))) LEFT JOIN ( SELECT data_entity_kpi_v.entity_nid, sum( CASE WHEN (data_entity_kpi_v.kpi_category = 'OPERATIONAL'::text) THEN data_entity_kpi_v.kpi_score ELSE NULL::numeric END) AS operational_score, sum( CASE WHEN (data_entity_kpi_v.kpi_category = 'QUALITY'::text) THEN data_entity_kpi_v.kpi_score ELSE NULL::numeric END) AS quality_score, sum( CASE WHEN (data_entity_kpi_v.kpi_category = 'POPULARITY'::text) THEN data_entity_kpi_v.kpi_score ELSE NULL::numeric END) AS popularity_score FROM podium_core.data_entity_kpi_v GROUP BY data_entity_kpi_v.entity_nid) ek ON ((entity_info.nid = ek.entity_nid))); ALTER TABLE podium_core.pd_dashbrd_without_fld_tag_v OWNER TO podium_md; -- -- Name: pd_data_export_workorder; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_data_export_workorder ( nid bigint NOT NULL, entity_nid bigint NOT NULL, source_nid bigint NOT NULL, data_export_info_nid bigint, delivery_time timestamp with time zone NOT NULL, start_time timestamp with time zone, end_time timestamp with time zone, order_size integer, record_count bigint, workorder_status text, delivery_id text, status_log text, detailed_status_log text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, actor_name text, modifiedby text, createdby text, publish_nid bigint, partition_name character varying(255) ); ALTER TABLE podium_core.pd_data_export_workorder OWNER TO podium_md; -- -- Name: pd_data_export_workorder_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_data_export_workorder_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_data_export_workorder_nid_seq OWNER TO podium_md; -- -- Name: pd_data_export_workorder_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_data_export_workorder_nid_seq OWNED BY podium_core.pd_data_export_workorder.nid; -- -- Name: pd_data_export_workorder_prop; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_data_export_workorder_prop ( nid bigint NOT NULL, workorder_nid bigint NOT NULL, prop_name text NOT NULL, prop_value text, created_user_nid bigint, createdby text, created_ttz timestamp with time zone, modified_user_nid bigint, modifiedby text, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_data_export_workorder_prop OWNER TO podium_md; -- -- Name: pd_data_export_workorder_prop_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_data_export_workorder_prop_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_data_export_workorder_prop_nid_seq OWNER TO podium_md; -- -- Name: pd_data_export_workorder_prop_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_data_export_workorder_prop_nid_seq OWNED BY podium_core.pd_data_export_workorder_prop.nid; -- -- Name: pd_data_meter; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_data_meter ( nid bigint NOT NULL, sname text NOT NULL, entity_name text, source_name text, depot_type text NOT NULL, data_size bigint, run_ttz timestamp with time zone, load_ttz timestamp with time zone, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_data_meter OWNER TO podium_md; -- -- Name: pd_data_meter_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_data_meter_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_data_meter_nid_seq OWNER TO podium_md; -- -- Name: pd_data_meter_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_data_meter_nid_seq OWNED BY podium_core.pd_data_meter.nid; -- -- Name: pd_data_migration_wo_prop; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_data_migration_wo_prop ( nid bigint NOT NULL, workorder_nid bigint NOT NULL, prop_name text NOT NULL, prop_value text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_data_migration_wo_prop OWNER TO podium_md; -- -- Name: pd_data_migration_workorder; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_data_migration_workorder ( nid bigint NOT NULL, start_time timestamp with time zone, end_time timestamp with time zone, order_size bigint, record_count bigint, delivery_time timestamp with time zone NOT NULL, delivery_id text, workorder_status text, migration_type text, status_log text, detailed_status_log text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, actor_name text, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_data_migration_workorder OWNER TO podium_md; -- -- Name: pd_data_migration_workorder_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_data_migration_workorder_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_data_migration_workorder_nid_seq OWNER TO podium_md; -- -- Name: pd_data_migration_workorder_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_data_migration_workorder_nid_seq OWNED BY podium_core.pd_data_migration_workorder.nid; -- -- Name: pd_data_migration_workorder_prop_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_data_migration_workorder_prop_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_data_migration_workorder_prop_nid_seq OWNER TO podium_md; -- -- Name: pd_data_migration_workorder_prop_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_data_migration_workorder_prop_nid_seq OWNED BY podium_core.pd_data_migration_wo_prop.nid; -- -- Name: pd_dataset_entity_dataset_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_dataset_entity_dataset_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_dataset_entity_dataset_nid_seq OWNER TO podium_md; -- -- Name: pd_dataset_entity_dataset_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_dataset_entity_dataset_nid_seq OWNED BY podium_core.pd_dataset_entity.dataset_nid; -- -- Name: pd_dataset_entity_entity_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_dataset_entity_entity_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_dataset_entity_entity_nid_seq OWNER TO podium_md; -- -- Name: pd_dataset_entity_entity_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_dataset_entity_entity_nid_seq OWNED BY podium_core.pd_dataset_entity.entity_nid; -- -- Name: pd_dataset_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_dataset_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_dataset_nid_seq OWNER TO podium_md; -- -- Name: pd_dataset_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_dataset_nid_seq OWNED BY podium_core.pd_dataset.nid; -- -- Name: pd_entity_group_entity_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_entity_group_entity_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_entity_group_entity_nid_seq OWNER TO podium_md; -- -- Name: pd_entity_group_entity_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_entity_group_entity_nid_seq OWNED BY podium_core.pd_entity_group.entity_nid; -- -- Name: pd_entity_group_group_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_entity_group_group_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_entity_group_group_nid_seq OWNER TO podium_md; -- -- Name: pd_entity_group_group_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_entity_group_group_nid_seq OWNED BY podium_core.pd_entity_group.group_nid; -- -- Name: pd_entity_group_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_entity_group_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_entity_group_nid_seq OWNER TO podium_md; -- -- Name: pd_entity_group_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_entity_group_nid_seq OWNED BY podium_core.pd_entity_group.nid; -- -- Name: pd_entity_meter; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_entity_meter ( nid bigint NOT NULL, sname character varying(255) NOT NULL, volume bigint, meteredregisteredentities bigint, meteredmanagedentities bigint, unlimitedaddressedentities bigint, unlimitedqvdentities bigint, run_ttz timestamp with time zone, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_entity_meter OWNER TO podium_md; -- -- Name: pd_entity_meter_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_entity_meter_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_entity_meter_nid_seq OWNER TO podium_md; -- -- Name: pd_entity_meter_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_entity_meter_nid_seq OWNED BY podium_core.pd_entity_meter.nid; -- -- Name: pd_entity_metric_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_entity_metric_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_entity_metric_nid_seq OWNER TO podium_md; -- -- Name: pd_entity_metric_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_entity_metric_nid_seq OWNED BY podium_core.pd_entity_metric.nid; -- -- Name: pd_entity_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_entity_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_entity_nid_seq OWNER TO podium_md; -- -- Name: pd_entity_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_entity_nid_seq OWNED BY podium_core.pd_entity.nid; -- -- Name: pd_entity_prop_bk; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_entity_prop_bk ( nid bigint NOT NULL, entity_nid bigint NOT NULL, prop_name text NOT NULL, prop_value text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_entity_prop_bk OWNER TO podium_md; -- -- Name: pd_entity_prop_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_entity_prop_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_entity_prop_nid_seq OWNER TO podium_md; -- -- Name: pd_entity_prop_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_entity_prop_nid_seq OWNED BY podium_core.pd_entity_prop_bk.nid; -- -- Name: pd_entity_relation_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_entity_relation_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_entity_relation_nid_seq OWNER TO podium_md; -- -- Name: pd_entity_relation_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_entity_relation_nid_seq OWNED BY podium_core.pd_entity_relation.nid; -- -- Name: pd_entity_tag_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_entity_tag_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_entity_tag_nid_seq OWNER TO podium_md; -- -- Name: pd_entity_tag_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_entity_tag_nid_seq OWNED BY podium_core.pd_entity_tag.nid; -- -- Name: pd_export_field_masking; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_export_field_masking ( nid bigint NOT NULL, field_nid bigint NOT NULL, data_export_info_nid bigint NOT NULL, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, obfuscation_rule_nid bigint ); ALTER TABLE podium_core.pd_export_field_masking OWNER TO podium_md; -- -- Name: pd_export_field_masking_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_export_field_masking_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_export_field_masking_nid_seq OWNER TO podium_md; -- -- Name: pd_export_field_masking_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_export_field_masking_nid_seq OWNED BY podium_core.pd_export_field_masking.nid; -- -- Name: pd_export_info; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_export_info ( nid bigint NOT NULL, entity_nid bigint NOT NULL, data_selection text NOT NULL, occurence text NOT NULL, filter_criteria text, data_prep_statement text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, target_nid bigint, publish_nid bigint ); ALTER TABLE podium_core.pd_export_info OWNER TO podium_md; -- -- Name: pd_export_info_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_export_info_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_export_info_nid_seq OWNER TO podium_md; -- -- Name: pd_export_info_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_export_info_nid_seq OWNED BY podium_core.pd_export_info.nid; -- -- Name: pd_export_info_prop; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_export_info_prop ( nid bigint NOT NULL, export_info_nid bigint NOT NULL, prop_name text NOT NULL, prop_value text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_export_info_prop OWNER TO podium_md; -- -- Name: pd_export_info_prop_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_export_info_prop_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_export_info_prop_nid_seq OWNER TO podium_md; -- -- Name: pd_export_info_prop_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_export_info_prop_nid_seq OWNED BY podium_core.pd_export_info_prop.nid; -- -- Name: pd_field_biz_def; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_field_biz_def ( nid bigint NOT NULL, field_nid bigint NOT NULL, business_name text, business_desc text, approval_status text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_field_biz_def OWNER TO podium_md; -- -- Name: pd_field_biz_def_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_field_biz_def_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_field_biz_def_nid_seq OWNER TO podium_md; -- -- Name: pd_field_biz_def_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_field_biz_def_nid_seq OWNED BY podium_core.pd_field_biz_def.nid; -- -- Name: pd_field_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_field_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_field_nid_seq OWNER TO podium_md; -- -- Name: pd_field_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_field_nid_seq OWNED BY podium_core.pd_field.nid; -- -- Name: pd_field_pc_rel; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_field_pc_rel ( nid bigint NOT NULL, parent_field_nid bigint, child_field_nid bigint, vadd_rule_nid bigint NOT NULL, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, relation_info text ); ALTER TABLE podium_core.pd_field_pc_rel OWNER TO podium_md; -- -- Name: pd_field_pc_rel_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_field_pc_rel_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_field_pc_rel_nid_seq OWNER TO podium_md; -- -- Name: pd_field_pc_rel_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_field_pc_rel_nid_seq OWNED BY podium_core.pd_field_pc_rel.nid; -- -- Name: pd_field_prop_bk; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_field_prop_bk ( nid bigint NOT NULL, field_nid bigint NOT NULL, prop_name text NOT NULL, prop_value text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_field_prop_bk OWNER TO podium_md; -- -- Name: pd_field_prop_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_field_prop_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_field_prop_nid_seq OWNER TO podium_md; -- -- Name: pd_field_prop_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_field_prop_nid_seq OWNED BY podium_core.pd_field_prop_bk.nid; -- -- Name: pd_field_tag_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_field_tag_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_field_tag_nid_seq OWNER TO podium_md; -- -- Name: pd_field_tag_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_field_tag_nid_seq OWNED BY podium_core.pd_field_tag.nid; -- -- Name: pd_format_def; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_format_def ( nid bigint NOT NULL, sname text NOT NULL, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_format_def OWNER TO podium_md; -- -- Name: pd_format_def_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_format_def_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_format_def_nid_seq OWNER TO podium_md; -- -- Name: pd_format_def_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_format_def_nid_seq OWNED BY podium_core.pd_format_def.nid; -- -- Name: pd_format_def_prop; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_format_def_prop ( nid bigint NOT NULL, format_nid bigint NOT NULL, prop_name text NOT NULL, prop_value text, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_format_def_prop OWNER TO podium_md; -- -- Name: pd_format_def_prop_format_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_format_def_prop_format_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_format_def_prop_format_nid_seq OWNER TO podium_md; -- -- Name: pd_format_def_prop_format_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_format_def_prop_format_nid_seq OWNED BY podium_core.pd_format_def_prop.format_nid; -- -- Name: pd_format_def_prop_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_format_def_prop_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_format_def_prop_nid_seq OWNER TO podium_md; -- -- Name: pd_format_def_prop_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_format_def_prop_nid_seq OWNED BY podium_core.pd_format_def_prop.nid; -- -- Name: pd_gc_registry; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_gc_registry ( nid bigint NOT NULL, obj_id bigint NOT NULL, obj_name text, obj_type text, workorder_status text, status_log text, actor_name text, target_location text, no_of_attempts integer, start_time timestamp with time zone, end_time timestamp with time zone, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, cluster_nid bigint ); ALTER TABLE podium_core.pd_gc_registry OWNER TO podium_md; -- -- Name: pd_gc_registry_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_gc_registry_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_gc_registry_nid_seq OWNER TO podium_md; -- -- Name: pd_gc_registry_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_gc_registry_nid_seq OWNED BY podium_core.pd_gc_registry.nid; -- -- Name: pd_gc_registry_obj_id_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_gc_registry_obj_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_gc_registry_obj_id_seq OWNER TO podium_md; -- -- Name: pd_gc_registry_obj_id_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_gc_registry_obj_id_seq OWNED BY podium_core.pd_gc_registry.obj_id; -- -- Name: pd_group; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_group ( nid bigint NOT NULL, sname text NOT NULL, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, ad_connection_nid bigint, origin text NOT NULL, display_name text ); ALTER TABLE podium_core.pd_group OWNER TO podium_md; -- -- Name: pd_group_group; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_group_group ( parent_nid bigint, child_nid bigint, nid bigint NOT NULL, createdby text, modifiedby text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_group_group OWNER TO podium_md; -- -- Name: pd_group_group_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_group_group_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_group_group_nid_seq OWNER TO podium_md; -- -- Name: pd_group_group_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_group_group_nid_seq OWNED BY podium_core.pd_group_group.nid; -- -- Name: pd_group_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_group_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_group_nid_seq OWNER TO podium_md; -- -- Name: pd_group_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_group_nid_seq OWNED BY podium_core.pd_group.nid; -- -- Name: pd_group_user; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_group_user ( nid bigint NOT NULL, group_nid bigint, user_nid bigint, role_nid bigint, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_group_user OWNER TO podium_md; -- -- Name: pd_group_user_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_group_user_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_group_user_nid_seq OWNER TO podium_md; -- -- Name: pd_group_user_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_group_user_nid_seq OWNED BY podium_core.pd_group_user.nid; -- -- Name: pd_jdbc_source_info; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_jdbc_source_info ( nid bigint NOT NULL, sname text NOT NULL, driver_classname text NOT NULL, start_escchar character(1), end_escchar character(1), conn_str_pattern text, schemas_tobe_skipped text, datatype_override_keyvals text, unsupported_datatype_names text, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer, alt_classpath text ); ALTER TABLE podium_core.pd_jdbc_source_info OWNER TO podium_md; -- -- Name: pd_jdbc_source_info_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_jdbc_source_info_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_jdbc_source_info_nid_seq OWNER TO podium_md; -- -- Name: pd_jdbc_source_info_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_jdbc_source_info_nid_seq OWNED BY podium_core.pd_jdbc_source_info.nid; -- -- Name: pd_job_manager_wo; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_job_manager_wo ( nid bigint NOT NULL, job_id text, job_type text, delivery_time timestamp with time zone NOT NULL, start_time timestamp with time zone, end_time timestamp with time zone, workorder_status character varying(100), status_log text, detailed_status_log text, actor_name text, record_count bigint, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_job_manager_wo OWNER TO podium_md; -- -- Name: pd_job_manager_wo_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_job_manager_wo_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_job_manager_wo_nid_seq OWNER TO podium_md; -- -- Name: pd_job_manager_wo_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_job_manager_wo_nid_seq OWNED BY podium_core.pd_job_manager_wo.nid; -- -- Name: pd_job_manager_wo_param; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_job_manager_wo_param ( workorder_nid bigint NOT NULL, jobparams text, jobparams_key text NOT NULL ); ALTER TABLE podium_core.pd_job_manager_wo_param OWNER TO podium_md; -- -- Name: pd_license_info; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_license_info ( nid bigint NOT NULL, sname text NOT NULL, key_string text, createdby text, modifiedby text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_license_info OWNER TO podium_md; -- -- Name: pd_license_info_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_license_info_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_license_info_nid_seq OWNER TO podium_md; -- -- Name: pd_license_info_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_license_info_nid_seq OWNED BY podium_core.pd_license_info.nid; -- -- Name: pd_lineage_edge; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_lineage_edge ( nid bigint NOT NULL, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer, from_node_nid bigint NOT NULL, to_node_nid bigint NOT NULL, edge_type text NOT NULL, json_metadata text NOT NULL ); ALTER TABLE podium_core.pd_lineage_edge OWNER TO podium_md; -- -- Name: pd_lineage_edge_from_node_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_lineage_edge_from_node_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_lineage_edge_from_node_nid_seq OWNER TO podium_md; -- -- Name: pd_lineage_edge_from_node_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_lineage_edge_from_node_nid_seq OWNED BY podium_core.pd_lineage_edge.from_node_nid; -- -- Name: pd_lineage_edge_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_lineage_edge_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_lineage_edge_nid_seq OWNER TO podium_md; -- -- Name: pd_lineage_edge_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_lineage_edge_nid_seq OWNED BY podium_core.pd_lineage_edge.nid; -- -- Name: pd_lineage_edge_to_node_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_lineage_edge_to_node_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_lineage_edge_to_node_nid_seq OWNER TO podium_md; -- -- Name: pd_lineage_edge_to_node_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_lineage_edge_to_node_nid_seq OWNED BY podium_core.pd_lineage_edge.to_node_nid; -- -- Name: pd_lineage_node; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_lineage_node ( nid bigint NOT NULL, sname text NOT NULL, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer, external_type text NOT NULL, external_id text NOT NULL, json_metadata text NOT NULL ); ALTER TABLE podium_core.pd_lineage_node OWNER TO podium_md; -- -- Name: pd_lineage_node_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_lineage_node_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_lineage_node_nid_seq OWNER TO podium_md; -- -- Name: pd_lineage_node_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_lineage_node_nid_seq OWNED BY podium_core.pd_lineage_node.nid; -- -- Name: pd_maintenance_workorder; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_maintenance_workorder ( nid bigint NOT NULL, delivery_time timestamp with time zone NOT NULL, start_time timestamp with time zone, end_time timestamp with time zone, order_size bigint, record_count bigint, workorder_status text, delivery_id text, status_log text, detailed_status_log text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, actor_name text, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_maintenance_workorder OWNER TO podium_md; -- -- Name: pd_maintenance_workorder_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_maintenance_workorder_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_maintenance_workorder_nid_seq OWNER TO podium_md; -- -- Name: pd_maintenance_workorder_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_maintenance_workorder_nid_seq OWNED BY podium_core.pd_maintenance_workorder.nid; -- -- Name: pd_maintenance_workorder_prop; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_maintenance_workorder_prop ( nid bigint NOT NULL, workorder_nid bigint NOT NULL, prop_name text NOT NULL, prop_value text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_maintenance_workorder_prop OWNER TO podium_md; -- -- Name: pd_maintenance_workorder_prop_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_maintenance_workorder_prop_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_maintenance_workorder_prop_nid_seq OWNER TO podium_md; -- -- Name: pd_maintenance_workorder_prop_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_maintenance_workorder_prop_nid_seq OWNED BY podium_core.pd_maintenance_workorder_prop.nid; -- -- Name: pd_metric_category_definition; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_metric_category_definition ( nid bigint NOT NULL, metric_category_nid bigint NOT NULL, metric_definition_nid bigint NOT NULL, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_metric_category_definition OWNER TO podium_md; -- -- Name: pd_metric_category_definition_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_metric_category_definition_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_metric_category_definition_nid_seq OWNER TO podium_md; -- -- Name: pd_metric_category_definition_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_metric_category_definition_nid_seq OWNED BY podium_core.pd_metric_category_definition.nid; -- -- Name: pd_metric_category_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_metric_category_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_metric_category_nid_seq OWNER TO podium_md; -- -- Name: pd_metric_category_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_metric_category_nid_seq OWNED BY podium_core.pd_metric_category.nid; -- -- Name: pd_metric_definition_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_metric_definition_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_metric_definition_nid_seq OWNER TO podium_md; -- -- Name: pd_metric_definition_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_metric_definition_nid_seq OWNED BY podium_core.pd_metric_definition.nid; -- -- Name: pd_metric_weight_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_metric_weight_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_metric_weight_nid_seq OWNER TO podium_md; -- -- Name: pd_metric_weight_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_metric_weight_nid_seq OWNED BY podium_core.pd_metric_weight.nid; -- -- Name: pd_obfuscation_rule; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_obfuscation_rule ( nid bigint NOT NULL, sname text NOT NULL, random_seed text, class_name text NOT NULL, argument_str text, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_obfuscation_rule OWNER TO podium_md; -- -- Name: pd_obfuscation_rule_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_obfuscation_rule_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_obfuscation_rule_nid_seq OWNER TO podium_md; -- -- Name: pd_obfuscation_rule_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_obfuscation_rule_nid_seq OWNED BY podium_core.pd_obfuscation_rule.nid; -- -- Name: pd_prep_aggregator_expression; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_aggregator_expression ( aggregator_nid bigint NOT NULL, expression text, idx integer NOT NULL ); ALTER TABLE podium_core.pd_prep_aggregator_expression OWNER TO podium_md; -- -- Name: pd_prep_aggregator_group; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_aggregator_group ( aggregator_nid bigint NOT NULL, expression text, idx integer NOT NULL ); ALTER TABLE podium_core.pd_prep_aggregator_group OWNER TO podium_md; -- -- Name: pd_prep_compare_condition; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_compare_condition ( compare_nid bigint NOT NULL, detail_expression text, join_operator character varying(255), master_expression text, idx integer NOT NULL ); ALTER TABLE podium_core.pd_prep_compare_condition OWNER TO podium_md; -- -- Name: pd_prep_compare_join; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_compare_join ( compare_nid bigint NOT NULL, detail_expression text, join_operator character varying(255), master_expression text, idx integer NOT NULL ); ALTER TABLE podium_core.pd_prep_compare_join OWNER TO podium_md; -- -- Name: pd_prep_connector; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_connector ( nid bigint NOT NULL, created_ttz timestamp without time zone, modified_ttz timestamp without time zone, version integer, bundle_nid bigint NOT NULL, inbound_port_nid bigint NOT NULL, outbound_port_nid bigint NOT NULL, connection_id text, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_prep_connector OWNER TO podium_md; -- -- Name: pd_prep_connector_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prep_connector_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prep_connector_nid_seq OWNER TO podium_md; -- -- Name: pd_prep_connector_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prep_connector_nid_seq OWNED BY podium_core.pd_prep_connector.nid; -- -- Name: pd_prep_field_format; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_field_format ( sname text NOT NULL, data_type text NOT NULL, record_format_nid bigint NOT NULL, idx integer NOT NULL ); ALTER TABLE podium_core.pd_prep_field_format OWNER TO podium_md; -- -- Name: pd_prep_joiner_condition; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_joiner_condition ( joiner_nid bigint NOT NULL, detail_expression text, join_operator text, master_expression text, idx integer NOT NULL ); ALTER TABLE podium_core.pd_prep_joiner_condition OWNER TO podium_md; -- -- Name: pd_prep_joiner_detail_field; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_joiner_detail_field ( joiner_nid bigint NOT NULL, field_name text, idx integer NOT NULL ); ALTER TABLE podium_core.pd_prep_joiner_detail_field OWNER TO podium_md; -- -- Name: pd_prep_joiner_master_field; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_joiner_master_field ( joiner_nid bigint NOT NULL, field_name text, idx integer NOT NULL ); ALTER TABLE podium_core.pd_prep_joiner_master_field OWNER TO podium_md; -- -- Name: pd_prep_package; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_package ( package_type text NOT NULL, nid bigint NOT NULL, created_ttz timestamp without time zone, modified_ttz timestamp without time zone, version integer, sname text, expression text, mode text, entity_id bigint, entity_name text, data_selection text, load_partitions text, sample_limit double precision, bundle_nid bigint, package_id text, package_comments text, modifiedby text, createdby text, source_name character varying(255) ); ALTER TABLE podium_core.pd_prep_package OWNER TO podium_md; -- -- Name: pd_prep_package_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prep_package_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prep_package_nid_seq OWNER TO podium_md; -- -- Name: pd_prep_package_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prep_package_nid_seq OWNED BY podium_core.pd_prep_package.nid; -- -- Name: pd_prep_parameter; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_parameter ( bundle_nid bigint NOT NULL, parameters text, parameters_key text NOT NULL ); ALTER TABLE podium_core.pd_prep_parameter OWNER TO podium_md; -- -- Name: pd_prep_port; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_port ( nid bigint NOT NULL, created_ttz timestamp without time zone, modified_ttz timestamp without time zone, version integer, port_type text, package_nid bigint NOT NULL, record_format_nid bigint NOT NULL, idx integer, port_id text, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_prep_port OWNER TO podium_md; -- -- Name: pd_prep_port_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prep_port_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prep_port_nid_seq OWNER TO podium_md; -- -- Name: pd_prep_port_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prep_port_nid_seq OWNED BY podium_core.pd_prep_port.nid; -- -- Name: pd_prep_record_format; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_record_format ( nid bigint NOT NULL, created_ttz timestamp without time zone, modified_ttz timestamp without time zone, version integer, sname text, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_prep_record_format OWNER TO podium_md; -- -- Name: pd_prep_record_format_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prep_record_format_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prep_record_format_nid_seq OWNER TO podium_md; -- -- Name: pd_prep_record_format_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prep_record_format_nid_seq OWNED BY podium_core.pd_prep_record_format.nid; -- -- Name: pd_prep_router_expression; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_router_expression ( router_nid bigint NOT NULL, expression text, idx integer NOT NULL ); ALTER TABLE podium_core.pd_prep_router_expression OWNER TO podium_md; -- -- Name: pd_prep_sort_condition; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_sort_condition ( sorter_nid bigint NOT NULL, sort_direction text, sort_field text, idx integer NOT NULL ); ALTER TABLE podium_core.pd_prep_sort_condition OWNER TO podium_md; -- -- Name: pd_prep_transformer_expression; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prep_transformer_expression ( transformer_nid bigint NOT NULL, expression text, idx integer NOT NULL ); ALTER TABLE podium_core.pd_prep_transformer_expression OWNER TO podium_md; -- -- Name: pd_prepare_execution_wo_param; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prepare_execution_wo_param ( workorder_nid bigint NOT NULL, jobparams text, jobparams_key text NOT NULL ); ALTER TABLE podium_core.pd_prepare_execution_wo_param OWNER TO podium_md; -- -- Name: pd_prepare_execution_wo_prop; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prepare_execution_wo_prop ( nid bigint NOT NULL, workorder_nid bigint NOT NULL, prop_name text NOT NULL, prop_value text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_prepare_execution_wo_prop OWNER TO podium_md; -- -- Name: pd_prepare_execution_workorder; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prepare_execution_workorder ( nid bigint NOT NULL, bundle_nid bigint NOT NULL, delivery_time timestamp with time zone NOT NULL, start_time timestamp with time zone, end_time timestamp with time zone, order_size bigint, record_count bigint, workorder_status text, delivery_id text, status_log text, detailed_status_log text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, actor_name text, modifiedby text, createdby text, chaff_count bigint DEFAULT 0, expected_count bigint DEFAULT 0, good_count bigint DEFAULT 0, bad_count bigint DEFAULT 0, ugly_count bigint DEFAULT 0, sample_count bigint DEFAULT 0, load_type text DEFAULT 'DATA'::text NOT NULL, partition_name character varying(255) ); ALTER TABLE podium_core.pd_prepare_execution_workorder OWNER TO podium_md; -- -- Name: pd_prepare_execution_workorder_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prepare_execution_workorder_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prepare_execution_workorder_nid_seq OWNER TO podium_md; -- -- Name: pd_prepare_execution_workorder_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prepare_execution_workorder_nid_seq OWNED BY podium_core.pd_prepare_execution_workorder.nid; -- -- Name: pd_prepare_execution_workorder_prop_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prepare_execution_workorder_prop_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prepare_execution_workorder_prop_nid_seq OWNER TO podium_md; -- -- Name: pd_prepare_execution_workorder_prop_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prepare_execution_workorder_prop_nid_seq OWNED BY podium_core.pd_prepare_execution_wo_prop.nid; -- -- Name: pd_prod_info; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prod_info ( nid bigint NOT NULL, sname text NOT NULL, version_major bigint NOT NULL, version_minor bigint NOT NULL, version_build text NOT NULL, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_prod_info OWNER TO podium_md; -- -- Name: pd_prod_info_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prod_info_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prod_info_nid_seq OWNER TO podium_md; -- -- Name: pd_prod_info_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prod_info_nid_seq OWNED BY podium_core.pd_prod_info.nid; -- -- Name: pd_prop_category; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prop_category ( nid bigint NOT NULL, sname text, description text, prop_dep_nid bigint, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, parent_nid bigint ); ALTER TABLE podium_core.pd_prop_category OWNER TO podium_md; -- -- Name: pd_prop_category_members; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prop_category_members ( category_nid bigint, member_nid bigint, nid bigint NOT NULL, required boolean DEFAULT false NOT NULL, sort_idx integer DEFAULT '-1'::integer NOT NULL, createdby text, modifiedby text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, default_value text ); ALTER TABLE podium_core.pd_prop_category_members OWNER TO podium_md; -- -- Name: pd_prop_category_members_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prop_category_members_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prop_category_members_nid_seq OWNER TO podium_md; -- -- Name: pd_prop_category_members_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prop_category_members_nid_seq OWNED BY podium_core.pd_prop_category_members.nid; -- -- Name: pd_prop_category_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prop_category_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prop_category_nid_seq OWNER TO podium_md; -- -- Name: pd_prop_category_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prop_category_nid_seq OWNED BY podium_core.pd_prop_category.nid; -- -- Name: pd_prop_class_inherit; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prop_class_inherit ( nid bigint NOT NULL, class_name text, inheritance_index bigint, prop_def_nid bigint, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_prop_class_inherit OWNER TO podium_md; -- -- Name: pd_prop_class_inherit_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prop_class_inherit_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prop_class_inherit_nid_seq OWNER TO podium_md; -- -- Name: pd_prop_class_inherit_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prop_class_inherit_nid_seq OWNED BY podium_core.pd_prop_class_inherit.nid; -- -- Name: pd_prop_definition2; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prop_definition2 ( sname text, description text, display_name text, data_type text, field boolean, entity boolean, source boolean, root boolean, default_value text ); ALTER TABLE podium_core.pd_prop_definition2 OWNER TO podium_md; -- -- Name: pd_prop_definition_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prop_definition_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prop_definition_nid_seq OWNER TO podium_md; -- -- Name: pd_prop_definition_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prop_definition_nid_seq OWNED BY podium_core.pd_prop_definition.nid; -- -- Name: pd_prop_dependency; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prop_dependency ( nid bigint NOT NULL, prop_def_nid bigint, boolean_expression text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_prop_dependency OWNER TO podium_md; -- -- Name: pd_prop_dependency_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prop_dependency_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prop_dependency_nid_seq OWNER TO podium_md; -- -- Name: pd_prop_dependency_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prop_dependency_nid_seq OWNED BY podium_core.pd_prop_dependency.nid; -- -- Name: pd_prop_depends_prop; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prop_depends_prop ( dependency_nid bigint, property_nid bigint ); ALTER TABLE podium_core.pd_prop_depends_prop OWNER TO podium_md; -- -- Name: pd_prop_setting_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prop_setting_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prop_setting_nid_seq OWNER TO podium_md; -- -- Name: pd_prop_setting_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prop_setting_nid_seq OWNED BY podium_core.pd_prop_setting.nid; -- -- Name: pd_prop_type; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_prop_type ( nid bigint NOT NULL, sname text, type_class text, validation_argument text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_prop_type OWNER TO podium_md; -- -- Name: pd_prop_type_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_prop_type_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_prop_type_nid_seq OWNER TO podium_md; -- -- Name: pd_prop_type_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_prop_type_nid_seq OWNED BY podium_core.pd_prop_type.nid; -- -- Name: pd_publish; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_publish ( nid bigint NOT NULL, sname text NOT NULL, description text, dataset_nid bigint NOT NULL, target_nid bigint NOT NULL, state text, createdby text, modifiedby text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_publish OWNER TO podium_md; -- -- Name: pd_publish_dataset_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_publish_dataset_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_publish_dataset_nid_seq OWNER TO podium_md; -- -- Name: pd_publish_dataset_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_publish_dataset_nid_seq OWNED BY podium_core.pd_publish.dataset_nid; -- -- Name: pd_publish_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_publish_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_publish_nid_seq OWNER TO podium_md; -- -- Name: pd_publish_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_publish_nid_seq OWNED BY podium_core.pd_publish.nid; -- -- Name: pd_publish_prop; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_publish_prop ( nid bigint NOT NULL, publish_nid bigint NOT NULL, prop_name text NOT NULL, prop_value text, createdby text, modifiedby text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_publish_prop OWNER TO podium_md; -- -- Name: pd_publish_prop_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_publish_prop_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_publish_prop_nid_seq OWNER TO podium_md; -- -- Name: pd_publish_prop_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_publish_prop_nid_seq OWNED BY podium_core.pd_publish_prop.nid; -- -- Name: pd_publish_target_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_publish_target_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_publish_target_nid_seq OWNER TO podium_md; -- -- Name: pd_publish_target_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_publish_target_nid_seq OWNED BY podium_core.pd_publish.target_nid; -- -- Name: pd_qs_conn_path_def; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_qs_conn_path_def ( nid bigint NOT NULL, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer, path text NOT NULL, user_defined_path text, linux_path text NOT NULL, ext_source_nid bigint NOT NULL, int_source_nid bigint NOT NULL ); ALTER TABLE podium_core.pd_qs_conn_path_def OWNER TO podium_md; -- -- Name: pd_qs_conn_path_def_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_qs_conn_path_def_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_qs_conn_path_def_nid_seq OWNER TO podium_md; -- -- Name: pd_qs_conn_path_def_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_qs_conn_path_def_nid_seq OWNED BY podium_core.pd_qs_conn_path_def.nid; -- -- Name: pd_qs_connector_info; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_qs_connector_info ( nid bigint NOT NULL, sname text NOT NULL, install_id text NOT NULL, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer, hostname text NOT NULL, user_directory text NOT NULL, username text DEFAULT ''::text NOT NULL, certificates_path text DEFAULT ''::text NOT NULL, base_dir_path text DEFAULT '/'::text, default_mount_point text DEFAULT '/'::text, default_level text DEFAULT 'REGISTERED'::text, is_autoload_qvd_data boolean DEFAULT false NOT NULL ); ALTER TABLE podium_core.pd_qs_connector_info OWNER TO podium_md; -- -- Name: pd_qs_connector_info_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_qs_connector_info_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_qs_connector_info_nid_seq OWNER TO podium_md; -- -- Name: pd_qs_connector_info_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_qs_connector_info_nid_seq OWNED BY podium_core.pd_qs_connector_info.nid; -- -- Name: pd_qs_data_conn_def; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_qs_data_conn_def ( nid bigint NOT NULL, sname text NOT NULL, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer, qs_contr_id bigint NOT NULL, conn_guid text NOT NULL ); ALTER TABLE podium_core.pd_qs_data_conn_def OWNER TO podium_md; -- -- Name: pd_qs_data_conn_def_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_qs_data_conn_def_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_qs_data_conn_def_nid_seq OWNER TO podium_md; -- -- Name: pd_qs_data_conn_def_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_qs_data_conn_def_nid_seq OWNED BY podium_core.pd_qs_data_conn_def.nid; -- -- Name: pd_qs_data_conn_path_mapping; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_qs_data_conn_path_mapping ( conn_def_nid bigint NOT NULL, path_def_nid bigint NOT NULL ); ALTER TABLE podium_core.pd_qs_data_conn_path_mapping OWNER TO podium_md; -- -- Name: pd_qvd_entity_load; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_qvd_entity_load ( nid bigint NOT NULL, scan_metric_nid bigint NOT NULL, entity_nid bigint NOT NULL, work_order_nid bigint NOT NULL, modification_type text, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_qvd_entity_load OWNER TO podium_md; -- -- Name: pd_qvd_entity_load_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_qvd_entity_load_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_qvd_entity_load_nid_seq OWNER TO podium_md; -- -- Name: pd_qvd_entity_load_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_qvd_entity_load_nid_seq OWNED BY podium_core.pd_qvd_entity_load.nid; -- -- Name: pd_qvd_file_record; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_qvd_file_record ( nid bigint NOT NULL, full_path text NOT NULL, file_name text, base_path text, relative_path text, file_size bigint, file_last_modified timestamp with time zone, file_created timestamp with time zone, file_last_accessed timestamp with time zone, file_status text, last_event_time timestamp with time zone, scan_run_id bigint, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_qvd_file_record OWNER TO podium_md; -- -- Name: pd_qvd_file_record_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_qvd_file_record_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_qvd_file_record_nid_seq OWNER TO podium_md; -- -- Name: pd_qvd_file_record_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_qvd_file_record_nid_seq OWNED BY podium_core.pd_qvd_file_record.nid; -- -- Name: pd_qvd_scan_metrics; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_qvd_scan_metrics ( nid bigint NOT NULL, scan_monitor_nid bigint, root_path text, scan_start_dt timestamp with time zone, scan_end_dt timestamp with time zone, total_scanned bigint, additions_detected bigint, additions_processed bigint, updates_detected bigint, updates_processed bigint, deletions_detected bigint, deletions_processed bigint, total_failures bigint, status text, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_qvd_scan_metrics OWNER TO podium_md; -- -- Name: pd_qvd_scan_metrics_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_qvd_scan_metrics_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_qvd_scan_metrics_nid_seq OWNER TO podium_md; -- -- Name: pd_qvd_scan_metrics_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_qvd_scan_metrics_nid_seq OWNED BY podium_core.pd_qvd_scan_metrics.nid; -- -- Name: pd_qvd_scan_monitor; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_qvd_scan_monitor ( nid bigint NOT NULL, qs_connector_id bigint, scan_master_start_dt timestamp with time zone, scan_master_end_dt timestamp with time zone, status_log text, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, is_terminated boolean DEFAULT false NOT NULL ); ALTER TABLE podium_core.pd_qvd_scan_monitor OWNER TO podium_md; -- -- Name: pd_qvd_scan_monitor_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_qvd_scan_monitor_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_qvd_scan_monitor_nid_seq OWNER TO podium_md; -- -- Name: pd_qvd_scan_monitor_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_qvd_scan_monitor_nid_seq OWNED BY podium_core.pd_qvd_scan_monitor.nid; -- -- Name: pd_relation_inference; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_relation_inference ( nid bigint NOT NULL, sname text NOT NULL, class_name text NOT NULL, argument_str text, relation_weight numeric DEFAULT 1.0 NOT NULL, is_enabled boolean DEFAULT true NOT NULL, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_relation_inference OWNER TO podium_md; -- -- Name: pd_relation_inference_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_relation_inference_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_relation_inference_nid_seq OWNER TO podium_md; -- -- Name: pd_relation_inference_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_relation_inference_nid_seq OWNED BY podium_core.pd_relation_inference.nid; -- -- Name: pd_role; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_role ( nid bigint NOT NULL, sname text NOT NULL, access_mask bigint NOT NULL, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_role OWNER TO podium_md; -- -- Name: pd_role_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_role_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_role_nid_seq OWNER TO podium_md; -- -- Name: pd_role_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_role_nid_seq OWNED BY podium_core.pd_role.nid; -- -- Name: pd_scheduled_job; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_scheduled_job ( nid bigint NOT NULL, entity_nid bigint, cron_expression text NOT NULL, job_handler_name text NOT NULL, is_enabled text NOT NULL, last_run_at timestamp with time zone, next_run_at timestamp with time zone, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_scheduled_job OWNER TO podium_md; -- -- Name: pd_scheduled_job_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_scheduled_job_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_scheduled_job_nid_seq OWNER TO podium_md; -- -- Name: pd_scheduled_job_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_scheduled_job_nid_seq OWNED BY podium_core.pd_scheduled_job.nid; -- -- Name: pd_scheduled_job_prop; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_scheduled_job_prop ( nid bigint NOT NULL, scheduled_job_nid bigint NOT NULL, prop_name text NOT NULL, prop_value text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_scheduled_job_prop OWNER TO podium_md; -- -- Name: pd_scheduled_job_prop_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_scheduled_job_prop_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_scheduled_job_prop_nid_seq OWNER TO podium_md; -- -- Name: pd_scheduled_job_prop_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_scheduled_job_prop_nid_seq OWNED BY podium_core.pd_scheduled_job_prop.nid; -- -- Name: pd_schema_version; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_schema_version ( version_rank integer NOT NULL, installed_rank integer NOT NULL, version character varying(50) NOT NULL, description character varying(200) NOT NULL, type character varying(20) NOT NULL, script character varying(1000) NOT NULL, checksum integer, installed_by character varying(100) NOT NULL, installed_on timestamp with time zone DEFAULT now() NOT NULL, execution_time integer NOT NULL, success boolean NOT NULL ); ALTER TABLE podium_core.pd_schema_version OWNER TO podium_md; -- -- Name: pd_workflow_task_relation; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_workflow_task_relation ( nid bigint NOT NULL, pre_task_nid bigint, post_task_nid bigint, branch_flag boolean DEFAULT true, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_workflow_task_relation OWNER TO podium_md; -- -- Name: pd_seq_task_relation_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_seq_task_relation_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_seq_task_relation_nid_seq OWNER TO podium_md; -- -- Name: pd_seq_task_relation_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_seq_task_relation_nid_seq OWNED BY podium_core.pd_workflow_task_relation.nid; -- -- Name: pd_seq_task_type; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_seq_task_type ( nid bigint NOT NULL, sname text NOT NULL, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_seq_task_type OWNER TO podium_md; -- -- Name: pd_seq_task_type_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_seq_task_type_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_seq_task_type_nid_seq OWNER TO podium_md; -- -- Name: pd_seq_task_type_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_seq_task_type_nid_seq OWNED BY podium_core.pd_seq_task_type.nid; -- -- Name: pd_workflow_graph_gui_state; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_workflow_graph_gui_state ( nid bigint NOT NULL, gui_state text, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_workflow_graph_gui_state OWNER TO podium_md; -- -- Name: pd_sequencer_graph_gui_state_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_sequencer_graph_gui_state_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_sequencer_graph_gui_state_nid_seq OWNER TO podium_md; -- -- Name: pd_sequencer_graph_gui_state_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_sequencer_graph_gui_state_nid_seq OWNED BY podium_core.pd_workflow_graph_gui_state.nid; -- -- Name: pd_workflow_graph; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_workflow_graph ( nid bigint NOT NULL, sname text NOT NULL, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer, description text, long_desc text, status boolean DEFAULT true, sequencer_graph_gui_state_nid bigint, event_type text DEFAULT 'MANUAL'::text NOT NULL ); ALTER TABLE podium_core.pd_workflow_graph OWNER TO podium_md; -- -- Name: pd_sequencer_graph_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_sequencer_graph_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_sequencer_graph_nid_seq OWNER TO podium_md; -- -- Name: pd_sequencer_graph_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_sequencer_graph_nid_seq OWNED BY podium_core.pd_workflow_graph.nid; -- -- Name: pd_workflow_task; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_workflow_task ( nid bigint NOT NULL, sname text NOT NULL, task_type text NOT NULL, graph_nid bigint NOT NULL, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_workflow_task OWNER TO podium_md; -- -- Name: pd_sequencer_task_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_sequencer_task_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_sequencer_task_nid_seq OWNER TO podium_md; -- -- Name: pd_sequencer_task_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_sequencer_task_nid_seq OWNED BY podium_core.pd_workflow_task.nid; -- -- Name: pd_source_conn; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_source_conn ( nid bigint NOT NULL, sname text NOT NULL, comm_protocol text, conn_type text, business_name text, business_desc text, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer ); ALTER TABLE podium_core.pd_source_conn OWNER TO podium_md; -- -- Name: pd_source_conn_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_source_conn_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_source_conn_nid_seq OWNER TO podium_md; -- -- Name: pd_source_conn_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_source_conn_nid_seq OWNED BY podium_core.pd_source_conn.nid; -- -- Name: pd_source_conn_tmp; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_source_conn_tmp ( nid bigint, sname text, comm_protocol text, conn_type text, business_name text, business_desc text, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer, conn_str text, conn_username text, conn_pass text, conn_jdbc text, new_conn boolean ); ALTER TABLE podium_core.pd_source_conn_tmp OWNER TO podium_md; -- -- Name: pd_source_hier; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_source_hier ( nid bigint NOT NULL, parent_nid bigint, source_hier_short_name text, sname text NOT NULL, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_source_hier OWNER TO podium_md; -- -- Name: pd_source_hier_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_source_hier_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_source_hier_nid_seq OWNER TO podium_md; -- -- Name: pd_source_hier_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_source_hier_nid_seq OWNED BY podium_core.pd_source_hier.nid; -- -- Name: pd_source_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_source_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_source_nid_seq OWNER TO podium_md; -- -- Name: pd_source_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_source_nid_seq OWNED BY podium_core.pd_source.nid; -- -- Name: pd_source_prop_bk; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_source_prop_bk ( nid bigint NOT NULL, source_nid bigint NOT NULL, prop_name text NOT NULL, prop_value text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_source_prop_bk OWNER TO podium_md; -- -- Name: pd_source_prop_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_source_prop_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_source_prop_nid_seq OWNER TO podium_md; -- -- Name: pd_source_prop_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_source_prop_nid_seq OWNED BY podium_core.pd_source_prop_bk.nid; -- -- Name: pd_source_tag_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_source_tag_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_source_tag_nid_seq OWNER TO podium_md; -- -- Name: pd_source_tag_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_source_tag_nid_seq OWNED BY podium_core.pd_source_tag.nid; -- -- Name: pd_target; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_target ( nid bigint NOT NULL, sname text NOT NULL, target_type text, target_inbound_protocol text NOT NULL, business_name text, business_desc text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text, format_nid bigint ); ALTER TABLE podium_core.pd_target OWNER TO podium_md; -- -- Name: pd_target_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_target_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_target_nid_seq OWNER TO podium_md; -- -- Name: pd_target_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_target_nid_seq OWNED BY podium_core.pd_target.nid; -- -- Name: pd_target_prop; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_target_prop ( nid bigint NOT NULL, target_nid bigint NOT NULL, prop_name text NOT NULL, prop_value text, created_user_nid bigint, created_ttz timestamp with time zone, modified_user_nid bigint, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_target_prop OWNER TO podium_md; -- -- Name: pd_target_prop_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_target_prop_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_target_prop_nid_seq OWNER TO podium_md; -- -- Name: pd_target_prop_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_target_prop_nid_seq OWNED BY podium_core.pd_target_prop.nid; -- -- Name: pd_user; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_user ( nid bigint NOT NULL, email text, first_name text, last_name text, department text, login_name text NOT NULL, password text NOT NULL, is_enabled text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, actor_name text, modifiedby text, createdby text, ad_connection_nid bigint, origin text NOT NULL ); ALTER TABLE podium_core.pd_user OWNER TO podium_md; -- -- Name: pd_user_global_pref; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_user_global_pref ( user_nid bigint NOT NULL, globalpreferences_key text NOT NULL, globalpreferences text ); ALTER TABLE podium_core.pd_user_global_pref OWNER TO podium_md; -- -- Name: pd_user_grid_column_pref; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_user_grid_column_pref ( nid bigint NOT NULL, sname text NOT NULL, display_name text NOT NULL, sort_order numeric NOT NULL, is_hidden integer NOT NULL, is_default_sort text NOT NULL, user_grid_pref_nid bigint NOT NULL, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, is_sortable integer DEFAULT 1 NOT NULL, modifiedby text, createdby text, type text DEFAULT 'OBJECT'::text NOT NULL ); ALTER TABLE podium_core.pd_user_grid_column_pref OWNER TO podium_md; -- -- Name: pd_user_grid_column_pref_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_user_grid_column_pref_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_user_grid_column_pref_nid_seq OWNER TO podium_md; -- -- Name: pd_user_grid_column_pref_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_user_grid_column_pref_nid_seq OWNED BY podium_core.pd_user_grid_column_pref.nid; -- -- Name: pd_user_grid_pref; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_user_grid_pref ( nid bigint NOT NULL, sname text NOT NULL, display_name text NOT NULL, sort_dir text NOT NULL, display_length integer NOT NULL, user_nid bigint NOT NULL, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, row_selection_type text DEFAULT 'TICK'::character varying NOT NULL, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_user_grid_pref OWNER TO podium_md; -- -- Name: pd_user_grid_pref_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_user_grid_pref_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_user_grid_pref_nid_seq OWNER TO podium_md; -- -- Name: pd_user_grid_pref_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_user_grid_pref_nid_seq OWNED BY podium_core.pd_user_grid_pref.nid; -- -- Name: pd_user_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_user_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_user_nid_seq OWNER TO podium_md; -- -- Name: pd_user_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_user_nid_seq OWNED BY podium_core.pd_user.nid; -- -- Name: pd_user_notification_setting; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_user_notification_setting ( nid bigint NOT NULL, address text, content text NOT NULL, is_enabled text NOT NULL, user_nid bigint NOT NULL, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_user_notification_setting OWNER TO podium_md; -- -- Name: pd_user_notification_setting_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_user_notification_setting_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_user_notification_setting_nid_seq OWNER TO podium_md; -- -- Name: pd_user_notification_setting_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_user_notification_setting_nid_seq OWNED BY podium_core.pd_user_notification_setting.nid; -- -- Name: pd_vadd_rule; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_vadd_rule ( nid bigint NOT NULL, sname text NOT NULL, val_add_rule_sh_name text, val_add_rule_lng_name text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, vadd_rule_id bigint, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_vadd_rule OWNER TO podium_md; -- -- Name: pd_vadd_rule_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_vadd_rule_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_vadd_rule_nid_seq OWNER TO podium_md; -- -- Name: pd_vadd_rule_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_vadd_rule_nid_seq OWNED BY podium_core.pd_vadd_rule.nid; -- -- Name: pd_workflow_execution_wo; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_workflow_execution_wo ( nid bigint NOT NULL, graph_nid bigint, delivery_time timestamp with time zone NOT NULL, start_time timestamp with time zone, end_time timestamp with time zone, workorder_status character varying(100), status_log text, detailed_status_log text, actor_name text, record_count bigint, createdby text, created_ttz timestamp with time zone, modifiedby text, modified_ttz timestamp with time zone, version integer, run_time bigint DEFAULT 0 ); ALTER TABLE podium_core.pd_workflow_execution_wo OWNER TO podium_md; -- -- Name: pd_workflow_execution_workorder_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_workflow_execution_workorder_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_workflow_execution_workorder_nid_seq OWNER TO podium_md; -- -- Name: pd_workflow_execution_workorder_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_workflow_execution_workorder_nid_seq OWNED BY podium_core.pd_workflow_execution_wo.nid; -- -- Name: pd_workflow_task_parameter; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_workflow_task_parameter ( task_nid bigint NOT NULL, parameters character varying(255), parameters_key character varying(255) NOT NULL ); ALTER TABLE podium_core.pd_workflow_task_parameter OWNER TO podium_md; -- -- Name: pd_workorder; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_workorder ( nid bigint NOT NULL, entity_nid bigint NOT NULL, source_nid bigint NOT NULL, delivery_time timestamp with time zone NOT NULL, start_time timestamp with time zone, end_time timestamp with time zone, order_size bigint, record_count bigint, good_count bigint, bad_count bigint, ugly_count bigint, workorder_status text, delivery_id text, status_log text, detailed_status_log text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, chaff_count bigint DEFAULT 0, expected_count bigint DEFAULT 0, actor_name text, modifiedby text, createdby text, sample_count bigint DEFAULT 0, load_type text DEFAULT 'DATA'::text NOT NULL, partition_name character varying(255) ); ALTER TABLE podium_core.pd_workorder OWNER TO podium_md; -- -- Name: pd_workorder_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_workorder_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_workorder_nid_seq OWNER TO podium_md; -- -- Name: pd_workorder_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_workorder_nid_seq OWNED BY podium_core.pd_workorder.nid; -- -- Name: pd_workorder_prop; Type: TABLE; Schema: podium_core; Owner: podium_md -- CREATE TABLE podium_core.pd_workorder_prop ( nid bigint NOT NULL, workorder_nid bigint NOT NULL, prop_name text NOT NULL, prop_value text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_core.pd_workorder_prop OWNER TO podium_md; -- -- Name: pd_workorder_prop_nid_seq; Type: SEQUENCE; Schema: podium_core; Owner: podium_md -- CREATE SEQUENCE podium_core.pd_workorder_prop_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_core.pd_workorder_prop_nid_seq OWNER TO podium_md; -- -- Name: pd_workorder_prop_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_core; Owner: podium_md -- ALTER SEQUENCE podium_core.pd_workorder_prop_nid_seq OWNED BY podium_core.pd_workorder_prop.nid; -- -- Name: qvd_ctlg_dshbrd_w_fld_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.qvd_ctlg_dshbrd_w_fld_v AS SELECT source_info.nid AS source_nid, entity_info.nid AS entity_nid, entity_info.sname AS entity_name, source_info.sname AS source_name, entity_info.entity_type, entity_info.entity_sub_type, entity_info.entity_type AS entity_level, ''::text AS entity_tag, entity_info.business_name AS entity_business_name, entity_info.business_desc AS entity_business_desc, CASE WHEN ((ek.operational_score IS NULL) OR (em.row_count_num = (0)::numeric)) THEN NULL::double precision ELSE (floor((100.0 * ek.operational_score)))::double precision END AS operational_score, CASE WHEN ((ek.popularity_score IS NULL) AND (em.field_count IS NULL)) THEN NULL::double precision WHEN ((ek.popularity_score IS NULL) AND (em.field_count IS NOT NULL)) THEN (0)::double precision ELSE (floor((100.0 * ek.popularity_score)))::double precision END AS popularity_score, CASE WHEN ((ek.quality_score IS NULL) OR (em.row_count_num = (0)::numeric)) THEN NULL::double precision ELSE (floor((100.0 * ek.quality_score)))::double precision END AS quality_score, CASE WHEN ((em.row_count_num IS NULL) OR (to_timestamp((em.last_load_date)::double precision) = '1970-01-01 05:00:00'::timestamp without time zone)) THEN NULL::double precision ELSE (em.row_count_num)::double precision END AS row_count_num, CASE WHEN (em.field_count IS NULL) THEN NULL::double precision ELSE (em.field_count)::double precision END AS field_count, CASE WHEN (em.table_size_mb IS NULL) THEN NULL::double precision ELSE (em.table_size_mb)::double precision END AS table_size_mb, CASE WHEN (em.last_load_date IS NULL) THEN to_timestamp((0)::double precision) ELSE to_timestamp((floor((em.last_load_date / (1000)::numeric)))::double precision) END AS last_load_date, de.dataset_nid, eg.group_nid, source_info.business_name AS source_business_name, source_info.business_desc AS source_business_desc, ''::text AS source_tag, field_info.sname AS field_name, field_info.business_name AS field_business_name, field_info.business_desc AS field_business_desc, ''::text AS field_tag, field_info.nid AS field_nid FROM (((((((( SELECT ent.nid, ent.source_nid, ent.sname, ent.entity_type, ent.entity_sub_type, ent.business_name, ent.business_desc FROM podium_core.pd_entity ent WHERE ((ent.entity_type <> 'EXTERNAL'::text) AND (ent.entity_sub_type = 'QVD'::text))) entity_info JOIN ( SELECT src.nid, src.sname, src.business_name, src.business_desc FROM podium_core.pd_source src WHERE (src.source_type = 'PODIUM_INTERNAL'::text)) source_info ON ((source_info.nid = entity_info.source_nid))) LEFT JOIN podium_core.pd_dataset_entity de ON ((entity_info.nid = de.entity_nid))) LEFT JOIN podium_core.pd_dataset ds ON ((ds.nid = de.dataset_nid))) LEFT JOIN podium_core.pd_entity_group eg ON ((entity_info.nid = eg.entity_nid))) JOIN podium_core.pd_field field_info ON ((entity_info.nid = field_info.entity_nid))) LEFT JOIN ( SELECT em_1.entity_nid, sum( CASE WHEN (e.entity_sub_type = 'QVD'::text) THEN CASE WHEN (em_1.metric_name = 'QVD_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END ELSE CASE WHEN (em_1.metric_name = 'GOOD_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END END) AS row_count_num, sum( CASE WHEN (em_1.metric_name = 'NUMBER_OF_FIELDS'::text) THEN em_1.metric_value ELSE NULL::numeric END) AS field_count, sum( CASE WHEN (em_1.metric_name = 'HDFS_SIZE_BYTES'::text) THEN (em_1.metric_value / 1048576.0) ELSE NULL::numeric END) AS table_size_mb, sum( CASE WHEN (e.entity_sub_type = 'QVD'::text) THEN CASE WHEN (em_1.metric_name = 'QVD_FILE_ENTITY_UPDATE_TIME'::text) THEN em_1.metric_value ELSE NULL::numeric END ELSE CASE WHEN (em_1.metric_name = 'LAST_FINISHED_LOAD'::text) THEN em_1.metric_value ELSE NULL::numeric END END) AS last_load_date FROM podium_core.data_entity_metric_v em_1, ( SELECT ent.nid, ent.entity_sub_type FROM podium_core.pd_entity ent WHERE ((ent.entity_type <> 'EXTERNAL'::text) AND (ent.entity_sub_type = 'QVD'::text))) e WHERE (e.nid = em_1.entity_nid) GROUP BY em_1.entity_nid) em ON ((entity_info.nid = em.entity_nid))) LEFT JOIN ( SELECT entity_kpi_qvd_catalog_v.entity_nid, sum( CASE WHEN (entity_kpi_qvd_catalog_v.kpi_category = 'OPERATIONAL'::text) THEN entity_kpi_qvd_catalog_v.kpi_score ELSE NULL::numeric END) AS operational_score, sum( CASE WHEN (entity_kpi_qvd_catalog_v.kpi_category = 'QUALITY'::text) THEN entity_kpi_qvd_catalog_v.kpi_score ELSE NULL::numeric END) AS quality_score, sum( CASE WHEN (entity_kpi_qvd_catalog_v.kpi_category = 'POPULARITY'::text) THEN entity_kpi_qvd_catalog_v.kpi_score ELSE NULL::numeric END) AS popularity_score FROM podium_core.entity_kpi_qvd_catalog_v GROUP BY entity_kpi_qvd_catalog_v.entity_nid) ek ON ((entity_info.nid = ek.entity_nid))); ALTER TABLE podium_core.qvd_ctlg_dshbrd_w_fld_v OWNER TO podium_md; -- -- Name: qvd_ctlg_dshbrd_w_fld_tag_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.qvd_ctlg_dshbrd_w_fld_tag_v AS SELECT main.source_nid, main.entity_nid, main.entity_name, main.source_name, main.entity_type, main.entity_sub_type, main.entity_level, entity_tags.tag AS entity_tag, main.entity_business_name, main.entity_business_desc, main.operational_score, main.popularity_score, main.quality_score, main.row_count_num, main.field_count, main.table_size_mb, main.last_load_date, main.dataset_nid, main.group_nid, main.source_business_name, main.source_business_desc, ''::text AS source_tag, main.field_name, main.field_business_name, main.field_business_desc, ''::text AS field_tag FROM podium_core.qvd_ctlg_dshbrd_w_fld_v main, podium_core.pd_entity_tag entity_tags WHERE ((main.entity_type <> 'EXTERNAL'::text) AND (main.entity_nid = entity_tags.entity_nid)) UNION SELECT main.source_nid, main.entity_nid, main.entity_name, main.source_name, main.entity_type, main.entity_sub_type, main.entity_level, ''::text AS entity_tag, main.entity_business_name, main.entity_business_desc, main.operational_score, main.popularity_score, main.quality_score, main.row_count_num, main.field_count, main.table_size_mb, main.last_load_date, main.dataset_nid, main.group_nid, main.source_business_name, main.source_business_desc, source_tags.tag AS source_tag, main.field_name, main.field_business_name, main.field_business_desc, ''::text AS field_tag FROM podium_core.qvd_ctlg_dshbrd_w_fld_v main, podium_core.pd_source_tag source_tags WHERE ((main.entity_type <> 'EXTERNAL'::text) AND (main.source_nid = source_tags.source_nid)) UNION SELECT main.source_nid, main.entity_nid, main.entity_name, main.source_name, main.entity_type, main.entity_sub_type, main.entity_level, ''::text AS entity_tag, main.entity_business_name, main.entity_business_desc, main.operational_score, main.popularity_score, main.quality_score, main.row_count_num, main.field_count, main.table_size_mb, main.last_load_date, main.dataset_nid, main.group_nid, main.source_business_name, main.source_business_desc, ''::text AS source_tag, main.field_name, main.field_business_name, main.field_business_desc, field_tags.tag AS field_tag FROM podium_core.qvd_ctlg_dshbrd_w_fld_v main, podium_core.pd_field_tag field_tags WHERE ((main.entity_type <> 'EXTERNAL'::text) AND (main.field_nid = field_tags.field_nid)); ALTER TABLE podium_core.qvd_ctlg_dshbrd_w_fld_tag_v OWNER TO podium_md; -- -- Name: qvd_ctlg_dshbrd_w_o_fld_tag_v; Type: VIEW; Schema: podium_core; Owner: podium_md -- CREATE VIEW podium_core.qvd_ctlg_dshbrd_w_o_fld_tag_v AS SELECT source_info.nid AS source_nid, entity_info.nid AS entity_nid, entity_info.sname AS entity_name, source_info.sname AS source_name, entity_info.entity_type, entity_info.entity_sub_type, entity_info.entity_type AS entity_level, ''::text AS entity_tag, entity_info.business_name AS entity_business_name, entity_info.business_desc AS entity_business_desc, CASE WHEN ((ek.operational_score IS NULL) OR (em.row_count_num = (0)::numeric)) THEN NULL::double precision ELSE (floor((100.0 * ek.operational_score)))::double precision END AS operational_score, CASE WHEN ((ek.popularity_score IS NULL) AND (em.field_count IS NULL)) THEN NULL::double precision WHEN ((ek.popularity_score IS NULL) AND (em.field_count IS NOT NULL)) THEN (0)::double precision ELSE (floor((100.0 * ek.popularity_score)))::double precision END AS popularity_score, CASE WHEN ((ek.quality_score IS NULL) OR (em.row_count_num = (0)::numeric)) THEN NULL::double precision ELSE (floor((100.0 * ek.quality_score)))::double precision END AS quality_score, CASE WHEN ((em.row_count_num IS NULL) OR (to_timestamp((em.last_load_date)::double precision) = '1970-01-01 05:00:00'::timestamp without time zone)) THEN NULL::double precision ELSE (em.row_count_num)::double precision END AS row_count_num, CASE WHEN (em.field_count IS NULL) THEN NULL::double precision ELSE (em.field_count)::double precision END AS field_count, CASE WHEN (em.table_size_mb IS NULL) THEN NULL::double precision ELSE (em.table_size_mb)::double precision END AS table_size_mb, CASE WHEN (em.last_load_date IS NULL) THEN to_timestamp((0)::double precision) ELSE to_timestamp((floor((em.last_load_date / (1000)::numeric)))::double precision) END AS last_load_date, de.dataset_nid, eg.group_nid, source_info.business_name AS source_business_name, source_info.business_desc AS source_business_desc, ''::text AS source_tag, ''::text AS field_tag FROM (((((( SELECT ent.nid, ent.source_nid, ent.sname, ent.entity_type, ent.entity_sub_type, ent.business_name, ent.business_desc FROM podium_core.pd_entity ent WHERE ((ent.entity_type <> 'EXTERNAL'::text) AND (ent.entity_sub_type = 'QVD'::text))) entity_info JOIN ( SELECT src.nid, src.sname, src.business_name, src.business_desc FROM podium_core.pd_source src WHERE (src.source_type = 'PODIUM_INTERNAL'::text)) source_info ON ((source_info.nid = entity_info.source_nid))) LEFT JOIN podium_core.pd_dataset_entity de ON ((entity_info.nid = de.entity_nid))) LEFT JOIN podium_core.pd_entity_group eg ON ((entity_info.nid = eg.entity_nid))) LEFT JOIN ( SELECT em_1.entity_nid, sum( CASE WHEN (e.entity_sub_type = 'QVD'::text) THEN CASE WHEN (em_1.metric_name = 'QVD_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END ELSE CASE WHEN (em_1.metric_name = 'GOOD_RECORDS'::text) THEN em_1.metric_value ELSE NULL::numeric END END) AS row_count_num, sum( CASE WHEN (em_1.metric_name = 'NUMBER_OF_FIELDS'::text) THEN em_1.metric_value ELSE NULL::numeric END) AS field_count, sum( CASE WHEN (em_1.metric_name = 'HDFS_SIZE_BYTES'::text) THEN (em_1.metric_value / 1048576.0) ELSE NULL::numeric END) AS table_size_mb, sum( CASE WHEN (e.entity_sub_type = 'QVD'::text) THEN CASE WHEN (em_1.metric_name = 'QVD_FILE_ENTITY_UPDATE_TIME'::text) THEN em_1.metric_value ELSE NULL::numeric END ELSE CASE WHEN (em_1.metric_name = 'LAST_FINISHED_LOAD'::text) THEN em_1.metric_value ELSE NULL::numeric END END) AS last_load_date FROM podium_core.data_entity_metric_v em_1, ( SELECT ent.nid, ent.entity_sub_type FROM podium_core.pd_entity ent WHERE ((ent.entity_type <> 'EXTERNAL'::text) AND (ent.entity_sub_type = 'QVD'::text))) e WHERE (e.nid = em_1.entity_nid) GROUP BY em_1.entity_nid) em ON ((entity_info.nid = em.entity_nid))) LEFT JOIN ( SELECT entity_kpi_qvd_catalog_v.entity_nid, sum( CASE WHEN (entity_kpi_qvd_catalog_v.kpi_category = 'OPERATIONAL'::text) THEN entity_kpi_qvd_catalog_v.kpi_score ELSE NULL::numeric END) AS operational_score, sum( CASE WHEN (entity_kpi_qvd_catalog_v.kpi_category = 'QUALITY'::text) THEN entity_kpi_qvd_catalog_v.kpi_score ELSE NULL::numeric END) AS quality_score, sum( CASE WHEN (entity_kpi_qvd_catalog_v.kpi_category = 'POPULARITY'::text) THEN entity_kpi_qvd_catalog_v.kpi_score ELSE NULL::numeric END) AS popularity_score FROM podium_core.entity_kpi_qvd_catalog_v GROUP BY entity_kpi_qvd_catalog_v.entity_nid) ek ON ((entity_info.nid = ek.entity_nid))); ALTER TABLE podium_core.qvd_ctlg_dshbrd_w_o_fld_tag_v OWNER TO podium_md; -- -- Name: explore_lineage; Type: VIEW; Schema: podium_reporting; Owner: podium_md -- CREATE VIEW podium_reporting.explore_lineage AS SELECT explore_entities_with_loaders.parent_entity_id AS start_node, source.nid AS parent_source_id, source.sname AS parent_source_name, explore_entities_with_loaders.parent_entity_id, entity.sname AS parent_name, entity.entity_type AS parent_entity_type, explore_entities_with_loaders.child_source_nid, explore_entities_with_loaders.child_source_name, explore_entities_with_loaders.child_entity_id, explore_entities_with_loaders.child_name, NULL::timestamp with time zone AS load_time, explore_entities_with_loaders.child_entity_type, 'EXPLORE'::text AS relation_type, ''::text AS job_name FROM ((( SELECT (regexp_split_to_table(settings.prop_value, ','::text))::bigint AS parent_entity_id, settings.parent_nid AS child_entity_id, entity_1.sname AS child_name, entity_1.source_nid AS child_source_nid, source_1.sname AS child_source_name, entity_1.entity_type AS child_entity_type FROM (((podium_core.pd_prop_definition definition JOIN podium_core.pd_prop_setting settings ON ((definition.nid = settings.prop_def_nid))) JOIN podium_core.pd_entity entity_1 ON ((entity_1.nid = settings.parent_nid))) JOIN podium_core.pd_source source_1 ON ((entity_1.source_nid = source_1.nid))) WHERE (definition.sname = 'cart.source.entities'::text)) explore_entities_with_loaders JOIN podium_core.pd_entity entity ON ((explore_entities_with_loaders.parent_entity_id = entity.nid))) JOIN podium_core.pd_source source ON ((entity.source_nid = source.nid))); ALTER TABLE podium_reporting.explore_lineage OWNER TO podium_md; -- -- Name: external_to_internal_lineage; Type: VIEW; Schema: podium_reporting; Owner: podium_md -- CREATE VIEW podium_reporting.external_to_internal_lineage AS SELECT DISTINCT pe.nid AS start_node, pd_src.nid AS parent_source_id, pd_src.sname AS parent_source_name, pe.nid AS parent_entity_id, pe.sname AS parent_name, pe.entity_type AS parent_entity_type, pd_src_int.nid AS child_source_nid, pd_src_int.sname AS child_source_name, pe_int.nid AS child_entity_id, pe_int.sname AS child_name, work_order.delivery_time AS load_time, pe_int.entity_type AS child_entity_type, 'INGEST'::text AS relation_type, ''::text AS job_name FROM ((((((((podium_core.pd_entity pe JOIN podium_core.pd_field pf ON ((pe.nid = pf.entity_nid))) JOIN podium_core.pd_field_pc_rel pf_rel ON ((pf.nid = pf_rel.parent_field_nid))) JOIN podium_core.pd_field pf_child ON ((pf_rel.child_field_nid = pf_child.nid))) JOIN podium_core.pd_entity pe_int ON ((pf_child.entity_nid = pe_int.nid))) JOIN podium_core.pd_source pd_src ON ((pe.source_nid = pd_src.nid))) JOIN podium_core.pd_source pd_src_int ON ((pe_int.source_nid = pd_src_int.nid))) JOIN podium_core.pd_vadd_rule rl ON ((pf_rel.vadd_rule_nid = rl.nid))) LEFT JOIN podium_core.pd_workorder work_order ON (((work_order.entity_nid = pe.nid) AND (rl.sname <> 'FOREIGN_KEY'::text) AND (work_order.delivery_time = ( SELECT max(a.delivery_time) AS max FROM podium_core.pd_workorder a WHERE (a.entity_nid = pe.nid)))))); ALTER TABLE podium_reporting.external_to_internal_lineage OWNER TO podium_md; -- -- Name: prepare_lineage; Type: VIEW; Schema: podium_reporting; Owner: podium_md -- CREATE VIEW podium_reporting.prepare_lineage AS SELECT parent_package.entity_id AS start_node, parent_src.nid AS parent_source_id, parent_src.sname AS parent_source_name, parent_package.entity_id AS parent_entity_id, parent_entity.sname AS parent_name, parent_entity.entity_type AS parent_entity_type, child_src.nid AS child_source_nid, child_src.sname AS child_source_name, child_package.entity_id AS child_entity_id, child_entity.sname AS child_name, child_entity.entity_type AS child_entity_type, exec_work_order.delivery_time AS load_time, 'PREPARE'::text AS relation_type, bndl.sname AS job_name FROM (((((((podium_core.pd_prep_package parent_package JOIN podium_core.pd_entity parent_entity ON ((parent_package.entity_id = parent_entity.nid))) JOIN podium_core.pd_prep_package child_package ON ((parent_package.bundle_nid = child_package.bundle_nid))) JOIN podium_core.pd_entity child_entity ON ((child_package.entity_id = child_entity.nid))) JOIN podium_core.pd_source parent_src ON ((parent_entity.source_nid = parent_src.nid))) JOIN podium_core.pd_source child_src ON ((child_entity.source_nid = child_src.nid))) JOIN podium_core.pd_bundle bndl ON ((bndl.nid = parent_package.bundle_nid))) LEFT JOIN podium_core.pd_prepare_execution_workorder exec_work_order ON (((exec_work_order.bundle_nid = child_package.bundle_nid) AND (exec_work_order.delivery_time = ( SELECT max(a.delivery_time) AS max FROM podium_core.pd_prepare_execution_workorder a WHERE (a.bundle_nid = child_package.bundle_nid)))))) WHERE ((parent_package.package_type = 'LOADER'::text) AND (child_package.package_type = 'STORE'::text)); ALTER TABLE podium_reporting.prepare_lineage OWNER TO podium_md; -- -- Name: publish_lineage; Type: VIEW; Schema: podium_reporting; Owner: podium_md -- CREATE VIEW podium_reporting.publish_lineage AS SELECT entity.nid AS start_node, source.nid AS parent_source_id, source.sname AS parent_source_name, entity.nid AS parent_entity_id, entity.sname AS parent_name, entity.entity_type AS parent_entity_type, NULL::bigint AS child_source_nid, NULL::text AS child_source_name, NULL::bigint AS child_entity_id, target.sname AS child_name, NULL::text AS child_entity_type, NULL::timestamp with time zone AS load_time, 'PUBLISH'::text AS relation_type, publish.sname AS job_name FROM (((((podium_core.pd_publish publish JOIN podium_core.pd_target target ON ((publish.target_nid = target.nid))) JOIN podium_core.pd_dataset dataset ON ((publish.dataset_nid = dataset.nid))) JOIN podium_core.pd_dataset_entity dataset_entity ON ((dataset.nid = dataset_entity.dataset_nid))) JOIN podium_core.pd_entity entity ON ((dataset_entity.entity_nid = entity.nid))) JOIN podium_core.pd_source source ON ((entity.source_nid = source.nid))); ALTER TABLE podium_reporting.publish_lineage OWNER TO podium_md; -- -- Name: complete_entity_lineage; Type: VIEW; Schema: podium_reporting; Owner: podium_md -- CREATE VIEW podium_reporting.complete_entity_lineage AS SELECT external_to_internal_lineage.start_node, external_to_internal_lineage.parent_source_id, external_to_internal_lineage.parent_source_name, external_to_internal_lineage.parent_entity_id, external_to_internal_lineage.parent_name, external_to_internal_lineage.parent_entity_type, external_to_internal_lineage.child_source_nid, external_to_internal_lineage.child_source_name, external_to_internal_lineage.child_entity_id, external_to_internal_lineage.child_name, external_to_internal_lineage.child_entity_type, external_to_internal_lineage.load_time, external_to_internal_lineage.relation_type, external_to_internal_lineage.job_name FROM podium_reporting.external_to_internal_lineage WHERE (external_to_internal_lineage.parent_entity_id <> external_to_internal_lineage.child_entity_id) UNION SELECT explore_lineage.start_node, explore_lineage.parent_source_id, explore_lineage.parent_source_name, explore_lineage.parent_entity_id, explore_lineage.parent_name, explore_lineage.parent_entity_type, explore_lineage.child_source_nid, explore_lineage.child_source_name, explore_lineage.child_entity_id, explore_lineage.child_name, explore_lineage.child_entity_type, explore_lineage.load_time, explore_lineage.relation_type, explore_lineage.job_name FROM podium_reporting.explore_lineage WHERE (COALESCE(explore_lineage.parent_entity_id, ('-1'::integer)::bigint) <> COALESCE(explore_lineage.child_entity_id, ('-1'::integer)::bigint)) UNION SELECT prepare_lineage.start_node, prepare_lineage.parent_source_id, prepare_lineage.parent_source_name, prepare_lineage.parent_entity_id, prepare_lineage.parent_name, prepare_lineage.parent_entity_type, prepare_lineage.child_source_nid, prepare_lineage.child_source_name, prepare_lineage.child_entity_id, prepare_lineage.child_name, prepare_lineage.child_entity_type, prepare_lineage.load_time, prepare_lineage.relation_type, prepare_lineage.job_name FROM podium_reporting.prepare_lineage WHERE (COALESCE(prepare_lineage.parent_entity_id, ('-1'::integer)::bigint) <> COALESCE(prepare_lineage.child_entity_id, ('-1'::integer)::bigint)) UNION SELECT publish_lineage.start_node, publish_lineage.parent_source_id, publish_lineage.parent_source_name, publish_lineage.parent_entity_id, publish_lineage.parent_name, publish_lineage.parent_entity_type, publish_lineage.child_source_nid, publish_lineage.child_source_name, publish_lineage.child_entity_id, publish_lineage.child_name, publish_lineage.child_entity_type, publish_lineage.load_time, publish_lineage.relation_type, publish_lineage.job_name FROM podium_reporting.publish_lineage WHERE (publish_lineage.parent_entity_id <> COALESCE(publish_lineage.child_entity_id, ('-1'::integer)::bigint)); ALTER TABLE podium_reporting.complete_entity_lineage OWNER TO podium_md; -- -- Name: ingest_stats_x_source_x_entity; Type: VIEW; Schema: podium_reporting; Owner: podium_md -- CREATE VIEW podium_reporting.ingest_stats_x_source_x_entity AS SELECT (wo.end_time - wo.start_time) AS ingest_total_duration, e.sname AS entity_name, s.sname AS source_name, wo.nid, wo.entity_nid, wo.source_nid, wo.delivery_time, wo.start_time, wo.end_time, wo.order_size, wo.record_count, wo.good_count, wo.bad_count, wo.ugly_count, wo.workorder_status, wo.delivery_id, wo.status_log, wo.detailed_status_log, wo.created_ttz, wo.modified_ttz, wo.version, wo.chaff_count, wo.expected_count, wo.actor_name, wo.modifiedby, wo.createdby FROM ((podium_core.pd_workorder wo JOIN podium_core.pd_entity e ON ((e.nid = wo.entity_nid))) JOIN podium_core.pd_source s ON ((s.nid = wo.source_nid))); ALTER TABLE podium_reporting.ingest_stats_x_source_x_entity OWNER TO podium_md; -- -- Name: lineage; Type: VIEW; Schema: podium_reporting; Owner: podium_md -- CREATE VIEW podium_reporting.lineage AS WITH RECURSIVE lineage(start_node, parent_source_id, parent_source_name, parent_entity_id, parent_name, parent_entity_type, child_source_nid, child_source_name, child_entity_id, child_name, load_time, child_entity_type, relation_type, job_name) AS ( SELECT complete_entity_lineage.start_node, complete_entity_lineage.parent_source_id, complete_entity_lineage.parent_source_name, complete_entity_lineage.parent_entity_id, complete_entity_lineage.parent_name, complete_entity_lineage.parent_entity_type, complete_entity_lineage.child_source_nid, complete_entity_lineage.child_source_name, complete_entity_lineage.child_entity_id, complete_entity_lineage.child_name, complete_entity_lineage.load_time, complete_entity_lineage.child_entity_type, complete_entity_lineage.relation_type, complete_entity_lineage.job_name FROM podium_reporting.complete_entity_lineage UNION SELECT gl.start_node, cl.parent_source_id, cl.parent_source_name, cl.parent_entity_id, cl.parent_name, cl.parent_entity_type, cl.child_source_nid, cl.child_source_name, cl.child_entity_id, cl.child_name, cl.load_time, cl.child_entity_type, cl.relation_type, cl.job_name FROM (podium_reporting.complete_entity_lineage cl JOIN lineage gl ON ((gl.child_entity_id = cl.parent_entity_id))) ) SELECT lineage.start_node, lineage.parent_source_id, lineage.parent_source_name, lineage.parent_entity_id, lineage.parent_name, lineage.parent_entity_type, lineage.child_source_nid, lineage.child_source_name, lineage.child_entity_id, lineage.child_name, lineage.load_time, lineage.child_entity_type, lineage.relation_type, lineage.job_name FROM lineage; ALTER TABLE podium_reporting.lineage OWNER TO podium_md; -- -- Name: pd_report; Type: TABLE; Schema: podium_reporting; Owner: podium_md -- CREATE TABLE podium_reporting.pd_report ( nid bigint NOT NULL, sname text NOT NULL, description text, category text NOT NULL, original_design_file_name text, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_reporting.pd_report OWNER TO podium_md; -- -- Name: pd_report_nid_seq; Type: SEQUENCE; Schema: podium_reporting; Owner: podium_md -- CREATE SEQUENCE podium_reporting.pd_report_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_reporting.pd_report_nid_seq OWNER TO podium_md; -- -- Name: pd_report_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_reporting; Owner: podium_md -- ALTER SEQUENCE podium_reporting.pd_report_nid_seq OWNED BY podium_reporting.pd_report.nid; -- -- Name: pd_report_query; Type: TABLE; Schema: podium_reporting; Owner: podium_md -- CREATE TABLE podium_reporting.pd_report_query ( nid bigint NOT NULL, report_id bigint NOT NULL, query text NOT NULL, view_type text NOT NULL, created_ttz timestamp with time zone, modified_ttz timestamp with time zone, version integer, modifiedby text, createdby text ); ALTER TABLE podium_reporting.pd_report_query OWNER TO podium_md; -- -- Name: pd_report_query_nid_seq; Type: SEQUENCE; Schema: podium_reporting; Owner: podium_md -- CREATE SEQUENCE podium_reporting.pd_report_query_nid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE podium_reporting.pd_report_query_nid_seq OWNER TO podium_md; -- -- Name: pd_report_query_nid_seq; Type: SEQUENCE OWNED BY; Schema: podium_reporting; Owner: podium_md -- ALTER SEQUENCE podium_reporting.pd_report_query_nid_seq OWNED BY podium_reporting.pd_report_query.nid; -- -- Name: pd_acl_sync_log_details nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_acl_sync_log_details ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_acl_synchronization_log_details_nid_seq'::regclass); -- -- Name: pd_acl_sync_log_details base_log_nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_acl_sync_log_details ALTER COLUMN base_log_nid SET DEFAULT nextval('podium_core.pd_acl_synchronization_log_details_base_log_nid_seq'::regclass); -- -- Name: pd_acl_synchronization_logs nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_acl_synchronization_logs ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_acl_synchronization_logs_nid_seq'::regclass); -- -- Name: pd_active_directory_logs nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_active_directory_logs ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_active_directory_logs_nid_seq'::regclass); -- -- Name: pd_ad_connection_info nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_ad_connection_info ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_ad_connection_info_nid_seq'::regclass); -- -- Name: pd_ad_log_details nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_ad_log_details ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_active_directory_log_details_nid_seq'::regclass); -- -- Name: pd_audit_log nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_audit_log ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_audit_log_nid_seq'::regclass); -- -- Name: pd_bundle nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_bundle ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_bundle_nid_seq'::regclass); -- -- Name: pd_bundle_gui_state nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_bundle_gui_state ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_bundle_gui_state_nid_seq'::regclass); -- -- Name: pd_cluster nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_cluster ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_cluster_nid_seq'::regclass); -- -- Name: pd_connection_group nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_connection_group ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_connection_group_nid_seq'::regclass); -- -- Name: pd_data_export_workorder nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_export_workorder ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_data_export_workorder_nid_seq'::regclass); -- -- Name: pd_data_export_workorder_prop nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_export_workorder_prop ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_data_export_workorder_prop_nid_seq'::regclass); -- -- Name: pd_data_meter nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_meter ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_data_meter_nid_seq'::regclass); -- -- Name: pd_data_migration_wo_prop nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_migration_wo_prop ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_data_migration_workorder_prop_nid_seq'::regclass); -- -- Name: pd_data_migration_workorder nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_migration_workorder ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_data_migration_workorder_nid_seq'::regclass); -- -- Name: pd_dataset nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_dataset ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_dataset_nid_seq'::regclass); -- -- Name: pd_dataset_entity dataset_nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_dataset_entity ALTER COLUMN dataset_nid SET DEFAULT nextval('podium_core.pd_dataset_entity_dataset_nid_seq'::regclass); -- -- Name: pd_dataset_entity entity_nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_dataset_entity ALTER COLUMN entity_nid SET DEFAULT nextval('podium_core.pd_dataset_entity_entity_nid_seq'::regclass); -- -- Name: pd_entity nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_entity_nid_seq'::regclass); -- -- Name: pd_entity_group entity_nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_group ALTER COLUMN entity_nid SET DEFAULT nextval('podium_core.pd_entity_group_entity_nid_seq'::regclass); -- -- Name: pd_entity_group group_nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_group ALTER COLUMN group_nid SET DEFAULT nextval('podium_core.pd_entity_group_group_nid_seq'::regclass); -- -- Name: pd_entity_group nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_group ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_entity_group_nid_seq'::regclass); -- -- Name: pd_entity_meter nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_meter ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_entity_meter_nid_seq'::regclass); -- -- Name: pd_entity_metric nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_metric ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_entity_metric_nid_seq'::regclass); -- -- Name: pd_entity_prop_bk nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_prop_bk ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_entity_prop_nid_seq'::regclass); -- -- Name: pd_entity_relation nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_relation ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_entity_relation_nid_seq'::regclass); -- -- Name: pd_entity_tag nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_tag ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_entity_tag_nid_seq'::regclass); -- -- Name: pd_export_field_masking nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_export_field_masking ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_export_field_masking_nid_seq'::regclass); -- -- Name: pd_export_info nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_export_info ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_export_info_nid_seq'::regclass); -- -- Name: pd_export_info_prop nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_export_info_prop ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_export_info_prop_nid_seq'::regclass); -- -- Name: pd_field nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_field_nid_seq'::regclass); -- -- Name: pd_field_biz_def nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field_biz_def ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_field_biz_def_nid_seq'::regclass); -- -- Name: pd_field_pc_rel nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field_pc_rel ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_field_pc_rel_nid_seq'::regclass); -- -- Name: pd_field_prop_bk nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field_prop_bk ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_field_prop_nid_seq'::regclass); -- -- Name: pd_field_tag nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field_tag ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_field_tag_nid_seq'::regclass); -- -- Name: pd_format_def nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_format_def ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_format_def_nid_seq'::regclass); -- -- Name: pd_format_def_prop nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_format_def_prop ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_format_def_prop_nid_seq'::regclass); -- -- Name: pd_format_def_prop format_nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_format_def_prop ALTER COLUMN format_nid SET DEFAULT nextval('podium_core.pd_format_def_prop_format_nid_seq'::regclass); -- -- Name: pd_gc_registry nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_gc_registry ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_gc_registry_nid_seq'::regclass); -- -- Name: pd_gc_registry obj_id; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_gc_registry ALTER COLUMN obj_id SET DEFAULT nextval('podium_core.pd_gc_registry_obj_id_seq'::regclass); -- -- Name: pd_group nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_group_nid_seq'::regclass); -- -- Name: pd_group_group nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group_group ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_group_group_nid_seq'::regclass); -- -- Name: pd_group_user nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group_user ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_group_user_nid_seq'::regclass); -- -- Name: pd_jdbc_source_info nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_jdbc_source_info ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_jdbc_source_info_nid_seq'::regclass); -- -- Name: pd_job_manager_wo nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_job_manager_wo ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_job_manager_wo_nid_seq'::regclass); -- -- Name: pd_license_info nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_license_info ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_license_info_nid_seq'::regclass); -- -- Name: pd_lineage_edge nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_lineage_edge ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_lineage_edge_nid_seq'::regclass); -- -- Name: pd_lineage_edge from_node_nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_lineage_edge ALTER COLUMN from_node_nid SET DEFAULT nextval('podium_core.pd_lineage_edge_from_node_nid_seq'::regclass); -- -- Name: pd_lineage_edge to_node_nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_lineage_edge ALTER COLUMN to_node_nid SET DEFAULT nextval('podium_core.pd_lineage_edge_to_node_nid_seq'::regclass); -- -- Name: pd_lineage_node nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_lineage_node ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_lineage_node_nid_seq'::regclass); -- -- Name: pd_maintenance_workorder nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_maintenance_workorder ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_maintenance_workorder_nid_seq'::regclass); -- -- Name: pd_maintenance_workorder_prop nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_maintenance_workorder_prop ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_maintenance_workorder_prop_nid_seq'::regclass); -- -- Name: pd_metric_category nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_category ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_metric_category_nid_seq'::regclass); -- -- Name: pd_metric_category_definition nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_category_definition ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_metric_category_definition_nid_seq'::regclass); -- -- Name: pd_metric_definition nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_definition ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_metric_definition_nid_seq'::regclass); -- -- Name: pd_metric_weight nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_weight ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_metric_weight_nid_seq'::regclass); -- -- Name: pd_obfuscation_rule nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_obfuscation_rule ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_obfuscation_rule_nid_seq'::regclass); -- -- Name: pd_prep_connector nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_connector ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prep_connector_nid_seq'::regclass); -- -- Name: pd_prep_package nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_package ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prep_package_nid_seq'::regclass); -- -- Name: pd_prep_port nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_port ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prep_port_nid_seq'::regclass); -- -- Name: pd_prep_record_format nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_record_format ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prep_record_format_nid_seq'::regclass); -- -- Name: pd_prepare_execution_wo_prop nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prepare_execution_wo_prop ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prepare_execution_workorder_prop_nid_seq'::regclass); -- -- Name: pd_prepare_execution_workorder nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prepare_execution_workorder ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prepare_execution_workorder_nid_seq'::regclass); -- -- Name: pd_prod_info nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prod_info ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prod_info_nid_seq'::regclass); -- -- Name: pd_prop_category nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_category ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prop_category_nid_seq'::regclass); -- -- Name: pd_prop_category_members nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_category_members ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prop_category_members_nid_seq'::regclass); -- -- Name: pd_prop_class_inherit nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_class_inherit ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prop_class_inherit_nid_seq'::regclass); -- -- Name: pd_prop_definition nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_definition ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prop_definition_nid_seq'::regclass); -- -- Name: pd_prop_dependency nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_dependency ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prop_dependency_nid_seq'::regclass); -- -- Name: pd_prop_setting nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_setting ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prop_setting_nid_seq'::regclass); -- -- Name: pd_prop_type nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_type ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_prop_type_nid_seq'::regclass); -- -- Name: pd_publish nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_publish ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_publish_nid_seq'::regclass); -- -- Name: pd_publish dataset_nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_publish ALTER COLUMN dataset_nid SET DEFAULT nextval('podium_core.pd_publish_dataset_nid_seq'::regclass); -- -- Name: pd_publish target_nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_publish ALTER COLUMN target_nid SET DEFAULT nextval('podium_core.pd_publish_target_nid_seq'::regclass); -- -- Name: pd_publish_prop nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_publish_prop ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_publish_prop_nid_seq'::regclass); -- -- Name: pd_qs_conn_path_def nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qs_conn_path_def ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_qs_conn_path_def_nid_seq'::regclass); -- -- Name: pd_qs_connector_info nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qs_connector_info ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_qs_connector_info_nid_seq'::regclass); -- -- Name: pd_qs_data_conn_def nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qs_data_conn_def ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_qs_data_conn_def_nid_seq'::regclass); -- -- Name: pd_qvd_entity_load nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qvd_entity_load ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_qvd_entity_load_nid_seq'::regclass); -- -- Name: pd_qvd_file_record nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qvd_file_record ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_qvd_file_record_nid_seq'::regclass); -- -- Name: pd_qvd_scan_metrics nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qvd_scan_metrics ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_qvd_scan_metrics_nid_seq'::regclass); -- -- Name: pd_qvd_scan_monitor nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qvd_scan_monitor ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_qvd_scan_monitor_nid_seq'::regclass); -- -- Name: pd_relation_inference nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_relation_inference ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_relation_inference_nid_seq'::regclass); -- -- Name: pd_role nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_role ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_role_nid_seq'::regclass); -- -- Name: pd_scheduled_job nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_scheduled_job ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_scheduled_job_nid_seq'::regclass); -- -- Name: pd_scheduled_job_prop nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_scheduled_job_prop ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_scheduled_job_prop_nid_seq'::regclass); -- -- Name: pd_seq_task_type nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_seq_task_type ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_seq_task_type_nid_seq'::regclass); -- -- Name: pd_source nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_source_nid_seq'::regclass); -- -- Name: pd_source_conn nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source_conn ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_source_conn_nid_seq'::regclass); -- -- Name: pd_source_hier nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source_hier ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_source_hier_nid_seq'::regclass); -- -- Name: pd_source_prop_bk nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source_prop_bk ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_source_prop_nid_seq'::regclass); -- -- Name: pd_source_tag nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source_tag ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_source_tag_nid_seq'::regclass); -- -- Name: pd_target nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_target ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_target_nid_seq'::regclass); -- -- Name: pd_target_prop nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_target_prop ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_target_prop_nid_seq'::regclass); -- -- Name: pd_user nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_user_nid_seq'::regclass); -- -- Name: pd_user_grid_column_pref nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_grid_column_pref ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_user_grid_column_pref_nid_seq'::regclass); -- -- Name: pd_user_grid_pref nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_grid_pref ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_user_grid_pref_nid_seq'::regclass); -- -- Name: pd_user_notification_setting nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_notification_setting ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_user_notification_setting_nid_seq'::regclass); -- -- Name: pd_vadd_rule nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_vadd_rule ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_vadd_rule_nid_seq'::regclass); -- -- Name: pd_workflow_execution_wo nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_execution_wo ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_workflow_execution_workorder_nid_seq'::regclass); -- -- Name: pd_workflow_graph nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_graph ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_sequencer_graph_nid_seq'::regclass); -- -- Name: pd_workflow_graph_gui_state nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_graph_gui_state ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_sequencer_graph_gui_state_nid_seq'::regclass); -- -- Name: pd_workflow_task nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_task ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_sequencer_task_nid_seq'::regclass); -- -- Name: pd_workflow_task_relation nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_task_relation ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_seq_task_relation_nid_seq'::regclass); -- -- Name: pd_workorder nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workorder ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_workorder_nid_seq'::regclass); -- -- Name: pd_workorder_prop nid; Type: DEFAULT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workorder_prop ALTER COLUMN nid SET DEFAULT nextval('podium_core.pd_workorder_prop_nid_seq'::regclass); -- -- Name: pd_report nid; Type: DEFAULT; Schema: podium_reporting; Owner: podium_md -- ALTER TABLE ONLY podium_reporting.pd_report ALTER COLUMN nid SET DEFAULT nextval('podium_reporting.pd_report_nid_seq'::regclass); -- -- Name: pd_report_query nid; Type: DEFAULT; Schema: podium_reporting; Owner: podium_md -- ALTER TABLE ONLY podium_reporting.pd_report_query ALTER COLUMN nid SET DEFAULT nextval('podium_reporting.pd_report_query_nid_seq'::regclass); -- -- Data for Name: existing_prop_desc; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.existing_prop_desc (prop_name, prop_desc) FROM stdin; workflow.pig.engine pig engine prepare.graph.loader graph loader prepare.graph.store graph store workflow.pig.script pig script workflow.pig.plan workflow pig plan \. -- -- Data for Name: pd_3_0_install_date; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_3_0_install_date (install_date, created_ttz, modified_ttz, version, nid, createdby, modifiedby) FROM stdin; 2020-11-13 17:33:34.449466+00 2020-11-13 17:33:34.449466+00 2020-11-13 17:33:34.449466+00 0 0 ANON ANON \. -- -- Data for Name: pd_acl_sync_log_details; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_acl_sync_log_details (nid, delivery_time, start_time, end_time, policy_name, policy_type, source_name, entity_name, entity_nid, resource_name, permissions, workorder_status, log, base_log_nid, actor_name, target_owner, target_system, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby, status_log, record_count) FROM stdin; \. -- -- Data for Name: pd_acl_synchronization_logs; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_acl_synchronization_logs (nid, start_time, end_time, workorder_status, sync_type, actor_name, schedule_id, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby, status_log, delivery_time, record_count) FROM stdin; \. -- -- Data for Name: pd_active_directory_logs; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_active_directory_logs (nid, connection_nid, delivery_time, start_time, end_time, record_count, workorder_status, status_log, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, actor_name, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_ad_connection_info; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_ad_connection_info (nid, alias, group_query, user_query, base_dn, hostname, port, bind_dn, password, is_ssl, is_default, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_ad_log_details; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_ad_log_details (nid, base_log_nid, object_name, object_type, operation_type, log, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, actor_name, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_audit_log; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_audit_log (nid, obj_nid, obj_parent_nid, obj_sname, obj_parent_sname, user_sname, operation_type, info_message, object_type, user_ip, user_browser_info, created_ttz, modified_ttz, version, modifiedby, createdby, severity) FROM stdin; 1 2 -1 classic-models NOT_APPLICABLE podium ADD Added source with Id: 2, Name: classic-models. SOURCE 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 09:59:24.859+00 2021-01-26 09:59:24.859+00 0 podium podium INFO 2 1 2 offices classic-models podium ADD Added entity with Id: 1, Name: offices. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 09:59:24.885+00 2021-01-26 09:59:24.885+00 0 podium podium INFO 3 2 2 products classic-models podium ADD Added entity with Id: 2, Name: products. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 09:59:24.887+00 2021-01-26 09:59:24.887+00 0 podium podium INFO 4 3 2 employees classic-models podium ADD Added entity with Id: 3, Name: employees. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 09:59:24.888+00 2021-01-26 09:59:24.888+00 0 podium podium INFO 5 4 2 productlines classic-models podium ADD Added entity with Id: 4, Name: productlines. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 09:59:24.889+00 2021-01-26 09:59:24.889+00 0 podium podium INFO 6 5 2 salesorders classic-models podium ADD Added entity with Id: 5, Name: salesorders. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 09:59:24.891+00 2021-01-26 09:59:24.891+00 0 podium podium INFO 7 6 2 payments classic-models podium ADD Added entity with Id: 6, Name: payments. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 09:59:24.892+00 2021-01-26 09:59:24.892+00 0 podium podium INFO 8 7 2 customers classic-models podium ADD Added entity with Id: 7, Name: customers. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 09:59:24.893+00 2021-01-26 09:59:24.893+00 0 podium podium INFO 9 4 -1 classic-models-errors NOT_APPLICABLE podium ADD Added source with Id: 4, Name: classic-models-errors. SOURCE 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:03:16.41+00 2021-01-26 10:03:16.41+00 0 podium podium INFO 10 15 4 salesorders classic-models-errors podium ADD Added entity with Id: 15, Name: salesorders. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:03:16.411+00 2021-01-26 10:03:16.411+00 0 podium podium INFO 11 16 4 products classic-models-errors podium ADD Added entity with Id: 16, Name: products. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:03:16.412+00 2021-01-26 10:03:16.412+00 0 podium podium INFO 12 17 4 offices classic-models-errors podium ADD Added entity with Id: 17, Name: offices. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:03:16.413+00 2021-01-26 10:03:16.413+00 0 podium podium INFO 13 18 4 payments classic-models-errors podium ADD Added entity with Id: 18, Name: payments. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:03:16.414+00 2021-01-26 10:03:16.414+00 0 podium podium INFO 14 19 4 employees classic-models-errors podium ADD Added entity with Id: 19, Name: employees. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:03:16.415+00 2021-01-26 10:03:16.415+00 0 podium podium INFO 15 20 4 productlines classic-models-errors podium ADD Added entity with Id: 20, Name: productlines. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:03:16.416+00 2021-01-26 10:03:16.416+00 0 podium podium INFO 16 21 4 customers classic-models-errors podium ADD Added entity with Id: 21, Name: customers. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:03:16.417+00 2021-01-26 10:03:16.417+00 0 podium podium INFO 17 6 -1 sales NOT_APPLICABLE podium ADD Added source with Id: 6, Name: sales. SOURCE 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:04:33.754+00 2021-01-26 10:04:33.754+00 0 podium podium INFO 18 29 6 orders sales podium ADD Added entity with Id: 29, Name: orders. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:04:33.755+00 2021-01-26 10:04:33.755+00 0 podium podium INFO 19 30 6 employees sales podium ADD Added entity with Id: 30, Name: employees. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:04:33.756+00 2021-01-26 10:04:33.756+00 0 podium podium INFO 20 31 6 order_details sales podium ADD Added entity with Id: 31, Name: order_details. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:04:33.757+00 2021-01-26 10:04:33.757+00 0 podium podium INFO 21 32 6 shippers sales podium ADD Added entity with Id: 32, Name: shippers. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:04:33.758+00 2021-01-26 10:04:33.758+00 0 podium podium INFO 22 33 6 products sales podium ADD Added entity with Id: 33, Name: products. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:04:33.76+00 2021-01-26 10:04:33.76+00 0 podium podium INFO 23 34 6 categories sales podium ADD Added entity with Id: 34, Name: categories. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:04:33.761+00 2021-01-26 10:04:33.761+00 0 podium podium INFO 24 35 6 customers sales podium ADD Added entity with Id: 35, Name: customers. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:04:33.762+00 2021-01-26 10:04:33.762+00 0 podium podium INFO 25 36 6 suppliers sales podium ADD Added entity with Id: 36, Name: suppliers. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:04:33.763+00 2021-01-26 10:04:33.763+00 0 podium podium INFO 26 8 -1 sales-errors NOT_APPLICABLE podium ADD Added source with Id: 8, Name: sales-errors. SOURCE 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:05:00.208+00 2021-01-26 10:05:00.208+00 0 podium podium INFO 27 45 8 shippers sales-errors podium ADD Added entity with Id: 45, Name: shippers. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:05:00.209+00 2021-01-26 10:05:00.209+00 0 podium podium INFO 28 46 8 categories sales-errors podium ADD Added entity with Id: 46, Name: categories. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:05:00.21+00 2021-01-26 10:05:00.21+00 0 podium podium INFO 29 47 8 order_details sales-errors podium ADD Added entity with Id: 47, Name: order_details. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:05:00.211+00 2021-01-26 10:05:00.211+00 0 podium podium INFO 30 48 8 products sales-errors podium ADD Added entity with Id: 48, Name: products. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:05:00.211+00 2021-01-26 10:05:00.211+00 0 podium podium INFO 31 49 8 orders sales-errors podium ADD Added entity with Id: 49, Name: orders. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:05:00.212+00 2021-01-26 10:05:00.212+00 0 podium podium INFO 32 50 8 customers sales-errors podium ADD Added entity with Id: 50, Name: customers. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:05:00.213+00 2021-01-26 10:05:00.213+00 0 podium podium INFO 33 51 8 employees sales-errors podium ADD Added entity with Id: 51, Name: employees. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:05:00.213+00 2021-01-26 10:05:00.213+00 0 podium podium INFO 34 52 8 suppliers sales-errors podium ADD Added entity with Id: 52, Name: suppliers. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:05:00.214+00 2021-01-26 10:05:00.214+00 0 podium podium INFO 35 7 -1 classic_models.salesorders.20210125230000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.salesorders.20210125230000 in 13 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:15:53.518+00 2021-01-26 10:15:53.518+00 0 ANONYMOUS ANONYMOUS INFO 36 1 -1 classic_models.products.20210125230000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.products.20210125230000 in 14 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:15:53.604+00 2021-01-26 10:15:53.604+00 0 ANONYMOUS ANONYMOUS INFO 37 4 -1 classic_models.customers.20210125230000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.customers.20210125230000 in 13 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:15:53.644+00 2021-01-26 10:15:53.644+00 0 ANONYMOUS ANONYMOUS INFO 38 5 -1 classic_models.offices.20210125230000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.offices.20210125230000 in 13 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:15:53.681+00 2021-01-26 10:15:53.681+00 0 ANONYMOUS ANONYMOUS INFO 39 2 -1 classic_models.employees.20210125230000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.employees.20210125230000 in 14 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:15:53.69+00 2021-01-26 10:15:53.69+00 0 ANONYMOUS ANONYMOUS INFO 40 3 -1 classic_models.productlines.20210125230000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.productlines.20210125230000 in 13 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:15:53.709+00 2021-01-26 10:15:53.709+00 0 ANONYMOUS ANONYMOUS INFO 41 6 -1 classic_models.payments.20210125230000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.payments.20210125230000 in 13 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:15:53.734+00 2021-01-26 10:15:53.734+00 0 ANONYMOUS ANONYMOUS INFO 42 8 -1 classic_models.customers.20210125230000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.customers.20210125230000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:17:12.951+00 2021-01-26 10:17:12.951+00 0 ANONYMOUS ANONYMOUS INFO 43 9 -1 classic_models.customers.20210125230000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.customers.20210125230000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:19:47.369+00 2021-01-26 10:19:47.369+00 0 ANONYMOUS ANONYMOUS INFO 44 2 -1 classic-models NOT_APPLICABLE podium DELETE Deleted source. SOURCE 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:20:28.521+00 2021-01-26 10:20:28.521+00 0 podium podium INFO 45 10 -1 classic_models_errors.products.20210126000000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models_errors.products.20210126000000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:20:47.915+00 2021-01-26 10:20:47.915+00 0 ANONYMOUS ANONYMOUS INFO 46 11 -1 classic_models_errors.products.20210126000000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models_errors.products.20210126000000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:21:39.542+00 2021-01-26 10:21:39.542+00 0 ANONYMOUS ANONYMOUS INFO 47 12 -1 classic_models_errors.employees.20210126000000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models_errors.employees.20210126000000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:23:35.194+00 2021-01-26 10:23:35.194+00 0 ANONYMOUS ANONYMOUS INFO 48 -1 -1 NOT_APPLICABLE NOT_APPLICABLE ANONYMOUS DELETE Executed hive commands to delete external tables: CALL "qlik_schema"."qdc_delete_podium_source"('classic_models') HIVE ANONYMOUS ANONYMOUS 2021-01-26 10:25:01.25+00 2021-01-26 10:25:01.25+00 0 ANONYMOUS ANONYMOUS INFO 49 13 -1 classic_models_errors.productlines.20210126000000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models_errors.productlines.20210126000000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:25:01.77+00 2021-01-26 10:25:01.77+00 0 ANONYMOUS ANONYMOUS INFO 50 14 -1 classic_models_errors.customers.20210126000000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models_errors.customers.20210126000000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:26:58.697+00 2021-01-26 10:26:58.697+00 0 ANONYMOUS ANONYMOUS INFO 51 15 -1 classic_models_errors.offices.20210126000000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models_errors.offices.20210126000000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:27:55.583+00 2021-01-26 10:27:55.583+00 0 ANONYMOUS ANONYMOUS INFO 52 16 -1 classic_models_errors.payments.20210126000000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models_errors.payments.20210126000000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:29:02.389+00 2021-01-26 10:29:02.389+00 0 ANONYMOUS ANONYMOUS INFO 53 17 -1 classic_models_errors.customers.20210126000000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models_errors.customers.20210126000000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:29:59.086+00 2021-01-26 10:29:59.086+00 0 ANONYMOUS ANONYMOUS INFO 54 18 -1 classic_models_errors.salesorders.20210126000000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models_errors.salesorders.20210126000000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:31:06.116+00 2021-01-26 10:31:06.116+00 0 ANONYMOUS ANONYMOUS INFO 55 10 -1 classic-models NOT_APPLICABLE podium ADD Added source with Id: 10, Name: classic-models. SOURCE 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:32:11.351+00 2021-01-26 10:32:11.351+00 0 podium podium INFO 56 61 10 payments classic-models podium ADD Added entity with Id: 61, Name: payments. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:32:11.352+00 2021-01-26 10:32:11.352+00 0 podium podium INFO 57 62 10 employees classic-models podium ADD Added entity with Id: 62, Name: employees. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:32:11.352+00 2021-01-26 10:32:11.352+00 0 podium podium INFO 58 63 10 offices classic-models podium ADD Added entity with Id: 63, Name: offices. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:32:11.353+00 2021-01-26 10:32:11.353+00 0 podium podium INFO 59 64 10 customers classic-models podium ADD Added entity with Id: 64, Name: customers. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:32:11.354+00 2021-01-26 10:32:11.354+00 0 podium podium INFO 60 65 10 salesorders classic-models podium ADD Added entity with Id: 65, Name: salesorders. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:32:11.354+00 2021-01-26 10:32:11.354+00 0 podium podium INFO 61 66 10 products classic-models podium ADD Added entity with Id: 66, Name: products. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:32:11.355+00 2021-01-26 10:32:11.355+00 0 podium podium INFO 62 67 10 productlines classic-models podium ADD Added entity with Id: 67, Name: productlines. ENTITY 10.65.1.89 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-26 10:32:11.355+00 2021-01-26 10:32:11.355+00 0 podium podium INFO 63 19 -1 classic_models.productlines.20210126010000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.productlines.20210126010000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:32:21.482+00 2021-01-26 10:32:21.482+00 0 ANONYMOUS ANONYMOUS INFO 64 20 -1 classic_models.salesorders.20210126010000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.salesorders.20210126010000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:32:48.284+00 2021-01-26 10:32:48.284+00 0 ANONYMOUS ANONYMOUS INFO 65 21 -1 classic_models.products.20210126010000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.products.20210126010000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:33:36.85+00 2021-01-26 10:33:36.85+00 0 ANONYMOUS ANONYMOUS INFO 66 22 -1 classic_models.offices.20210126010000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.offices.20210126010000 in 4 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:33:37.146+00 2021-01-26 10:33:37.146+00 0 ANONYMOUS ANONYMOUS INFO 67 23 -1 classic_models.employees.20210126010000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.employees.20210126010000 in 4 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:33:37.357+00 2021-01-26 10:33:37.357+00 0 ANONYMOUS ANONYMOUS INFO 68 24 -1 classic_models.payments.20210126010000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.payments.20210126010000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:33:37.429+00 2021-01-26 10:33:37.429+00 0 ANONYMOUS ANONYMOUS INFO 69 25 -1 classic_models.products.20210126010000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.products.20210126010000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:34:37.122+00 2021-01-26 10:34:37.122+00 0 ANONYMOUS ANONYMOUS INFO 70 26 -1 classic_models.customers.20210126010000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.customers.20210126010000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:35:41.435+00 2021-01-26 10:35:41.435+00 0 ANONYMOUS ANONYMOUS INFO 71 27 -1 classic_models.customers.20210126010000 NOT_APPLICABLE ANONYMOUS ADD Loaded data with id classic_models.customers.20210126010000 in 3 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:38:18.995+00 2021-01-26 10:38:18.995+00 0 ANONYMOUS ANONYMOUS INFO 72 1 -1 classicmodels_products_full NOT_APPLICABLE ANONYMOUS ADD Executed prepare with id classicmodels_products_full.LOCAL.20210125230000 in 14 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-26 10:42:43.485+00 2021-01-26 10:42:43.485+00 0 ANONYMOUS ANONYMOUS INFO 73 2 -1 salesorders_full NOT_APPLICABLE ANONYMOUS ADD Executed prepare with id salesorders_full.LOCAL.20210127090000 in 28 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-27 10:16:33.203+00 2021-01-27 10:16:33.203+00 0 ANONYMOUS ANONYMOUS INFO 74 3 -1 classicmodels_salesorders_full NOT_APPLICABLE ANONYMOUS ADD Executed prepare with id classicmodels_salesorders_full.LOCAL.20210127102045 in 28 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-27 10:21:44.14+00 2021-01-27 10:21:44.14+00 0 ANONYMOUS ANONYMOUS INFO 75 76 11 salesorders_full classic_models podium DELETE Deleted entity: ENTITY 10.77.3.184 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-27 10:38:50.294+00 2021-01-27 10:38:50.294+00 0 podium podium INFO 76 -1 -1 NOT_APPLICABLE NOT_APPLICABLE ANONYMOUS DELETE Executed hive commands to delete external tables: DROP TABLE IF EXISTS "classic_models"."salesorders_full_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."salesorders_full_history_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."salesorders_full_str_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."salesorders_full_history_str_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."salesorders_full_ugly_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."salesorders_full_ugly_history_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."salesorders_full_ugly_str_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."salesorders_full_ugly_history_str_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."salesorders_full_bad_str_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."salesorders_full_sample_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."salesorders_full_profile_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."salesorders_full_log_parent" CASCADE HIVE ANONYMOUS ANONYMOUS 2021-01-27 10:40:01.197+00 2021-01-27 10:40:01.197+00 0 ANONYMOUS ANONYMOUS INFO 77 4 -1 classicmodels_salesorders_full NOT_APPLICABLE ANONYMOUS ADD Executed prepare with id classicmodels_salesorders_full.LOCAL.20210127104645 in 28 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-27 10:47:39.839+00 2021-01-27 10:47:39.839+00 0 ANONYMOUS ANONYMOUS INFO 78 78 11 classicmodels_salesorders_full_mask_salesorders_full classic_models podium DELETE Deleted entity: ENTITY 10.77.3.184 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50 2021-01-27 11:01:27.792+00 2021-01-27 11:01:27.792+00 0 podium podium INFO 79 -1 -1 NOT_APPLICABLE NOT_APPLICABLE ANONYMOUS DELETE Executed hive commands to delete external tables: DROP TABLE IF EXISTS "classic_models"."classicmodels_salesorders_full_mask_salesorders_full_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."classicmodels_salesorders_full_mask_salesorders_full_history_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."classicmodels_salesorders_full_mask_salesorders_full_str_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."classicmodels_salesorders_full_mask_salesorders_full_history_str_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."classicmodels_salesorders_full_mask_salesorders_full_ugly_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."classicmodels_salesorders_full_mask_salesorders_full_ugly_history_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."classicmodels_salesorders_full_mask_salesorders_full_ugly_str_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."classicmodels_salesorders_full_mask_salesorders_full_ugly_history_str_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."classicmodels_salesorders_full_mask_salesorders_full_bad_str_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."classicmodels_salesorders_full_mask_salesorders_full_sample_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."classicmodels_salesorders_full_mask_salesorders_full_profile_parent" CASCADEDROP TABLE IF EXISTS "classic_models"."classicmodels_salesorders_full_mask_salesorders_full_log_parent" CASCADE HIVE ANONYMOUS ANONYMOUS 2021-01-27 11:05:01.059+00 2021-01-27 11:05:01.059+00 0 ANONYMOUS ANONYMOUS INFO 80 5 -1 classicmodels_salesorders_full_mask NOT_APPLICABLE ANONYMOUS ADD Executed prepare with id classicmodels_salesorders_full_mask.LOCAL.20210127110000 in 28 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-27 11:09:03.503+00 2021-01-27 11:09:03.503+00 0 ANONYMOUS ANONYMOUS INFO 81 6 -1 classicmodels_salesorders_full_mask NOT_APPLICABLE ANONYMOUS ADD Executed prepare with id classicmodels_salesorders_full_mask.LOCAL.20210127111153 in 28 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-27 11:12:47.616+00 2021-01-27 11:12:47.616+00 0 ANONYMOUS ANONYMOUS INFO 82 7 -1 classicmodels_salesorders_full_mask NOT_APPLICABLE ANONYMOUS ADD Executed prepare with id classicmodels_salesorders_full_mask.LOCAL.20210127111425 in 28 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-27 11:15:25.1+00 2021-01-27 11:15:25.1+00 0 ANONYMOUS ANONYMOUS INFO 83 8 -1 classicmodels_salesorders_full_mask NOT_APPLICABLE ANONYMOUS ADD Executed prepare with id classicmodels_salesorders_full_mask.LOCAL.20210127111737 in 28 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-27 11:18:36.945+00 2021-01-27 11:18:36.945+00 0 ANONYMOUS ANONYMOUS INFO 84 9 -1 classicmodels_errors_employees_ugly NOT_APPLICABLE ANONYMOUS ADD Executed prepare with id classicmodels_errors_employees_ugly.LOCAL.20210127130000 in 14 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-27 13:19:52.58+00 2021-01-27 13:19:52.58+00 0 ANONYMOUS ANONYMOUS INFO 85 10 -1 classicmodels_salesorders_aggregated NOT_APPLICABLE ANONYMOUS ADD Executed prepare with id classicmodels_salesorders_aggregated.LOCAL.20210127130000 in 14 seconds with result FINISHED. WORKORDER ANONYMOUS ANONYMOUS 2021-01-27 13:29:14.338+00 2021-01-27 13:29:14.338+00 0 ANONYMOUS ANONYMOUS INFO \. -- -- Data for Name: pd_bundle; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_bundle (nid, description, bundle_gui_state_nid, sname) FROM stdin; 3000 Classicmodels products table & product lines 1 classicmodels_products_full 3006 Classicmodels sales order table & products & customers & employees (not masked) 2 classicmodels_salesorders_full 3019 Classicmodels sales order table & products & customers & employees (masked) 3 classicmodels_salesorders_full_mask 3032 Ugly records from Employees table, with explanatory comment 4 classicmodels_errors_employees_ugly 3036 Classicmodels total sales by Customer and Product Scale 5 classicmodels_salesorders_aggregated \. -- -- Data for Name: pd_bundle_gui_state; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_bundle_gui_state (nid, gui_state, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 1 \n\n \n \n \n \n con_17\n entity_72_2\n entity_72_2RightMiddle\n container_join_1\n container_join_1LeftMiddle\n 2\n \n \n con_18\n entity_73_1\n entity_73_1RightMiddle\n container_join_1\n container_join_1LeftMiddle\n 2\n \n \n con_19\n container_join_1\n container_join_1RightMiddle\n container_1\n container_1LeftMiddle\n 2\n \n \n con_20\n container_1\n container_1RightMiddle\n entity_store_3\n entity_store_3LeftMiddle\n 2\n \n \n \n \n \n \n \n container_join_1\n 1\n 1\n 3\n container_join_1_detail_entity_73_1\n \n \n entity_72_2\n true\n \n \n entity_72_2\n true\n \n \n entity_72_2\n true\n \n \n entity_72_2\n true\n \n \n entity_72_2\n true\n \n \n entity_72_2\n true\n \n \n entity_72_2\n true\n \n \n entity_72_2\n true\n \n \n entity_72_2\n true\n \n \n entity_73_1\n false\n \n \n entity_73_1\n true\n \n \n entity_73_1\n true\n \n \n container_join_1_master_entity_72_2\n \n \n \n \n window source entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 234px\n false\n 26px\n entity_72_2\n 11\n 414px\n 0\n 180px\n \n \n window source entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 142px\n false\n 99px\n entity_73_1\n 11\n 179px\n 0\n 180px\n \n \n window entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 142px\n false\n 719px\n entity_store_3\n 11\n 235px\n 0\n 180px\n \n \n 3\n \n \n transformOperationContainer transform-controls operation transformation_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 533px\n container_1\n 353px\n TRANSFORM\n 0\n 62px\n \n \n joinOperationContainer transform-controls operation join_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 364px\n container_join_1\n 389px\n JOIN\n 0\n 62px\n \n \n true\n \n \n \n \n \n container_1\n 1\n 2\n 2\n \n \n \n 2\n\n 2021-01-26 10:41:47.117+00 2021-01-27 08:25:24.031+00 1 podium podium 3 \n\n \n \n \n \n con_41\n entity_70_1\n entity_70_1RightMiddle\n container_join_1\n container_join_1LeftMiddle\n 2\n \n \n con_42\n entity_75_4\n entity_75_4RightMiddle\n container_join_1\n container_join_1LeftMiddle\n 2\n \n \n con_43\n container_join_1\n container_join_1RightMiddle\n container_1\n container_1LeftMiddle\n 2\n \n \n con_44\n container_1\n container_1RightMiddle\n container_join_2\n container_join_2LeftMiddle\n 2\n \n \n con_45\n entity_69_3\n entity_69_3RightMiddle\n container_join_2\n container_join_2LeftMiddle\n 2\n \n \n con_46\n container_join_2\n container_join_2RightMiddle\n container_2\n container_2LeftMiddle\n 2\n \n \n con_47\n container_2\n container_2RightMiddle\n container_join_3\n container_join_3LeftMiddle\n 2\n \n \n con_48\n entity_71_2\n entity_71_2RightMiddle\n container_join_3\n container_join_3LeftMiddle\n 2\n \n \n con_49\n container_join_3\n container_join_3RightMiddle\n container_3\n container_3LeftMiddle\n 2\n \n \n con_50\n container_3\n container_3RightMiddle\n entity_store_5\n entity_store_5LeftMiddle\n 2\n \n \n \n \n \n \n \n container_join_1\n 1\n 1\n 3\n container_join_1_detail_entity_75_4\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_75_4\n false\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n container_join_1_master_entity_70_1\n \n \n \n container_join_2\n 2\n 3\n 3\n container_join_2_detail_entity_69_3\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n entity_69_3\n false\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n container_join_2_master_container_1\n \n \n \n container_join_3\n 3\n 5\n 3\n container_join_3_detail_entity_71_2\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n entity_71_2\n false\n \n \n entity_71_2\n true\n \n \n entity_71_2\n true\n \n \n entity_71_2\n true\n \n \n entity_71_2\n true\n \n \n entity_71_2\n true\n \n \n entity_71_2\n true\n \n \n entity_71_2\n true\n \n \n container_join_3_master_container_2\n \n \n \n \n window source entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 242px\n false\n 352px\n entity_69_3\n 11\n 147px\n 0\n 180px\n \n \n window source entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 242px\n false\n 10px\n entity_70_1\n 11\n 414px\n 0\n 180px\n \n \n window source entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 216px\n false\n 670px\n entity_71_2\n 11\n 158px\n 0\n 180px\n \n \n window source entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 242px\n false\n 91px\n entity_75_4\n 11\n 133px\n 0\n 180px\n \n \n window entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 142px\n false\n 1247px\n entity_store_5\n 11\n 209px\n 0\n 180px\n \n \n 5\n \n \n transformOperationContainer transform-controls operation transformation_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 494px\n container_1\n 451px\n TRANSFORM\n 0\n 62px\n \n \n transformOperationContainer transform-controls operation transformation_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 742px\n container_2\n 552px\n TRANSFORM\n 0\n 62px\n \n \n transformOperationContainer transform-controls operation transformation_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 1027px\n container_3\n 430px\n TRANSFORM\n 0\n 62px\n \n \n joinOperationContainer transform-controls operation join_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 358px\n container_join_1\n 468px\n JOIN\n 0\n 62px\n \n \n joinOperationContainer transform-controls operation join_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 637px\n container_join_2\n 407px\n JOIN\n 0\n 62px\n \n \n joinOperationContainer transform-controls operation join_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 917px\n container_join_3\n 472px\n JOIN\n 0\n 62px\n \n \n true\n \n \n \n \n \n container_1\n 1\n 2\n 2\n \n \n \n container_2\n 2\n 4\n 2\n \n \n \n container_3\n 3\n 6\n 2\n \n \n \n 2\n\n 2021-01-27 11:00:14.032+00 2021-01-27 11:17:30.915+00 4 podium podium 4 \n\n \n \n \n \n con_11\n entity_22_1\n entity_22_1RightMiddle\n container_1\n container_1LeftMiddle\n 2\n \n \n con_17\n container_1\n container_1RightMiddle\n entity_store_2\n entity_store_2LeftMiddle\n 2\n \n \n \n \n \n \n \n window source entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 216px\n false\n 12px\n entity_22_1\n 5\n 169px\n 0\n 180px\n \n \n window entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 142px\n false\n 615px\n entity_store_2\n 5\n 220px\n 0\n 180px\n \n \n 2\n \n \n transformOperationContainer transform-controls operation transformation_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 345px\n container_1\n 354px\n TRANSFORM\n 0\n 62px\n \n \n true\n \n \n \n \n \n container_1\n 1\n 1\n 2\n \n \n \n 2\n\n 2021-01-27 13:19:01.494+00 2021-01-27 13:19:01.494+00 0 podium podium 2 \n\n \n \n \n \n con_39\n entity_70_1\n entity_70_1RightMiddle\n container_join_1\n container_join_1LeftMiddle\n 2\n \n \n con_40\n entity_75_4\n entity_75_4RightMiddle\n container_join_1\n container_join_1LeftMiddle\n 2\n \n \n con_41\n container_join_1\n container_join_1RightMiddle\n container_1\n container_1LeftMiddle\n 2\n \n \n con_42\n container_1\n container_1RightMiddle\n container_join_2\n container_join_2LeftMiddle\n 2\n \n \n con_43\n entity_69_3\n entity_69_3RightMiddle\n container_join_2\n container_join_2LeftMiddle\n 2\n \n \n con_44\n container_join_2\n container_join_2RightMiddle\n container_2\n container_2LeftMiddle\n 2\n \n \n con_45\n container_2\n container_2RightMiddle\n container_join_3\n container_join_3LeftMiddle\n 2\n \n \n con_46\n entity_71_2\n entity_71_2RightMiddle\n container_join_3\n container_join_3LeftMiddle\n 2\n \n \n con_47\n container_join_3\n container_join_3RightMiddle\n container_3\n container_3LeftMiddle\n 2\n \n \n con_53\n container_3\n container_3RightMiddle\n entity_store_5\n entity_store_5LeftMiddle\n 2\n \n \n \n \n \n \n \n container_join_1\n 1\n 1\n 3\n container_join_1_detail_entity_75_4\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_70_1\n true\n \n \n entity_75_4\n false\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n entity_75_4\n true\n \n \n container_join_1_master_entity_70_1\n \n \n \n container_join_2\n 2\n 3\n 3\n container_join_2_detail_entity_69_3\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n container_1\n true\n \n \n entity_69_3\n false\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n entity_69_3\n true\n \n \n container_join_2_master_container_1\n \n \n \n container_join_3\n 3\n 5\n 3\n container_join_3_detail_entity_71_2\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n container_2\n true\n \n \n entity_71_2\n false\n \n \n entity_71_2\n true\n \n \n entity_71_2\n true\n \n \n entity_71_2\n true\n \n \n entity_71_2\n true\n \n \n entity_71_2\n true\n \n \n entity_71_2\n true\n \n \n entity_71_2\n true\n \n \n container_join_3_master_container_2\n \n \n \n \n window source entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 242px\n false\n 352px\n entity_69_3\n 11\n 147px\n 0\n 180px\n \n \n window source entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 242px\n false\n 10px\n entity_70_1\n 11\n 414px\n 0\n 180px\n \n \n window source entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 216px\n false\n 670px\n entity_71_2\n 11\n 158px\n 0\n 180px\n \n \n window source entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 242px\n false\n 91px\n entity_75_4\n 11\n 133px\n 0\n 180px\n \n \n window entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 142px\n false\n 1180px\n entity_store_5\n 11\n 245px\n 0\n 180px\n \n \n 5\n \n \n transformOperationContainer transform-controls operation transformation_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 494px\n container_1\n 451px\n TRANSFORM\n 0\n 62px\n \n \n transformOperationContainer transform-controls operation transformation_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 742px\n container_2\n 552px\n TRANSFORM\n 0\n 62px\n \n \n transformOperationContainer transform-controls operation transformation_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 1024px\n container_3\n 430px\n TRANSFORM\n 0\n 62px\n \n \n joinOperationContainer transform-controls operation join_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 358px\n container_join_1\n 468px\n JOIN\n 0\n 62px\n \n \n joinOperationContainer transform-controls operation join_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 637px\n container_join_2\n 407px\n JOIN\n 0\n 62px\n \n \n joinOperationContainer transform-controls operation join_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 917px\n container_join_3\n 472px\n JOIN\n 0\n 62px\n \n \n true\n \n \n \n \n \n container_1\n 1\n 2\n 2\n \n \n \n container_2\n 2\n 4\n 2\n \n \n \n container_3\n 3\n 6\n 2\n \n \n \n 2\n\n 2021-01-27 08:21:27.736+00 2021-01-27 10:46:26.95+00 5 podium podium 5 \n\n \n \n \n container_aggregation_2\n 2\n 1\n 2\n \n \n orderTotal\n SUM\n \n \n \n INTEGER\n 0\n orderNumber\n \n \n STRING\n 1\n orderDate\n \n \n STRING\n 2\n requiredDate\n \n \n STRING\n 3\n shippedDate\n \n \n STRING\n 4\n status\n \n \n INTEGER\n 5\n customerNumber\n \n \n INTEGER\n 6\n orderLineNumber\n \n \n DOUBLE\n 7\n priceEach\n \n \n INTEGER\n 8\n quantityOrdered\n \n \n STRING\n 9\n productCode\n \n \n STRING\n 10\n productName\n \n \n STRING\n 11\n productScale\n \n \n STRING\n 12\n productVendor\n \n \n STRING\n 13\n productDescription\n \n \n INTEGER\n 14\n quantityInStock\n \n \n DOUBLE\n 15\n buyPrice\n \n \n DOUBLE\n 16\n MSRP\n \n \n STRING\n 17\n productLine\n \n \n STRING\n 18\n textDescription\n \n \n STRING\n 19\n customerName\n \n \n STRING\n 20\n contactLastName\n \n \n STRING\n 21\n contactFirstName\n \n \n STRING\n 22\n phone\n \n \n STRING\n 23\n addressLine1\n \n \n STRING\n 24\n addressLine2\n \n \n STRING\n 25\n city\n \n \n STRING\n 26\n state\n \n \n STRING\n 27\n postalCode\n \n \n STRING\n 28\n country\n \n \n INTEGER\n 29\n salesRepEmployeeNumber\n \n \n DOUBLE\n 30\n creditLimit\n \n \n STRING\n 31\n customerLocation\n \n \n STRING\n 32\n lastName\n \n \n STRING\n 33\n firstName\n \n \n STRING\n 34\n extension\n \n \n STRING\n 35\n email\n \n \n INTEGER\n 36\n reportsTo\n \n \n STRING\n 37\n jobTitle\n \n \n STRING\n 38\n officeCode\n \n \n DECIMAL\n 39\n orderTotal\n \n \n \n \n \n \n con_292\n entity_77_3\n entity_77_3RightMiddle\n container_aggregation_2\n container_aggregation_2LeftMiddle\n 2\n \n \n con_301\n container_aggregation_2\n container_aggregation_2RightMiddle\n container_2\n container_2LeftMiddle\n 2\n \n \n con_307\n container_2\n container_2RightMiddle\n entity_store_2\n entity_store_2LeftMiddle\n 2\n \n \n \n \n \n \n \n window source entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 242px\n false\n 70px\n entity_77_3\n 11\n 236px\n 0\n 180px\n \n \n window entity-grid ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n podium_load_date\n true\n 160px\n false\n 668px\n entity_store_2\n 11\n 205px\n 0\n 180px\n \n \n 2\n \n \n transformOperationContainer transform-controls operation transformation_opr ng-scope jtk-endpoint-anchor jtk-draggable jtk-connected\n 86px\n 489px\n container_2\n 316px\n TRANSFORM\n 0\n 62px\n \n \n aggregationOperationContainer qdc-aggreg-transform-controls transform-controls operation aggregation_opr ng-scope jtk-draggable jtk-endpoint-anchor jtk-connected\n 86px\n 367px\n container_aggregation_2\n 262px\n AGGREGATE\n 0\n 62px\n \n \n true\n \n \n \n \n \n container_2\n 2\n 2\n 2\n \n \n \n 2\n\n 2021-01-27 13:28:22.514+00 2021-01-27 13:28:22.514+00 0 podium podium \. -- -- Data for Name: pd_cluster; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_cluster (nid, sname, createdby, created_ttz, modifiedby, modified_ttz, version, is_default) FROM stdin; 1 Default SYSTEM 2020-11-13 17:33:39.911581+00 SYSTEM 2020-11-13 17:33:39.911581+00 0 t \. -- -- Data for Name: pd_connection_group; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_connection_group (nid, connection_nid, group_nid, createdby, modifiedby, created_ttz, modified_ttz, version) FROM stdin; 1 5 1 ANONYMOUS ANONYMOUS 2020-11-13 17:34:10.548+00 2020-11-13 17:34:10.548+00 0 2 7 1 ANONYMOUS ANONYMOUS 2020-11-13 17:34:10.553+00 2020-11-13 17:34:10.553+00 0 3 6 1 ANONYMOUS ANONYMOUS 2020-11-13 17:34:10.555+00 2020-11-13 17:34:10.555+00 0 4 3 1 ANONYMOUS ANONYMOUS 2020-11-13 17:34:10.558+00 2020-11-13 17:34:10.558+00 0 5 4 1 ANONYMOUS ANONYMOUS 2020-11-13 17:34:10.56+00 2020-11-13 17:34:10.56+00 0 6 8 1 podium podium 2021-01-26 09:51:44.639+00 2021-01-26 09:51:44.639+00 0 7 9 1 podium podium 2021-01-26 09:54:14.793+00 2021-01-26 09:54:14.793+00 0 8 10 1 podium podium 2021-01-26 09:54:48.878+00 2021-01-26 09:54:48.878+00 0 9 11 1 podium podium 2021-01-26 09:55:23.225+00 2021-01-26 09:55:23.225+00 0 \. -- -- Data for Name: pd_data_export_workorder; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_data_export_workorder (nid, entity_nid, source_nid, data_export_info_nid, delivery_time, start_time, end_time, order_size, record_count, workorder_status, delivery_id, status_log, detailed_status_log, created_ttz, modified_ttz, version, actor_name, modifiedby, createdby, publish_nid, partition_name) FROM stdin; \. -- -- Data for Name: pd_data_export_workorder_prop; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_data_export_workorder_prop (nid, workorder_nid, prop_name, prop_value, created_user_nid, createdby, created_ttz, modified_user_nid, modifiedby, modified_ttz, version) FROM stdin; \. -- -- Data for Name: pd_data_meter; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_data_meter (nid, sname, entity_name, source_name, depot_type, data_size, run_ttz, load_ttz, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_data_migration_wo_prop; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_data_migration_wo_prop (nid, workorder_nid, prop_name, prop_value, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_data_migration_workorder; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_data_migration_workorder (nid, start_time, end_time, order_size, record_count, delivery_time, delivery_id, workorder_status, migration_type, status_log, detailed_status_log, created_ttz, modified_ttz, version, actor_name, modifiedby, createdby) FROM stdin; 1 2021-01-26 10:03:31.902+00 2021-01-26 10:03:32.606+00 -1 0 2021-01-26 10:03:31.902+00 \N FINISHED 0 2021-01-26 10:03:31.916: Started importing the business metadata.\n2021-01-26 10:03:31.916: Started reading the file and extracting business metadata from it.\n2021-01-26 10:03:32.599: Finished reading the file and extracting business metadata from it.\n2021-01-26 10:03:32.600: No business metadata found in the file. Either file is corrupt or contains no data.\n2021-01-26 10:03:32.606: Finished importing the business metadata.\n \N 2021-01-26 10:03:31.909+00 2021-01-26 10:03:32.607+00 3 \N podium podium 2 2021-01-26 10:04:03.211+00 2021-01-26 10:04:04.996+00 -1 0 2021-01-26 10:04:03.211+00 \N FINISHED 0 2021-01-26 10:04:03.215: Started importing the business metadata.\n2021-01-26 10:04:03.215: Started reading the file and extracting business metadata from it.\n2021-01-26 10:04:03.512: Finished reading the file and extracting business metadata from it.\n2021-01-26 10:04:03.512: Started processing business metadata extracted from the file.\n2021-01-26 10:04:03.520: Started updating business metadata for external source with name 'classic-models-errors'.\n2021-01-26 10:04:03.529: Started updating business metadata for source 'classic-models-errors'.\n2021-01-26 10:04:03.548: Finished updating business metadata for source 'classic-models-errors'.\n2021-01-26 10:04:03.642: Finished updating business metadata for entity 'salesorders'.\n2021-01-26 10:04:03.726: Finished updating business metadata for entity 'payments'.\n2021-01-26 10:04:03.803: Finished updating business metadata for entity 'offices'.\n2021-01-26 10:04:03.883: Finished updating business metadata for entity 'customers'.\n2021-01-26 10:04:03.964: Finished updating business metadata for entity 'productlines'.\n2021-01-26 10:04:04.043: Finished updating business metadata for entity 'employees'.\n2021-01-26 10:04:04.123: Finished updating business metadata for entity 'products'.\n2021-01-26 10:04:04.128: Started updating business metadata for field 'buyPrice' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.154: Finished updating business metadata for field 'buyPrice' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.160: Started updating business metadata for field 'MSRP' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.176: Finished updating business metadata for field 'MSRP' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.183: Started updating business metadata for field 'productLine' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.200: Finished updating business metadata for field 'productLine' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.204: Started updating business metadata for field 'productScale' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.221: Finished updating business metadata for field 'productScale' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.226: Started updating business metadata for field 'productCode' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.241: Finished updating business metadata for field 'productCode' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.248: Started updating business metadata for field 'quantityinStock' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.263: Finished updating business metadata for field 'quantityInStock' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.268: Started updating business metadata for field 'productDescription' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.282: Finished updating business metadata for field 'productDescription' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.287: Started updating business metadata for field 'productName' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.300: Finished updating business metadata for field 'productName' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.305: Started updating business metadata for field 'productVendor' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.320: Finished updating business metadata for field 'productVendor' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:04:04.324: Finished updating business metadata for external source with name 'classic-models-errors'.\n2021-01-26 10:04:04.329: Started updating business metadata for external source with name 'classic-models'.\n2021-01-26 10:04:04.336: Started updating business metadata for source 'classic-models'.\n2021-01-26 10:04:04.352: Finished updating business metadata for source 'classic-models'.\n2021-01-26 10:04:04.418: Finished updating business metadata for entity 'salesorders'.\n2021-01-26 10:04:04.493: Finished updating business metadata for entity 'payments'.\n2021-01-26 10:04:04.566: Finished updating business metadata for entity 'offices'.\n2021-01-26 10:04:04.633: Finished updating business metadata for entity 'customers'.\n2021-01-26 10:04:04.684: Finished updating business metadata for entity 'productlines'.\n2021-01-26 10:04:04.740: Finished updating business metadata for entity 'employees'.\n2021-01-26 10:04:04.805: Finished updating business metadata for entity 'products'.\n2021-01-26 10:04:04.811: Started updating business metadata for field 'buyPrice' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.826: Finished updating business metadata for field 'buyPrice' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.830: Started updating business metadata for field 'MSRP' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.843: Finished updating business metadata for field 'MSRP' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.847: Started updating business metadata for field 'productLine' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.861: Finished updating business metadata for field 'productLine' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.867: Started updating business metadata for field 'productScale' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.884: Finished updating business metadata for field 'productScale' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.889: Started updating business metadata for field 'productCode' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.904: Finished updating business metadata for field 'productCode' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.908: Started updating business metadata for field 'quantityinStock' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.924: Finished updating business metadata for field 'quantityInStock' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.931: Started updating business metadata for field 'productDescription' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.944: Finished updating business metadata for field 'productDescription' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.950: Started updating business metadata for field 'productName' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.964: Finished updating business metadata for field 'productName' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.970: Started updating business metadata for field 'productVendor' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.986: Finished updating business metadata for field 'productVendor' for entity [id:2, name:products, type:EXTERNAL] in source [id:2, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:04:04.991: Finished updating business metadata for external source with name 'classic-models'.\n2021-01-26 10:04:04.996: Finished processing business metadata extracted from the file.\n2021-01-26 10:04:04.996: Finished importing the business metadata.\n \N 2021-01-26 10:04:03.211+00 2021-01-26 10:04:04.997+00 61 \N podium podium 5 2021-01-26 10:44:00.162+00 2021-01-26 10:44:01.088+00 -1 0 2021-01-26 10:44:00.162+00 \N FINISHED 0 2021-01-26 10:44:00.168: Started importing the business metadata.\n2021-01-26 10:44:00.168: Started reading the file and extracting business metadata from it.\n2021-01-26 10:44:00.394: Finished reading the file and extracting business metadata from it.\n2021-01-26 10:44:00.394: Started processing business metadata extracted from the file.\n2021-01-26 10:44:00.402: Started updating business metadata for internal source with name 'classic-models-errors'.\n2021-01-26 10:44:00.413: Started updating business metadata for source 'classic_models_errors'.\n2021-01-26 10:44:00.430: Finished updating business metadata for source 'classic_models_errors'.\n2021-01-26 10:44:00.468: Finished updating business metadata for entity 'salesorders'.\n2021-01-26 10:44:00.495: Finished updating business metadata for entity 'payments'.\n2021-01-26 10:44:00.522: Finished updating business metadata for entity 'offices'.\n2021-01-26 10:44:00.550: Finished updating business metadata for entity 'customers'.\n2021-01-26 10:44:00.578: Finished updating business metadata for entity 'productlines'.\n2021-01-26 10:44:00.603: Finished updating business metadata for entity 'employees'.\n2021-01-26 10:44:00.623: Finished updating business metadata for entity 'products'.\n2021-01-26 10:44:00.627: Started updating business metadata for field 'buyPrice' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.643: Finished updating business metadata for field 'buyPrice' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.646: Started updating business metadata for field 'MSRP' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.660: Finished updating business metadata for field 'MSRP' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.664: Started updating business metadata for field 'productLine' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.678: Finished updating business metadata for field 'productLine' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.682: Started updating business metadata for field 'productScale' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.695: Finished updating business metadata for field 'productScale' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.699: Started updating business metadata for field 'productCode' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.714: Finished updating business metadata for field 'productCode' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.717: Started updating business metadata for field 'quantityinStock' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.730: Finished updating business metadata for field 'quantityInStock' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.735: Started updating business metadata for field 'productDescription' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.749: Finished updating business metadata for field 'productDescription' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.753: Started updating business metadata for field 'productName' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.764: Finished updating business metadata for field 'productName' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.767: Started updating business metadata for field 'productVendor' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.778: Finished updating business metadata for field 'productVendor' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.782: Finished updating business metadata for internal source with name 'classic-models-errors'.\n2021-01-26 10:44:00.785: Started updating business metadata for internal source with name 'classic-models'.\n2021-01-26 10:44:00.790: Started updating business metadata for source 'classic_models'.\n2021-01-26 10:44:00.801: Finished updating business metadata for source 'classic_models'.\n2021-01-26 10:44:00.821: Finished updating business metadata for entity 'salesorders'.\n2021-01-26 10:44:00.838: Finished updating business metadata for entity 'payments'.\n2021-01-26 10:44:00.867: Finished updating business metadata for entity 'offices'.\n2021-01-26 10:44:00.879: Finished updating business metadata for entity 'customers'.\n2021-01-26 10:44:00.892: Finished updating business metadata for entity 'productlines'.\n2021-01-26 10:44:00.908: Finished updating business metadata for entity 'employees'.\n2021-01-26 10:44:00.921: Finished updating business metadata for entity 'products'.\n2021-01-26 10:44:00.925: Started updating business metadata for field 'buyPrice' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.940: Finished updating business metadata for field 'buyPrice' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.944: Started updating business metadata for field 'MSRP' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.958: Finished updating business metadata for field 'MSRP' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.965: Started updating business metadata for field 'productLine' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.975: Finished updating business metadata for field 'productLine' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.979: Started updating business metadata for field 'productScale' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.989: Finished updating business metadata for field 'productScale' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:00.993: Started updating business metadata for field 'productCode' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:01.005: Finished updating business metadata for field 'productCode' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:01.009: Started updating business metadata for field 'quantityinStock' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:01.024: Finished updating business metadata for field 'quantityInStock' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:01.030: Started updating business metadata for field 'productDescription' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:01.046: Finished updating business metadata for field 'productDescription' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:01.050: Started updating business metadata for field 'productName' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:01.063: Finished updating business metadata for field 'productName' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:01.067: Started updating business metadata for field 'productVendor' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:01.078: Finished updating business metadata for field 'productVendor' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-26 10:44:01.082: Finished updating business metadata for internal source with name 'classic-models'.\n2021-01-26 10:44:01.088: Finished processing business metadata extracted from the file.\n2021-01-26 10:44:01.088: Finished importing the business metadata.\n \N 2021-01-26 10:44:00.162+00 2021-01-26 10:44:01.089+00 61 \N podium podium 3 2021-01-26 10:14:46.729+00 2021-01-26 10:14:47.772+00 -1 0 2021-01-26 10:14:46.729+00 \N FINISHED 0 2021-01-26 10:14:46.733: Started importing the business metadata.\n2021-01-26 10:14:46.733: Started reading the file and extracting business metadata from it.\n2021-01-26 10:14:46.867: Finished reading the file and extracting business metadata from it.\n2021-01-26 10:14:46.867: Started processing business metadata extracted from the file.\n2021-01-26 10:14:46.874: Started updating business metadata for external source with name 'sales-errors'.\n2021-01-26 10:14:46.882: Started updating business metadata for source 'sales-errors'.\n2021-01-26 10:14:46.898: Finished updating business metadata for source 'sales-errors'.\n2021-01-26 10:14:46.969: Finished updating business metadata for entity 'suppliers'.\n2021-01-26 10:14:47.027: Finished updating business metadata for entity 'shippers'.\n2021-01-26 10:14:47.079: Finished updating business metadata for entity 'orders'.\n2021-01-26 10:14:47.132: Finished updating business metadata for entity 'customers'.\n2021-01-26 10:14:47.183: Finished updating business metadata for entity 'categories'.\n2021-01-26 10:14:47.231: Finished updating business metadata for entity 'employees'.\n2021-01-26 10:14:47.280: Finished updating business metadata for entity 'order_details'.\n2021-01-26 10:14:47.328: Finished updating business metadata for entity 'products'.\n2021-01-26 10:14:47.333: Finished updating business metadata for external source with name 'sales-errors'.\n2021-01-26 10:14:47.337: Started updating business metadata for external source with name 'sales'.\n2021-01-26 10:14:47.341: Started updating business metadata for source 'sales'.\n2021-01-26 10:14:47.352: Finished updating business metadata for source 'sales'.\n2021-01-26 10:14:47.409: Finished updating business metadata for entity 'suppliers'.\n2021-01-26 10:14:47.457: Finished updating business metadata for entity 'shippers'.\n2021-01-26 10:14:47.504: Finished updating business metadata for entity 'orders'.\n2021-01-26 10:14:47.554: Finished updating business metadata for entity 'customers'.\n2021-01-26 10:14:47.603: Finished updating business metadata for entity 'categories'.\n2021-01-26 10:14:47.658: Finished updating business metadata for entity 'employees'.\n2021-01-26 10:14:47.712: Finished updating business metadata for entity 'order_details'.\n2021-01-26 10:14:47.764: Finished updating business metadata for entity 'products'.\n2021-01-26 10:14:47.768: Finished updating business metadata for external source with name 'sales'.\n2021-01-26 10:14:47.772: Finished processing business metadata extracted from the file.\n2021-01-26 10:14:47.772: Finished importing the business metadata.\n \N 2021-01-26 10:14:46.729+00 2021-01-26 10:14:47.773+00 27 \N podium podium 4 2021-01-26 10:38:53.458+00 2021-01-26 10:38:54.508+00 -1 0 2021-01-26 10:38:53.458+00 \N FINISHED 0 2021-01-26 10:38:53.465: Started importing the business metadata.\n2021-01-26 10:38:53.465: Started reading the file and extracting business metadata from it.\n2021-01-26 10:38:53.604: Finished reading the file and extracting business metadata from it.\n2021-01-26 10:38:53.604: Started processing business metadata extracted from the file.\n2021-01-26 10:38:53.611: Started updating business metadata for external source with name 'classic-models-errors'.\n2021-01-26 10:38:53.618: Started updating business metadata for source 'classic-models-errors'.\n2021-01-26 10:38:53.624: Finished updating business metadata for source 'classic-models-errors'.\n2021-01-26 10:38:53.681: Finished updating business metadata for entity 'salesorders'.\n2021-01-26 10:38:53.725: Finished updating business metadata for entity 'payments'.\n2021-01-26 10:38:53.766: Finished updating business metadata for entity 'offices'.\n2021-01-26 10:38:53.818: Finished updating business metadata for entity 'customers'.\n2021-01-26 10:38:53.859: Finished updating business metadata for entity 'productlines'.\n2021-01-26 10:38:53.903: Finished updating business metadata for entity 'employees'.\n2021-01-26 10:38:53.946: Finished updating business metadata for entity 'products'.\n2021-01-26 10:38:53.951: Started updating business metadata for field 'buyPrice' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:53.959: Finished updating business metadata for field 'buyPrice' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:53.963: Started updating business metadata for field 'MSRP' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:53.971: Finished updating business metadata for field 'MSRP' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:53.974: Started updating business metadata for field 'productLine' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:53.982: Finished updating business metadata for field 'productLine' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:53.985: Started updating business metadata for field 'productScale' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:53.992: Finished updating business metadata for field 'productScale' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:53.998: Started updating business metadata for field 'productCode' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:54.005: Finished updating business metadata for field 'productCode' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:54.008: Started updating business metadata for field 'quantityinStock' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:54.015: Finished updating business metadata for field 'quantityInStock' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:54.019: Started updating business metadata for field 'productDescription' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:54.025: Finished updating business metadata for field 'productDescription' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:54.029: Started updating business metadata for field 'productName' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:54.037: Finished updating business metadata for field 'productName' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:54.041: Started updating business metadata for field 'productVendor' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:54.048: Finished updating business metadata for field 'productVendor' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-26 10:38:54.052: Finished updating business metadata for external source with name 'classic-models-errors'.\n2021-01-26 10:38:54.055: Started updating business metadata for external source with name 'classic-models'.\n2021-01-26 10:38:54.060: Started updating business metadata for source 'classic-models'.\n2021-01-26 10:38:54.071: Finished updating business metadata for source 'classic-models'.\n2021-01-26 10:38:54.117: Finished updating business metadata for entity 'salesorders'.\n2021-01-26 10:38:54.162: Finished updating business metadata for entity 'payments'.\n2021-01-26 10:38:54.203: Finished updating business metadata for entity 'offices'.\n2021-01-26 10:38:54.247: Finished updating business metadata for entity 'customers'.\n2021-01-26 10:38:54.288: Finished updating business metadata for entity 'productlines'.\n2021-01-26 10:38:54.331: Finished updating business metadata for entity 'employees'.\n2021-01-26 10:38:54.374: Finished updating business metadata for entity 'products'.\n2021-01-26 10:38:54.378: Started updating business metadata for field 'buyPrice' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.389: Finished updating business metadata for field 'buyPrice' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.394: Started updating business metadata for field 'MSRP' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.404: Finished updating business metadata for field 'MSRP' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.407: Started updating business metadata for field 'productLine' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.416: Finished updating business metadata for field 'productLine' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.420: Started updating business metadata for field 'productScale' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.429: Finished updating business metadata for field 'productScale' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.432: Started updating business metadata for field 'productCode' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.442: Finished updating business metadata for field 'productCode' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.445: Started updating business metadata for field 'quantityinStock' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.456: Finished updating business metadata for field 'quantityInStock' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.461: Started updating business metadata for field 'productDescription' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.472: Finished updating business metadata for field 'productDescription' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.475: Started updating business metadata for field 'productName' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.485: Finished updating business metadata for field 'productName' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.490: Started updating business metadata for field 'productVendor' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.500: Finished updating business metadata for field 'productVendor' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-26 10:38:54.504: Finished updating business metadata for external source with name 'classic-models'.\n2021-01-26 10:38:54.508: Finished processing business metadata extracted from the file.\n2021-01-26 10:38:54.508: Finished importing the business metadata.\n \N 2021-01-26 10:38:53.459+00 2021-01-26 10:38:54.508+00 61 \N podium podium 6 2021-01-27 13:38:26.355+00 2021-01-27 13:38:27.271+00 -1 4 2021-01-27 13:38:26.355+00 \N FINISHED_WITH_FAILURES 0 2021-01-27 13:38:26.365: Started importing internal and external relationships and keys.\n2021-01-27 13:38:26.365: Started reading the file and extracting relationships and keys from it.\n2021-01-27 13:38:27.082: Finished reading the file and extracting relationships and keys from it.\n2021-01-27 13:38:27.082: Started processing relationships and keys extracted from the file.\n2021-01-27 13:38:27.088: Started validating the data extracted from the input resource file.\n2021-01-27 13:38:27.094: Processing the row with action 'ADD' for parent [source:'classic-models', entity:'productlines', field:'productLine'] and child [source:'classic-models', entity:'products', field:'productLine'].\n2021-01-27 13:38:27.115: Relationship/Key already exists for external parent [source:'classic-models', entity:'productlines', field:'productLine'] and child [source:'classic-models', entity:'products', field:'productLine']. Not adding the relationship/key for this row.\n2021-01-27 13:38:27.122: Relationship/Key already exists for internal parent [source:'classic-models', entity:'productlines', field:'productLine'] and child [source:'classic-models', entity:'products', field:'productLine']. Not adding the relationship/key for this row.\n2021-01-27 13:38:27.127: Processing the row with action 'ADD' for parent [source:'classic-models', entity:'salesorders', field:'productCode'] and child [source:'classic-models', entity:'products', field:'productCode'].\n2021-01-27 13:38:27.143: Processing the row with action 'ADD' for parent [source:'classic-models', entity:'payments', field:'customerNumber'] and child [source:'classic-models', entity:'customers', field:'customerNumber'].\n2021-01-27 13:38:27.162: Processing the row with action 'ADD' for parent [source:'classic-models', entity:'customers', field:'customerNumber'] and child [source:'classic-models', entity:'salesorders', field:'customerNumber'].\n2021-01-27 13:38:27.174: Relationship/Key already exists for external parent [source:'classic-models', entity:'customers', field:'customerNumber'] and child [source:'classic-models', entity:'salesorders', field:'customerNumber']. Not adding the relationship/key for this row.\n2021-01-27 13:38:27.180: Relationship/Key already exists for internal parent [source:'classic-models', entity:'customers', field:'customerNumber'] and child [source:'classic-models', entity:'salesorders', field:'customerNumber']. Not adding the relationship/key for this row.\n2021-01-27 13:38:27.184: Processing the row with action 'ADD' for parent [source:'classic-models', entity:'offices', field:'officeCode'] and child [source:'classic-models', entity:'employees', field:'officeCode'].\n2021-01-27 13:38:27.198: Relationship/Key already exists for external parent [source:'classic-models', entity:'offices', field:'officeCode'] and child [source:'classic-models', entity:'employees', field:'officeCode']. Not adding the relationship/key for this row.\n2021-01-27 13:38:27.203: Relationship/Key already exists for internal parent [source:'classic-models', entity:'offices', field:'officeCode'] and child [source:'classic-models', entity:'employees', field:'officeCode']. Not adding the relationship/key for this row.\n2021-01-27 13:38:27.206: Processing the row with action 'ADD' for parent [source:'classic-models', entity:'employees', field:'employeeNumber'] and child [source:'classic-models', entity:'customers', field:'salesRepEmployeeNumber'].\n2021-01-27 13:38:27.216: Relationship/Key already exists for external parent [source:'classic-models', entity:'employees', field:'employeeNumber'] and child [source:'classic-models', entity:'customers', field:'salesRepEmployeeNumber']. Not adding the relationship/key for this row.\n2021-01-27 13:38:27.223: Relationship/Key already exists for internal parent [source:'classic-models', entity:'employees', field:'employeeNumber'] and child [source:'classic-models', entity:'customers', field:'salesRepEmployeeNumber']. Not adding the relationship/key for this row.\n2021-01-27 13:38:27.228: Finished validating the data extracted from the input resource file.\n2021-01-27 13:38:27.232: Started saving the data extracted from the input resource file.\n2021-01-27 13:38:27.265: Finished saving the data extracted from the input resource file.\n2021-01-27 13:38:27.271: Finished processing relationships and keys extracted from the file.\n2021-01-27 13:38:27.271: Finished importing internal and external relationships and keys.\n \N 2021-01-27 13:38:26.36+00 2021-01-27 13:38:27.272+00 21 \N podium podium 7 2021-01-28 08:20:55.761+00 2021-01-28 08:20:56.248+00 -1 0 2021-01-28 08:20:55.761+00 \N FINISHED 0 2021-01-28 08:20:55.766: Started importing the business metadata.\n2021-01-28 08:20:55.766: Started reading the file and extracting business metadata from it.\n2021-01-28 08:20:55.916: Finished reading the file and extracting business metadata from it.\n2021-01-28 08:20:55.916: Started processing business metadata extracted from the file.\n2021-01-28 08:20:55.922: Started updating business metadata for internal source with name 'sales-errors'.\n2021-01-28 08:20:55.931: Started updating business metadata for source 'sales_errors'.\n2021-01-28 08:20:55.954: Finished updating business metadata for source 'sales_errors'.\n2021-01-28 08:20:55.982: Finished updating business metadata for entity 'suppliers'.\n2021-01-28 08:20:56.005: Finished updating business metadata for entity 'shippers'.\n2021-01-28 08:20:56.022: Finished updating business metadata for entity 'orders'.\n2021-01-28 08:20:56.040: Finished updating business metadata for entity 'customers'.\n2021-01-28 08:20:56.057: Finished updating business metadata for entity 'categories'.\n2021-01-28 08:20:56.075: Finished updating business metadata for entity 'employees'.\n2021-01-28 08:20:56.092: Finished updating business metadata for entity 'order_details'.\n2021-01-28 08:20:56.110: Finished updating business metadata for entity 'products'.\n2021-01-28 08:20:56.114: Finished updating business metadata for internal source with name 'sales-errors'.\n2021-01-28 08:20:56.117: Started updating business metadata for internal source with name 'sales'.\n2021-01-28 08:20:56.122: Started updating business metadata for source 'sales'.\n2021-01-28 08:20:56.133: Finished updating business metadata for source 'sales'.\n2021-01-28 08:20:56.151: Finished updating business metadata for entity 'suppliers'.\n2021-01-28 08:20:56.168: Finished updating business metadata for entity 'shippers'.\n2021-01-28 08:20:56.180: Finished updating business metadata for entity 'orders'.\n2021-01-28 08:20:56.191: Finished updating business metadata for entity 'customers'.\n2021-01-28 08:20:56.204: Finished updating business metadata for entity 'categories'.\n2021-01-28 08:20:56.216: Finished updating business metadata for entity 'employees'.\n2021-01-28 08:20:56.228: Finished updating business metadata for entity 'order_details'.\n2021-01-28 08:20:56.241: Finished updating business metadata for entity 'products'.\n2021-01-28 08:20:56.245: Finished updating business metadata for internal source with name 'sales'.\n2021-01-28 08:20:56.248: Finished processing business metadata extracted from the file.\n2021-01-28 08:20:56.248: Finished importing the business metadata.\n \N 2021-01-28 08:20:55.762+00 2021-01-28 08:20:56.249+00 27 \N podium podium 8 2021-01-28 10:28:36.656+00 2021-01-28 10:28:41.279+00 -1 0 2021-01-28 10:28:36.656+00 \N FINISHED 0 2021-01-28 10:28:36.661: Started importing the business metadata.\n2021-01-28 10:28:36.661: Started reading the file and extracting business metadata from it.\n2021-01-28 10:28:36.971: Finished reading the file and extracting business metadata from it.\n2021-01-28 10:28:36.971: Started processing business metadata extracted from the file.\n2021-01-28 10:28:36.977: Started updating business metadata for internal and external sources with name 'classic-models-errors'.\n2021-01-28 10:28:36.990: Started updating business metadata for source 'classic-models-errors'.\n2021-01-28 10:28:36.998: Finished updating business metadata for source 'classic-models-errors'.\n2021-01-28 10:28:37.052: Finished updating business metadata for entity 'salesorders'.\n2021-01-28 10:28:37.056: Started updating business metadata for field 'productCode' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.072: Finished updating business metadata for field 'productCode' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.076: Started updating business metadata for field 'orderNumber' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.088: Finished updating business metadata for field 'orderNumber' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.091: Started updating business metadata for field 'requiredDate' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.104: Finished updating business metadata for field 'requiredDate' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.107: Started updating business metadata for field 'quantityOrdered' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.119: Finished updating business metadata for field 'quantityOrdered' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.123: Started updating business metadata for field 'customerNumber' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.134: Finished updating business metadata for field 'customerNumber' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.139: Started updating business metadata for field 'orderLineNumber' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.152: Finished updating business metadata for field 'orderLineNumber' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.155: Started updating business metadata for field 'shippedDate' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.165: Finished updating business metadata for field 'shippedDate' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.169: Started updating business metadata for field 'orderDate' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.179: Finished updating business metadata for field 'orderDate' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.182: Started updating business metadata for field 'priceEach' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.192: Finished updating business metadata for field 'priceEach' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.196: Started updating business metadata for field 'status' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.207: Finished updating business metadata for field 'status' for entity [id:15, name:salesorders, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.258: Finished updating business metadata for entity 'payments'.\n2021-01-28 10:28:37.262: Started updating business metadata for field 'checkNumber' for entity [id:18, name:payments, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.273: Finished updating business metadata for field 'checkNumber' for entity [id:18, name:payments, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.277: Started updating business metadata for field 'amount' for entity [id:18, name:payments, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.285: Finished updating business metadata for field 'amount' for entity [id:18, name:payments, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.290: Started updating business metadata for field 'customerNumber' for entity [id:18, name:payments, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.300: Finished updating business metadata for field 'customerNumber' for entity [id:18, name:payments, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.303: Started updating business metadata for field 'paymentDate' for entity [id:18, name:payments, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.312: Finished updating business metadata for field 'paymentDate' for entity [id:18, name:payments, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.360: Finished updating business metadata for entity 'offices'.\n2021-01-28 10:28:37.365: Started updating business metadata for field 'country' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.376: Finished updating business metadata for field 'country' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.385: Started updating business metadata for field 'city' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.395: Finished updating business metadata for field 'city' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.399: Started updating business metadata for field 'phone' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.408: Finished updating business metadata for field 'phone' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.411: Started updating business metadata for field 'officeLocation' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.421: Finished updating business metadata for field 'officeLocation' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.425: Started updating business metadata for field 'postalCode' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.437: Finished updating business metadata for field 'postalCode' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.441: Started updating business metadata for field 'officeCode' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.453: Finished updating business metadata for field 'officeCode' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.456: Started updating business metadata for field 'addressLine1' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.466: Finished updating business metadata for field 'addressLine1' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.470: Started updating business metadata for field 'addressLine2' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.480: Finished updating business metadata for field 'addressLine2' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.484: Started updating business metadata for field 'state' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.494: Finished updating business metadata for field 'state' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.497: Started updating business metadata for field 'territory' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.505: Finished updating business metadata for field 'territory' for entity [id:17, name:offices, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.557: Finished updating business metadata for entity 'customers'.\n2021-01-28 10:28:37.562: Started updating business metadata for field 'country' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.572: Finished updating business metadata for field 'country' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.576: Started updating business metadata for field 'city' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.588: Finished updating business metadata for field 'city' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.591: Started updating business metadata for field 'customerLocation' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.603: Finished updating business metadata for field 'customerLocation' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.607: Started updating business metadata for field 'contactFirstName' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.616: Finished updating business metadata for field 'contactFirstName' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.620: Started updating business metadata for field 'postalCode' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.629: Finished updating business metadata for field 'postalCode' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.633: Started updating business metadata for field 'salesRepEmployeeNumber' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.642: Finished updating business metadata for field 'salesRepEmployeeNumber' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.646: Started updating business metadata for field 'customerNumber' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.655: Finished updating business metadata for field 'customerNumber' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.659: Started updating business metadata for field 'customerName' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.669: Finished updating business metadata for field 'customerName' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.673: Started updating business metadata for field 'phone' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.682: Finished updating business metadata for field 'phone' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.687: Started updating business metadata for field 'creditLimit' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.696: Finished updating business metadata for field 'creditLimit' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.701: Started updating business metadata for field 'addressLine1' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.711: Finished updating business metadata for field 'addressLine1' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.715: Started updating business metadata for field 'addressLine2' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.724: Finished updating business metadata for field 'addressLine2' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.727: Started updating business metadata for field 'contactLastName' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.735: Finished updating business metadata for field 'contactLastName' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.739: Started updating business metadata for field 'state' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.747: Finished updating business metadata for field 'state' for entity [id:21, name:customers, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.794: Finished updating business metadata for entity 'productlines'.\n2021-01-28 10:28:37.798: Started updating business metadata for field 'productLine' for entity [id:20, name:productlines, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.807: Finished updating business metadata for field 'productLine' for entity [id:20, name:productlines, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.810: Started updating business metadata for field 'textDescription' for entity [id:20, name:productlines, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.820: Finished updating business metadata for field 'textDescription' for entity [id:20, name:productlines, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.824: Started updating business metadata for field 'htmlDescription' for entity [id:20, name:productlines, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.833: Finished updating business metadata for field 'htmlDescription' for entity [id:20, name:productlines, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.879: Finished updating business metadata for entity 'employees'.\n2021-01-28 10:28:37.884: Started updating business metadata for field 'lastName' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.894: Finished updating business metadata for field 'lastName' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.898: Started updating business metadata for field 'firstName' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.907: Finished updating business metadata for field 'firstName' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.911: Started updating business metadata for field 'extension' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.920: Finished updating business metadata for field 'extension' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.924: Started updating business metadata for field 'jobTitle' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.933: Finished updating business metadata for field 'jobTitle' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.937: Started updating business metadata for field 'officeCode' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.946: Finished updating business metadata for field 'officeCode' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.950: Started updating business metadata for field 'reportsTo' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.960: Finished updating business metadata for field 'reportsTo' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.964: Started updating business metadata for field 'email' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.975: Finished updating business metadata for field 'email' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.979: Started updating business metadata for field 'employeeNumber' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:37.988: Finished updating business metadata for field 'employeeNumber' for entity [id:19, name:employees, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.040: Finished updating business metadata for entity 'products'.\n2021-01-28 10:28:38.044: Started updating business metadata for field 'buyPrice' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.051: Finished updating business metadata for field 'buyPrice' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.056: Started updating business metadata for field 'MSRP' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.065: Finished updating business metadata for field 'MSRP' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.069: Started updating business metadata for field 'productLine' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.075: Finished updating business metadata for field 'productLine' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.079: Started updating business metadata for field 'productScale' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.087: Finished updating business metadata for field 'productScale' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.091: Started updating business metadata for field 'productCode' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.099: Finished updating business metadata for field 'productCode' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.103: Started updating business metadata for field 'quantityinStock' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.110: Finished updating business metadata for field 'quantityInStock' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.114: Started updating business metadata for field 'productDescription' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.121: Finished updating business metadata for field 'productDescription' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.126: Started updating business metadata for field 'productName' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.133: Finished updating business metadata for field 'productName' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.137: Started updating business metadata for field 'productVendor' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.144: Finished updating business metadata for field 'productVendor' for entity [id:16, name:products, type:EXTERNAL] in source [id:4, name:classic-models-errors, type:JDBC_SOURCE].\n2021-01-28 10:28:38.149: Started updating business metadata for source 'classic_models_errors'.\n2021-01-28 10:28:38.156: Finished updating business metadata for source 'classic_models_errors'.\n2021-01-28 10:28:38.172: Finished updating business metadata for entity 'salesorders'.\n2021-01-28 10:28:38.178: Started updating business metadata for field 'productCode' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.187: Finished updating business metadata for field 'productCode' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.192: Started updating business metadata for field 'orderNumber' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.203: Finished updating business metadata for field 'orderNumber' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.206: Started updating business metadata for field 'requiredDate' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.216: Finished updating business metadata for field 'requiredDate' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.220: Started updating business metadata for field 'quantityOrdered' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.229: Finished updating business metadata for field 'quantityOrdered' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.234: Started updating business metadata for field 'customerNumber' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.244: Finished updating business metadata for field 'customerNumber' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.248: Started updating business metadata for field 'orderLineNumber' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.258: Finished updating business metadata for field 'orderLineNumber' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.262: Started updating business metadata for field 'shippedDate' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.272: Finished updating business metadata for field 'shippedDate' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.277: Started updating business metadata for field 'orderDate' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.286: Finished updating business metadata for field 'orderDate' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.290: Started updating business metadata for field 'priceEach' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.300: Finished updating business metadata for field 'priceEach' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.305: Started updating business metadata for field 'status' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.315: Finished updating business metadata for field 'status' for entity [id:26, name:salesorders, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.330: Finished updating business metadata for entity 'payments'.\n2021-01-28 10:28:38.333: Started updating business metadata for field 'checkNumber' for entity [id:28, name:payments, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.342: Finished updating business metadata for field 'checkNumber' for entity [id:28, name:payments, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.346: Started updating business metadata for field 'amount' for entity [id:28, name:payments, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.355: Finished updating business metadata for field 'amount' for entity [id:28, name:payments, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.359: Started updating business metadata for field 'customerNumber' for entity [id:28, name:payments, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.369: Finished updating business metadata for field 'customerNumber' for entity [id:28, name:payments, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.373: Started updating business metadata for field 'paymentDate' for entity [id:28, name:payments, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.382: Finished updating business metadata for field 'paymentDate' for entity [id:28, name:payments, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.399: Finished updating business metadata for entity 'offices'.\n2021-01-28 10:28:38.403: Started updating business metadata for field 'country' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.413: Finished updating business metadata for field 'country' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.417: Started updating business metadata for field 'city' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.429: Finished updating business metadata for field 'city' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.433: Started updating business metadata for field 'phone' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.443: Finished updating business metadata for field 'phone' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.447: Started updating business metadata for field 'officeLocation' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.458: Finished updating business metadata for field 'officeLocation' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.462: Started updating business metadata for field 'postalCode' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.472: Finished updating business metadata for field 'postalCode' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.477: Started updating business metadata for field 'officeCode' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.489: Finished updating business metadata for field 'officeCode' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.493: Started updating business metadata for field 'addressLine1' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.502: Finished updating business metadata for field 'addressLine1' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.506: Started updating business metadata for field 'addressLine2' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.516: Finished updating business metadata for field 'addressLine2' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.519: Started updating business metadata for field 'state' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.530: Finished updating business metadata for field 'state' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.535: Started updating business metadata for field 'territory' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.545: Finished updating business metadata for field 'territory' for entity [id:23, name:offices, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.558: Finished updating business metadata for entity 'customers'.\n2021-01-28 10:28:38.563: Started updating business metadata for field 'country' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.572: Finished updating business metadata for field 'country' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.576: Started updating business metadata for field 'city' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.587: Finished updating business metadata for field 'city' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.591: Started updating business metadata for field 'customerLocation' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.601: Finished updating business metadata for field 'customerLocation' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.605: Started updating business metadata for field 'contactFirstName' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.614: Finished updating business metadata for field 'contactFirstName' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.619: Started updating business metadata for field 'postalCode' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.630: Finished updating business metadata for field 'postalCode' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.635: Started updating business metadata for field 'salesRepEmployeeNumber' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.646: Finished updating business metadata for field 'salesRepEmployeeNumber' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.650: Started updating business metadata for field 'customerNumber' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.660: Finished updating business metadata for field 'customerNumber' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.666: Started updating business metadata for field 'customerName' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.675: Finished updating business metadata for field 'customerName' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.679: Started updating business metadata for field 'phone' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.689: Finished updating business metadata for field 'phone' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.697: Started updating business metadata for field 'creditLimit' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.707: Finished updating business metadata for field 'creditLimit' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.713: Started updating business metadata for field 'addressLine1' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.722: Finished updating business metadata for field 'addressLine1' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.726: Started updating business metadata for field 'addressLine2' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.737: Finished updating business metadata for field 'addressLine2' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.742: Started updating business metadata for field 'contactLastName' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.751: Finished updating business metadata for field 'contactLastName' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.756: Started updating business metadata for field 'state' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.765: Finished updating business metadata for field 'state' for entity [id:25, name:customers, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.777: Finished updating business metadata for entity 'productlines'.\n2021-01-28 10:28:38.784: Started updating business metadata for field 'productLine' for entity [id:24, name:productlines, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.795: Finished updating business metadata for field 'productLine' for entity [id:24, name:productlines, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.800: Started updating business metadata for field 'textDescription' for entity [id:24, name:productlines, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.809: Finished updating business metadata for field 'textDescription' for entity [id:24, name:productlines, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.814: Started updating business metadata for field 'htmlDescription' for entity [id:24, name:productlines, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.824: Finished updating business metadata for field 'htmlDescription' for entity [id:24, name:productlines, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.835: Finished updating business metadata for entity 'employees'.\n2021-01-28 10:28:38.840: Started updating business metadata for field 'lastName' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.852: Finished updating business metadata for field 'lastName' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.857: Started updating business metadata for field 'firstName' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.867: Finished updating business metadata for field 'firstName' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.872: Started updating business metadata for field 'extension' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.882: Finished updating business metadata for field 'extension' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.887: Started updating business metadata for field 'jobTitle' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.897: Finished updating business metadata for field 'jobTitle' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.902: Started updating business metadata for field 'officeCode' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.914: Finished updating business metadata for field 'officeCode' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.919: Started updating business metadata for field 'reportsTo' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.932: Finished updating business metadata for field 'reportsTo' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.936: Started updating business metadata for field 'email' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.946: Finished updating business metadata for field 'email' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.950: Started updating business metadata for field 'employeeNumber' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.962: Finished updating business metadata for field 'employeeNumber' for entity [id:22, name:employees, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.974: Finished updating business metadata for entity 'products'.\n2021-01-28 10:28:38.979: Started updating business metadata for field 'buyPrice' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.986: Finished updating business metadata for field 'buyPrice' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.990: Started updating business metadata for field 'MSRP' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:38.997: Finished updating business metadata for field 'MSRP' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.001: Started updating business metadata for field 'productLine' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.008: Finished updating business metadata for field 'productLine' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.012: Started updating business metadata for field 'productScale' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.018: Finished updating business metadata for field 'productScale' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.023: Started updating business metadata for field 'productCode' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.029: Finished updating business metadata for field 'productCode' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.034: Started updating business metadata for field 'quantityinStock' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.042: Finished updating business metadata for field 'quantityInStock' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.046: Started updating business metadata for field 'productDescription' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.053: Finished updating business metadata for field 'productDescription' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.058: Started updating business metadata for field 'productName' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.064: Finished updating business metadata for field 'productName' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.068: Started updating business metadata for field 'productVendor' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.076: Finished updating business metadata for field 'productVendor' for entity [id:27, name:products, type:INTERNAL] in source [id:5, name:classic_models_errors, type:PODIUM_INTERNAL].\n2021-01-28 10:28:39.080: Finished updating business metadata for internal and external sources with name 'classic-models-errors'.\n2021-01-28 10:28:39.084: Started updating business metadata for internal and external sources with name 'classic-models'.\n2021-01-28 10:28:39.092: Started updating business metadata for source 'classic-models'.\n2021-01-28 10:28:39.099: Finished updating business metadata for source 'classic-models'.\n2021-01-28 10:28:39.138: Finished updating business metadata for entity 'salesorders'.\n2021-01-28 10:28:39.143: Started updating business metadata for field 'productCode' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.155: Finished updating business metadata for field 'productCode' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.161: Started updating business metadata for field 'orderNumber' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.172: Finished updating business metadata for field 'orderNumber' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.177: Started updating business metadata for field 'requiredDate' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.186: Finished updating business metadata for field 'requiredDate' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.191: Started updating business metadata for field 'quantityOrdered' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.199: Finished updating business metadata for field 'quantityOrdered' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.203: Started updating business metadata for field 'customerNumber' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.214: Finished updating business metadata for field 'customerNumber' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.218: Started updating business metadata for field 'orderLineNumber' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.227: Finished updating business metadata for field 'orderLineNumber' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.232: Started updating business metadata for field 'shippedDate' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.241: Finished updating business metadata for field 'shippedDate' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.247: Started updating business metadata for field 'orderDate' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.256: Finished updating business metadata for field 'orderDate' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.261: Started updating business metadata for field 'priceEach' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.271: Finished updating business metadata for field 'priceEach' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.276: Started updating business metadata for field 'status' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.286: Finished updating business metadata for field 'status' for entity [id:65, name:salesorders, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.330: Finished updating business metadata for entity 'payments'.\n2021-01-28 10:28:39.335: Started updating business metadata for field 'checkNumber' for entity [id:61, name:payments, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.346: Finished updating business metadata for field 'checkNumber' for entity [id:61, name:payments, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.350: Started updating business metadata for field 'amount' for entity [id:61, name:payments, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.362: Finished updating business metadata for field 'amount' for entity [id:61, name:payments, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.367: Started updating business metadata for field 'customerNumber' for entity [id:61, name:payments, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.377: Finished updating business metadata for field 'customerNumber' for entity [id:61, name:payments, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.381: Started updating business metadata for field 'paymentDate' for entity [id:61, name:payments, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.392: Finished updating business metadata for field 'paymentDate' for entity [id:61, name:payments, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.432: Finished updating business metadata for entity 'offices'.\n2021-01-28 10:28:39.439: Started updating business metadata for field 'country' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.449: Finished updating business metadata for field 'country' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.454: Started updating business metadata for field 'city' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.465: Finished updating business metadata for field 'city' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.470: Started updating business metadata for field 'phone' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.479: Finished updating business metadata for field 'phone' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.483: Started updating business metadata for field 'officeLocation' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.493: Finished updating business metadata for field 'officeLocation' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.498: Started updating business metadata for field 'postalCode' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.509: Finished updating business metadata for field 'postalCode' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.514: Started updating business metadata for field 'officeCode' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.523: Finished updating business metadata for field 'officeCode' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.528: Started updating business metadata for field 'addressLine1' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.538: Finished updating business metadata for field 'addressLine1' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.543: Started updating business metadata for field 'addressLine2' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.553: Finished updating business metadata for field 'addressLine2' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.558: Started updating business metadata for field 'state' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.568: Finished updating business metadata for field 'state' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.574: Started updating business metadata for field 'territory' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.585: Finished updating business metadata for field 'territory' for entity [id:63, name:offices, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.627: Finished updating business metadata for entity 'customers'.\n2021-01-28 10:28:39.631: Started updating business metadata for field 'country' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.642: Finished updating business metadata for field 'country' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.647: Started updating business metadata for field 'city' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.657: Finished updating business metadata for field 'city' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.661: Started updating business metadata for field 'customerLocation' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.671: Finished updating business metadata for field 'customerLocation' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.675: Started updating business metadata for field 'contactFirstName' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.686: Finished updating business metadata for field 'contactFirstName' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.690: Started updating business metadata for field 'postalCode' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.702: Finished updating business metadata for field 'postalCode' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.707: Started updating business metadata for field 'salesRepEmployeeNumber' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.718: Finished updating business metadata for field 'salesRepEmployeeNumber' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.722: Started updating business metadata for field 'customerNumber' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.732: Finished updating business metadata for field 'customerNumber' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.738: Started updating business metadata for field 'customerName' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.750: Finished updating business metadata for field 'customerName' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.756: Started updating business metadata for field 'phone' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.769: Finished updating business metadata for field 'phone' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.774: Started updating business metadata for field 'creditLimit' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.786: Finished updating business metadata for field 'creditLimit' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.791: Started updating business metadata for field 'addressLine1' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.800: Finished updating business metadata for field 'addressLine1' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.806: Started updating business metadata for field 'addressLine2' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.821: Finished updating business metadata for field 'addressLine2' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.827: Started updating business metadata for field 'contactLastName' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.839: Finished updating business metadata for field 'contactLastName' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.844: Started updating business metadata for field 'state' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.858: Finished updating business metadata for field 'state' for entity [id:64, name:customers, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.905: Finished updating business metadata for entity 'productlines'.\n2021-01-28 10:28:39.910: Started updating business metadata for field 'productLine' for entity [id:67, name:productlines, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.920: Finished updating business metadata for field 'productLine' for entity [id:67, name:productlines, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.924: Started updating business metadata for field 'textDescription' for entity [id:67, name:productlines, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.934: Finished updating business metadata for field 'textDescription' for entity [id:67, name:productlines, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.938: Started updating business metadata for field 'htmlDescription' for entity [id:67, name:productlines, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.948: Finished updating business metadata for field 'htmlDescription' for entity [id:67, name:productlines, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:39.991: Finished updating business metadata for entity 'employees'.\n2021-01-28 10:28:39.996: Started updating business metadata for field 'lastName' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.007: Finished updating business metadata for field 'lastName' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.011: Started updating business metadata for field 'firstName' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.022: Finished updating business metadata for field 'firstName' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.027: Started updating business metadata for field 'extension' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.037: Finished updating business metadata for field 'extension' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.041: Started updating business metadata for field 'jobTitle' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.051: Finished updating business metadata for field 'jobTitle' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.056: Started updating business metadata for field 'officeCode' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.066: Finished updating business metadata for field 'officeCode' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.070: Started updating business metadata for field 'reportsTo' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.081: Finished updating business metadata for field 'reportsTo' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.086: Started updating business metadata for field 'email' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.095: Finished updating business metadata for field 'email' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.099: Started updating business metadata for field 'employeeNumber' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.110: Finished updating business metadata for field 'employeeNumber' for entity [id:62, name:employees, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.153: Finished updating business metadata for entity 'products'.\n2021-01-28 10:28:40.161: Started updating business metadata for field 'buyPrice' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.168: Finished updating business metadata for field 'buyPrice' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.173: Started updating business metadata for field 'MSRP' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.179: Finished updating business metadata for field 'MSRP' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.184: Started updating business metadata for field 'productLine' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.191: Finished updating business metadata for field 'productLine' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.196: Started updating business metadata for field 'productScale' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.204: Finished updating business metadata for field 'productScale' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.209: Started updating business metadata for field 'productCode' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.216: Finished updating business metadata for field 'productCode' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.221: Started updating business metadata for field 'quantityinStock' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.229: Finished updating business metadata for field 'quantityInStock' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.234: Started updating business metadata for field 'productDescription' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.241: Finished updating business metadata for field 'productDescription' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.246: Started updating business metadata for field 'productName' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.253: Finished updating business metadata for field 'productName' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.258: Started updating business metadata for field 'productVendor' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.265: Finished updating business metadata for field 'productVendor' for entity [id:66, name:products, type:EXTERNAL] in source [id:10, name:classic-models, type:JDBC_SOURCE].\n2021-01-28 10:28:40.270: Started updating business metadata for source 'classic_models'.\n2021-01-28 10:28:40.280: Finished updating business metadata for source 'classic_models'.\n2021-01-28 10:28:40.292: Finished updating business metadata for entity 'salesorders'.\n2021-01-28 10:28:40.297: Started updating business metadata for field 'productCode' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.307: Finished updating business metadata for field 'productCode' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.312: Started updating business metadata for field 'orderNumber' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.324: Finished updating business metadata for field 'orderNumber' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.328: Started updating business metadata for field 'requiredDate' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.338: Finished updating business metadata for field 'requiredDate' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.344: Started updating business metadata for field 'quantityOrdered' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.354: Finished updating business metadata for field 'quantityOrdered' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.359: Started updating business metadata for field 'customerNumber' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.370: Finished updating business metadata for field 'customerNumber' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.375: Started updating business metadata for field 'orderLineNumber' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.385: Finished updating business metadata for field 'orderLineNumber' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.390: Started updating business metadata for field 'shippedDate' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.400: Finished updating business metadata for field 'shippedDate' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.406: Started updating business metadata for field 'orderDate' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.415: Finished updating business metadata for field 'orderDate' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.421: Started updating business metadata for field 'priceEach' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.430: Finished updating business metadata for field 'priceEach' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.435: Started updating business metadata for field 'status' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.445: Finished updating business metadata for field 'status' for entity [id:70, name:salesorders, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.456: Finished updating business metadata for entity 'payments'.\n2021-01-28 10:28:40.461: Started updating business metadata for field 'checkNumber' for entity [id:74, name:payments, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.471: Finished updating business metadata for field 'checkNumber' for entity [id:74, name:payments, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.477: Started updating business metadata for field 'amount' for entity [id:74, name:payments, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.488: Finished updating business metadata for field 'amount' for entity [id:74, name:payments, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.493: Started updating business metadata for field 'customerNumber' for entity [id:74, name:payments, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.504: Finished updating business metadata for field 'customerNumber' for entity [id:74, name:payments, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.509: Started updating business metadata for field 'paymentDate' for entity [id:74, name:payments, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.521: Finished updating business metadata for field 'paymentDate' for entity [id:74, name:payments, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.535: Finished updating business metadata for entity 'offices'.\n2021-01-28 10:28:40.540: Started updating business metadata for field 'country' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.550: Finished updating business metadata for field 'country' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.555: Started updating business metadata for field 'city' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.564: Finished updating business metadata for field 'city' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.570: Started updating business metadata for field 'phone' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.581: Finished updating business metadata for field 'phone' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.586: Started updating business metadata for field 'officeLocation' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.599: Finished updating business metadata for field 'officeLocation' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.603: Started updating business metadata for field 'postalCode' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.614: Finished updating business metadata for field 'postalCode' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.620: Started updating business metadata for field 'officeCode' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.630: Finished updating business metadata for field 'officeCode' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.635: Started updating business metadata for field 'addressLine1' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.646: Finished updating business metadata for field 'addressLine1' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.650: Started updating business metadata for field 'addressLine2' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.660: Finished updating business metadata for field 'addressLine2' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.665: Started updating business metadata for field 'state' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.674: Finished updating business metadata for field 'state' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.679: Started updating business metadata for field 'territory' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.689: Finished updating business metadata for field 'territory' for entity [id:68, name:offices, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.701: Finished updating business metadata for entity 'customers'.\n2021-01-28 10:28:40.706: Started updating business metadata for field 'country' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.717: Finished updating business metadata for field 'country' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.723: Started updating business metadata for field 'city' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.733: Finished updating business metadata for field 'city' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.738: Started updating business metadata for field 'customerLocation' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.749: Finished updating business metadata for field 'customerLocation' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.754: Started updating business metadata for field 'contactFirstName' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.766: Finished updating business metadata for field 'contactFirstName' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.774: Started updating business metadata for field 'postalCode' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.786: Finished updating business metadata for field 'postalCode' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.791: Started updating business metadata for field 'salesRepEmployeeNumber' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.800: Finished updating business metadata for field 'salesRepEmployeeNumber' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.806: Started updating business metadata for field 'customerNumber' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.817: Finished updating business metadata for field 'customerNumber' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.822: Started updating business metadata for field 'customerName' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.834: Finished updating business metadata for field 'customerName' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.839: Started updating business metadata for field 'phone' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.850: Finished updating business metadata for field 'phone' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.855: Started updating business metadata for field 'creditLimit' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.865: Finished updating business metadata for field 'creditLimit' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.870: Started updating business metadata for field 'addressLine1' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.890: Finished updating business metadata for field 'addressLine1' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.896: Started updating business metadata for field 'addressLine2' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.907: Finished updating business metadata for field 'addressLine2' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.912: Started updating business metadata for field 'contactLastName' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.923: Finished updating business metadata for field 'contactLastName' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.928: Started updating business metadata for field 'state' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.939: Finished updating business metadata for field 'state' for entity [id:69, name:customers, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.952: Finished updating business metadata for entity 'productlines'.\n2021-01-28 10:28:40.957: Started updating business metadata for field 'productLine' for entity [id:73, name:productlines, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.968: Finished updating business metadata for field 'productLine' for entity [id:73, name:productlines, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.973: Started updating business metadata for field 'textDescription' for entity [id:73, name:productlines, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.985: Finished updating business metadata for field 'textDescription' for entity [id:73, name:productlines, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:40.991: Started updating business metadata for field 'htmlDescription' for entity [id:73, name:productlines, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.001: Finished updating business metadata for field 'htmlDescription' for entity [id:73, name:productlines, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.015: Finished updating business metadata for entity 'employees'.\n2021-01-28 10:28:41.022: Started updating business metadata for field 'lastName' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.031: Finished updating business metadata for field 'lastName' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.036: Started updating business metadata for field 'firstName' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.046: Finished updating business metadata for field 'firstName' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.051: Started updating business metadata for field 'extension' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.061: Finished updating business metadata for field 'extension' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.066: Started updating business metadata for field 'jobTitle' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.076: Finished updating business metadata for field 'jobTitle' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.081: Started updating business metadata for field 'officeCode' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.091: Finished updating business metadata for field 'officeCode' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.097: Started updating business metadata for field 'reportsTo' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.107: Finished updating business metadata for field 'reportsTo' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.112: Started updating business metadata for field 'email' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.123: Finished updating business metadata for field 'email' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.129: Started updating business metadata for field 'employeeNumber' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.139: Finished updating business metadata for field 'employeeNumber' for entity [id:71, name:employees, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.151: Finished updating business metadata for entity 'products'.\n2021-01-28 10:28:41.157: Started updating business metadata for field 'buyPrice' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.165: Finished updating business metadata for field 'buyPrice' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.170: Started updating business metadata for field 'MSRP' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.178: Finished updating business metadata for field 'MSRP' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.183: Started updating business metadata for field 'productLine' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.192: Finished updating business metadata for field 'productLine' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.198: Started updating business metadata for field 'productScale' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.205: Finished updating business metadata for field 'productScale' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.211: Started updating business metadata for field 'productCode' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.218: Finished updating business metadata for field 'productCode' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.223: Started updating business metadata for field 'quantityinStock' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.232: Finished updating business metadata for field 'quantityInStock' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.237: Started updating business metadata for field 'productDescription' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.244: Finished updating business metadata for field 'productDescription' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.249: Started updating business metadata for field 'productName' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.256: Finished updating business metadata for field 'productName' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.261: Started updating business metadata for field 'productVendor' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.269: Finished updating business metadata for field 'productVendor' for entity [id:72, name:products, type:INTERNAL] in source [id:11, name:classic_models, type:PODIUM_INTERNAL].\n2021-01-28 10:28:41.274: Finished updating business metadata for internal and external sources with name 'classic-models'.\n2021-01-28 10:28:41.279: Finished processing business metadata extracted from the file.\n2021-01-28 10:28:41.279: Finished importing the business metadata.\n \N 2021-01-28 10:28:36.657+00 2021-01-28 10:28:41.28+00 507 \N podium podium \. -- -- Data for Name: pd_dataset; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_dataset (nid, sname, description, isshared, createdby, created_ttz, modifiedby, modified_ttz, version) FROM stdin; \. -- -- Data for Name: pd_dataset_entity; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_dataset_entity (dataset_nid, entity_nid) FROM stdin; \. -- -- Data for Name: pd_entity; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_entity (nid, source_nid, sname, full_name, entity_type, business_name, business_desc, threshold, created_ttz, modified_ttz, version, file_format_type, modifiedby, createdby, source_conn_nid, entity_sub_type, entity_uuid) FROM stdin; 22 5 employees CLASSIC-MODELS-ERRORS.EMPLOYEES INTERNAL Employees Stores all employee information as well as the organization structure such as who reports to whom 0.1 2021-01-26 10:03:16.132+00 2021-01-27 13:19:07.044+00 5 TEXT_TAB_DELIMITED podium podium \N \N 8c76ac13-9aa8-4069-9547-6a35f317a427 15 4 salesorders CLASSIC-MODELS-ERRORS.SALESORDERS EXTERNAL Sales Orders Stores sales orders w/t lines 0.1 2021-01-26 10:03:15.387+00 2021-01-26 10:31:05.901+00 2 TEXT_TAB_DELIMITED ANONYMOUS podium \N \N 64b5c45d-4edf-4a45-9175-9cfe65b6a24f 26 5 salesorders CLASSIC-MODELS-ERRORS.SALESORDERS INTERNAL Sales Orders Stores sales orders w/t lines 0.1 2021-01-26 10:03:16.135+00 2021-01-26 10:44:00.46+00 3 TEXT_TAB_DELIMITED podium podium \N \N 81b0a2b4-7a3e-4831-b309-fa3d35de16c9 28 5 payments CLASSIC-MODELS-ERRORS.PAYMENTS INTERNAL Payments Stores payments made by customers based on their accounts 0.1 2021-01-26 10:03:16.137+00 2021-01-26 10:44:00.49+00 3 TEXT_TAB_DELIMITED podium podium \N \N 22eaaea1-0f28-418f-9440-e6185ac47ab8 23 5 offices CLASSIC-MODELS-ERRORS.OFFICES INTERNAL Offices Stores sales office data 0.1 2021-01-26 10:03:16.133+00 2021-01-26 10:44:00.517+00 3 TEXT_TAB_DELIMITED podium podium \N \N 45872d39-f6c3-4c53-8da6-5420f869a720 25 5 customers CLASSIC-MODELS-ERRORS.CUSTOMERS INTERNAL Customers Stores customer’s data 0.1 2021-01-26 10:03:16.135+00 2021-01-26 10:44:00.545+00 5 TEXT_TAB_DELIMITED podium podium \N \N 402d9f78-58df-427d-a5f2-3bbb1c4b422f 24 5 productlines CLASSIC-MODELS-ERRORS.PRODUCTLINES INTERNAL Product Lines Stores a list of product line categories 0.1 2021-01-26 10:03:16.134+00 2021-01-26 10:44:00.573+00 3 TEXT_TAB_DELIMITED podium podium \N \N 126003aa-76ae-4fdb-9756-f315212aa826 16 4 products CLASSIC-MODELS-ERRORS.PRODUCTS EXTERNAL Products Stores a list of scale model cars 0.1 2021-01-26 10:03:15.388+00 2021-01-26 10:21:39.239+00 4 TEXT_TAB_DELIMITED ANONYMOUS podium \N \N f698bf0e-78c9-4580-a2ce-9671066ff106 17 4 offices CLASSIC-MODELS-ERRORS.OFFICES EXTERNAL Offices Stores sales office data 0.1 2021-01-26 10:03:15.389+00 2021-01-26 10:27:55.351+00 2 TEXT_TAB_DELIMITED ANONYMOUS podium \N \N ecc10743-52ce-42f2-938a-e56f130a3619 19 4 employees CLASSIC-MODELS-ERRORS.EMPLOYEES EXTERNAL Employees Stores all employee information as well as the organization structure such as who reports to whom 0.1 2021-01-26 10:03:15.391+00 2021-01-26 10:23:34.948+00 3 TEXT_TAB_DELIMITED ANONYMOUS podium \N \N e0cf351f-cb37-42e7-ac99-46d169e095ae 32 6 shippers MYSQL.SALES.SHIPPERS EXTERNAL Shippers Logistics shippers 0.1 2021-01-26 10:04:32.46+00 2021-01-26 10:14:47.437+00 1 TEXT_TAB_DELIMITED podium podium \N \N abd3f522-d440-41eb-b88f-606e1850b2c3 29 6 orders MYSQL.SALES.ORDERS EXTERNAL Orders Order headers 0.1 2021-01-26 10:04:32.456+00 2021-01-26 10:14:47.482+00 1 TEXT_TAB_DELIMITED podium podium \N \N c9f3d0e4-4d40-4439-815f-1b228d9ed046 35 6 customers MYSQL.SALES.CUSTOMERS EXTERNAL Customers Our customers 0.1 2021-01-26 10:04:32.463+00 2021-01-26 10:14:47.532+00 1 TEXT_TAB_DELIMITED podium podium \N \N 01fedda3-e7cc-4e6b-adf7-ab46ff7cc550 34 6 categories MYSQL.SALES.CATEGORIES EXTERNAL Categories Product categories 0.1 2021-01-26 10:04:32.462+00 2021-01-26 10:14:47.58+00 1 TEXT_TAB_DELIMITED podium podium \N \N 0d53cf54-bdf1-4d2f-84ae-ece870a2427a 30 6 employees MYSQL.SALES.EMPLOYEES EXTERNAL Employees Company employees 0.1 2021-01-26 10:04:32.457+00 2021-01-26 10:14:47.636+00 1 TEXT_TAB_DELIMITED podium podium \N \N 7d8e08da-e657-432e-8fd3-681b90aac839 31 6 order_details MYSQL.SALES.ORDER_DETAILS EXTERNAL Order_Details Order lines 0.1 2021-01-26 10:04:32.459+00 2021-01-26 10:14:47.687+00 1 TEXT_TAB_DELIMITED podium podium \N \N 97fc35c5-4559-422d-8053-9cae8feaf08b 33 6 products MYSQL.SALES.PRODUCTS EXTERNAL Products Products 0.1 2021-01-26 10:04:32.461+00 2021-01-26 10:14:47.741+00 1 TEXT_TAB_DELIMITED podium podium \N \N 7b222aea-2f2a-4f33-8582-0c5d71dfe596 18 4 payments CLASSIC-MODELS-ERRORS.PAYMENTS EXTERNAL Payments Stores payments made by customers based on their accounts 0.1 2021-01-26 10:03:15.39+00 2021-01-26 10:29:02.162+00 2 TEXT_TAB_DELIMITED ANONYMOUS podium \N \N b3d84fd3-be75-4e07-84bb-bd2d61b96d57 20 4 productlines CLASSIC-MODELS-ERRORS.PRODUCTLINES EXTERNAL Product Lines Stores a list of product line categories 0.1 2021-01-26 10:03:15.392+00 2021-01-26 10:25:01.509+00 2 TEXT_TAB_DELIMITED ANONYMOUS podium \N \N cc541145-4b7d-4d84-ba4c-d97d2ed5d0c3 27 5 products CLASSIC-MODELS-ERRORS.PRODUCTS INTERNAL Products Stores a list of scale model cars 0.1 2021-01-26 10:03:16.136+00 2021-01-26 10:44:00.619+00 5 TEXT_TAB_DELIMITED podium podium \N \N 9098a878-e689-4209-9793-12bd770f4919 21 4 customers CLASSIC-MODELS-ERRORS.CUSTOMERS EXTERNAL Customers Stores customer’s data 0.1 2021-01-26 10:03:15.393+00 2021-01-26 10:29:58.863+00 4 TEXT_TAB_DELIMITED ANONYMOUS podium \N \N 5ceabca0-9b56-4e9d-93ba-1b8c4721d9ae 52 8 suppliers MYSQL.SALES.SUPPLIERS EXTERNAL Suppliers Product vendors 0.1 2021-01-26 10:04:59.254+00 2021-01-26 10:14:46.94+00 1 TEXT_TAB_DELIMITED podium podium \N \N 44e734e2-fc0f-4826-b3d9-9c9e77d31298 45 8 shippers MYSQL.SALES.SHIPPERS EXTERNAL Shippers Logistics shippers 0.1 2021-01-26 10:04:59.248+00 2021-01-26 10:14:47.001+00 1 TEXT_TAB_DELIMITED podium podium \N \N c249b482-bf7d-4373-841a-a34ae90c437e 49 8 orders MYSQL.SALES.ORDERS EXTERNAL Orders Order headers 0.1 2021-01-26 10:04:59.252+00 2021-01-26 10:14:47.057+00 1 TEXT_TAB_DELIMITED podium podium \N \N 82cbb698-8905-4041-a464-bf9bc7c3089c 50 8 customers MYSQL.SALES.CUSTOMERS EXTERNAL Customers Our customers 0.1 2021-01-26 10:04:59.253+00 2021-01-26 10:14:47.11+00 1 TEXT_TAB_DELIMITED podium podium \N \N ba098b6a-12ea-49ea-8603-41ed523a916e 46 8 categories MYSQL.SALES.CATEGORIES EXTERNAL Categories Product categories 0.1 2021-01-26 10:04:59.249+00 2021-01-26 10:14:47.162+00 1 TEXT_TAB_DELIMITED podium podium \N \N 96adb20d-c535-4615-9430-38e84a27e876 51 8 employees MYSQL.SALES.EMPLOYEES EXTERNAL Employees Company employees 0.1 2021-01-26 10:04:59.253+00 2021-01-26 10:14:47.21+00 1 TEXT_TAB_DELIMITED podium podium \N \N 0d77db53-865b-4c94-812a-d520aee9f126 47 8 order_details MYSQL.SALES.ORDER_DETAILS EXTERNAL Order_Details Order lines 0.1 2021-01-26 10:04:59.25+00 2021-01-26 10:14:47.259+00 1 TEXT_TAB_DELIMITED podium podium \N \N 547e6b16-0c5f-49ba-8bda-4d870f2c2460 48 8 products MYSQL.SALES.PRODUCTS EXTERNAL Products Products 0.1 2021-01-26 10:04:59.251+00 2021-01-26 10:14:47.307+00 1 TEXT_TAB_DELIMITED podium podium \N \N c9dce599-621b-4dd5-bf42-37bf915804fa 36 6 suppliers MYSQL.SALES.SUPPLIERS EXTERNAL Suppliers Product vendors 0.1 2021-01-26 10:04:32.464+00 2021-01-26 10:14:47.383+00 1 TEXT_TAB_DELIMITED podium podium \N \N 6a3beb32-40d4-48c6-8313-207ae09e4d87 66 10 products CLASSIC-MODELS.PRODUCTS EXTERNAL Products Stores a list of scale model cars 0.1 2021-01-26 10:32:10.686+00 2021-01-26 10:38:54.353+00 5 TEXT_TAB_DELIMITED podium podium \N \N f1ebaee2-c182-4149-9694-3e29c1fffb2d 58 9 suppliers MYSQL.SALES.SUPPLIERS INTERNAL Suppliers Product vendors 0.1 2021-01-26 10:04:59.958+00 2021-01-28 08:20:55.975+00 1 TEXT_TAB_DELIMITED podium podium \N \N 2f145ccf-d480-49e0-bb56-6d20806509cc 57 9 shippers MYSQL.SALES.SHIPPERS INTERNAL Shippers Logistics shippers 0.1 2021-01-26 10:04:59.955+00 2021-01-28 08:20:56.001+00 1 TEXT_TAB_DELIMITED podium podium \N \N e21aab57-9b57-4c78-b6cb-f6e333649bc1 56 9 orders MYSQL.SALES.ORDERS INTERNAL Orders Order headers 0.1 2021-01-26 10:04:59.955+00 2021-01-28 08:20:56.018+00 1 TEXT_TAB_DELIMITED podium podium \N \N 2980b539-0332-413a-bc11-421b5892491c 55 9 customers MYSQL.SALES.CUSTOMERS INTERNAL Customers Our customers 0.1 2021-01-26 10:04:59.954+00 2021-01-28 08:20:56.035+00 1 TEXT_TAB_DELIMITED podium podium \N \N a1674830-63ea-451a-98f9-ab48d6dd3cc1 54 9 categories MYSQL.SALES.CATEGORIES INTERNAL Categories Product categories 0.1 2021-01-26 10:04:59.953+00 2021-01-28 08:20:56.053+00 1 TEXT_TAB_DELIMITED podium podium \N \N f98d66ae-bf37-47bb-9892-8f326df95cff 65 10 salesorders CLASSIC-MODELS.SALESORDERS EXTERNAL Sales Orders Stores sales orders w/t lines 0.1 2021-01-26 10:32:10.686+00 2021-01-26 10:38:54.094+00 2 TEXT_TAB_DELIMITED podium podium \N \N 25c1eec5-8ac8-4e97-a8a9-224e2f887897 59 9 employees MYSQL.SALES.EMPLOYEES INTERNAL Employees Company employees 0.1 2021-01-26 10:04:59.958+00 2021-01-28 08:20:56.07+00 1 TEXT_TAB_DELIMITED podium podium \N \N 52cfe896-b71d-4560-8ff7-b406859ae084 60 9 order_details MYSQL.SALES.ORDER_DETAILS INTERNAL Order_Details Order lines 0.1 2021-01-26 10:04:59.959+00 2021-01-28 08:20:56.087+00 1 TEXT_TAB_DELIMITED podium podium \N \N 39eac66b-7c6e-4078-8056-00db520de158 61 10 payments CLASSIC-MODELS.PAYMENTS EXTERNAL Payments Stores payments made by customers based on their accounts 0.1 2021-01-26 10:32:10.683+00 2021-01-26 10:38:54.141+00 2 TEXT_TAB_DELIMITED podium podium \N \N 381da90e-96df-4dc6-a21e-b7afba6cb734 63 10 offices CLASSIC-MODELS.OFFICES EXTERNAL Offices Stores sales office data 0.1 2021-01-26 10:32:10.685+00 2021-01-26 10:38:54.182+00 2 TEXT_TAB_DELIMITED podium podium \N \N 448775c8-629d-401c-b665-3ec0b1b9998a 64 10 customers CLASSIC-MODELS.CUSTOMERS EXTERNAL Customers Stores customer’s data 0.1 2021-01-26 10:32:10.685+00 2021-01-26 10:38:54.225+00 4 TEXT_TAB_DELIMITED podium podium \N \N 32fdf39a-068a-40e9-b954-102d5ef31d69 62 10 employees CLASSIC-MODELS.EMPLOYEES EXTERNAL Employees Stores all employee information as well as the organization structure such as who reports to whom 0.1 2021-01-26 10:32:10.684+00 2021-01-26 10:38:54.311+00 2 TEXT_TAB_DELIMITED podium podium \N \N 4be39e0a-280c-4b65-9a1c-e41b194bdf74 53 9 products MYSQL.SALES.PRODUCTS INTERNAL Products Products 0.1 2021-01-26 10:04:59.952+00 2021-01-28 08:20:56.105+00 1 TEXT_TAB_DELIMITED podium podium \N \N 0732ff08-c573-4ea2-81e9-8f7be95bf4d2 41 7 suppliers MYSQL.SALES.SUPPLIERS INTERNAL Suppliers Product vendors 0.1 2021-01-26 10:04:33.271+00 2021-01-28 08:20:56.147+00 1 TEXT_TAB_DELIMITED podium podium \N \N b182ec4e-161f-4c17-a783-c545331fe523 44 7 shippers MYSQL.SALES.SHIPPERS INTERNAL Shippers Logistics shippers 0.1 2021-01-26 10:04:33.273+00 2021-01-28 08:20:56.164+00 1 TEXT_TAB_DELIMITED podium podium \N \N 1b7f9952-af6a-46e2-ac10-ea60b2830f10 37 7 orders MYSQL.SALES.ORDERS INTERNAL Orders Order headers 0.1 2021-01-26 10:04:33.268+00 2021-01-28 08:20:56.176+00 1 TEXT_TAB_DELIMITED podium podium \N \N 74c5e22a-37a3-445d-88b8-a6908b16f3c6 42 7 customers MYSQL.SALES.CUSTOMERS INTERNAL Customers Our customers 0.1 2021-01-26 10:04:33.271+00 2021-01-28 08:20:56.188+00 1 TEXT_TAB_DELIMITED podium podium \N \N a5997aff-9cc7-4a77-9bf2-3440128f0244 38 7 categories MYSQL.SALES.CATEGORIES INTERNAL Categories Product categories 0.1 2021-01-26 10:04:33.268+00 2021-01-28 08:20:56.199+00 1 TEXT_TAB_DELIMITED podium podium \N \N 1295d130-8b22-424c-a1c6-23a4bea231cf 40 7 employees MYSQL.SALES.EMPLOYEES INTERNAL Employees Company employees 0.1 2021-01-26 10:04:33.27+00 2021-01-28 08:20:56.212+00 1 TEXT_TAB_DELIMITED podium podium \N \N dea0a04c-4bf1-493f-a9e8-ba05c7a4ba78 43 7 order_details MYSQL.SALES.ORDER_DETAILS INTERNAL Order_Details Order lines 0.1 2021-01-26 10:04:33.272+00 2021-01-28 08:20:56.225+00 1 TEXT_TAB_DELIMITED podium podium \N \N a7c67147-cc96-483b-b458-700d1e972d1b 39 7 products MYSQL.SALES.PRODUCTS INTERNAL Products Products 0.1 2021-01-26 10:04:33.269+00 2021-01-28 08:20:56.236+00 1 TEXT_TAB_DELIMITED podium podium \N \N 1de9be2c-7c1b-46eb-bc8a-d5bef19d9186 74 11 payments CLASSIC-MODELS.PAYMENTS INTERNAL Payments Stores payments made by customers based on their accounts 0.1 2021-01-26 10:32:11.186+00 2021-01-26 10:44:00.835+00 3 TEXT_TAB_DELIMITED podium podium \N \N ff04e40d-fd59-49ef-bd52-5878f62587f8 68 11 offices CLASSIC-MODELS.OFFICES INTERNAL Offices Stores sales office data 0.1 2021-01-26 10:32:11.183+00 2021-01-26 10:44:00.859+00 3 TEXT_TAB_DELIMITED podium podium \N \N 17176456-c7cd-4272-9d7f-dbd0e763025e 70 11 salesorders CLASSIC-MODELS.SALESORDERS INTERNAL Sales Orders Stores sales orders w/t lines 0.1 2021-01-26 10:32:11.184+00 2021-01-27 11:17:35.84+00 23 TEXT_TAB_DELIMITED podium podium \N \N 32a85ea2-fae0-4b82-9112-e2fe12c21ac0 71 11 employees CLASSIC-MODELS.EMPLOYEES INTERNAL Employees Stores all employee information as well as the organization structure such as who reports to whom 0.1 2021-01-26 10:32:11.184+00 2021-01-27 11:17:35.846+00 23 TEXT_TAB_DELIMITED podium podium \N \N 28d03d16-afcb-4e35-a7bc-c7f034c2662f 75 11 products_full \N PREPARE_TARGET Full Product Table Product table, joined with Product Lines table 0.1 2021-01-26 10:41:46.464+00 2021-01-27 11:17:35.851+00 30 TEXT_TAB_DELIMITED podium podium \N \N 0e4c1750-2564-4089-a044-6a0c4e585971 77 11 salesorders_full \N PREPARE_TARGET Full Sales orders table Sales orders table, joined with Products (full), Employees and Customers 0.1 2021-01-27 10:46:26.319+00 2021-01-27 13:28:29.059+00 9 TEXT_TAB_DELIMITED podium podium \N \N e13438aa-38fc-4282-b1fc-e45a9abfda92 79 11 sales_full_masked \N PREPARE_TARGET Full Sales order table (masked) Sales orders table, joined with Products (full), Employees and Customers (masked) 0.1 2021-01-27 11:08:00.671+00 2021-01-27 11:19:28.894+00 25 TEXT_TAB_DELIMITED podium podium \N \N 0bb2dd86-56ec-4178-bac4-8b54dbcfba65 81 11 salesorder_by_customer_productscale \N PREPARE_TARGET Sales Total by Customer & Product Scale Sales Total by Customer & Product Scale 0.1 2021-01-27 13:28:22.413+00 2021-01-27 13:29:54.998+00 7 TEXT_TAB_DELIMITED podium podium \N \N f7f39cc3-1a1b-48a7-82d5-2b6eb1bfd9a4 67 10 productlines CLASSIC-MODELS.PRODUCTLINES EXTERNAL Product Lines Stores a list of product line categories 0.1 2021-01-26 10:32:10.687+00 2021-01-26 10:38:54.268+00 2 TEXT_TAB_DELIMITED podium podium \N \N 7bf4023f-5ce9-450c-8bcf-79f15eb87531 72 11 products CLASSIC-MODELS.PRODUCTS INTERNAL Products Stores a list of scale model cars 0.1 2021-01-26 10:32:11.185+00 2021-01-27 08:25:25.518+00 9 TEXT_TAB_DELIMITED podium podium \N \N ce674d31-7812-47a3-a7bc-9e465e3d006b 73 11 productlines CLASSIC-MODELS.PRODUCTLINES INTERNAL Product Lines Stores a list of product line categories 0.1 2021-01-26 10:32:11.185+00 2021-01-27 08:25:25.522+00 7 TEXT_TAB_DELIMITED podium podium \N \N 4747b7bd-71bd-4d4b-ae1f-399c9b37b649 69 11 customers CLASSIC-MODELS.CUSTOMERS INTERNAL Customers Stores customer’s data 0.1 2021-01-26 10:32:11.183+00 2021-01-27 11:17:35.834+00 25 TEXT_TAB_DELIMITED podium podium \N \N c71d01d5-97a5-4489-83ff-a308b971b1f7 80 5 employees_ugly \N PREPARE_TARGET Employees ugly records Table with ugly records from Employees table with a system comment 0.1 2021-01-27 13:19:01.398+00 2021-01-27 13:21:53.486+00 7 TEXT_TAB_DELIMITED podium podium \N \N 6f9d0a33-0b49-4187-a17b-4d7851ccb05e \. -- -- Data for Name: pd_entity_group; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_entity_group (entity_nid, group_nid, nid, createdby, modifiedby, created_ttz, modified_ttz, version) FROM stdin; 15 1 15 podium podium 2021-01-26 10:03:16.73+00 2021-01-26 10:03:16.73+00 0 16 1 16 podium podium 2021-01-26 10:03:16.732+00 2021-01-26 10:03:16.732+00 0 20 1 17 podium podium 2021-01-26 10:03:16.732+00 2021-01-26 10:03:16.732+00 0 21 1 18 podium podium 2021-01-26 10:03:16.733+00 2021-01-26 10:03:16.733+00 0 17 1 19 podium podium 2021-01-26 10:03:16.733+00 2021-01-26 10:03:16.733+00 0 23 1 20 podium podium 2021-01-26 10:03:16.734+00 2021-01-26 10:03:16.734+00 0 27 1 21 podium podium 2021-01-26 10:03:16.735+00 2021-01-26 10:03:16.735+00 0 18 1 22 podium podium 2021-01-26 10:03:16.735+00 2021-01-26 10:03:16.735+00 0 19 1 23 podium podium 2021-01-26 10:03:16.736+00 2021-01-26 10:03:16.736+00 0 24 1 24 podium podium 2021-01-26 10:03:16.737+00 2021-01-26 10:03:16.737+00 0 26 1 25 podium podium 2021-01-26 10:03:16.737+00 2021-01-26 10:03:16.737+00 0 25 1 26 podium podium 2021-01-26 10:03:16.738+00 2021-01-26 10:03:16.738+00 0 22 1 27 podium podium 2021-01-26 10:03:16.738+00 2021-01-26 10:03:16.738+00 0 28 1 28 podium podium 2021-01-26 10:03:16.739+00 2021-01-26 10:03:16.739+00 0 39 1 29 podium podium 2021-01-26 10:04:34.255+00 2021-01-26 10:04:34.255+00 0 42 1 30 podium podium 2021-01-26 10:04:34.257+00 2021-01-26 10:04:34.257+00 0 30 1 31 podium podium 2021-01-26 10:04:34.257+00 2021-01-26 10:04:34.257+00 0 38 1 32 podium podium 2021-01-26 10:04:34.258+00 2021-01-26 10:04:34.258+00 0 40 1 33 podium podium 2021-01-26 10:04:34.259+00 2021-01-26 10:04:34.259+00 0 41 1 34 podium podium 2021-01-26 10:04:34.259+00 2021-01-26 10:04:34.259+00 0 29 1 35 podium podium 2021-01-26 10:04:34.26+00 2021-01-26 10:04:34.26+00 0 31 1 36 podium podium 2021-01-26 10:04:34.261+00 2021-01-26 10:04:34.261+00 0 44 1 37 podium podium 2021-01-26 10:04:34.261+00 2021-01-26 10:04:34.261+00 0 43 1 38 podium podium 2021-01-26 10:04:34.262+00 2021-01-26 10:04:34.262+00 0 33 1 39 podium podium 2021-01-26 10:04:34.263+00 2021-01-26 10:04:34.263+00 0 32 1 40 podium podium 2021-01-26 10:04:34.263+00 2021-01-26 10:04:34.263+00 0 37 1 41 podium podium 2021-01-26 10:04:34.264+00 2021-01-26 10:04:34.264+00 0 34 1 42 podium podium 2021-01-26 10:04:34.264+00 2021-01-26 10:04:34.264+00 0 35 1 43 podium podium 2021-01-26 10:04:34.265+00 2021-01-26 10:04:34.265+00 0 36 1 44 podium podium 2021-01-26 10:04:34.266+00 2021-01-26 10:04:34.266+00 0 45 1 45 podium podium 2021-01-26 10:05:00.516+00 2021-01-26 10:05:00.516+00 0 56 1 46 podium podium 2021-01-26 10:05:00.517+00 2021-01-26 10:05:00.517+00 0 59 1 47 podium podium 2021-01-26 10:05:00.518+00 2021-01-26 10:05:00.518+00 0 51 1 48 podium podium 2021-01-26 10:05:00.519+00 2021-01-26 10:05:00.519+00 0 58 1 49 podium podium 2021-01-26 10:05:00.52+00 2021-01-26 10:05:00.52+00 0 49 1 50 podium podium 2021-01-26 10:05:00.521+00 2021-01-26 10:05:00.521+00 0 55 1 51 podium podium 2021-01-26 10:05:00.522+00 2021-01-26 10:05:00.522+00 0 60 1 52 podium podium 2021-01-26 10:05:00.522+00 2021-01-26 10:05:00.522+00 0 57 1 53 podium podium 2021-01-26 10:05:00.523+00 2021-01-26 10:05:00.523+00 0 53 1 54 podium podium 2021-01-26 10:05:00.523+00 2021-01-26 10:05:00.523+00 0 48 1 55 podium podium 2021-01-26 10:05:00.524+00 2021-01-26 10:05:00.524+00 0 47 1 56 podium podium 2021-01-26 10:05:00.524+00 2021-01-26 10:05:00.524+00 0 50 1 57 podium podium 2021-01-26 10:05:00.525+00 2021-01-26 10:05:00.525+00 0 46 1 58 podium podium 2021-01-26 10:05:00.526+00 2021-01-26 10:05:00.526+00 0 52 1 59 podium podium 2021-01-26 10:05:00.526+00 2021-01-26 10:05:00.526+00 0 54 1 60 podium podium 2021-01-26 10:05:00.527+00 2021-01-26 10:05:00.527+00 0 68 1 61 podium podium 2021-01-26 10:32:11.616+00 2021-01-26 10:32:11.616+00 0 71 1 62 podium podium 2021-01-26 10:32:11.617+00 2021-01-26 10:32:11.617+00 0 74 1 63 podium podium 2021-01-26 10:32:11.617+00 2021-01-26 10:32:11.617+00 0 73 1 64 podium podium 2021-01-26 10:32:11.618+00 2021-01-26 10:32:11.618+00 0 70 1 65 podium podium 2021-01-26 10:32:11.62+00 2021-01-26 10:32:11.62+00 0 72 1 66 podium podium 2021-01-26 10:32:11.621+00 2021-01-26 10:32:11.621+00 0 65 1 67 podium podium 2021-01-26 10:32:11.621+00 2021-01-26 10:32:11.621+00 0 66 1 68 podium podium 2021-01-26 10:32:11.622+00 2021-01-26 10:32:11.622+00 0 61 1 69 podium podium 2021-01-26 10:32:11.622+00 2021-01-26 10:32:11.622+00 0 64 1 70 podium podium 2021-01-26 10:32:11.623+00 2021-01-26 10:32:11.623+00 0 62 1 71 podium podium 2021-01-26 10:32:11.623+00 2021-01-26 10:32:11.623+00 0 63 1 72 podium podium 2021-01-26 10:32:11.624+00 2021-01-26 10:32:11.624+00 0 67 1 73 podium podium 2021-01-26 10:32:11.624+00 2021-01-26 10:32:11.624+00 0 69 1 74 podium podium 2021-01-26 10:32:11.625+00 2021-01-26 10:32:11.625+00 0 75 1 75 podium podium 2021-01-26 10:41:46.483+00 2021-01-26 10:41:46.483+00 0 77 1 77 podium podium 2021-01-27 10:46:26.463+00 2021-01-27 10:46:26.463+00 0 79 1 79 podium podium 2021-01-27 11:08:00.75+00 2021-01-27 11:08:00.75+00 0 80 1 80 podium podium 2021-01-27 13:19:01.424+00 2021-01-27 13:19:01.424+00 0 81 1 81 podium podium 2021-01-27 13:28:22.435+00 2021-01-27 13:28:22.435+00 0 71 2 82 podium podium 2021-01-27 13:43:16.41+00 2021-01-27 13:43:16.41+00 0 69 2 83 podium podium 2021-01-27 13:43:16.411+00 2021-01-27 13:43:16.411+00 0 73 2 84 podium podium 2021-01-27 13:43:16.412+00 2021-01-27 13:43:16.412+00 0 72 2 85 podium podium 2021-01-27 13:43:16.413+00 2021-01-27 13:43:16.413+00 0 68 2 86 podium podium 2021-01-27 13:43:16.413+00 2021-01-27 13:43:16.413+00 0 74 2 87 podium podium 2021-01-27 13:43:16.414+00 2021-01-27 13:43:16.414+00 0 70 2 88 podium podium 2021-01-27 13:43:16.415+00 2021-01-27 13:43:16.415+00 0 63 2 89 podium podium 2021-01-27 13:43:16.433+00 2021-01-27 13:43:16.433+00 0 66 2 90 podium podium 2021-01-27 13:43:16.434+00 2021-01-27 13:43:16.434+00 0 65 2 91 podium podium 2021-01-27 13:43:16.435+00 2021-01-27 13:43:16.435+00 0 64 2 92 podium podium 2021-01-27 13:43:16.436+00 2021-01-27 13:43:16.436+00 0 67 2 93 podium podium 2021-01-27 13:43:16.437+00 2021-01-27 13:43:16.437+00 0 62 2 94 podium podium 2021-01-27 13:43:16.437+00 2021-01-27 13:43:16.437+00 0 61 2 95 podium podium 2021-01-27 13:43:16.438+00 2021-01-27 13:43:16.438+00 0 81 3 96 podium podium 2021-01-27 13:43:45.063+00 2021-01-27 13:43:45.063+00 0 77 3 97 podium podium 2021-01-27 13:43:45.064+00 2021-01-27 13:43:45.064+00 0 79 4 98 podium podium 2021-01-27 13:46:52.378+00 2021-01-27 13:46:52.378+00 0 \. -- -- Data for Name: pd_entity_meter; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_entity_meter (nid, sname, volume, meteredregisteredentities, meteredmanagedentities, unlimitedaddressedentities, unlimitedqvdentities, run_ttz, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_entity_metric; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_entity_metric (nid, metric_value, entity_nid, metric_definition_nid, partition_name, start_time, end_time, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby) FROM stdin; 471 2 27 1 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.481+00 \N 2021-01-26 10:21:39.481+00 0 ANONYMOUS ANONYMOUS 472 2 27 2 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.482+00 \N 2021-01-26 10:21:39.482+00 0 ANONYMOUS ANONYMOUS 473 1611619200000 27 3 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.483+00 \N 2021-01-26 10:21:39.483+00 0 ANONYMOUS ANONYMOUS 474 1611619200000 27 4 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.484+00 \N 2021-01-26 10:21:39.484+00 0 ANONYMOUS ANONYMOUS 475 46 27 5 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.485+00 \N 2021-01-26 10:21:39.485+00 0 ANONYMOUS ANONYMOUS 476 23 27 6 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.486+00 \N 2021-01-26 10:21:39.486+00 0 ANONYMOUS ANONYMOUS 477 23 27 7 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.487+00 \N 2021-01-26 10:21:39.487+00 0 ANONYMOUS ANONYMOUS 1457 4 77 11 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.738+00 \N 2021-01-27 11:06:13.738+00 0 podium podium 1458 3 77 12 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.74+00 \N 2021-01-27 11:06:13.74+00 0 podium podium 1459 0 77 13 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.741+00 \N 2021-01-27 11:06:13.741+00 0 podium podium 1460 3 77 14 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.742+00 \N 2021-01-27 11:06:13.742+00 0 podium podium 1461 1 77 15 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.743+00 \N 2021-01-27 11:06:13.743+00 0 podium podium 478 0 27 8 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.488+00 \N 2021-01-26 10:21:39.488+00 0 ANONYMOUS ANONYMOUS 15 3 44 38 \N 2021-01-26 10:04:33.645+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:04:33.649+00 \N 2021-01-26 10:04:33.649+00 0 podium podium 16 14 37 38 \N 2021-01-26 10:04:33.65+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:04:33.653+00 \N 2021-01-26 10:04:33.653+00 0 podium podium 17 5 38 38 \N 2021-01-26 10:04:33.654+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:04:33.656+00 \N 2021-01-26 10:04:33.656+00 0 podium podium 18 10 39 38 \N 2021-01-26 10:04:33.657+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:04:33.659+00 \N 2021-01-26 10:04:33.659+00 0 podium podium 19 17 40 38 \N 2021-01-26 10:04:33.66+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:04:33.662+00 \N 2021-01-26 10:04:33.662+00 0 podium podium 20 12 41 38 \N 2021-01-26 10:04:33.663+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:04:33.665+00 \N 2021-01-26 10:04:33.665+00 0 podium podium 21 11 42 38 \N 2021-01-26 10:04:33.665+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:04:33.667+00 \N 2021-01-26 10:04:33.667+00 0 podium podium 22 7 43 38 \N 2021-01-26 10:04:33.668+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:04:33.67+00 \N 2021-01-26 10:04:33.67+00 0 podium podium 23 7 60 38 \N 2021-01-26 10:05:00.128+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:05:00.13+00 \N 2021-01-26 10:05:00.13+00 0 podium podium 24 10 53 38 \N 2021-01-26 10:05:00.131+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:05:00.132+00 \N 2021-01-26 10:05:00.132+00 0 podium podium 25 5 54 38 \N 2021-01-26 10:05:00.132+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:05:00.133+00 \N 2021-01-26 10:05:00.133+00 0 podium podium 26 11 55 38 \N 2021-01-26 10:05:00.134+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:05:00.135+00 \N 2021-01-26 10:05:00.135+00 0 podium podium 27 14 56 38 \N 2021-01-26 10:05:00.135+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:05:00.136+00 \N 2021-01-26 10:05:00.136+00 0 podium podium 28 3 57 38 \N 2021-01-26 10:05:00.137+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:05:00.138+00 \N 2021-01-26 10:05:00.138+00 0 podium podium 29 12 58 38 \N 2021-01-26 10:05:00.139+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:05:00.14+00 \N 2021-01-26 10:05:00.14+00 0 podium podium 30 17 59 38 \N 2021-01-26 10:05:00.14+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:05:00.141+00 \N 2021-01-26 10:05:00.141+00 0 podium podium 479 0 27 9 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.488+00 \N 2021-01-26 10:21:39.488+00 0 ANONYMOUS ANONYMOUS 480 26 27 10 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.489+00 \N 2021-01-26 10:21:39.489+00 0 ANONYMOUS ANONYMOUS 481 1 27 11 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.49+00 \N 2021-01-26 10:21:39.49+00 0 ANONYMOUS ANONYMOUS 482 0 27 12 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.491+00 \N 2021-01-26 10:21:39.491+00 0 ANONYMOUS ANONYMOUS 483 0 27 13 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.492+00 \N 2021-01-26 10:21:39.492+00 0 ANONYMOUS ANONYMOUS 484 0 27 14 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.493+00 \N 2021-01-26 10:21:39.493+00 0 ANONYMOUS ANONYMOUS 485 0 27 15 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.494+00 \N 2021-01-26 10:21:39.494+00 0 ANONYMOUS ANONYMOUS 486 0 27 16 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.495+00 \N 2021-01-26 10:21:39.495+00 0 ANONYMOUS ANONYMOUS 487 0 27 17 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.496+00 \N 2021-01-26 10:21:39.496+00 0 ANONYMOUS ANONYMOUS 488 29043 27 35 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.497+00 \N 2021-01-26 10:21:39.497+00 0 ANONYMOUS ANONYMOUS 489 9 27 38 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.498+00 \N 2021-01-26 10:21:39.498+00 0 ANONYMOUS ANONYMOUS 490 0 27 40 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.499+00 \N 2021-01-26 10:21:39.499+00 0 ANONYMOUS ANONYMOUS 491 0 27 41 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.499+00 \N 2021-01-26 10:21:39.499+00 0 ANONYMOUS ANONYMOUS 492 0 27 42 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.5+00 \N 2021-01-26 10:21:39.5+00 0 ANONYMOUS ANONYMOUS 493 0 27 43 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.501+00 \N 2021-01-26 10:21:39.501+00 0 ANONYMOUS ANONYMOUS 494 0 27 18 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.502+00 \N 2021-01-26 10:21:39.502+00 0 ANONYMOUS ANONYMOUS 495 0 27 19 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.503+00 \N 2021-01-26 10:21:39.503+00 0 ANONYMOUS ANONYMOUS 496 110 27 20 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.504+00 \N 2021-01-26 10:21:39.504+00 0 ANONYMOUS ANONYMOUS 497 23 27 21 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.505+00 \N 2021-01-26 10:21:39.505+00 0 ANONYMOUS ANONYMOUS 498 110 27 39 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.506+00 \N 2021-01-26 10:21:39.506+00 0 ANONYMOUS ANONYMOUS 499 2 27 44 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.507+00 \N 2021-01-26 10:21:39.507+00 0 ANONYMOUS ANONYMOUS 500 2 27 45 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.508+00 \N 2021-01-26 10:21:39.508+00 0 ANONYMOUS ANONYMOUS 501 1611619200000 27 46 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.509+00 \N 2021-01-26 10:21:39.509+00 0 ANONYMOUS ANONYMOUS 502 1611619200000 27 47 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.516+00 \N 2021-01-26 10:21:39.516+00 0 ANONYMOUS ANONYMOUS 503 1 27 22 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.518+00 \N 2021-01-26 10:21:39.518+00 0 ANONYMOUS ANONYMOUS 504 0 27 23 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.519+00 \N 2021-01-26 10:21:39.519+00 0 ANONYMOUS ANONYMOUS 505 0 27 24 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.52+00 \N 2021-01-26 10:21:39.52+00 0 ANONYMOUS ANONYMOUS 506 1.1304347826087 27 25 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.521+00 \N 2021-01-26 10:21:39.521+00 0 ANONYMOUS ANONYMOUS 507 0 27 26 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.522+00 \N 2021-01-26 10:21:39.522+00 0 ANONYMOUS ANONYMOUS 508 0 27 27 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.523+00 \N 2021-01-26 10:21:39.523+00 0 ANONYMOUS ANONYMOUS 1462 0 77 16 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.744+00 \N 2021-01-27 11:06:13.744+00 0 podium podium 509 0 27 28 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.524+00 \N 2021-01-26 10:21:39.524+00 0 ANONYMOUS ANONYMOUS 510 0 27 29 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.525+00 \N 2021-01-26 10:21:39.525+00 0 ANONYMOUS ANONYMOUS 511 1 27 36 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.526+00 \N 2021-01-26 10:21:39.526+00 0 ANONYMOUS ANONYMOUS 512 1 27 37 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.527+00 \N 2021-01-26 10:21:39.527+00 0 ANONYMOUS ANONYMOUS 513 0 27 30 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.528+00 \N 2021-01-26 10:21:39.528+00 0 ANONYMOUS ANONYMOUS 514 0.442307692307692 27 31 20210126000000 2021-01-26 10:21:39.276+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:21:39.529+00 \N 2021-01-26 10:21:39.529+00 0 ANONYMOUS ANONYMOUS 675 7 23 20 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.558+00 \N 2021-01-26 10:27:55.558+00 0 ANONYMOUS ANONYMOUS 676 23 23 21 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.559+00 \N 2021-01-26 10:27:55.559+00 0 ANONYMOUS ANONYMOUS 677 7 23 39 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.56+00 \N 2021-01-26 10:27:55.56+00 0 ANONYMOUS ANONYMOUS 678 1 23 44 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.561+00 \N 2021-01-26 10:27:55.561+00 0 ANONYMOUS ANONYMOUS 679 1 23 45 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.562+00 \N 2021-01-26 10:27:55.562+00 0 ANONYMOUS ANONYMOUS 680 1611619200000 23 46 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.563+00 \N 2021-01-26 10:27:55.563+00 0 ANONYMOUS ANONYMOUS 681 1611619200000 23 47 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.564+00 \N 2021-01-26 10:27:55.564+00 0 ANONYMOUS ANONYMOUS 682 1 23 22 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.565+00 \N 2021-01-26 10:27:55.565+00 0 ANONYMOUS ANONYMOUS 683 0 23 23 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.566+00 \N 2021-01-26 10:27:55.566+00 0 ANONYMOUS ANONYMOUS 684 0 23 24 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.566+00 \N 2021-01-26 10:27:55.566+00 0 ANONYMOUS ANONYMOUS 685 1.1304347826087 23 25 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.567+00 \N 2021-01-26 10:27:55.567+00 0 ANONYMOUS ANONYMOUS 686 0.0869565217391304 23 26 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.568+00 \N 2021-01-26 10:27:55.568+00 0 ANONYMOUS ANONYMOUS 687 0 23 27 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.569+00 \N 2021-01-26 10:27:55.569+00 0 ANONYMOUS ANONYMOUS 688 0 23 28 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.569+00 \N 2021-01-26 10:27:55.569+00 0 ANONYMOUS ANONYMOUS 689 0 23 29 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.57+00 \N 2021-01-26 10:27:55.57+00 0 ANONYMOUS ANONYMOUS 690 1 23 36 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.571+00 \N 2021-01-26 10:27:55.571+00 0 ANONYMOUS ANONYMOUS 691 1 23 37 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.571+00 \N 2021-01-26 10:27:55.571+00 0 ANONYMOUS ANONYMOUS 692 0 23 30 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.572+00 \N 2021-01-26 10:27:55.572+00 0 ANONYMOUS ANONYMOUS 693 0.442307692307692 23 31 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.573+00 \N 2021-01-26 10:27:55.573+00 0 ANONYMOUS ANONYMOUS 694 0 23 32 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.573+00 \N 2021-01-26 10:27:55.573+00 0 ANONYMOUS ANONYMOUS 719 0 28 19 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.363+00 \N 2021-01-26 10:29:02.363+00 0 ANONYMOUS ANONYMOUS 720 273 28 20 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.363+00 \N 2021-01-26 10:29:02.363+00 0 ANONYMOUS ANONYMOUS 721 23 28 21 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.364+00 \N 2021-01-26 10:29:02.364+00 0 ANONYMOUS ANONYMOUS 722 273 28 39 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.365+00 \N 2021-01-26 10:29:02.365+00 0 ANONYMOUS ANONYMOUS 723 1 28 44 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.366+00 \N 2021-01-26 10:29:02.366+00 0 ANONYMOUS ANONYMOUS 724 1 28 45 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.366+00 \N 2021-01-26 10:29:02.366+00 0 ANONYMOUS ANONYMOUS 725 1611619200000 28 46 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.367+00 \N 2021-01-26 10:29:02.367+00 0 ANONYMOUS ANONYMOUS 726 1611619200000 28 47 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.368+00 \N 2021-01-26 10:29:02.368+00 0 ANONYMOUS ANONYMOUS 727 1 28 22 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.369+00 \N 2021-01-26 10:29:02.369+00 0 ANONYMOUS ANONYMOUS 728 0 28 23 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.369+00 \N 2021-01-26 10:29:02.369+00 0 ANONYMOUS ANONYMOUS 729 0 28 24 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.37+00 \N 2021-01-26 10:29:02.37+00 0 ANONYMOUS ANONYMOUS 730 1.1304347826087 28 25 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.37+00 \N 2021-01-26 10:29:02.37+00 0 ANONYMOUS ANONYMOUS 731 0.0869565217391304 28 26 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.371+00 \N 2021-01-26 10:29:02.371+00 0 ANONYMOUS ANONYMOUS 732 0 28 27 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.372+00 \N 2021-01-26 10:29:02.372+00 0 ANONYMOUS ANONYMOUS 733 0 28 28 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.372+00 \N 2021-01-26 10:29:02.372+00 0 ANONYMOUS ANONYMOUS 734 0 28 29 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.373+00 \N 2021-01-26 10:29:02.373+00 0 ANONYMOUS ANONYMOUS 735 1 28 36 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.374+00 \N 2021-01-26 10:29:02.374+00 0 ANONYMOUS ANONYMOUS 736 1 28 37 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.374+00 \N 2021-01-26 10:29:02.374+00 0 ANONYMOUS ANONYMOUS 737 0 28 30 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.375+00 \N 2021-01-26 10:29:02.375+00 0 ANONYMOUS ANONYMOUS 738 0.884615384615385 28 31 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.376+00 \N 2021-01-26 10:29:02.376+00 0 ANONYMOUS ANONYMOUS 739 0 28 32 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.376+00 \N 2021-01-26 10:29:02.376+00 0 ANONYMOUS ANONYMOUS 740 2 25 1 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.046+00 \N 2021-01-26 10:29:59.046+00 0 ANONYMOUS ANONYMOUS 741 2 25 2 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.048+00 \N 2021-01-26 10:29:59.048+00 0 ANONYMOUS ANONYMOUS 742 1611619200000 25 3 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.048+00 \N 2021-01-26 10:29:59.048+00 0 ANONYMOUS ANONYMOUS 743 1611619200000 25 4 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.049+00 \N 2021-01-26 10:29:59.049+00 0 ANONYMOUS ANONYMOUS 744 46 25 5 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.05+00 \N 2021-01-26 10:29:59.05+00 0 ANONYMOUS ANONYMOUS 745 23 25 6 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.051+00 \N 2021-01-26 10:29:59.051+00 0 ANONYMOUS ANONYMOUS 746 23 25 7 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.051+00 \N 2021-01-26 10:29:59.051+00 0 ANONYMOUS ANONYMOUS 747 0 25 8 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.052+00 \N 2021-01-26 10:29:59.052+00 0 ANONYMOUS ANONYMOUS 748 0 25 9 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.053+00 \N 2021-01-26 10:29:59.053+00 0 ANONYMOUS ANONYMOUS 749 26 25 10 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.054+00 \N 2021-01-26 10:29:59.054+00 0 ANONYMOUS ANONYMOUS 515 1 22 1 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.134+00 \N 2021-01-26 10:23:35.134+00 0 ANONYMOUS ANONYMOUS 516 1 22 2 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.135+00 \N 2021-01-26 10:23:35.135+00 0 ANONYMOUS ANONYMOUS 517 1611619200000 22 3 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.136+00 \N 2021-01-26 10:23:35.136+00 0 ANONYMOUS ANONYMOUS 518 1611619200000 22 4 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.137+00 \N 2021-01-26 10:23:35.137+00 0 ANONYMOUS ANONYMOUS 519 46 22 5 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.138+00 \N 2021-01-26 10:23:35.138+00 0 ANONYMOUS ANONYMOUS 520 23 22 6 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.139+00 \N 2021-01-26 10:23:35.139+00 0 ANONYMOUS ANONYMOUS 521 23 22 7 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.14+00 \N 2021-01-26 10:23:35.14+00 0 ANONYMOUS ANONYMOUS 522 0 22 8 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.142+00 \N 2021-01-26 10:23:35.142+00 0 ANONYMOUS ANONYMOUS 523 0 22 9 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.143+00 \N 2021-01-26 10:23:35.143+00 0 ANONYMOUS ANONYMOUS 524 26 22 10 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.144+00 \N 2021-01-26 10:23:35.144+00 0 ANONYMOUS ANONYMOUS 525 1 22 11 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.145+00 \N 2021-01-26 10:23:35.145+00 0 ANONYMOUS ANONYMOUS 526 1 22 12 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.146+00 \N 2021-01-26 10:23:35.146+00 0 ANONYMOUS ANONYMOUS 527 1 22 13 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.147+00 \N 2021-01-26 10:23:35.147+00 0 ANONYMOUS ANONYMOUS 528 0 22 14 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.148+00 \N 2021-01-26 10:23:35.148+00 0 ANONYMOUS ANONYMOUS 529 0 22 15 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.149+00 \N 2021-01-26 10:23:35.149+00 0 ANONYMOUS ANONYMOUS 530 0 22 16 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.15+00 \N 2021-01-26 10:23:35.15+00 0 ANONYMOUS ANONYMOUS 531 0 22 17 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.152+00 \N 2021-01-26 10:23:35.152+00 0 ANONYMOUS ANONYMOUS 532 1686 22 35 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.153+00 \N 2021-01-26 10:23:35.153+00 0 ANONYMOUS ANONYMOUS 533 8 22 38 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.154+00 \N 2021-01-26 10:23:35.154+00 0 ANONYMOUS ANONYMOUS 534 0 22 40 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.155+00 \N 2021-01-26 10:23:35.155+00 0 ANONYMOUS ANONYMOUS 535 0 22 41 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.156+00 \N 2021-01-26 10:23:35.156+00 0 ANONYMOUS ANONYMOUS 536 0 22 42 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.157+00 \N 2021-01-26 10:23:35.157+00 0 ANONYMOUS ANONYMOUS 537 0 22 43 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.158+00 \N 2021-01-26 10:23:35.158+00 0 ANONYMOUS ANONYMOUS 538 0 22 18 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.159+00 \N 2021-01-26 10:23:35.159+00 0 ANONYMOUS ANONYMOUS 539 3 22 19 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.16+00 \N 2021-01-26 10:23:35.16+00 0 ANONYMOUS ANONYMOUS 540 20 22 20 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.161+00 \N 2021-01-26 10:23:35.161+00 0 ANONYMOUS ANONYMOUS 541 23 22 21 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.162+00 \N 2021-01-26 10:23:35.162+00 0 ANONYMOUS ANONYMOUS 542 23 22 39 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.163+00 \N 2021-01-26 10:23:35.163+00 0 ANONYMOUS ANONYMOUS 543 1 22 44 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.164+00 \N 2021-01-26 10:23:35.164+00 0 ANONYMOUS ANONYMOUS 544 1 22 45 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.165+00 \N 2021-01-26 10:23:35.165+00 0 ANONYMOUS ANONYMOUS 545 1611619200000 22 46 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.166+00 \N 2021-01-26 10:23:35.166+00 0 ANONYMOUS ANONYMOUS 546 1611619200000 22 47 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.167+00 \N 2021-01-26 10:23:35.167+00 0 ANONYMOUS ANONYMOUS 547 1 22 22 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.168+00 \N 2021-01-26 10:23:35.168+00 0 ANONYMOUS ANONYMOUS 548 0 22 23 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.169+00 \N 2021-01-26 10:23:35.169+00 0 ANONYMOUS ANONYMOUS 549 0.130434782608696 22 24 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.17+00 \N 2021-01-26 10:23:35.17+00 0 ANONYMOUS ANONYMOUS 550 1.1304347826087 22 25 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.17+00 \N 2021-01-26 10:23:35.17+00 0 ANONYMOUS ANONYMOUS 551 0.0434782608695652 22 26 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.171+00 \N 2021-01-26 10:23:35.171+00 0 ANONYMOUS ANONYMOUS 552 0 22 27 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.172+00 \N 2021-01-26 10:23:35.172+00 0 ANONYMOUS ANONYMOUS 553 0 22 28 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.173+00 \N 2021-01-26 10:23:35.173+00 0 ANONYMOUS ANONYMOUS 554 0 22 29 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.174+00 \N 2021-01-26 10:23:35.174+00 0 ANONYMOUS ANONYMOUS 555 1 22 36 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.175+00 \N 2021-01-26 10:23:35.175+00 0 ANONYMOUS ANONYMOUS 556 0.869565217391304 22 37 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.176+00 \N 2021-01-26 10:23:35.176+00 0 ANONYMOUS ANONYMOUS 557 0 22 30 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.177+00 \N 2021-01-26 10:23:35.177+00 0 ANONYMOUS ANONYMOUS 558 0.442307692307692 22 31 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.178+00 \N 2021-01-26 10:23:35.178+00 0 ANONYMOUS ANONYMOUS 559 1 22 32 20210126000000 2021-01-26 10:23:34.987+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:23:35.179+00 \N 2021-01-26 10:23:35.179+00 0 ANONYMOUS ANONYMOUS 560 1 24 1 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.714+00 \N 2021-01-26 10:25:01.714+00 0 ANONYMOUS ANONYMOUS 561 1 24 2 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.716+00 \N 2021-01-26 10:25:01.716+00 0 ANONYMOUS ANONYMOUS 562 1611619200000 24 3 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.717+00 \N 2021-01-26 10:25:01.717+00 0 ANONYMOUS ANONYMOUS 563 1611619200000 24 4 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.718+00 \N 2021-01-26 10:25:01.718+00 0 ANONYMOUS ANONYMOUS 564 46 24 5 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.719+00 \N 2021-01-26 10:25:01.719+00 0 ANONYMOUS ANONYMOUS 565 23 24 6 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.72+00 \N 2021-01-26 10:25:01.72+00 0 ANONYMOUS ANONYMOUS 566 23 24 7 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.721+00 \N 2021-01-26 10:25:01.721+00 0 ANONYMOUS ANONYMOUS 567 0 24 8 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.722+00 \N 2021-01-26 10:25:01.722+00 0 ANONYMOUS ANONYMOUS 568 0 24 9 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.723+00 \N 2021-01-26 10:25:01.723+00 0 ANONYMOUS ANONYMOUS 569 26 24 10 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.724+00 \N 2021-01-26 10:25:01.724+00 0 ANONYMOUS ANONYMOUS 570 1 24 11 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.725+00 \N 2021-01-26 10:25:01.725+00 0 ANONYMOUS ANONYMOUS 571 1 24 12 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.726+00 \N 2021-01-26 10:25:01.726+00 0 ANONYMOUS ANONYMOUS 572 0 24 13 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.727+00 \N 2021-01-26 10:25:01.727+00 0 ANONYMOUS ANONYMOUS 573 0 24 14 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.728+00 \N 2021-01-26 10:25:01.728+00 0 ANONYMOUS ANONYMOUS 574 0 24 15 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.729+00 \N 2021-01-26 10:25:01.729+00 0 ANONYMOUS ANONYMOUS 575 0 24 16 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.73+00 \N 2021-01-26 10:25:01.73+00 0 ANONYMOUS ANONYMOUS 576 0 24 17 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.731+00 \N 2021-01-26 10:25:01.731+00 0 ANONYMOUS ANONYMOUS 577 3375 24 35 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.731+00 \N 2021-01-26 10:25:01.731+00 0 ANONYMOUS ANONYMOUS 578 3 24 38 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.732+00 \N 2021-01-26 10:25:01.732+00 0 ANONYMOUS ANONYMOUS 579 0 24 40 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.733+00 \N 2021-01-26 10:25:01.733+00 0 ANONYMOUS ANONYMOUS 580 0 24 41 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.734+00 \N 2021-01-26 10:25:01.734+00 0 ANONYMOUS ANONYMOUS 581 0 24 42 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.735+00 \N 2021-01-26 10:25:01.735+00 0 ANONYMOUS ANONYMOUS 582 0 24 43 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.736+00 \N 2021-01-26 10:25:01.736+00 0 ANONYMOUS ANONYMOUS 583 0 24 18 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.737+00 \N 2021-01-26 10:25:01.737+00 0 ANONYMOUS ANONYMOUS 584 0 24 19 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.738+00 \N 2021-01-26 10:25:01.738+00 0 ANONYMOUS ANONYMOUS 585 7 24 20 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.738+00 \N 2021-01-26 10:25:01.738+00 0 ANONYMOUS ANONYMOUS 586 23 24 21 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.739+00 \N 2021-01-26 10:25:01.739+00 0 ANONYMOUS ANONYMOUS 587 7 24 39 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.74+00 \N 2021-01-26 10:25:01.74+00 0 ANONYMOUS ANONYMOUS 588 1 24 44 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.741+00 \N 2021-01-26 10:25:01.741+00 0 ANONYMOUS ANONYMOUS 589 1 24 45 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.742+00 \N 2021-01-26 10:25:01.742+00 0 ANONYMOUS ANONYMOUS 590 1611619200000 24 46 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.743+00 \N 2021-01-26 10:25:01.743+00 0 ANONYMOUS ANONYMOUS 591 1611619200000 24 47 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.744+00 \N 2021-01-26 10:25:01.744+00 0 ANONYMOUS ANONYMOUS 592 1 24 22 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.745+00 \N 2021-01-26 10:25:01.745+00 0 ANONYMOUS ANONYMOUS 593 0 24 23 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.746+00 \N 2021-01-26 10:25:01.746+00 0 ANONYMOUS ANONYMOUS 594 0 24 24 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.747+00 \N 2021-01-26 10:25:01.747+00 0 ANONYMOUS ANONYMOUS 595 1.1304347826087 24 25 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.748+00 \N 2021-01-26 10:25:01.748+00 0 ANONYMOUS ANONYMOUS 596 0.0434782608695652 24 26 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.748+00 \N 2021-01-26 10:25:01.748+00 0 ANONYMOUS ANONYMOUS 597 0 24 27 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.749+00 \N 2021-01-26 10:25:01.749+00 0 ANONYMOUS ANONYMOUS 598 0 24 28 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.75+00 \N 2021-01-26 10:25:01.75+00 0 ANONYMOUS ANONYMOUS 599 0 24 29 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.752+00 \N 2021-01-26 10:25:01.752+00 0 ANONYMOUS ANONYMOUS 600 1 24 36 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.752+00 \N 2021-01-26 10:25:01.752+00 0 ANONYMOUS ANONYMOUS 601 1 24 37 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.753+00 \N 2021-01-26 10:25:01.753+00 0 ANONYMOUS ANONYMOUS 602 0 24 30 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.754+00 \N 2021-01-26 10:25:01.754+00 0 ANONYMOUS ANONYMOUS 603 0.442307692307692 24 31 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.755+00 \N 2021-01-26 10:25:01.755+00 0 ANONYMOUS ANONYMOUS 604 0 24 32 20210126000000 2021-01-26 10:25:01.545+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:25:01.756+00 \N 2021-01-26 10:25:01.756+00 0 ANONYMOUS ANONYMOUS 695 1 28 1 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.346+00 \N 2021-01-26 10:29:02.346+00 0 ANONYMOUS ANONYMOUS 696 1 28 2 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.347+00 \N 2021-01-26 10:29:02.347+00 0 ANONYMOUS ANONYMOUS 697 1611619200000 28 3 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.348+00 \N 2021-01-26 10:29:02.348+00 0 ANONYMOUS ANONYMOUS 698 1611619200000 28 4 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.349+00 \N 2021-01-26 10:29:02.349+00 0 ANONYMOUS ANONYMOUS 699 46 28 5 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.349+00 \N 2021-01-26 10:29:02.349+00 0 ANONYMOUS ANONYMOUS 700 23 28 6 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.35+00 \N 2021-01-26 10:29:02.35+00 0 ANONYMOUS ANONYMOUS 701 23 28 7 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.35+00 \N 2021-01-26 10:29:02.35+00 0 ANONYMOUS ANONYMOUS 702 0 28 8 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.351+00 \N 2021-01-26 10:29:02.351+00 0 ANONYMOUS ANONYMOUS 703 0 28 9 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.351+00 \N 2021-01-26 10:29:02.351+00 0 ANONYMOUS ANONYMOUS 704 26 28 10 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.352+00 \N 2021-01-26 10:29:02.352+00 0 ANONYMOUS ANONYMOUS 705 2 28 11 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.353+00 \N 2021-01-26 10:29:02.353+00 0 ANONYMOUS ANONYMOUS 706 2 28 12 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.353+00 \N 2021-01-26 10:29:02.353+00 0 ANONYMOUS ANONYMOUS 707 0 28 13 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.354+00 \N 2021-01-26 10:29:02.354+00 0 ANONYMOUS ANONYMOUS 708 0 28 14 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.355+00 \N 2021-01-26 10:29:02.355+00 0 ANONYMOUS ANONYMOUS 709 0 28 15 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.356+00 \N 2021-01-26 10:29:02.356+00 0 ANONYMOUS ANONYMOUS 710 0 28 16 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.356+00 \N 2021-01-26 10:29:02.356+00 0 ANONYMOUS ANONYMOUS 711 0 28 17 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.357+00 \N 2021-01-26 10:29:02.357+00 0 ANONYMOUS ANONYMOUS 712 12471 28 35 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.358+00 \N 2021-01-26 10:29:02.358+00 0 ANONYMOUS ANONYMOUS 713 4 28 38 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.358+00 \N 2021-01-26 10:29:02.358+00 0 ANONYMOUS ANONYMOUS 714 0 28 40 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.359+00 \N 2021-01-26 10:29:02.359+00 0 ANONYMOUS ANONYMOUS 715 0 28 41 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.36+00 \N 2021-01-26 10:29:02.36+00 0 ANONYMOUS ANONYMOUS 716 0 28 42 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.36+00 \N 2021-01-26 10:29:02.36+00 0 ANONYMOUS ANONYMOUS 717 0 28 43 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.361+00 \N 2021-01-26 10:29:02.361+00 0 ANONYMOUS ANONYMOUS 718 0 28 18 20210126000000 2021-01-26 10:29:02.198+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:02.362+00 \N 2021-01-26 10:29:02.362+00 0 ANONYMOUS ANONYMOUS 1632 0 79 1 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.711+00 \N 2021-01-27 11:18:36.711+00 0 ANONYMOUS ANONYMOUS 1633 0 79 2 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.728+00 \N 2021-01-27 11:18:36.728+00 0 ANONYMOUS ANONYMOUS 1634 0 79 3 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.731+00 \N 2021-01-27 11:18:36.731+00 0 ANONYMOUS ANONYMOUS 1635 0 79 4 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.736+00 \N 2021-01-27 11:18:36.736+00 0 ANONYMOUS ANONYMOUS 1649 2913797 79 35 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.771+00 \N 2021-01-27 11:18:36.771+00 0 ANONYMOUS ANONYMOUS 1650 40 79 38 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.773+00 \N 2021-01-27 11:18:36.773+00 0 ANONYMOUS ANONYMOUS 1651 4 79 40 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.775+00 \N 2021-01-27 11:18:36.775+00 0 ANONYMOUS ANONYMOUS 1652 4 79 41 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.777+00 \N 2021-01-27 11:18:36.777+00 0 ANONYMOUS ANONYMOUS 1653 1611745200000 79 42 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.78+00 \N 2021-01-27 11:18:36.78+00 0 ANONYMOUS ANONYMOUS 1654 1611745200000 79 43 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.783+00 \N 2021-01-27 11:18:36.783+00 0 ANONYMOUS ANONYMOUS 1655 0 79 18 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.785+00 \N 2021-01-27 11:18:36.785+00 0 ANONYMOUS ANONYMOUS 1656 0 79 19 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.786+00 \N 2021-01-27 11:18:36.786+00 0 ANONYMOUS ANONYMOUS 1657 2473 79 20 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.788+00 \N 2021-01-27 11:18:36.788+00 0 ANONYMOUS ANONYMOUS 1659 2473 79 39 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.792+00 \N 2021-01-27 11:18:36.792+00 0 ANONYMOUS ANONYMOUS 1660 4 79 44 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.795+00 \N 2021-01-27 11:18:36.795+00 0 ANONYMOUS ANONYMOUS 1661 4 79 45 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.797+00 \N 2021-01-27 11:18:36.797+00 0 ANONYMOUS ANONYMOUS 1463 0 77 17 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.745+00 \N 2021-01-27 11:06:13.745+00 0 podium podium 1464 32 77 21 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.747+00 \N 2021-01-27 11:06:13.747+00 0 podium podium 1465 1.875 77 25 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.748+00 \N 2021-01-27 11:06:13.748+00 0 podium podium 1466 0.09375 77 26 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.749+00 \N 2021-01-27 11:06:13.749+00 0 podium podium 1467 0.09375 77 27 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.75+00 \N 2021-01-27 11:06:13.75+00 0 podium podium 1468 0 77 28 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.751+00 \N 2021-01-27 11:06:13.751+00 0 podium podium 1469 1 77 31 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.752+00 \N 2021-01-27 11:06:13.752+00 0 podium podium 1470 0 77 32 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.754+00 \N 2021-01-27 11:06:13.754+00 0 podium podium 1471 1 77 33 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.755+00 \N 2021-01-27 11:06:13.755+00 0 podium podium 1472 62 75 5 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.466+00 \N 2021-01-27 11:06:25.466+00 0 podium podium 1473 30 75 6 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.467+00 \N 2021-01-27 11:06:25.467+00 0 podium podium 1474 30 75 7 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.468+00 \N 2021-01-27 11:06:25.468+00 0 podium podium 1475 2 75 8 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.469+00 \N 2021-01-27 11:06:25.469+00 0 podium podium 1476 0 75 9 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.47+00 \N 2021-01-27 11:06:25.47+00 0 podium podium 1477 62 75 10 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.473+00 \N 2021-01-27 11:06:25.473+00 0 podium podium 1478 2 75 11 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.474+00 \N 2021-01-27 11:06:25.474+00 0 podium podium 1479 3 75 12 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.475+00 \N 2021-01-27 11:06:25.475+00 0 podium podium 1480 0 75 13 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.476+00 \N 2021-01-27 11:06:25.476+00 0 podium podium 1481 3 75 14 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.477+00 \N 2021-01-27 11:06:25.477+00 0 podium podium 1482 3 75 15 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.479+00 \N 2021-01-27 11:06:25.479+00 0 podium podium 1483 0 75 16 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.48+00 \N 2021-01-27 11:06:25.48+00 0 podium podium 1484 0 75 17 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.481+00 \N 2021-01-27 11:06:25.481+00 0 podium podium 1485 32 75 21 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.482+00 \N 2021-01-27 11:06:25.482+00 0 podium podium 1486 1.9375 75 25 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.483+00 \N 2021-01-27 11:06:25.483+00 0 podium podium 1487 0.09375 75 26 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.484+00 \N 2021-01-27 11:06:25.484+00 0 podium podium 1488 0.09375 75 27 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.485+00 \N 2021-01-27 11:06:25.485+00 0 podium podium 1489 0 75 28 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.486+00 \N 2021-01-27 11:06:25.486+00 0 podium podium 1490 0.516129032258065 75 31 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.487+00 \N 2021-01-27 11:06:25.487+00 0 podium podium 1491 0 75 32 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.488+00 \N 2021-01-27 11:06:25.488+00 0 podium podium 1492 1 75 33 \N 2021-01-27 11:06:25.434+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:25.489+00 \N 2021-01-27 11:06:25.489+00 0 podium podium 1662 1611745200000 79 46 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.799+00 \N 2021-01-27 11:18:36.799+00 0 ANONYMOUS ANONYMOUS 1663 1611745200000 79 47 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.804+00 \N 2021-01-27 11:18:36.804+00 0 ANONYMOUS ANONYMOUS 1664 1 79 22 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.805+00 \N 2021-01-27 11:18:36.805+00 0 ANONYMOUS ANONYMOUS 1665 0 79 23 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.807+00 \N 2021-01-27 11:18:36.807+00 0 ANONYMOUS ANONYMOUS 1666 0 79 24 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.809+00 \N 2021-01-27 11:18:36.809+00 0 ANONYMOUS ANONYMOUS 1671 0 79 29 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.818+00 \N 2021-01-27 11:18:36.818+00 0 ANONYMOUS ANONYMOUS 1672 1 79 36 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.82+00 \N 2021-01-27 11:18:36.82+00 0 ANONYMOUS ANONYMOUS 1673 1 79 37 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.822+00 \N 2021-01-27 11:18:36.822+00 0 ANONYMOUS ANONYMOUS 1674 0 79 30 20210127110000 2021-01-27 11:18:35.498+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:18:36.825+00 \N 2021-01-27 11:18:36.825+00 0 ANONYMOUS ANONYMOUS 1768 30 80 6 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.553+00 \N 2021-01-27 13:21:53.553+00 0 podium podium 1769 30 80 7 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.554+00 \N 2021-01-27 13:21:53.554+00 0 podium podium 1770 4 80 8 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.555+00 \N 2021-01-27 13:21:53.555+00 0 podium podium 1771 0 80 9 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.556+00 \N 2021-01-27 13:21:53.556+00 0 podium podium 1772 62 80 10 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.557+00 \N 2021-01-27 13:21:53.557+00 0 podium podium 1773 0 80 11 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.558+00 \N 2021-01-27 13:21:53.558+00 0 podium podium 1774 3 80 12 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.559+00 \N 2021-01-27 13:21:53.559+00 0 podium podium 1775 0 80 13 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.559+00 \N 2021-01-27 13:21:53.559+00 0 podium podium 1776 4 80 14 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.56+00 \N 2021-01-27 13:21:53.56+00 0 podium podium 650 1 23 1 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.538+00 \N 2021-01-26 10:27:55.538+00 0 ANONYMOUS ANONYMOUS 1777 1 80 15 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.561+00 \N 2021-01-27 13:21:53.561+00 0 podium podium 1778 0 80 16 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.562+00 \N 2021-01-27 13:21:53.562+00 0 podium podium 1779 0 80 17 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.562+00 \N 2021-01-27 13:21:53.562+00 0 podium podium 1780 34 80 21 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.563+00 \N 2021-01-27 13:21:53.563+00 0 podium podium 1781 1.82352941176471 80 25 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.564+00 \N 2021-01-27 13:21:53.564+00 0 podium podium 1782 0.0882352941176471 80 26 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.564+00 \N 2021-01-27 13:21:53.564+00 0 podium podium 1783 0.117647058823529 80 27 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.565+00 \N 2021-01-27 13:21:53.565+00 0 podium podium 651 1 23 2 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.539+00 \N 2021-01-26 10:27:55.539+00 0 ANONYMOUS ANONYMOUS 652 1611619200000 23 3 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.54+00 \N 2021-01-26 10:27:55.54+00 0 ANONYMOUS ANONYMOUS 653 1611619200000 23 4 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.54+00 \N 2021-01-26 10:27:55.54+00 0 ANONYMOUS ANONYMOUS 654 46 23 5 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.541+00 \N 2021-01-26 10:27:55.541+00 0 ANONYMOUS ANONYMOUS 655 23 23 6 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.542+00 \N 2021-01-26 10:27:55.542+00 0 ANONYMOUS ANONYMOUS 656 23 23 7 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.542+00 \N 2021-01-26 10:27:55.542+00 0 ANONYMOUS ANONYMOUS 657 0 23 8 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.543+00 \N 2021-01-26 10:27:55.543+00 0 ANONYMOUS ANONYMOUS 658 0 23 9 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.544+00 \N 2021-01-26 10:27:55.544+00 0 ANONYMOUS ANONYMOUS 659 26 23 10 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.545+00 \N 2021-01-26 10:27:55.545+00 0 ANONYMOUS ANONYMOUS 660 1 23 11 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.546+00 \N 2021-01-26 10:27:55.546+00 0 ANONYMOUS ANONYMOUS 661 2 23 12 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.547+00 \N 2021-01-26 10:27:55.547+00 0 ANONYMOUS ANONYMOUS 662 0 23 13 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.548+00 \N 2021-01-26 10:27:55.548+00 0 ANONYMOUS ANONYMOUS 663 0 23 14 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.549+00 \N 2021-01-26 10:27:55.549+00 0 ANONYMOUS ANONYMOUS 664 0 23 15 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.549+00 \N 2021-01-26 10:27:55.549+00 0 ANONYMOUS ANONYMOUS 665 0 23 16 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.55+00 \N 2021-01-26 10:27:55.55+00 0 ANONYMOUS ANONYMOUS 666 0 23 17 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.551+00 \N 2021-01-26 10:27:55.551+00 0 ANONYMOUS ANONYMOUS 667 760 23 35 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.551+00 \N 2021-01-26 10:27:55.551+00 0 ANONYMOUS ANONYMOUS 668 10 23 38 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.552+00 \N 2021-01-26 10:27:55.552+00 0 ANONYMOUS ANONYMOUS 669 0 23 40 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.553+00 \N 2021-01-26 10:27:55.553+00 0 ANONYMOUS ANONYMOUS 670 0 23 41 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.553+00 \N 2021-01-26 10:27:55.553+00 0 ANONYMOUS ANONYMOUS 671 0 23 42 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.554+00 \N 2021-01-26 10:27:55.554+00 0 ANONYMOUS ANONYMOUS 672 0 23 43 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.555+00 \N 2021-01-26 10:27:55.555+00 0 ANONYMOUS ANONYMOUS 673 0 23 18 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.556+00 \N 2021-01-26 10:27:55.556+00 0 ANONYMOUS ANONYMOUS 674 0 23 19 20210126000000 2021-01-26 10:27:55.384+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:27:55.557+00 \N 2021-01-26 10:27:55.557+00 0 ANONYMOUS ANONYMOUS 1784 0 80 28 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.565+00 \N 2021-01-27 13:21:53.565+00 0 podium podium 1785 0 80 31 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.566+00 \N 2021-01-27 13:21:53.566+00 0 podium podium 750 2 25 11 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.054+00 \N 2021-01-26 10:29:59.054+00 0 ANONYMOUS ANONYMOUS 751 2 25 12 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.055+00 \N 2021-01-26 10:29:59.055+00 0 ANONYMOUS ANONYMOUS 752 1 25 13 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.056+00 \N 2021-01-26 10:29:59.056+00 0 ANONYMOUS ANONYMOUS 753 0 25 14 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.057+00 \N 2021-01-26 10:29:59.057+00 0 ANONYMOUS ANONYMOUS 754 0 25 15 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.057+00 \N 2021-01-26 10:29:59.057+00 0 ANONYMOUS ANONYMOUS 755 0 25 16 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.058+00 \N 2021-01-26 10:29:59.058+00 0 ANONYMOUS ANONYMOUS 756 0 25 17 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.059+00 \N 2021-01-26 10:29:59.059+00 0 ANONYMOUS ANONYMOUS 757 17786 25 35 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.06+00 \N 2021-01-26 10:29:59.06+00 0 ANONYMOUS ANONYMOUS 758 14 25 38 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.061+00 \N 2021-01-26 10:29:59.061+00 0 ANONYMOUS ANONYMOUS 759 0 25 40 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.061+00 \N 2021-01-26 10:29:59.061+00 0 ANONYMOUS ANONYMOUS 760 0 25 41 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.062+00 \N 2021-01-26 10:29:59.062+00 0 ANONYMOUS ANONYMOUS 761 0 25 42 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.063+00 \N 2021-01-26 10:29:59.063+00 0 ANONYMOUS ANONYMOUS 762 0 25 43 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.063+00 \N 2021-01-26 10:29:59.063+00 0 ANONYMOUS ANONYMOUS 763 0 25 18 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.064+00 \N 2021-01-26 10:29:59.064+00 0 ANONYMOUS ANONYMOUS 764 5 25 19 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.065+00 \N 2021-01-26 10:29:59.065+00 0 ANONYMOUS ANONYMOUS 765 117 25 20 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.066+00 \N 2021-01-26 10:29:59.066+00 0 ANONYMOUS ANONYMOUS 766 23 25 21 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.066+00 \N 2021-01-26 10:29:59.066+00 0 ANONYMOUS ANONYMOUS 767 122 25 39 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.067+00 \N 2021-01-26 10:29:59.067+00 0 ANONYMOUS ANONYMOUS 768 2 25 44 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.068+00 \N 2021-01-26 10:29:59.068+00 0 ANONYMOUS ANONYMOUS 769 2 25 45 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.068+00 \N 2021-01-26 10:29:59.068+00 0 ANONYMOUS ANONYMOUS 770 1611619200000 25 46 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.069+00 \N 2021-01-26 10:29:59.069+00 0 ANONYMOUS ANONYMOUS 771 1611619200000 25 47 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.07+00 \N 2021-01-26 10:29:59.07+00 0 ANONYMOUS ANONYMOUS 772 1 25 22 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.071+00 \N 2021-01-26 10:29:59.071+00 0 ANONYMOUS ANONYMOUS 773 0 25 23 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.071+00 \N 2021-01-26 10:29:59.071+00 0 ANONYMOUS ANONYMOUS 774 0.040983606557377 25 24 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.072+00 \N 2021-01-26 10:29:59.072+00 0 ANONYMOUS ANONYMOUS 775 1.1304347826087 25 25 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.073+00 \N 2021-01-26 10:29:59.073+00 0 ANONYMOUS ANONYMOUS 776 0.0869565217391304 25 26 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.073+00 \N 2021-01-26 10:29:59.073+00 0 ANONYMOUS ANONYMOUS 777 0 25 27 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.074+00 \N 2021-01-26 10:29:59.074+00 0 ANONYMOUS ANONYMOUS 778 0 25 28 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.075+00 \N 2021-01-26 10:29:59.075+00 0 ANONYMOUS ANONYMOUS 779 0 25 29 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.075+00 \N 2021-01-26 10:29:59.075+00 0 ANONYMOUS ANONYMOUS 780 1 25 36 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.076+00 \N 2021-01-26 10:29:59.076+00 0 ANONYMOUS ANONYMOUS 781 0.959016393442623 25 37 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.076+00 \N 2021-01-26 10:29:59.076+00 0 ANONYMOUS ANONYMOUS 782 0 25 30 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.077+00 \N 2021-01-26 10:29:59.077+00 0 ANONYMOUS ANONYMOUS 783 0.884615384615385 25 31 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.078+00 \N 2021-01-26 10:29:59.078+00 0 ANONYMOUS ANONYMOUS 784 1 25 32 20210126000000 2021-01-26 10:29:58.905+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:29:59.078+00 \N 2021-01-26 10:29:59.078+00 0 ANONYMOUS ANONYMOUS 785 1 26 1 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.074+00 \N 2021-01-26 10:31:06.074+00 0 ANONYMOUS ANONYMOUS 786 1 26 2 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.075+00 \N 2021-01-26 10:31:06.075+00 0 ANONYMOUS ANONYMOUS 787 1611619200000 26 3 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.075+00 \N 2021-01-26 10:31:06.075+00 0 ANONYMOUS ANONYMOUS 788 1611619200000 26 4 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.076+00 \N 2021-01-26 10:31:06.076+00 0 ANONYMOUS ANONYMOUS 789 46 26 5 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.077+00 \N 2021-01-26 10:31:06.077+00 0 ANONYMOUS ANONYMOUS 790 23 26 6 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.077+00 \N 2021-01-26 10:31:06.077+00 0 ANONYMOUS ANONYMOUS 791 23 26 7 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.078+00 \N 2021-01-26 10:31:06.078+00 0 ANONYMOUS ANONYMOUS 792 0 26 8 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.079+00 \N 2021-01-26 10:31:06.079+00 0 ANONYMOUS ANONYMOUS 793 0 26 9 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.079+00 \N 2021-01-26 10:31:06.079+00 0 ANONYMOUS ANONYMOUS 794 26 26 10 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.081+00 \N 2021-01-26 10:31:06.081+00 0 ANONYMOUS ANONYMOUS 795 2 26 11 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.082+00 \N 2021-01-26 10:31:06.082+00 0 ANONYMOUS ANONYMOUS 796 3 26 12 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.083+00 \N 2021-01-26 10:31:06.083+00 0 ANONYMOUS ANONYMOUS 797 1 26 13 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.083+00 \N 2021-01-26 10:31:06.083+00 0 ANONYMOUS ANONYMOUS 798 0 26 14 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.084+00 \N 2021-01-26 10:31:06.084+00 0 ANONYMOUS ANONYMOUS 799 0 26 15 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.085+00 \N 2021-01-26 10:31:06.085+00 0 ANONYMOUS ANONYMOUS 800 0 26 16 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.085+00 \N 2021-01-26 10:31:06.085+00 0 ANONYMOUS ANONYMOUS 801 0 26 17 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.086+00 \N 2021-01-26 10:31:06.086+00 0 ANONYMOUS ANONYMOUS 802 176668 26 35 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.087+00 \N 2021-01-26 10:31:06.087+00 0 ANONYMOUS ANONYMOUS 803 10 26 38 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.088+00 \N 2021-01-26 10:31:06.088+00 0 ANONYMOUS ANONYMOUS 804 0 26 40 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.088+00 \N 2021-01-26 10:31:06.088+00 0 ANONYMOUS ANONYMOUS 805 0 26 41 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.089+00 \N 2021-01-26 10:31:06.089+00 0 ANONYMOUS ANONYMOUS 806 0 26 42 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.09+00 \N 2021-01-26 10:31:06.09+00 0 ANONYMOUS ANONYMOUS 807 0 26 43 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.09+00 \N 2021-01-26 10:31:06.09+00 0 ANONYMOUS ANONYMOUS 808 0 26 18 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.091+00 \N 2021-01-26 10:31:06.091+00 0 ANONYMOUS ANONYMOUS 809 3 26 19 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.092+00 \N 2021-01-26 10:31:06.092+00 0 ANONYMOUS ANONYMOUS 810 2470 26 20 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.092+00 \N 2021-01-26 10:31:06.092+00 0 ANONYMOUS ANONYMOUS 811 23 26 21 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.093+00 \N 2021-01-26 10:31:06.093+00 0 ANONYMOUS ANONYMOUS 812 2473 26 39 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.093+00 \N 2021-01-26 10:31:06.093+00 0 ANONYMOUS ANONYMOUS 813 1 26 44 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.094+00 \N 2021-01-26 10:31:06.094+00 0 ANONYMOUS ANONYMOUS 814 1 26 45 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.095+00 \N 2021-01-26 10:31:06.095+00 0 ANONYMOUS ANONYMOUS 815 1611619200000 26 46 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.095+00 \N 2021-01-26 10:31:06.095+00 0 ANONYMOUS ANONYMOUS 816 1611619200000 26 47 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.096+00 \N 2021-01-26 10:31:06.096+00 0 ANONYMOUS ANONYMOUS 817 1 26 22 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.097+00 \N 2021-01-26 10:31:06.097+00 0 ANONYMOUS ANONYMOUS 818 0 26 23 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.097+00 \N 2021-01-26 10:31:06.097+00 0 ANONYMOUS ANONYMOUS 819 0.00121310149615851 26 24 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.098+00 \N 2021-01-26 10:31:06.098+00 0 ANONYMOUS ANONYMOUS 820 1.1304347826087 26 25 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.099+00 \N 2021-01-26 10:31:06.099+00 0 ANONYMOUS ANONYMOUS 821 0.130434782608696 26 26 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.099+00 \N 2021-01-26 10:31:06.099+00 0 ANONYMOUS ANONYMOUS 822 0 26 27 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.1+00 \N 2021-01-26 10:31:06.1+00 0 ANONYMOUS ANONYMOUS 823 0 26 28 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.101+00 \N 2021-01-26 10:31:06.101+00 0 ANONYMOUS ANONYMOUS 824 0 26 29 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.101+00 \N 2021-01-26 10:31:06.101+00 0 ANONYMOUS ANONYMOUS 825 1 26 36 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.102+00 \N 2021-01-26 10:31:06.102+00 0 ANONYMOUS ANONYMOUS 826 0.998786898503842 26 37 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.102+00 \N 2021-01-26 10:31:06.102+00 0 ANONYMOUS ANONYMOUS 827 0 26 30 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.103+00 \N 2021-01-26 10:31:06.103+00 0 ANONYMOUS ANONYMOUS 828 0.884615384615385 26 31 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.104+00 \N 2021-01-26 10:31:06.104+00 0 ANONYMOUS ANONYMOUS 829 1 26 32 20210126000000 2021-01-26 10:31:05.936+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:31:06.104+00 \N 2021-01-26 10:31:06.104+00 0 ANONYMOUS ANONYMOUS 1786 0 80 32 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.566+00 \N 2021-01-27 13:21:53.566+00 0 podium podium 1787 1 80 33 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.567+00 \N 2021-01-27 13:21:53.567+00 0 podium podium 1842 3 81 12 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.067+00 \N 2021-01-27 13:29:55.067+00 0 podium podium 837 1 73 1 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.444+00 \N 2021-01-26 10:32:21.444+00 0 ANONYMOUS ANONYMOUS 838 1 73 2 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.445+00 \N 2021-01-26 10:32:21.445+00 0 ANONYMOUS ANONYMOUS 839 1611622800000 73 3 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.446+00 \N 2021-01-26 10:32:21.446+00 0 ANONYMOUS ANONYMOUS 840 1611622800000 73 4 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.447+00 \N 2021-01-26 10:32:21.447+00 0 ANONYMOUS ANONYMOUS 841 60 73 5 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.447+00 \N 2021-01-26 10:32:21.447+00 0 ANONYMOUS ANONYMOUS 842 30 73 6 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.448+00 \N 2021-01-26 10:32:21.448+00 0 ANONYMOUS ANONYMOUS 843 30 73 7 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.449+00 \N 2021-01-26 10:32:21.449+00 0 ANONYMOUS ANONYMOUS 844 0 73 8 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.449+00 \N 2021-01-26 10:32:21.449+00 0 ANONYMOUS ANONYMOUS 845 0 73 9 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.45+00 \N 2021-01-26 10:32:21.45+00 0 ANONYMOUS ANONYMOUS 846 26 73 10 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.451+00 \N 2021-01-26 10:32:21.451+00 0 ANONYMOUS ANONYMOUS 847 0 73 11 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.452+00 \N 2021-01-26 10:32:21.452+00 0 ANONYMOUS ANONYMOUS 848 3 73 12 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.452+00 \N 2021-01-26 10:32:21.452+00 0 ANONYMOUS ANONYMOUS 849 0 73 13 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.453+00 \N 2021-01-26 10:32:21.453+00 0 ANONYMOUS ANONYMOUS 850 0 73 14 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.453+00 \N 2021-01-26 10:32:21.453+00 0 ANONYMOUS ANONYMOUS 851 0 73 15 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.454+00 \N 2021-01-26 10:32:21.454+00 0 ANONYMOUS ANONYMOUS 852 0 73 16 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.455+00 \N 2021-01-26 10:32:21.455+00 0 ANONYMOUS ANONYMOUS 853 0 73 17 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.455+00 \N 2021-01-26 10:32:21.455+00 0 ANONYMOUS ANONYMOUS 854 3375 73 35 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.456+00 \N 2021-01-26 10:32:21.456+00 0 ANONYMOUS ANONYMOUS 855 3 73 38 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.457+00 \N 2021-01-26 10:32:21.457+00 0 ANONYMOUS ANONYMOUS 856 0 73 40 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.457+00 \N 2021-01-26 10:32:21.457+00 0 ANONYMOUS ANONYMOUS 857 0 73 41 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.458+00 \N 2021-01-26 10:32:21.458+00 0 ANONYMOUS ANONYMOUS 858 0 73 42 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.459+00 \N 2021-01-26 10:32:21.459+00 0 ANONYMOUS ANONYMOUS 859 0 73 43 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.459+00 \N 2021-01-26 10:32:21.459+00 0 ANONYMOUS ANONYMOUS 860 0 73 18 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.46+00 \N 2021-01-26 10:32:21.46+00 0 ANONYMOUS ANONYMOUS 861 0 73 19 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.461+00 \N 2021-01-26 10:32:21.461+00 0 ANONYMOUS ANONYMOUS 862 7 73 20 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.461+00 \N 2021-01-26 10:32:21.461+00 0 ANONYMOUS ANONYMOUS 863 30 73 21 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.462+00 \N 2021-01-26 10:32:21.462+00 0 ANONYMOUS ANONYMOUS 864 7 73 39 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.463+00 \N 2021-01-26 10:32:21.463+00 0 ANONYMOUS ANONYMOUS 865 1 73 44 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.463+00 \N 2021-01-26 10:32:21.463+00 0 ANONYMOUS ANONYMOUS 866 1 73 45 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.464+00 \N 2021-01-26 10:32:21.464+00 0 ANONYMOUS ANONYMOUS 867 1611622800000 73 46 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.465+00 \N 2021-01-26 10:32:21.465+00 0 ANONYMOUS ANONYMOUS 868 1611622800000 73 47 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.466+00 \N 2021-01-26 10:32:21.466+00 0 ANONYMOUS ANONYMOUS 869 1 73 22 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.466+00 \N 2021-01-26 10:32:21.466+00 0 ANONYMOUS ANONYMOUS 870 0 73 23 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.467+00 \N 2021-01-26 10:32:21.467+00 0 ANONYMOUS ANONYMOUS 871 0 73 24 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.468+00 \N 2021-01-26 10:32:21.468+00 0 ANONYMOUS ANONYMOUS 872 0.866666666666667 73 25 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.468+00 \N 2021-01-26 10:32:21.468+00 0 ANONYMOUS ANONYMOUS 873 0.1 73 26 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.469+00 \N 2021-01-26 10:32:21.469+00 0 ANONYMOUS ANONYMOUS 874 0 73 27 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.469+00 \N 2021-01-26 10:32:21.469+00 0 ANONYMOUS ANONYMOUS 875 0 73 28 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.47+00 \N 2021-01-26 10:32:21.47+00 0 ANONYMOUS ANONYMOUS 876 0 73 29 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.47+00 \N 2021-01-26 10:32:21.47+00 0 ANONYMOUS ANONYMOUS 877 1 73 36 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.471+00 \N 2021-01-26 10:32:21.471+00 0 ANONYMOUS ANONYMOUS 878 1 73 37 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.472+00 \N 2021-01-26 10:32:21.472+00 0 ANONYMOUS ANONYMOUS 879 0 73 30 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.472+00 \N 2021-01-26 10:32:21.472+00 0 ANONYMOUS ANONYMOUS 880 0 73 31 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.473+00 \N 2021-01-26 10:32:21.473+00 0 ANONYMOUS ANONYMOUS 881 0 73 32 20210126010000 2021-01-26 10:32:21.295+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:21.473+00 \N 2021-01-26 10:32:21.473+00 0 ANONYMOUS ANONYMOUS 882 1 70 1 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.242+00 \N 2021-01-26 10:32:48.242+00 0 ANONYMOUS ANONYMOUS 883 1 70 2 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.243+00 \N 2021-01-26 10:32:48.243+00 0 ANONYMOUS ANONYMOUS 884 1611622800000 70 3 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.244+00 \N 2021-01-26 10:32:48.244+00 0 ANONYMOUS ANONYMOUS 885 1611622800000 70 4 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.245+00 \N 2021-01-26 10:32:48.245+00 0 ANONYMOUS ANONYMOUS 886 60 70 5 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.246+00 \N 2021-01-26 10:32:48.246+00 0 ANONYMOUS ANONYMOUS 887 30 70 6 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.246+00 \N 2021-01-26 10:32:48.246+00 0 ANONYMOUS ANONYMOUS 888 30 70 7 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.247+00 \N 2021-01-26 10:32:48.247+00 0 ANONYMOUS ANONYMOUS 1843 0 81 13 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.068+00 \N 2021-01-27 13:29:55.068+00 0 podium podium 1844 5 81 14 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.069+00 \N 2021-01-27 13:29:55.069+00 0 podium podium 1845 1 81 15 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.069+00 \N 2021-01-27 13:29:55.069+00 0 podium podium 889 0 70 8 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.248+00 \N 2021-01-26 10:32:48.248+00 0 ANONYMOUS ANONYMOUS 890 0 70 9 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.249+00 \N 2021-01-26 10:32:48.249+00 0 ANONYMOUS ANONYMOUS 891 26 70 10 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.25+00 \N 2021-01-26 10:32:48.25+00 0 ANONYMOUS ANONYMOUS 892 0 70 11 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.251+00 \N 2021-01-26 10:32:48.251+00 0 ANONYMOUS ANONYMOUS 893 3 70 12 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.251+00 \N 2021-01-26 10:32:48.251+00 0 ANONYMOUS ANONYMOUS 894 0 70 13 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.252+00 \N 2021-01-26 10:32:48.252+00 0 ANONYMOUS ANONYMOUS 895 0 70 14 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.253+00 \N 2021-01-26 10:32:48.253+00 0 ANONYMOUS ANONYMOUS 896 0 70 15 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.254+00 \N 2021-01-26 10:32:48.254+00 0 ANONYMOUS ANONYMOUS 897 0 70 16 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.254+00 \N 2021-01-26 10:32:48.254+00 0 ANONYMOUS ANONYMOUS 898 0 70 17 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.255+00 \N 2021-01-26 10:32:48.255+00 0 ANONYMOUS ANONYMOUS 899 176605 70 35 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.256+00 \N 2021-01-26 10:32:48.256+00 0 ANONYMOUS ANONYMOUS 900 10 70 38 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.256+00 \N 2021-01-26 10:32:48.256+00 0 ANONYMOUS ANONYMOUS 901 0 70 40 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.257+00 \N 2021-01-26 10:32:48.257+00 0 ANONYMOUS ANONYMOUS 902 0 70 41 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.258+00 \N 2021-01-26 10:32:48.258+00 0 ANONYMOUS ANONYMOUS 903 0 70 42 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.258+00 \N 2021-01-26 10:32:48.258+00 0 ANONYMOUS ANONYMOUS 904 0 70 43 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.259+00 \N 2021-01-26 10:32:48.259+00 0 ANONYMOUS ANONYMOUS 905 0 70 18 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.26+00 \N 2021-01-26 10:32:48.26+00 0 ANONYMOUS ANONYMOUS 906 0 70 19 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.26+00 \N 2021-01-26 10:32:48.26+00 0 ANONYMOUS ANONYMOUS 907 2473 70 20 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.261+00 \N 2021-01-26 10:32:48.261+00 0 ANONYMOUS ANONYMOUS 908 30 70 21 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.262+00 \N 2021-01-26 10:32:48.262+00 0 ANONYMOUS ANONYMOUS 909 2473 70 39 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.263+00 \N 2021-01-26 10:32:48.263+00 0 ANONYMOUS ANONYMOUS 910 1 70 44 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.264+00 \N 2021-01-26 10:32:48.264+00 0 ANONYMOUS ANONYMOUS 911 1 70 45 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.264+00 \N 2021-01-26 10:32:48.264+00 0 ANONYMOUS ANONYMOUS 912 1611622800000 70 46 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.265+00 \N 2021-01-26 10:32:48.265+00 0 ANONYMOUS ANONYMOUS 913 1611622800000 70 47 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.266+00 \N 2021-01-26 10:32:48.266+00 0 ANONYMOUS ANONYMOUS 914 1 70 22 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.267+00 \N 2021-01-26 10:32:48.267+00 0 ANONYMOUS ANONYMOUS 915 0 70 23 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.268+00 \N 2021-01-26 10:32:48.268+00 0 ANONYMOUS ANONYMOUS 916 0 70 24 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.268+00 \N 2021-01-26 10:32:48.268+00 0 ANONYMOUS ANONYMOUS 917 0.866666666666667 70 25 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.269+00 \N 2021-01-26 10:32:48.269+00 0 ANONYMOUS ANONYMOUS 918 0.1 70 26 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.27+00 \N 2021-01-26 10:32:48.27+00 0 ANONYMOUS ANONYMOUS 919 0 70 27 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.27+00 \N 2021-01-26 10:32:48.27+00 0 ANONYMOUS ANONYMOUS 920 0 70 28 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.271+00 \N 2021-01-26 10:32:48.271+00 0 ANONYMOUS ANONYMOUS 921 0 70 29 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.272+00 \N 2021-01-26 10:32:48.272+00 0 ANONYMOUS ANONYMOUS 922 1 70 36 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.273+00 \N 2021-01-26 10:32:48.273+00 0 ANONYMOUS ANONYMOUS 923 1 70 37 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.273+00 \N 2021-01-26 10:32:48.273+00 0 ANONYMOUS ANONYMOUS 924 0 70 30 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.274+00 \N 2021-01-26 10:32:48.274+00 0 ANONYMOUS ANONYMOUS 925 0 70 31 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.275+00 \N 2021-01-26 10:32:48.275+00 0 ANONYMOUS ANONYMOUS 926 0 70 32 20210126010000 2021-01-26 10:32:48.093+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:32:48.275+00 \N 2021-01-26 10:32:48.275+00 0 ANONYMOUS ANONYMOUS 1404 0 77 1 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.646+00 \N 2021-01-27 10:47:39.646+00 0 ANONYMOUS ANONYMOUS 1405 0 77 2 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.649+00 \N 2021-01-27 10:47:39.649+00 0 ANONYMOUS ANONYMOUS 1406 0 77 3 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.652+00 \N 2021-01-27 10:47:39.652+00 0 ANONYMOUS ANONYMOUS 1407 0 77 4 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.654+00 \N 2021-01-27 10:47:39.654+00 0 ANONYMOUS ANONYMOUS 1699 63 79 5 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.958+00 \N 2021-01-27 11:19:28.958+00 0 podium podium 1700 30 79 6 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.96+00 \N 2021-01-27 11:19:28.96+00 0 podium podium 1701 30 79 7 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.961+00 \N 2021-01-27 11:19:28.961+00 0 podium podium 1702 3 79 8 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.961+00 \N 2021-01-27 11:19:28.961+00 0 podium podium 1703 0 79 9 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.962+00 \N 2021-01-27 11:19:28.962+00 0 podium podium 1704 62 79 10 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.963+00 \N 2021-01-27 11:19:28.963+00 0 podium podium 1705 0 79 11 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.964+00 \N 2021-01-27 11:19:28.964+00 0 podium podium 1706 3 79 12 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.965+00 \N 2021-01-27 11:19:28.965+00 0 podium podium 1707 0 79 13 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.965+00 \N 2021-01-27 11:19:28.965+00 0 podium podium 1708 3 79 14 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.966+00 \N 2021-01-27 11:19:28.966+00 0 podium podium 1709 1 79 15 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.967+00 \N 2021-01-27 11:19:28.967+00 0 podium podium 1710 0 79 16 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.968+00 \N 2021-01-27 11:19:28.968+00 0 podium podium 1711 0 79 17 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.968+00 \N 2021-01-27 11:19:28.968+00 0 podium podium 1421 2706813 77 35 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.681+00 \N 2021-01-27 10:47:39.681+00 0 ANONYMOUS ANONYMOUS 1422 40 77 38 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.683+00 \N 2021-01-27 10:47:39.683+00 0 ANONYMOUS ANONYMOUS 1423 3 77 40 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.685+00 \N 2021-01-27 10:47:39.685+00 0 ANONYMOUS ANONYMOUS 1712 33 79 21 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.969+00 \N 2021-01-27 11:19:28.969+00 0 podium podium 1424 3 77 41 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.687+00 \N 2021-01-27 10:47:39.687+00 0 ANONYMOUS ANONYMOUS 1425 1611738000000 77 42 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.69+00 \N 2021-01-27 10:47:39.69+00 0 ANONYMOUS ANONYMOUS 1426 1611738000000 77 43 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.692+00 \N 2021-01-27 10:47:39.692+00 0 ANONYMOUS ANONYMOUS 1427 0 77 18 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.693+00 \N 2021-01-27 10:47:39.693+00 0 ANONYMOUS ANONYMOUS 1428 0 77 19 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.695+00 \N 2021-01-27 10:47:39.695+00 0 ANONYMOUS ANONYMOUS 1429 0 77 20 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.697+00 \N 2021-01-27 10:47:39.697+00 0 ANONYMOUS ANONYMOUS 1713 1.87878787878788 79 25 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.97+00 \N 2021-01-27 11:19:28.97+00 0 podium podium 1431 0 77 39 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.701+00 \N 2021-01-27 10:47:39.701+00 0 ANONYMOUS ANONYMOUS 1432 3 77 44 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.702+00 \N 2021-01-27 10:47:39.702+00 0 ANONYMOUS ANONYMOUS 1433 3 77 45 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.704+00 \N 2021-01-27 10:47:39.704+00 0 ANONYMOUS ANONYMOUS 1434 1611738000000 77 46 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.707+00 \N 2021-01-27 10:47:39.707+00 0 ANONYMOUS ANONYMOUS 1435 1611738000000 77 47 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.708+00 \N 2021-01-27 10:47:39.708+00 0 ANONYMOUS ANONYMOUS 1436 1 77 22 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.71+00 \N 2021-01-27 10:47:39.71+00 0 ANONYMOUS ANONYMOUS 1437 0 77 23 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.712+00 \N 2021-01-27 10:47:39.712+00 0 ANONYMOUS ANONYMOUS 1438 0 77 24 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.714+00 \N 2021-01-27 10:47:39.714+00 0 ANONYMOUS ANONYMOUS 1714 0.0909090909090909 79 26 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.971+00 \N 2021-01-27 11:19:28.971+00 0 podium podium 1715 0.0909090909090909 79 27 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.971+00 \N 2021-01-27 11:19:28.971+00 0 podium podium 1716 0 79 28 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.972+00 \N 2021-01-27 11:19:28.972+00 0 podium podium 1717 0 79 31 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.973+00 \N 2021-01-27 11:19:28.973+00 0 podium podium 1443 0 77 29 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.723+00 \N 2021-01-27 10:47:39.723+00 0 ANONYMOUS ANONYMOUS 1444 1 77 36 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.724+00 \N 2021-01-27 10:47:39.724+00 0 ANONYMOUS ANONYMOUS 1445 1 77 37 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.726+00 \N 2021-01-27 10:47:39.726+00 0 ANONYMOUS ANONYMOUS 1446 0 77 30 20210127090000 2021-01-27 10:47:38.368+00 2100-12-31 00:00:00+00 \N 2021-01-27 10:47:39.728+00 \N 2021-01-27 10:47:39.728+00 0 ANONYMOUS ANONYMOUS 1718 0 79 32 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.973+00 \N 2021-01-27 11:19:28.973+00 0 podium podium 1719 1 79 33 \N 2021-01-27 11:19:28.93+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:19:28.974+00 \N 2021-01-27 11:19:28.974+00 0 podium podium 972 1 68 1 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.099+00 \N 2021-01-26 10:33:37.099+00 0 ANONYMOUS ANONYMOUS 973 1 68 2 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.1+00 \N 2021-01-26 10:33:37.1+00 0 ANONYMOUS ANONYMOUS 974 1611622800000 68 3 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.101+00 \N 2021-01-26 10:33:37.101+00 0 ANONYMOUS ANONYMOUS 975 1611622800000 68 4 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.102+00 \N 2021-01-26 10:33:37.102+00 0 ANONYMOUS ANONYMOUS 976 60 68 5 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.103+00 \N 2021-01-26 10:33:37.103+00 0 ANONYMOUS ANONYMOUS 977 30 68 6 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.104+00 \N 2021-01-26 10:33:37.104+00 0 ANONYMOUS ANONYMOUS 978 30 68 7 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.104+00 \N 2021-01-26 10:33:37.104+00 0 ANONYMOUS ANONYMOUS 979 0 68 8 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.105+00 \N 2021-01-26 10:33:37.105+00 0 ANONYMOUS ANONYMOUS 980 0 68 9 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.106+00 \N 2021-01-26 10:33:37.106+00 0 ANONYMOUS ANONYMOUS 981 26 68 10 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.107+00 \N 2021-01-26 10:33:37.107+00 0 ANONYMOUS ANONYMOUS 982 0 68 11 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.108+00 \N 2021-01-26 10:33:37.108+00 0 ANONYMOUS ANONYMOUS 983 3 68 12 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.108+00 \N 2021-01-26 10:33:37.108+00 0 ANONYMOUS ANONYMOUS 984 0 68 13 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.109+00 \N 2021-01-26 10:33:37.109+00 0 ANONYMOUS ANONYMOUS 985 0 68 14 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.11+00 \N 2021-01-26 10:33:37.11+00 0 ANONYMOUS ANONYMOUS 986 0 68 15 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.111+00 \N 2021-01-26 10:33:37.111+00 0 ANONYMOUS ANONYMOUS 987 0 68 16 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.111+00 \N 2021-01-26 10:33:37.111+00 0 ANONYMOUS ANONYMOUS 988 0 68 17 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.112+00 \N 2021-01-26 10:33:37.112+00 0 ANONYMOUS ANONYMOUS 989 760 68 35 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.112+00 \N 2021-01-26 10:33:37.112+00 0 ANONYMOUS ANONYMOUS 990 10 68 38 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.113+00 \N 2021-01-26 10:33:37.113+00 0 ANONYMOUS ANONYMOUS 991 0 68 40 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.114+00 \N 2021-01-26 10:33:37.114+00 0 ANONYMOUS ANONYMOUS 992 0 68 41 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.114+00 \N 2021-01-26 10:33:37.114+00 0 ANONYMOUS ANONYMOUS 993 0 68 42 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.115+00 \N 2021-01-26 10:33:37.115+00 0 ANONYMOUS ANONYMOUS 994 0 68 43 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.116+00 \N 2021-01-26 10:33:37.116+00 0 ANONYMOUS ANONYMOUS 995 0 68 18 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.117+00 \N 2021-01-26 10:33:37.117+00 0 ANONYMOUS ANONYMOUS 996 0 68 19 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.118+00 \N 2021-01-26 10:33:37.118+00 0 ANONYMOUS ANONYMOUS 997 7 68 20 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.119+00 \N 2021-01-26 10:33:37.119+00 0 ANONYMOUS ANONYMOUS 998 30 68 21 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.119+00 \N 2021-01-26 10:33:37.119+00 0 ANONYMOUS ANONYMOUS 999 7 68 39 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.121+00 \N 2021-01-26 10:33:37.121+00 0 ANONYMOUS ANONYMOUS 1000 1 68 44 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.121+00 \N 2021-01-26 10:33:37.121+00 0 ANONYMOUS ANONYMOUS 1001 1 68 45 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.122+00 \N 2021-01-26 10:33:37.122+00 0 ANONYMOUS ANONYMOUS 1002 1611622800000 68 46 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.123+00 \N 2021-01-26 10:33:37.123+00 0 ANONYMOUS ANONYMOUS 1003 1611622800000 68 47 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.125+00 \N 2021-01-26 10:33:37.125+00 0 ANONYMOUS ANONYMOUS 1835 65 81 5 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.062+00 \N 2021-01-27 13:29:55.062+00 0 podium podium 1004 1 68 22 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.127+00 \N 2021-01-26 10:33:37.127+00 0 ANONYMOUS ANONYMOUS 1005 0 68 23 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.13+00 \N 2021-01-26 10:33:37.13+00 0 ANONYMOUS ANONYMOUS 1006 0 68 24 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.131+00 \N 2021-01-26 10:33:37.131+00 0 ANONYMOUS ANONYMOUS 1007 0.866666666666667 68 25 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.132+00 \N 2021-01-26 10:33:37.132+00 0 ANONYMOUS ANONYMOUS 1008 0.1 68 26 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.133+00 \N 2021-01-26 10:33:37.133+00 0 ANONYMOUS ANONYMOUS 1009 0 68 27 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.133+00 \N 2021-01-26 10:33:37.133+00 0 ANONYMOUS ANONYMOUS 1010 0 68 28 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.134+00 \N 2021-01-26 10:33:37.134+00 0 ANONYMOUS ANONYMOUS 1011 0 68 29 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.135+00 \N 2021-01-26 10:33:37.135+00 0 ANONYMOUS ANONYMOUS 1012 1 68 36 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.136+00 \N 2021-01-26 10:33:37.136+00 0 ANONYMOUS ANONYMOUS 1013 1 68 37 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.136+00 \N 2021-01-26 10:33:37.136+00 0 ANONYMOUS ANONYMOUS 1014 0 68 30 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.137+00 \N 2021-01-26 10:33:37.137+00 0 ANONYMOUS ANONYMOUS 1015 0 68 31 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.138+00 \N 2021-01-26 10:33:37.138+00 0 ANONYMOUS ANONYMOUS 1016 0 68 32 20210126010000 2021-01-26 10:33:36.909+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.139+00 \N 2021-01-26 10:33:37.139+00 0 ANONYMOUS ANONYMOUS 1017 1 71 1 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.311+00 \N 2021-01-26 10:33:37.311+00 0 ANONYMOUS ANONYMOUS 1018 1 71 2 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.313+00 \N 2021-01-26 10:33:37.313+00 0 ANONYMOUS ANONYMOUS 1019 1611622800000 71 3 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.313+00 \N 2021-01-26 10:33:37.313+00 0 ANONYMOUS ANONYMOUS 1020 1611622800000 71 4 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.314+00 \N 2021-01-26 10:33:37.314+00 0 ANONYMOUS ANONYMOUS 1021 60 71 5 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.315+00 \N 2021-01-26 10:33:37.315+00 0 ANONYMOUS ANONYMOUS 1022 30 71 6 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.316+00 \N 2021-01-26 10:33:37.316+00 0 ANONYMOUS ANONYMOUS 1023 30 71 7 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.317+00 \N 2021-01-26 10:33:37.317+00 0 ANONYMOUS ANONYMOUS 1024 0 71 8 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.317+00 \N 2021-01-26 10:33:37.317+00 0 ANONYMOUS ANONYMOUS 1025 0 71 9 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.318+00 \N 2021-01-26 10:33:37.318+00 0 ANONYMOUS ANONYMOUS 1026 26 71 10 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.319+00 \N 2021-01-26 10:33:37.319+00 0 ANONYMOUS ANONYMOUS 1027 0 71 11 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.32+00 \N 2021-01-26 10:33:37.32+00 0 ANONYMOUS ANONYMOUS 1028 3 71 12 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.32+00 \N 2021-01-26 10:33:37.32+00 0 ANONYMOUS ANONYMOUS 1029 0 71 13 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.321+00 \N 2021-01-26 10:33:37.321+00 0 ANONYMOUS ANONYMOUS 1030 0 71 14 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.321+00 \N 2021-01-26 10:33:37.321+00 0 ANONYMOUS ANONYMOUS 1031 0 71 15 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.322+00 \N 2021-01-26 10:33:37.322+00 0 ANONYMOUS ANONYMOUS 1032 0 71 16 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.323+00 \N 2021-01-26 10:33:37.323+00 0 ANONYMOUS ANONYMOUS 1033 0 71 17 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.323+00 \N 2021-01-26 10:33:37.323+00 0 ANONYMOUS ANONYMOUS 1034 1657 71 35 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.324+00 \N 2021-01-26 10:33:37.324+00 0 ANONYMOUS ANONYMOUS 1035 8 71 38 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.325+00 \N 2021-01-26 10:33:37.325+00 0 ANONYMOUS ANONYMOUS 1036 0 71 40 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.325+00 \N 2021-01-26 10:33:37.325+00 0 ANONYMOUS ANONYMOUS 1037 0 71 41 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.326+00 \N 2021-01-26 10:33:37.326+00 0 ANONYMOUS ANONYMOUS 1038 0 71 42 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.326+00 \N 2021-01-26 10:33:37.326+00 0 ANONYMOUS ANONYMOUS 1039 0 71 43 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.327+00 \N 2021-01-26 10:33:37.327+00 0 ANONYMOUS ANONYMOUS 1040 0 71 18 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.328+00 \N 2021-01-26 10:33:37.328+00 0 ANONYMOUS ANONYMOUS 1041 0 71 19 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.328+00 \N 2021-01-26 10:33:37.328+00 0 ANONYMOUS ANONYMOUS 1042 23 71 20 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.329+00 \N 2021-01-26 10:33:37.329+00 0 ANONYMOUS ANONYMOUS 1043 30 71 21 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.33+00 \N 2021-01-26 10:33:37.33+00 0 ANONYMOUS ANONYMOUS 1044 23 71 39 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.331+00 \N 2021-01-26 10:33:37.331+00 0 ANONYMOUS ANONYMOUS 1045 1 71 44 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.331+00 \N 2021-01-26 10:33:37.331+00 0 ANONYMOUS ANONYMOUS 1046 1 71 45 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.332+00 \N 2021-01-26 10:33:37.332+00 0 ANONYMOUS ANONYMOUS 1047 1611622800000 71 46 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.333+00 \N 2021-01-26 10:33:37.333+00 0 ANONYMOUS ANONYMOUS 1048 1611622800000 71 47 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.334+00 \N 2021-01-26 10:33:37.334+00 0 ANONYMOUS ANONYMOUS 1049 1 71 22 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.335+00 \N 2021-01-26 10:33:37.335+00 0 ANONYMOUS ANONYMOUS 1050 0 71 23 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.336+00 \N 2021-01-26 10:33:37.336+00 0 ANONYMOUS ANONYMOUS 1051 0 71 24 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.336+00 \N 2021-01-26 10:33:37.336+00 0 ANONYMOUS ANONYMOUS 1052 0.866666666666667 71 25 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.337+00 \N 2021-01-26 10:33:37.337+00 0 ANONYMOUS ANONYMOUS 1053 0.1 71 26 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.338+00 \N 2021-01-26 10:33:37.338+00 0 ANONYMOUS ANONYMOUS 1054 0 71 27 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.338+00 \N 2021-01-26 10:33:37.338+00 0 ANONYMOUS ANONYMOUS 1055 0 71 28 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.339+00 \N 2021-01-26 10:33:37.339+00 0 ANONYMOUS ANONYMOUS 1056 0 71 29 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.34+00 \N 2021-01-26 10:33:37.34+00 0 ANONYMOUS ANONYMOUS 1057 1 71 36 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.34+00 \N 2021-01-26 10:33:37.34+00 0 ANONYMOUS ANONYMOUS 1058 1 71 37 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.341+00 \N 2021-01-26 10:33:37.341+00 0 ANONYMOUS ANONYMOUS 1059 0 71 30 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.341+00 \N 2021-01-26 10:33:37.341+00 0 ANONYMOUS ANONYMOUS 1060 0 71 31 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.342+00 \N 2021-01-26 10:33:37.342+00 0 ANONYMOUS ANONYMOUS 1061 0 71 32 20210126010000 2021-01-26 10:33:37.12+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.343+00 \N 2021-01-26 10:33:37.343+00 0 ANONYMOUS ANONYMOUS 1062 1 74 1 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.384+00 \N 2021-01-26 10:33:37.384+00 0 ANONYMOUS ANONYMOUS 1063 1 74 2 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.386+00 \N 2021-01-26 10:33:37.386+00 0 ANONYMOUS ANONYMOUS 1064 1611622800000 74 3 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.387+00 \N 2021-01-26 10:33:37.387+00 0 ANONYMOUS ANONYMOUS 1065 1611622800000 74 4 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.388+00 \N 2021-01-26 10:33:37.388+00 0 ANONYMOUS ANONYMOUS 1066 60 74 5 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.389+00 \N 2021-01-26 10:33:37.389+00 0 ANONYMOUS ANONYMOUS 1067 30 74 6 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.39+00 \N 2021-01-26 10:33:37.39+00 0 ANONYMOUS ANONYMOUS 1068 30 74 7 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.39+00 \N 2021-01-26 10:33:37.39+00 0 ANONYMOUS ANONYMOUS 1069 0 74 8 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.391+00 \N 2021-01-26 10:33:37.391+00 0 ANONYMOUS ANONYMOUS 1070 0 74 9 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.392+00 \N 2021-01-26 10:33:37.392+00 0 ANONYMOUS ANONYMOUS 1071 26 74 10 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.392+00 \N 2021-01-26 10:33:37.392+00 0 ANONYMOUS ANONYMOUS 1072 0 74 11 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.394+00 \N 2021-01-26 10:33:37.394+00 0 ANONYMOUS ANONYMOUS 1073 3 74 12 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.395+00 \N 2021-01-26 10:33:37.395+00 0 ANONYMOUS ANONYMOUS 1074 0 74 13 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.395+00 \N 2021-01-26 10:33:37.395+00 0 ANONYMOUS ANONYMOUS 1075 0 74 14 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.396+00 \N 2021-01-26 10:33:37.396+00 0 ANONYMOUS ANONYMOUS 1076 0 74 15 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.397+00 \N 2021-01-26 10:33:37.397+00 0 ANONYMOUS ANONYMOUS 1077 0 74 16 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.397+00 \N 2021-01-26 10:33:37.397+00 0 ANONYMOUS ANONYMOUS 1078 0 74 17 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.398+00 \N 2021-01-26 10:33:37.398+00 0 ANONYMOUS ANONYMOUS 1079 12471 74 35 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.398+00 \N 2021-01-26 10:33:37.398+00 0 ANONYMOUS ANONYMOUS 1080 4 74 38 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.399+00 \N 2021-01-26 10:33:37.399+00 0 ANONYMOUS ANONYMOUS 1081 0 74 40 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.4+00 \N 2021-01-26 10:33:37.4+00 0 ANONYMOUS ANONYMOUS 1082 0 74 41 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.4+00 \N 2021-01-26 10:33:37.4+00 0 ANONYMOUS ANONYMOUS 1083 0 74 42 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.401+00 \N 2021-01-26 10:33:37.401+00 0 ANONYMOUS ANONYMOUS 1084 0 74 43 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.401+00 \N 2021-01-26 10:33:37.401+00 0 ANONYMOUS ANONYMOUS 1085 0 74 18 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.402+00 \N 2021-01-26 10:33:37.402+00 0 ANONYMOUS ANONYMOUS 1086 0 74 19 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.403+00 \N 2021-01-26 10:33:37.403+00 0 ANONYMOUS ANONYMOUS 1087 273 74 20 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.403+00 \N 2021-01-26 10:33:37.403+00 0 ANONYMOUS ANONYMOUS 1088 30 74 21 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.404+00 \N 2021-01-26 10:33:37.404+00 0 ANONYMOUS ANONYMOUS 1089 273 74 39 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.405+00 \N 2021-01-26 10:33:37.405+00 0 ANONYMOUS ANONYMOUS 1090 1 74 44 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.405+00 \N 2021-01-26 10:33:37.405+00 0 ANONYMOUS ANONYMOUS 1091 1 74 45 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.406+00 \N 2021-01-26 10:33:37.406+00 0 ANONYMOUS ANONYMOUS 1092 1611622800000 74 46 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.407+00 \N 2021-01-26 10:33:37.407+00 0 ANONYMOUS ANONYMOUS 1093 1611622800000 74 47 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.407+00 \N 2021-01-26 10:33:37.407+00 0 ANONYMOUS ANONYMOUS 1094 1 74 22 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.408+00 \N 2021-01-26 10:33:37.408+00 0 ANONYMOUS ANONYMOUS 1095 0 74 23 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.408+00 \N 2021-01-26 10:33:37.408+00 0 ANONYMOUS ANONYMOUS 1096 0 74 24 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.409+00 \N 2021-01-26 10:33:37.409+00 0 ANONYMOUS ANONYMOUS 1097 0.866666666666667 74 25 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.41+00 \N 2021-01-26 10:33:37.41+00 0 ANONYMOUS ANONYMOUS 1098 0.1 74 26 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.41+00 \N 2021-01-26 10:33:37.41+00 0 ANONYMOUS ANONYMOUS 1099 0 74 27 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.411+00 \N 2021-01-26 10:33:37.411+00 0 ANONYMOUS ANONYMOUS 1100 0 74 28 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.412+00 \N 2021-01-26 10:33:37.412+00 0 ANONYMOUS ANONYMOUS 1101 0 74 29 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.412+00 \N 2021-01-26 10:33:37.412+00 0 ANONYMOUS ANONYMOUS 1102 1 74 36 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.413+00 \N 2021-01-26 10:33:37.413+00 0 ANONYMOUS ANONYMOUS 1103 1 74 37 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.413+00 \N 2021-01-26 10:33:37.413+00 0 ANONYMOUS ANONYMOUS 1104 0 74 30 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.414+00 \N 2021-01-26 10:33:37.414+00 0 ANONYMOUS ANONYMOUS 1105 0 74 31 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.414+00 \N 2021-01-26 10:33:37.414+00 0 ANONYMOUS ANONYMOUS 1106 0 74 32 20210126010000 2021-01-26 10:33:37.191+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:33:37.415+00 \N 2021-01-26 10:33:37.415+00 0 ANONYMOUS ANONYMOUS 1107 2 72 1 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.083+00 \N 2021-01-26 10:34:37.083+00 0 ANONYMOUS ANONYMOUS 1108 2 72 2 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.085+00 \N 2021-01-26 10:34:37.085+00 0 ANONYMOUS ANONYMOUS 1109 1611622800000 72 3 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.086+00 \N 2021-01-26 10:34:37.086+00 0 ANONYMOUS ANONYMOUS 1110 1611622800000 72 4 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.086+00 \N 2021-01-26 10:34:37.086+00 0 ANONYMOUS ANONYMOUS 1111 60 72 5 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.087+00 \N 2021-01-26 10:34:37.087+00 0 ANONYMOUS ANONYMOUS 1112 30 72 6 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.088+00 \N 2021-01-26 10:34:37.088+00 0 ANONYMOUS ANONYMOUS 1113 30 72 7 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.088+00 \N 2021-01-26 10:34:37.088+00 0 ANONYMOUS ANONYMOUS 1114 0 72 8 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.089+00 \N 2021-01-26 10:34:37.089+00 0 ANONYMOUS ANONYMOUS 1115 0 72 9 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.09+00 \N 2021-01-26 10:34:37.09+00 0 ANONYMOUS ANONYMOUS 1116 26 72 10 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.09+00 \N 2021-01-26 10:34:37.09+00 0 ANONYMOUS ANONYMOUS 1117 0 72 11 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.091+00 \N 2021-01-26 10:34:37.091+00 0 ANONYMOUS ANONYMOUS 1118 3 72 12 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.092+00 \N 2021-01-26 10:34:37.092+00 0 ANONYMOUS ANONYMOUS 1767 64 80 5 \N 2021-01-27 13:21:53.524+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:21:53.551+00 \N 2021-01-27 13:21:53.551+00 0 podium podium 1119 0 72 13 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.092+00 \N 2021-01-26 10:34:37.092+00 0 ANONYMOUS ANONYMOUS 1120 0 72 14 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.093+00 \N 2021-01-26 10:34:37.093+00 0 ANONYMOUS ANONYMOUS 1121 0 72 15 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.094+00 \N 2021-01-26 10:34:37.094+00 0 ANONYMOUS ANONYMOUS 1122 0 72 16 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.094+00 \N 2021-01-26 10:34:37.094+00 0 ANONYMOUS ANONYMOUS 1123 0 72 17 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.095+00 \N 2021-01-26 10:34:37.095+00 0 ANONYMOUS ANONYMOUS 1124 29043 72 35 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.096+00 \N 2021-01-26 10:34:37.096+00 0 ANONYMOUS ANONYMOUS 1125 9 72 38 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.096+00 \N 2021-01-26 10:34:37.096+00 0 ANONYMOUS ANONYMOUS 1126 0 72 40 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.097+00 \N 2021-01-26 10:34:37.097+00 0 ANONYMOUS ANONYMOUS 1127 0 72 41 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.098+00 \N 2021-01-26 10:34:37.098+00 0 ANONYMOUS ANONYMOUS 1128 0 72 42 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.098+00 \N 2021-01-26 10:34:37.098+00 0 ANONYMOUS ANONYMOUS 1129 0 72 43 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.099+00 \N 2021-01-26 10:34:37.099+00 0 ANONYMOUS ANONYMOUS 1130 0 72 18 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.1+00 \N 2021-01-26 10:34:37.1+00 0 ANONYMOUS ANONYMOUS 1131 0 72 19 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.1+00 \N 2021-01-26 10:34:37.1+00 0 ANONYMOUS ANONYMOUS 1132 110 72 20 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.101+00 \N 2021-01-26 10:34:37.101+00 0 ANONYMOUS ANONYMOUS 1133 30 72 21 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.101+00 \N 2021-01-26 10:34:37.101+00 0 ANONYMOUS ANONYMOUS 1134 110 72 39 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.102+00 \N 2021-01-26 10:34:37.102+00 0 ANONYMOUS ANONYMOUS 1135 2 72 44 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.103+00 \N 2021-01-26 10:34:37.103+00 0 ANONYMOUS ANONYMOUS 1136 2 72 45 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.103+00 \N 2021-01-26 10:34:37.103+00 0 ANONYMOUS ANONYMOUS 1137 1611622800000 72 46 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.104+00 \N 2021-01-26 10:34:37.104+00 0 ANONYMOUS ANONYMOUS 1138 1611622800000 72 47 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.105+00 \N 2021-01-26 10:34:37.105+00 0 ANONYMOUS ANONYMOUS 1139 1 72 22 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.106+00 \N 2021-01-26 10:34:37.106+00 0 ANONYMOUS ANONYMOUS 1140 0 72 23 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.106+00 \N 2021-01-26 10:34:37.106+00 0 ANONYMOUS ANONYMOUS 1141 0 72 24 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.107+00 \N 2021-01-26 10:34:37.107+00 0 ANONYMOUS ANONYMOUS 1142 0.866666666666667 72 25 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.107+00 \N 2021-01-26 10:34:37.107+00 0 ANONYMOUS ANONYMOUS 1143 0.1 72 26 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.108+00 \N 2021-01-26 10:34:37.108+00 0 ANONYMOUS ANONYMOUS 1144 0 72 27 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.109+00 \N 2021-01-26 10:34:37.109+00 0 ANONYMOUS ANONYMOUS 1145 0 72 28 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.109+00 \N 2021-01-26 10:34:37.109+00 0 ANONYMOUS ANONYMOUS 1146 0 72 29 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.11+00 \N 2021-01-26 10:34:37.11+00 0 ANONYMOUS ANONYMOUS 1147 1 72 36 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.111+00 \N 2021-01-26 10:34:37.111+00 0 ANONYMOUS ANONYMOUS 1148 1 72 37 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.111+00 \N 2021-01-26 10:34:37.111+00 0 ANONYMOUS ANONYMOUS 1149 0 72 30 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.112+00 \N 2021-01-26 10:34:37.112+00 0 ANONYMOUS ANONYMOUS 1150 0 72 31 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.113+00 \N 2021-01-26 10:34:37.113+00 0 ANONYMOUS ANONYMOUS 1151 0 72 32 20210126010000 2021-01-26 10:34:36.924+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:34:37.113+00 \N 2021-01-26 10:34:37.113+00 0 ANONYMOUS ANONYMOUS 1721 0 80 1 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.41+00 \N 2021-01-27 13:19:52.41+00 0 ANONYMOUS ANONYMOUS 1722 0 80 2 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.417+00 \N 2021-01-27 13:19:52.417+00 0 ANONYMOUS ANONYMOUS 1723 0 80 3 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.421+00 \N 2021-01-27 13:19:52.421+00 0 ANONYMOUS ANONYMOUS 1724 0 80 4 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.423+00 \N 2021-01-27 13:19:52.423+00 0 ANONYMOUS ANONYMOUS 1738 281 80 35 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.448+00 \N 2021-01-27 13:19:52.448+00 0 ANONYMOUS ANONYMOUS 1739 9 80 38 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.45+00 \N 2021-01-27 13:19:52.45+00 0 ANONYMOUS ANONYMOUS 1740 1 80 40 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.451+00 \N 2021-01-27 13:19:52.451+00 0 ANONYMOUS ANONYMOUS 1741 1 80 41 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.453+00 \N 2021-01-27 13:19:52.453+00 0 ANONYMOUS ANONYMOUS 1742 1611752400000 80 42 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.454+00 \N 2021-01-27 13:19:52.454+00 0 ANONYMOUS ANONYMOUS 1743 1611752400000 80 43 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.456+00 \N 2021-01-27 13:19:52.456+00 0 ANONYMOUS ANONYMOUS 1744 0 80 18 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.457+00 \N 2021-01-27 13:19:52.457+00 0 ANONYMOUS ANONYMOUS 1745 0 80 19 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.459+00 \N 2021-01-27 13:19:52.459+00 0 ANONYMOUS ANONYMOUS 1197 2 69 1 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.957+00 \N 2021-01-26 10:38:18.957+00 0 ANONYMOUS ANONYMOUS 1198 2 69 2 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.958+00 \N 2021-01-26 10:38:18.958+00 0 ANONYMOUS ANONYMOUS 1199 1611622800000 69 3 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.959+00 \N 2021-01-26 10:38:18.959+00 0 ANONYMOUS ANONYMOUS 1200 1611622800000 69 4 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.959+00 \N 2021-01-26 10:38:18.959+00 0 ANONYMOUS ANONYMOUS 1201 60 69 5 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.96+00 \N 2021-01-26 10:38:18.96+00 0 ANONYMOUS ANONYMOUS 1202 30 69 6 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.961+00 \N 2021-01-26 10:38:18.961+00 0 ANONYMOUS ANONYMOUS 1203 30 69 7 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.961+00 \N 2021-01-26 10:38:18.961+00 0 ANONYMOUS ANONYMOUS 1204 0 69 8 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.962+00 \N 2021-01-26 10:38:18.962+00 0 ANONYMOUS ANONYMOUS 1205 0 69 9 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.963+00 \N 2021-01-26 10:38:18.963+00 0 ANONYMOUS ANONYMOUS 1206 26 69 10 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.963+00 \N 2021-01-26 10:38:18.963+00 0 ANONYMOUS ANONYMOUS 1207 0 69 11 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.964+00 \N 2021-01-26 10:38:18.964+00 0 ANONYMOUS ANONYMOUS 1208 3 69 12 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.965+00 \N 2021-01-26 10:38:18.965+00 0 ANONYMOUS ANONYMOUS 1209 0 69 13 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.965+00 \N 2021-01-26 10:38:18.965+00 0 ANONYMOUS ANONYMOUS 1210 0 69 14 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.966+00 \N 2021-01-26 10:38:18.966+00 0 ANONYMOUS ANONYMOUS 1211 0 69 15 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.966+00 \N 2021-01-26 10:38:18.966+00 0 ANONYMOUS ANONYMOUS 1212 0 69 16 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.967+00 \N 2021-01-26 10:38:18.967+00 0 ANONYMOUS ANONYMOUS 1213 0 69 17 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.968+00 \N 2021-01-26 10:38:18.968+00 0 ANONYMOUS ANONYMOUS 1214 17736 69 35 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.968+00 \N 2021-01-26 10:38:18.968+00 0 ANONYMOUS ANONYMOUS 1215 14 69 38 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.969+00 \N 2021-01-26 10:38:18.969+00 0 ANONYMOUS ANONYMOUS 1216 0 69 40 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.969+00 \N 2021-01-26 10:38:18.969+00 0 ANONYMOUS ANONYMOUS 1217 0 69 41 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.97+00 \N 2021-01-26 10:38:18.97+00 0 ANONYMOUS ANONYMOUS 1218 0 69 42 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.971+00 \N 2021-01-26 10:38:18.971+00 0 ANONYMOUS ANONYMOUS 1219 0 69 43 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.971+00 \N 2021-01-26 10:38:18.971+00 0 ANONYMOUS ANONYMOUS 1220 0 69 18 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.972+00 \N 2021-01-26 10:38:18.972+00 0 ANONYMOUS ANONYMOUS 1221 0 69 19 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.972+00 \N 2021-01-26 10:38:18.972+00 0 ANONYMOUS ANONYMOUS 1222 122 69 20 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.973+00 \N 2021-01-26 10:38:18.973+00 0 ANONYMOUS ANONYMOUS 1223 30 69 21 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.974+00 \N 2021-01-26 10:38:18.974+00 0 ANONYMOUS ANONYMOUS 1224 122 69 39 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.974+00 \N 2021-01-26 10:38:18.974+00 0 ANONYMOUS ANONYMOUS 1225 2 69 44 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.975+00 \N 2021-01-26 10:38:18.975+00 0 ANONYMOUS ANONYMOUS 1226 2 69 45 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.975+00 \N 2021-01-26 10:38:18.975+00 0 ANONYMOUS ANONYMOUS 1227 1611622800000 69 46 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.976+00 \N 2021-01-26 10:38:18.976+00 0 ANONYMOUS ANONYMOUS 1228 1611622800000 69 47 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.977+00 \N 2021-01-26 10:38:18.977+00 0 ANONYMOUS ANONYMOUS 1229 1 69 22 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.977+00 \N 2021-01-26 10:38:18.977+00 0 ANONYMOUS ANONYMOUS 1230 0 69 23 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.978+00 \N 2021-01-26 10:38:18.978+00 0 ANONYMOUS ANONYMOUS 1231 0 69 24 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.979+00 \N 2021-01-26 10:38:18.979+00 0 ANONYMOUS ANONYMOUS 1232 0.866666666666667 69 25 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.979+00 \N 2021-01-26 10:38:18.979+00 0 ANONYMOUS ANONYMOUS 1233 0.1 69 26 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.98+00 \N 2021-01-26 10:38:18.98+00 0 ANONYMOUS ANONYMOUS 1234 0 69 27 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.981+00 \N 2021-01-26 10:38:18.981+00 0 ANONYMOUS ANONYMOUS 1235 0 69 28 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.981+00 \N 2021-01-26 10:38:18.981+00 0 ANONYMOUS ANONYMOUS 1236 0 69 29 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.982+00 \N 2021-01-26 10:38:18.982+00 0 ANONYMOUS ANONYMOUS 1237 1 69 36 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.983+00 \N 2021-01-26 10:38:18.983+00 0 ANONYMOUS ANONYMOUS 1238 1 69 37 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.983+00 \N 2021-01-26 10:38:18.983+00 0 ANONYMOUS ANONYMOUS 1239 0 69 30 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.984+00 \N 2021-01-26 10:38:18.984+00 0 ANONYMOUS ANONYMOUS 1240 0 69 31 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.984+00 \N 2021-01-26 10:38:18.984+00 0 ANONYMOUS ANONYMOUS 1241 0 69 32 20210126010000 2021-01-26 10:38:18.818+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:38:18.985+00 \N 2021-01-26 10:38:18.985+00 0 ANONYMOUS ANONYMOUS 1451 62 77 5 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.729+00 \N 2021-01-27 11:06:13.729+00 0 podium podium 1243 0 75 1 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.33+00 \N 2021-01-26 10:42:43.33+00 0 ANONYMOUS ANONYMOUS 1244 0 75 2 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.334+00 \N 2021-01-26 10:42:43.334+00 0 ANONYMOUS ANONYMOUS 1245 0 75 3 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.336+00 \N 2021-01-26 10:42:43.336+00 0 ANONYMOUS ANONYMOUS 1246 0 75 4 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.337+00 \N 2021-01-26 10:42:43.337+00 0 ANONYMOUS ANONYMOUS 1452 30 77 6 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.732+00 \N 2021-01-27 11:06:13.732+00 0 podium podium 1453 30 77 7 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.733+00 \N 2021-01-27 11:06:13.733+00 0 podium podium 1454 2 77 8 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.734+00 \N 2021-01-27 11:06:13.734+00 0 podium podium 1455 0 77 9 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.735+00 \N 2021-01-27 11:06:13.735+00 0 podium podium 1456 60 77 10 \N 2021-01-27 11:06:12.168+00 2100-12-31 00:00:00+00 \N 2021-01-27 11:06:13.737+00 \N 2021-01-27 11:06:13.737+00 0 podium podium 1746 3 80 20 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.46+00 \N 2021-01-27 13:19:52.46+00 0 ANONYMOUS ANONYMOUS 1748 3 80 39 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.463+00 \N 2021-01-27 13:19:52.463+00 0 ANONYMOUS ANONYMOUS 1749 1 80 44 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.465+00 \N 2021-01-27 13:19:52.465+00 0 ANONYMOUS ANONYMOUS 1750 1 80 45 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.466+00 \N 2021-01-27 13:19:52.466+00 0 ANONYMOUS ANONYMOUS 1751 1611752400000 80 46 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.469+00 \N 2021-01-27 13:19:52.469+00 0 ANONYMOUS ANONYMOUS 1752 1611752400000 80 47 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.47+00 \N 2021-01-27 13:19:52.47+00 0 ANONYMOUS ANONYMOUS 1753 1 80 22 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.472+00 \N 2021-01-27 13:19:52.472+00 0 ANONYMOUS ANONYMOUS 1260 89609 75 35 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.36+00 \N 2021-01-26 10:42:43.36+00 0 ANONYMOUS ANONYMOUS 1261 10 75 38 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.362+00 \N 2021-01-26 10:42:43.362+00 0 ANONYMOUS ANONYMOUS 1262 1 75 40 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.363+00 \N 2021-01-26 10:42:43.363+00 0 ANONYMOUS ANONYMOUS 1263 1 75 41 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.365+00 \N 2021-01-26 10:42:43.365+00 0 ANONYMOUS ANONYMOUS 1264 1611615600000 75 42 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.366+00 \N 2021-01-26 10:42:43.366+00 0 ANONYMOUS ANONYMOUS 1265 1611615600000 75 43 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.367+00 \N 2021-01-26 10:42:43.367+00 0 ANONYMOUS ANONYMOUS 1266 0 75 18 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.369+00 \N 2021-01-26 10:42:43.369+00 0 ANONYMOUS ANONYMOUS 1267 0 75 19 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.37+00 \N 2021-01-26 10:42:43.37+00 0 ANONYMOUS ANONYMOUS 1268 110 75 20 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.372+00 \N 2021-01-26 10:42:43.372+00 0 ANONYMOUS ANONYMOUS 1754 0 80 23 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.474+00 \N 2021-01-27 13:19:52.474+00 0 ANONYMOUS ANONYMOUS 1270 110 75 39 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.374+00 \N 2021-01-26 10:42:43.374+00 0 ANONYMOUS ANONYMOUS 1271 1 75 44 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.376+00 \N 2021-01-26 10:42:43.376+00 0 ANONYMOUS ANONYMOUS 1272 1 75 45 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.377+00 \N 2021-01-26 10:42:43.377+00 0 ANONYMOUS ANONYMOUS 1273 1611615600000 75 46 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.379+00 \N 2021-01-26 10:42:43.379+00 0 ANONYMOUS ANONYMOUS 1274 1611615600000 75 47 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.381+00 \N 2021-01-26 10:42:43.381+00 0 ANONYMOUS ANONYMOUS 1275 1 75 22 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.382+00 \N 2021-01-26 10:42:43.382+00 0 ANONYMOUS ANONYMOUS 1276 0 75 23 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.384+00 \N 2021-01-26 10:42:43.384+00 0 ANONYMOUS ANONYMOUS 1277 0 75 24 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.386+00 \N 2021-01-26 10:42:43.386+00 0 ANONYMOUS ANONYMOUS 1755 0 80 24 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.475+00 \N 2021-01-27 13:19:52.475+00 0 ANONYMOUS ANONYMOUS 1282 0 75 29 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.393+00 \N 2021-01-26 10:42:43.393+00 0 ANONYMOUS ANONYMOUS 1283 1 75 36 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.394+00 \N 2021-01-26 10:42:43.394+00 0 ANONYMOUS ANONYMOUS 1284 1 75 37 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.395+00 \N 2021-01-26 10:42:43.395+00 0 ANONYMOUS ANONYMOUS 1285 0 75 30 20210125230000 2021-01-26 10:42:42.194+00 2100-12-31 00:00:00+00 \N 2021-01-26 10:42:43.396+00 \N 2021-01-26 10:42:43.396+00 0 ANONYMOUS ANONYMOUS 1760 0 80 29 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.483+00 \N 2021-01-27 13:19:52.483+00 0 ANONYMOUS ANONYMOUS 1761 1 80 36 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.485+00 \N 2021-01-27 13:19:52.485+00 0 ANONYMOUS ANONYMOUS 1762 1 80 37 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.486+00 \N 2021-01-27 13:19:52.486+00 0 ANONYMOUS ANONYMOUS 1763 0 80 30 20210127130000 2021-01-27 13:19:50.891+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:19:52.488+00 \N 2021-01-27 13:19:52.488+00 0 ANONYMOUS ANONYMOUS 1836 30 81 6 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.063+00 \N 2021-01-27 13:29:55.063+00 0 podium podium 1837 30 81 7 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.063+00 \N 2021-01-27 13:29:55.063+00 0 podium podium 1838 5 81 8 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.064+00 \N 2021-01-27 13:29:55.064+00 0 podium podium 1839 0 81 9 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.065+00 \N 2021-01-27 13:29:55.065+00 0 podium podium 1840 62 81 10 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.066+00 \N 2021-01-27 13:29:55.066+00 0 podium podium 1841 0 81 11 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.067+00 \N 2021-01-27 13:29:55.067+00 0 podium podium 1789 0 81 1 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.166+00 \N 2021-01-27 13:29:14.166+00 0 ANONYMOUS ANONYMOUS 1790 0 81 2 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.169+00 \N 2021-01-27 13:29:14.169+00 0 ANONYMOUS ANONYMOUS 1791 0 81 3 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.172+00 \N 2021-01-27 13:29:14.172+00 0 ANONYMOUS ANONYMOUS 1792 0 81 4 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.173+00 \N 2021-01-27 13:29:14.173+00 0 ANONYMOUS ANONYMOUS 1806 13152 81 35 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.198+00 \N 2021-01-27 13:29:14.198+00 0 ANONYMOUS ANONYMOUS 1807 3 81 38 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.199+00 \N 2021-01-27 13:29:14.199+00 0 ANONYMOUS ANONYMOUS 1808 1 81 40 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.201+00 \N 2021-01-27 13:29:14.201+00 0 ANONYMOUS ANONYMOUS 1809 1 81 41 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.202+00 \N 2021-01-27 13:29:14.202+00 0 ANONYMOUS ANONYMOUS 1810 1611752400000 81 42 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.204+00 \N 2021-01-27 13:29:14.204+00 0 ANONYMOUS ANONYMOUS 1811 1611752400000 81 43 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.205+00 \N 2021-01-27 13:29:14.205+00 0 ANONYMOUS ANONYMOUS 1812 0 81 18 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.207+00 \N 2021-01-27 13:29:14.207+00 0 ANONYMOUS ANONYMOUS 1813 0 81 19 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.208+00 \N 2021-01-27 13:29:14.208+00 0 ANONYMOUS ANONYMOUS 1814 556 81 20 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.21+00 \N 2021-01-27 13:29:14.21+00 0 ANONYMOUS ANONYMOUS 1816 556 81 39 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.213+00 \N 2021-01-27 13:29:14.213+00 0 ANONYMOUS ANONYMOUS 1817 1 81 44 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.214+00 \N 2021-01-27 13:29:14.214+00 0 ANONYMOUS ANONYMOUS 1818 1 81 45 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.216+00 \N 2021-01-27 13:29:14.216+00 0 ANONYMOUS ANONYMOUS 1819 1611752400000 81 46 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.219+00 \N 2021-01-27 13:29:14.219+00 0 ANONYMOUS ANONYMOUS 1820 1611752400000 81 47 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.22+00 \N 2021-01-27 13:29:14.22+00 0 ANONYMOUS ANONYMOUS 1821 1 81 22 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.222+00 \N 2021-01-27 13:29:14.222+00 0 ANONYMOUS ANONYMOUS 1822 0 81 23 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.223+00 \N 2021-01-27 13:29:14.223+00 0 ANONYMOUS ANONYMOUS 1823 0 81 24 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.225+00 \N 2021-01-27 13:29:14.225+00 0 ANONYMOUS ANONYMOUS 1828 0 81 29 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.233+00 \N 2021-01-27 13:29:14.233+00 0 ANONYMOUS ANONYMOUS 1829 1 81 36 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.235+00 \N 2021-01-27 13:29:14.235+00 0 ANONYMOUS ANONYMOUS 1830 1 81 37 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.236+00 \N 2021-01-27 13:29:14.236+00 0 ANONYMOUS ANONYMOUS 1831 0 81 30 20210127130000 2021-01-27 13:29:12.853+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:14.238+00 \N 2021-01-27 13:29:14.238+00 0 ANONYMOUS ANONYMOUS 1846 0 81 16 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.07+00 \N 2021-01-27 13:29:55.07+00 0 podium podium 1847 0 81 17 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.07+00 \N 2021-01-27 13:29:55.07+00 0 podium podium 1848 35 81 21 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.071+00 \N 2021-01-27 13:29:55.071+00 0 podium podium 1849 1.77142857142857 81 25 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.072+00 \N 2021-01-27 13:29:55.072+00 0 podium podium 1850 0.0857142857142857 81 26 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.072+00 \N 2021-01-27 13:29:55.072+00 0 podium podium 1851 0.142857142857143 81 27 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.073+00 \N 2021-01-27 13:29:55.073+00 0 podium podium 1852 0 81 28 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.074+00 \N 2021-01-27 13:29:55.074+00 0 podium podium 1853 0 81 31 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.074+00 \N 2021-01-27 13:29:55.074+00 0 podium podium 1854 0 81 32 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.075+00 \N 2021-01-27 13:29:55.075+00 0 podium podium 1855 1 81 33 \N 2021-01-27 13:29:55.032+00 2100-12-31 00:00:00+00 \N 2021-01-27 13:29:55.076+00 \N 2021-01-27 13:29:55.076+00 0 podium podium \. -- -- Data for Name: pd_entity_prop_bk; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_entity_prop_bk (nid, entity_nid, prop_name, prop_value, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_entity_relation; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_entity_relation (nid, parent_source_nid, parent_entity_nid, child_source_nid, child_entity_nid, vadd_rule_nid, relation_details, created_ttz, modified_ttz, version, modifiedby, createdby, is_valid, relation_confidence) FROM stdin; 22 4 17 5 23 4 \N 2021-01-26 10:03:16.391+00 2021-01-26 10:03:16.391+00 0 podium podium t 1 23 4 16 5 27 4 \N 2021-01-26 10:03:16.392+00 2021-01-26 10:03:16.392+00 0 podium podium t 1 24 4 19 5 22 4 \N 2021-01-26 10:03:16.393+00 2021-01-26 10:03:16.393+00 0 podium podium t 1 25 4 15 5 26 4 \N 2021-01-26 10:03:16.394+00 2021-01-26 10:03:16.394+00 0 podium podium t 1 26 4 20 5 24 4 \N 2021-01-26 10:03:16.394+00 2021-01-26 10:03:16.394+00 0 podium podium t 1 27 4 21 5 25 4 \N 2021-01-26 10:03:16.395+00 2021-01-26 10:03:16.395+00 0 podium podium t 1 28 4 18 5 28 4 \N 2021-01-26 10:03:16.396+00 2021-01-26 10:03:16.396+00 0 podium podium t 1 29 4 19 4 19 2 [fk_Employees_Employees] 2021-01-26 10:03:16.691+00 2021-01-26 10:03:16.691+00 0 podium podium t 1 30 4 21 4 15 2 [salesorders_FK_customers] 2021-01-26 10:03:16.693+00 2021-01-26 10:03:16.693+00 0 podium podium t 1 31 4 21 4 18 2 [fk_Payments_Customers] 2021-01-26 10:03:16.694+00 2021-01-26 10:03:16.694+00 0 podium podium t 1 32 5 25 5 28 2 [fk_Payments_Customers] 2021-01-26 10:03:16.694+00 2021-01-26 10:03:16.694+00 0 podium podium t 1 33 4 20 4 16 2 [fk_Products_ProductLines] 2021-01-26 10:03:16.695+00 2021-01-26 10:03:16.695+00 0 podium podium t 1 34 4 19 4 21 2 [fk_Customers_Employees] 2021-01-26 10:03:16.696+00 2021-01-26 10:03:16.696+00 0 podium podium t 1 35 5 27 5 26 2 [salesorders_FK_products] 2021-01-26 10:03:16.696+00 2021-01-26 10:03:16.696+00 0 podium podium t 1 36 5 22 5 22 2 [fk_Employees_Employees] 2021-01-26 10:03:16.697+00 2021-01-26 10:03:16.697+00 0 podium podium t 1 37 5 22 5 25 2 [fk_Customers_Employees] 2021-01-26 10:03:16.698+00 2021-01-26 10:03:16.698+00 0 podium podium t 1 38 4 16 4 15 2 [salesorders_FK_products] 2021-01-26 10:03:16.699+00 2021-01-26 10:03:16.699+00 0 podium podium t 1 39 5 25 5 26 2 [salesorders_FK_customers] 2021-01-26 10:03:16.699+00 2021-01-26 10:03:16.699+00 0 podium podium t 1 40 5 23 5 22 2 [fk_Employees_Offices] 2021-01-26 10:03:16.7+00 2021-01-26 10:03:16.7+00 0 podium podium t 1 41 5 24 5 27 2 [fk_Products_ProductLines] 2021-01-26 10:03:16.701+00 2021-01-26 10:03:16.701+00 0 podium podium t 1 42 4 17 4 19 2 [fk_Employees_Offices] 2021-01-26 10:03:16.701+00 2021-01-26 10:03:16.701+00 0 podium podium t 1 43 6 33 7 39 4 \N 2021-01-26 10:04:33.728+00 2021-01-26 10:04:33.728+00 0 podium podium t 1 44 6 29 7 37 4 \N 2021-01-26 10:04:33.731+00 2021-01-26 10:04:33.731+00 0 podium podium t 1 45 6 36 7 41 4 \N 2021-01-26 10:04:33.732+00 2021-01-26 10:04:33.732+00 0 podium podium t 1 46 6 30 7 40 4 \N 2021-01-26 10:04:33.733+00 2021-01-26 10:04:33.733+00 0 podium podium t 1 47 6 31 7 43 4 \N 2021-01-26 10:04:33.734+00 2021-01-26 10:04:33.734+00 0 podium podium t 1 48 6 35 7 42 4 \N 2021-01-26 10:04:33.736+00 2021-01-26 10:04:33.736+00 0 podium podium t 1 49 6 34 7 38 4 \N 2021-01-26 10:04:33.737+00 2021-01-26 10:04:33.737+00 0 podium podium t 1 50 6 32 7 44 4 \N 2021-01-26 10:04:33.737+00 2021-01-26 10:04:33.737+00 0 podium podium t 1 51 7 42 7 37 2 [FK_Orders_Customers] 2021-01-26 10:04:34.199+00 2021-01-26 10:04:34.199+00 0 podium podium t 1 52 6 30 6 30 2 [ReportsTo] 2021-01-26 10:04:34.2+00 2021-01-26 10:04:34.2+00 0 podium podium t 1 53 6 33 6 31 2 [FK_Order_Details_Products] 2021-01-26 10:04:34.201+00 2021-01-26 10:04:34.201+00 0 podium podium t 1 54 6 34 6 33 2 [FK_Products_Categories] 2021-01-26 10:04:34.202+00 2021-01-26 10:04:34.202+00 0 podium podium t 1 55 7 41 7 39 2 [FK_Products_Suppliers] 2021-01-26 10:04:34.203+00 2021-01-26 10:04:34.203+00 0 podium podium t 1 56 7 44 7 37 2 [FK_Orders_Shippers] 2021-01-26 10:04:34.203+00 2021-01-26 10:04:34.203+00 0 podium podium t 1 57 6 29 6 31 2 [FK_Order_Details_Orders] 2021-01-26 10:04:34.204+00 2021-01-26 10:04:34.204+00 0 podium podium t 1 58 7 37 7 43 2 [FK_Order_Details_Orders] 2021-01-26 10:04:34.205+00 2021-01-26 10:04:34.205+00 0 podium podium t 1 59 7 38 7 39 2 [FK_Products_Categories] 2021-01-26 10:04:34.206+00 2021-01-26 10:04:34.206+00 0 podium podium t 1 60 6 35 6 29 2 [FK_Orders_Customers] 2021-01-26 10:04:34.207+00 2021-01-26 10:04:34.207+00 0 podium podium t 1 61 6 30 6 29 2 [FK_Orders_Employees] 2021-01-26 10:04:34.208+00 2021-01-26 10:04:34.208+00 0 podium podium t 1 62 6 32 6 29 2 [FK_Orders_Shippers] 2021-01-26 10:04:34.209+00 2021-01-26 10:04:34.209+00 0 podium podium t 1 63 7 39 7 43 2 [FK_Order_Details_Products] 2021-01-26 10:04:34.209+00 2021-01-26 10:04:34.209+00 0 podium podium t 1 64 6 36 6 33 2 [FK_Products_Suppliers] 2021-01-26 10:04:34.21+00 2021-01-26 10:04:34.21+00 0 podium podium t 1 65 7 40 7 40 2 [ReportsTo] 2021-01-26 10:04:34.211+00 2021-01-26 10:04:34.211+00 0 podium podium t 1 66 7 40 7 37 2 [FK_Orders_Employees] 2021-01-26 10:04:34.212+00 2021-01-26 10:04:34.212+00 0 podium podium t 1 67 8 48 9 53 4 \N 2021-01-26 10:05:00.189+00 2021-01-26 10:05:00.189+00 0 podium podium t 1 68 8 45 9 57 4 \N 2021-01-26 10:05:00.191+00 2021-01-26 10:05:00.191+00 0 podium podium t 1 69 8 52 9 58 4 \N 2021-01-26 10:05:00.191+00 2021-01-26 10:05:00.191+00 0 podium podium t 1 70 8 49 9 56 4 \N 2021-01-26 10:05:00.192+00 2021-01-26 10:05:00.192+00 0 podium podium t 1 71 8 50 9 55 4 \N 2021-01-26 10:05:00.193+00 2021-01-26 10:05:00.193+00 0 podium podium t 1 72 8 47 9 60 4 \N 2021-01-26 10:05:00.194+00 2021-01-26 10:05:00.194+00 0 podium podium t 1 73 8 46 9 54 4 \N 2021-01-26 10:05:00.194+00 2021-01-26 10:05:00.194+00 0 podium podium t 1 74 8 51 9 59 4 \N 2021-01-26 10:05:00.195+00 2021-01-26 10:05:00.195+00 0 podium podium t 1 75 9 59 9 59 2 [ReportsTo] 2021-01-26 10:05:00.459+00 2021-01-26 10:05:00.459+00 0 podium podium t 1 76 9 56 9 60 2 [FK_Order_Details_Orders] 2021-01-26 10:05:00.459+00 2021-01-26 10:05:00.459+00 0 podium podium t 1 77 9 59 9 56 2 [FK_Orders_Employees] 2021-01-26 10:05:00.46+00 2021-01-26 10:05:00.46+00 0 podium podium t 1 78 9 53 9 60 2 [FK_Order_Details_Products] 2021-01-26 10:05:00.461+00 2021-01-26 10:05:00.461+00 0 podium podium t 1 79 8 45 8 49 2 [FK_Orders_Shippers] 2021-01-26 10:05:00.461+00 2021-01-26 10:05:00.461+00 0 podium podium t 1 80 9 58 9 53 2 [FK_Products_Suppliers] 2021-01-26 10:05:00.462+00 2021-01-26 10:05:00.462+00 0 podium podium t 1 81 8 51 8 51 2 [ReportsTo] 2021-01-26 10:05:00.462+00 2021-01-26 10:05:00.462+00 0 podium podium t 1 82 8 46 8 48 2 [FK_Products_Categories] 2021-01-26 10:05:00.463+00 2021-01-26 10:05:00.463+00 0 podium podium t 1 83 8 49 8 47 2 [FK_Order_Details_Orders] 2021-01-26 10:05:00.463+00 2021-01-26 10:05:00.463+00 0 podium podium t 1 84 8 48 8 47 2 [FK_Order_Details_Products] 2021-01-26 10:05:00.464+00 2021-01-26 10:05:00.464+00 0 podium podium t 1 85 9 54 9 53 2 [FK_Products_Categories] 2021-01-26 10:05:00.464+00 2021-01-26 10:05:00.464+00 0 podium podium t 1 86 8 50 8 49 2 [FK_Orders_Customers] 2021-01-26 10:05:00.465+00 2021-01-26 10:05:00.465+00 0 podium podium t 1 87 8 51 8 49 2 [FK_Orders_Employees] 2021-01-26 10:05:00.466+00 2021-01-26 10:05:00.466+00 0 podium podium t 1 88 9 55 9 56 2 [FK_Orders_Customers] 2021-01-26 10:05:00.466+00 2021-01-26 10:05:00.466+00 0 podium podium t 1 89 8 52 8 48 2 [FK_Products_Suppliers] 2021-01-26 10:05:00.467+00 2021-01-26 10:05:00.467+00 0 podium podium t 1 90 9 57 9 56 2 [FK_Orders_Shippers] 2021-01-26 10:05:00.467+00 2021-01-26 10:05:00.467+00 0 podium podium t 1 91 10 61 11 74 4 \N 2021-01-26 10:32:11.338+00 2021-01-26 10:32:11.338+00 0 podium podium t 1 92 10 65 11 70 4 \N 2021-01-26 10:32:11.339+00 2021-01-26 10:32:11.339+00 0 podium podium t 1 93 10 62 11 71 4 \N 2021-01-26 10:32:11.34+00 2021-01-26 10:32:11.34+00 0 podium podium t 1 94 10 63 11 68 4 \N 2021-01-26 10:32:11.34+00 2021-01-26 10:32:11.34+00 0 podium podium t 1 95 10 64 11 69 4 \N 2021-01-26 10:32:11.341+00 2021-01-26 10:32:11.341+00 0 podium podium t 1 96 10 66 11 72 4 \N 2021-01-26 10:32:11.342+00 2021-01-26 10:32:11.342+00 0 podium podium t 1 97 10 67 11 73 4 \N 2021-01-26 10:32:11.343+00 2021-01-26 10:32:11.343+00 0 podium podium t 1 98 10 64 10 65 2 [salesorders_FK_customers] 2021-01-26 10:32:11.585+00 2021-01-26 10:32:11.585+00 0 podium podium t 1 99 11 69 11 70 2 [salesorders_FK_customers] 2021-01-26 10:32:11.586+00 2021-01-26 10:32:11.586+00 0 podium podium t 1 100 10 62 10 62 2 [fk_Employees_Employees] 2021-01-26 10:32:11.587+00 2021-01-26 10:32:11.587+00 0 podium podium t 1 101 11 71 11 69 2 [fk_Customers_Employees] 2021-01-26 10:32:11.587+00 2021-01-26 10:32:11.587+00 0 podium podium t 1 102 11 69 11 74 2 [fk_Payments_Customers] 2021-01-26 10:32:11.588+00 2021-01-26 10:32:11.588+00 0 podium podium t 1 103 10 63 10 62 2 [fk_Employees_Offices] 2021-01-26 10:32:11.588+00 2021-01-26 10:32:11.588+00 0 podium podium t 1 104 11 71 11 71 2 [fk_Employees_Employees] 2021-01-26 10:32:11.589+00 2021-01-26 10:32:11.589+00 0 podium podium t 1 105 10 66 10 65 2 [salesorders_FK_products] 2021-01-26 10:32:11.589+00 2021-01-26 10:32:11.589+00 0 podium podium t 1 106 10 67 10 66 2 [fk_Products_ProductLines] 2021-01-26 10:32:11.59+00 2021-01-26 10:32:11.59+00 0 podium podium t 1 107 10 62 10 64 2 [fk_Customers_Employees] 2021-01-26 10:32:11.59+00 2021-01-26 10:32:11.59+00 0 podium podium t 1 108 11 68 11 71 2 [fk_Employees_Offices] 2021-01-26 10:32:11.591+00 2021-01-26 10:32:11.591+00 0 podium podium t 1 109 11 73 11 72 2 [fk_Products_ProductLines] 2021-01-26 10:32:11.591+00 2021-01-26 10:32:11.591+00 0 podium podium t 1 110 11 72 11 70 2 [salesorders_FK_products] 2021-01-26 10:32:11.592+00 2021-01-26 10:32:11.592+00 0 podium podium t 1 111 10 64 10 61 2 [fk_Payments_Customers] 2021-01-26 10:32:11.592+00 2021-01-26 10:32:11.592+00 0 podium podium t 1 112 10 61 10 64 2 \N 2021-01-27 13:38:27.259+00 2021-01-27 13:38:27.259+00 0 podium podium t 1 113 11 70 11 72 2 \N 2021-01-27 13:38:27.261+00 2021-01-27 13:38:27.261+00 0 podium podium t 1 114 11 74 11 69 2 \N 2021-01-27 13:38:27.262+00 2021-01-27 13:38:27.262+00 0 podium podium t 1 115 10 65 10 66 2 \N 2021-01-27 13:38:27.263+00 2021-01-27 13:38:27.263+00 0 podium podium t 1 \. -- -- Data for Name: pd_entity_tag; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_entity_tag (nid, entity_nid, tag, created_ttz, modified_ttz, version, modifiedby, createdby, is_external) FROM stdin; 1 15 orders 2021-01-26 10:04:03.602+00 2021-01-26 10:04:03.602+00 0 podium podium f 2 15 sales 2021-01-26 10:04:03.603+00 2021-01-26 10:04:03.603+00 0 podium podium f 3 18 payments 2021-01-26 10:04:03.69+00 2021-01-26 10:04:03.69+00 0 podium podium f 4 18 sensitive 2021-01-26 10:04:03.691+00 2021-01-26 10:04:03.691+00 0 podium podium f 5 17 offices 2021-01-26 10:04:03.771+00 2021-01-26 10:04:03.771+00 0 podium podium f 8 20 product lines 2021-01-26 10:04:03.93+00 2021-01-26 10:04:03.93+00 0 podium podium f 21 52 suppliers 2021-01-26 10:14:46.938+00 2021-01-26 10:14:46.938+00 0 podium podium f 22 45 shippers 2021-01-26 10:14:47+00 2021-01-26 10:14:47+00 0 podium podium f 23 49 orders 2021-01-26 10:14:47.056+00 2021-01-26 10:14:47.056+00 0 podium podium f 24 50 customers 2021-01-26 10:14:47.109+00 2021-01-26 10:14:47.109+00 0 podium podium f 25 46 categories 2021-01-26 10:14:47.161+00 2021-01-26 10:14:47.161+00 0 podium podium f 26 51 employees 2021-01-26 10:14:47.209+00 2021-01-26 10:14:47.209+00 0 podium podium f 27 47 order-lines 2021-01-26 10:14:47.258+00 2021-01-26 10:14:47.258+00 0 podium podium f 28 48 products 2021-01-26 10:14:47.307+00 2021-01-26 10:14:47.307+00 0 podium podium f 29 36 suppliers 2021-01-26 10:14:47.382+00 2021-01-26 10:14:47.382+00 0 podium podium f 30 32 shippers 2021-01-26 10:14:47.436+00 2021-01-26 10:14:47.436+00 0 podium podium f 31 29 orders 2021-01-26 10:14:47.481+00 2021-01-26 10:14:47.481+00 0 podium podium f 32 35 customers 2021-01-26 10:14:47.531+00 2021-01-26 10:14:47.531+00 0 podium podium f 33 34 categories 2021-01-26 10:14:47.58+00 2021-01-26 10:14:47.58+00 0 podium podium f 34 30 employees 2021-01-26 10:14:47.635+00 2021-01-26 10:14:47.635+00 0 podium podium f 35 31 order-lines 2021-01-26 10:14:47.686+00 2021-01-26 10:14:47.686+00 0 podium podium f 36 33 products 2021-01-26 10:14:47.741+00 2021-01-26 10:14:47.741+00 0 podium podium f 39 16 products 2021-01-26 10:21:30.982+00 2021-01-26 10:21:30.982+00 0 podium podium f 40 19 employees 2021-01-26 10:22:22.821+00 2021-01-26 10:22:22.821+00 0 podium podium f 41 21 customers 2021-01-26 10:26:44.381+00 2021-01-26 10:26:44.381+00 0 podium podium f 42 21 sensitive 2021-01-26 10:26:44.382+00 2021-01-26 10:26:44.382+00 0 podium podium f 43 65 sales 2021-01-26 10:38:54.093+00 2021-01-26 10:38:54.093+00 0 podium podium f 44 65 orders 2021-01-26 10:38:54.094+00 2021-01-26 10:38:54.094+00 0 podium podium f 45 61 sensitive 2021-01-26 10:38:54.14+00 2021-01-26 10:38:54.14+00 0 podium podium f 46 61 payments 2021-01-26 10:38:54.14+00 2021-01-26 10:38:54.14+00 0 podium podium f 47 63 offices 2021-01-26 10:38:54.182+00 2021-01-26 10:38:54.182+00 0 podium podium f 48 64 customers 2021-01-26 10:38:54.223+00 2021-01-26 10:38:54.223+00 0 podium podium f 49 64 sensitive 2021-01-26 10:38:54.224+00 2021-01-26 10:38:54.224+00 0 podium podium f 50 67 product lines 2021-01-26 10:38:54.267+00 2021-01-26 10:38:54.267+00 0 podium podium f 51 62 employees 2021-01-26 10:38:54.31+00 2021-01-26 10:38:54.31+00 0 podium podium f 52 66 products 2021-01-26 10:38:54.353+00 2021-01-26 10:38:54.353+00 0 podium podium f 53 26 orders 2021-01-26 10:44:00.458+00 2021-01-26 10:44:00.458+00 0 podium podium f 54 26 sales 2021-01-26 10:44:00.459+00 2021-01-26 10:44:00.459+00 0 podium podium f 55 28 payments 2021-01-26 10:44:00.489+00 2021-01-26 10:44:00.489+00 0 podium podium f 56 28 sensitive 2021-01-26 10:44:00.489+00 2021-01-26 10:44:00.489+00 0 podium podium f 57 23 offices 2021-01-26 10:44:00.516+00 2021-01-26 10:44:00.516+00 0 podium podium f 58 25 sensitive 2021-01-26 10:44:00.543+00 2021-01-26 10:44:00.543+00 0 podium podium f 59 25 customers 2021-01-26 10:44:00.544+00 2021-01-26 10:44:00.544+00 0 podium podium f 60 24 product lines 2021-01-26 10:44:00.572+00 2021-01-26 10:44:00.572+00 0 podium podium f 61 22 employees 2021-01-26 10:44:00.597+00 2021-01-26 10:44:00.597+00 0 podium podium f 62 27 products 2021-01-26 10:44:00.618+00 2021-01-26 10:44:00.618+00 0 podium podium f 63 70 sales 2021-01-26 10:44:00.814+00 2021-01-26 10:44:00.814+00 0 podium podium f 64 70 orders 2021-01-26 10:44:00.814+00 2021-01-26 10:44:00.814+00 0 podium podium f 65 74 sensitive 2021-01-26 10:44:00.833+00 2021-01-26 10:44:00.833+00 0 podium podium f 66 74 payments 2021-01-26 10:44:00.834+00 2021-01-26 10:44:00.834+00 0 podium podium f 67 68 offices 2021-01-26 10:44:00.859+00 2021-01-26 10:44:00.859+00 0 podium podium f 68 69 customers 2021-01-26 10:44:00.874+00 2021-01-26 10:44:00.874+00 0 podium podium f 69 69 sensitive 2021-01-26 10:44:00.875+00 2021-01-26 10:44:00.875+00 0 podium podium f 70 73 product lines 2021-01-26 10:44:00.887+00 2021-01-26 10:44:00.887+00 0 podium podium f 71 71 employees 2021-01-26 10:44:00.902+00 2021-01-26 10:44:00.902+00 0 podium podium f 72 72 products 2021-01-26 10:44:00.916+00 2021-01-26 10:44:00.916+00 0 podium podium f 77 77 sales-orders 2021-01-27 11:06:11.991+00 2021-01-27 11:06:11.991+00 0 podium podium f 78 77 sales 2021-01-27 11:06:11.993+00 2021-01-27 11:06:11.993+00 0 podium podium f 79 77 customers 2021-01-27 11:06:11.994+00 2021-01-27 11:06:11.994+00 0 podium podium f 80 77 products 2021-01-27 11:06:11.995+00 2021-01-27 11:06:11.995+00 0 podium podium f 83 75 product-lines 2021-01-27 11:06:25.408+00 2021-01-27 11:06:25.408+00 0 podium podium f 84 75 products 2021-01-27 11:06:25.409+00 2021-01-27 11:06:25.409+00 0 podium podium f 85 58 suppliers 2021-01-28 08:20:55.974+00 2021-01-28 08:20:55.974+00 0 podium podium f 86 57 shippers 2021-01-28 08:20:56+00 2021-01-28 08:20:56+00 0 podium podium f 87 56 orders 2021-01-28 08:20:56.017+00 2021-01-28 08:20:56.017+00 0 podium podium f 88 55 customers 2021-01-28 08:20:56.035+00 2021-01-28 08:20:56.035+00 0 podium podium f 89 54 categories 2021-01-28 08:20:56.052+00 2021-01-28 08:20:56.052+00 0 podium podium f 90 59 employees 2021-01-28 08:20:56.069+00 2021-01-28 08:20:56.069+00 0 podium podium f 91 60 order-lines 2021-01-28 08:20:56.086+00 2021-01-28 08:20:56.086+00 0 podium podium f 92 53 products 2021-01-28 08:20:56.105+00 2021-01-28 08:20:56.105+00 0 podium podium f 93 41 suppliers 2021-01-28 08:20:56.146+00 2021-01-28 08:20:56.146+00 0 podium podium f 94 44 shippers 2021-01-28 08:20:56.163+00 2021-01-28 08:20:56.163+00 0 podium podium f 95 37 orders 2021-01-28 08:20:56.175+00 2021-01-28 08:20:56.175+00 0 podium podium f 96 42 customers 2021-01-28 08:20:56.187+00 2021-01-28 08:20:56.187+00 0 podium podium f 97 38 categories 2021-01-28 08:20:56.198+00 2021-01-28 08:20:56.198+00 0 podium podium f 98 40 employees 2021-01-28 08:20:56.211+00 2021-01-28 08:20:56.211+00 0 podium podium f 99 43 order-lines 2021-01-28 08:20:56.224+00 2021-01-28 08:20:56.224+00 0 podium podium f 100 39 products 2021-01-28 08:20:56.235+00 2021-01-28 08:20:56.235+00 0 podium podium f \. -- -- Data for Name: pd_export_field_masking; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_export_field_masking (nid, field_nid, data_export_info_nid, created_ttz, modified_ttz, version, modifiedby, createdby, obfuscation_rule_nid) FROM stdin; \. -- -- Data for Name: pd_export_info; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_export_info (nid, entity_nid, data_selection, occurence, filter_criteria, data_prep_statement, created_ttz, modified_ttz, version, modifiedby, createdby, target_nid, publish_nid) FROM stdin; \. -- -- Data for Name: pd_export_info_prop; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_export_info_prop (nid, export_info_nid, prop_name, prop_value, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_field; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_field (nid, entity_nid, sname, business_name, business_desc, technical_desc, field_index, not_null, threshold, encrypted_at_source, do_encrypt, external_data_type, internal_data_type, is_key, is_fk, validation_value, is_validation_regex, nullif_value, is_nullif_regex, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 714 77 reportsTo \N \N \N 36 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 10:46:26.37+00 2021-01-27 10:46:26.37+00 0 podium podium 715 77 requiredDate \N \N \N 2 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.373+00 2021-01-27 10:46:26.373+00 0 podium podium 716 77 contactLastName \N \N \N 20 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.375+00 2021-01-27 10:46:26.375+00 0 podium podium 717 77 productScale \N \N \N 11 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.377+00 2021-01-27 10:46:26.377+00 0 podium podium 718 77 state \N \N \N 26 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.378+00 2021-01-27 10:46:26.378+00 0 podium podium 719 77 email \N \N \N 35 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.38+00 2021-01-27 10:46:26.38+00 0 podium podium 720 77 productCode \N \N \N 9 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.381+00 2021-01-27 10:46:26.381+00 0 podium podium 721 77 phone \N \N \N 22 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.383+00 2021-01-27 10:46:26.383+00 0 podium podium 722 77 customerNumber \N \N \N 5 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 10:46:26.384+00 2021-01-27 10:46:26.384+00 0 podium podium 723 77 MSRP \N \N \N 16 F 0.1 F F \N DOUBLE F F \N F \N F 2021-01-27 10:46:26.386+00 2021-01-27 10:46:26.386+00 0 podium podium 724 77 creditLimit \N \N \N 30 F 0.1 F F \N DOUBLE F F \N F \N F 2021-01-27 10:46:26.387+00 2021-01-27 10:46:26.387+00 0 podium podium 725 77 orderNumber \N \N \N 0 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 10:46:26.389+00 2021-01-27 10:46:26.389+00 0 podium podium 726 77 productLine \N \N \N 17 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.39+00 2021-01-27 10:46:26.39+00 0 podium podium 727 77 addressLine1 \N \N \N 23 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.392+00 2021-01-27 10:46:26.392+00 0 podium podium 728 77 jobTitle \N \N \N 37 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.393+00 2021-01-27 10:46:26.393+00 0 podium podium 729 77 productDescription \N \N \N 13 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.395+00 2021-01-27 10:46:26.395+00 0 podium podium 730 77 buyPrice \N \N \N 15 F 0.1 F F \N DOUBLE F F \N F \N F 2021-01-27 10:46:26.396+00 2021-01-27 10:46:26.396+00 0 podium podium 731 77 postalCode \N \N \N 27 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.398+00 2021-01-27 10:46:26.398+00 0 podium podium 732 77 extension \N \N \N 34 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.399+00 2021-01-27 10:46:26.399+00 0 podium podium 733 77 orderTotal \N \N \N 39 F 0.1 F F \N DECIMAL F F \N F \N F 2021-01-27 10:46:26.401+00 2021-01-27 10:46:26.401+00 0 podium podium 734 77 contactFirstName \N \N \N 21 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.402+00 2021-01-27 10:46:26.402+00 0 podium podium 735 77 productName \N \N \N 10 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.403+00 2021-01-27 10:46:26.403+00 0 podium podium 736 77 city \N \N \N 25 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.405+00 2021-01-27 10:46:26.405+00 0 podium podium 737 77 textDescription \N \N \N 18 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.406+00 2021-01-27 10:46:26.406+00 0 podium podium 738 77 productVendor \N \N \N 12 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.407+00 2021-01-27 10:46:26.407+00 0 podium podium 739 77 priceEach \N \N \N 7 F 0.1 F F \N DOUBLE F F \N F \N F 2021-01-27 10:46:26.408+00 2021-01-27 10:46:26.408+00 0 podium podium 740 77 customerLocation \N \N \N 31 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.409+00 2021-01-27 10:46:26.409+00 0 podium podium 741 77 shippedDate \N \N \N 3 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.41+00 2021-01-27 10:46:26.41+00 0 podium podium 742 77 salesRepEmployeeNumber \N \N \N 29 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 10:46:26.412+00 2021-01-27 10:46:26.412+00 0 podium podium 743 77 firstName \N \N \N 33 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.413+00 2021-01-27 10:46:26.413+00 0 podium podium 744 77 quantityOrdered \N \N \N 8 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 10:46:26.419+00 2021-01-27 10:46:26.419+00 0 podium podium 745 77 officeCode \N \N \N 38 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.421+00 2021-01-27 10:46:26.421+00 0 podium podium 746 77 quantityInStock \N \N \N 14 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 10:46:26.422+00 2021-01-27 10:46:26.422+00 0 podium podium 747 77 lastName \N \N \N 32 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.424+00 2021-01-27 10:46:26.424+00 0 podium podium 748 77 country \N \N \N 28 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.425+00 2021-01-27 10:46:26.425+00 0 podium podium 749 77 customerName \N \N \N 19 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.427+00 2021-01-27 10:46:26.427+00 0 podium podium 750 77 status \N \N \N 4 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.428+00 2021-01-27 10:46:26.428+00 0 podium podium 751 77 addressLine2 \N \N \N 24 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.429+00 2021-01-27 10:46:26.429+00 0 podium podium 752 77 orderDate \N \N \N 1 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 10:46:26.431+00 2021-01-27 10:46:26.431+00 0 podium podium 753 77 orderLineNumber \N \N \N 6 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 10:46:26.432+00 2021-01-27 10:46:26.432+00 0 podium podium 825 79 email \N \N \N 35 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.722+00 2021-01-27 11:08:00.722+00 0 podium podium 826 79 creditLimit \N \N \N 30 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.723+00 2021-01-27 11:08:00.723+00 0 podium podium 827 79 phone \N \N \N 22 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.724+00 2021-01-27 11:08:00.724+00 0 podium podium 828 79 orderNumber \N \N \N 0 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 11:08:00.725+00 2021-01-27 11:08:00.725+00 0 podium podium 829 79 contactFirstName \N \N \N 21 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.727+00 2021-01-27 11:08:00.727+00 0 podium podium 830 79 productVendor \N \N \N 12 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.728+00 2021-01-27 11:08:00.728+00 0 podium podium 831 79 jobTitle \N \N \N 37 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.729+00 2021-01-27 11:08:00.729+00 0 podium podium 832 79 contactLastName \N \N \N 20 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.73+00 2021-01-27 11:08:00.73+00 0 podium podium 833 79 firstName \N \N \N 33 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.731+00 2021-01-27 11:08:00.731+00 0 podium podium 834 80 jobTitle \N \N \N 6 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 13:19:01.412+00 2021-01-27 13:19:01.412+00 0 podium podium 835 80 firstName \N \N \N 2 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 13:19:01.414+00 2021-01-27 13:19:01.414+00 0 podium podium 836 80 officeCode \N \N \N 7 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 13:19:01.415+00 2021-01-27 13:19:01.415+00 0 podium podium 837 80 email \N \N \N 4 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 13:19:01.415+00 2021-01-27 13:19:01.415+00 0 podium podium 838 80 systemComment \N \N \N 8 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 13:19:01.416+00 2021-01-27 13:19:01.416+00 0 podium podium 839 80 reportsTo \N \N \N 5 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 13:19:01.417+00 2021-01-27 13:19:01.417+00 0 podium podium 840 80 employeeNumber \N \N \N 0 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 13:19:01.418+00 2021-01-27 13:19:01.418+00 0 podium podium 841 80 lastName \N \N \N 1 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 13:19:01.419+00 2021-01-27 13:19:01.419+00 0 podium podium 842 80 extension \N \N \N 3 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 13:19:01.42+00 2021-01-27 13:19:01.42+00 0 podium podium 587 66 buyPrice Buy Price Item purchase price CLASSIC-MODELS.PRODUCTS.BUYPRICE 6 T 0.1 F F DOUBLE DOUBLE F F \N F \N F \N 2021-01-28 08:24:01.117+00 4 podium \N 607 70 productCode Product Code Product Code CLASSIC-MODELS.SALESORDERS.PRODUCTCODE 9 T 0.1 F F STRING STRING T T \N F \N F 2021-01-26 10:32:11.243+00 2021-01-28 10:28:40.304+00 2 podium podium 207 28 amount Payment Amount Payment Amount CLASSIC-MODELS.PAYMENTS.AMOUNT 2 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:03:16.269+00 2021-01-28 10:28:38.352+00 1 podium podium 202 23 country Office Country Office Country CLASSIC-MODELS.OFFICES.COUNTRY 6 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.262+00 2021-01-28 10:28:38.41+00 1 podium podium 843 81 orderTotal \N \N \N 2 F 0.1 F F \N DECIMAL F F \N F \N F 2021-01-27 13:28:22.428+00 2021-01-27 13:28:22.428+00 0 podium podium 844 81 productScale \N \N \N 1 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 13:28:22.429+00 2021-01-27 13:28:22.429+00 0 podium podium 845 81 customerNumber \N \N \N 0 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 13:28:22.43+00 2021-01-27 13:28:22.43+00 0 podium podium 589 66 productCode Product Code Product ID CLASSIC-MODELS.PRODUCTS.PRODUCTCODE 0 T 0.1 F F VARCHAR(15) STRING T T \N F \N F 2021-01-26 10:32:10.839+00 2021-01-27 13:38:27.276+00 2 podium podium 660 72 productCode Product Code Product ID CLASSIC-MODELS.PRODUCTS.PRODUCTCODE 0 T 0.1 F F STRING STRING T T \N F \N F 2021-01-26 10:32:11.274+00 2021-01-27 13:38:27.276+00 2 podium podium 168 15 productCode Product Code Product Code CLASSIC-MODELS.SALESORDERS.PRODUCTCODE 9 T 0.1 F F VARCHAR(15) STRING F T \N F \N F 2021-01-26 10:03:15.613+00 2021-01-28 10:28:37.067+00 1 podium podium 140 15 requiredDate Order Required Date Date in which our Customer requires the order CLASSIC-MODELS.SALESORDERS.REQUIREDDATE 2 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:03:15.588+00 2021-01-28 10:28:37.1+00 1 podium podium 161 15 customerNumber Customer Code Customer Code CLASSIC-MODELS.SALESORDERS.CUSTOMERNUMBER 5 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:03:15.607+00 2021-01-28 10:28:37.131+00 1 podium podium 133 15 status Order Status Order Status CLASSIC-MODELS.SALESORDERS.STATUS 4 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:03:15.582+00 2021-01-28 10:28:37.204+00 1 podium podium 173 18 checkNumber Customer Check Numbner Customer Check Numbner CLASSIC-MODELS.PAYMENTS.CHECKNUMBER 0 T 0.1 F F VARCHAR(50) STRING T F \N F \N F \N 2021-01-28 10:28:37.268+00 2 podium \N 154 17 city Office City Office City CLASSIC-MODELS.OFFICES.CITY 1 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.601+00 2021-01-28 10:28:37.391+00 1 podium podium 128 17 postalCode Office ZIP Code Office ZIP Code CLASSIC-MODELS.OFFICES.POSTALCODE 7 T 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:03:15.577+00 2021-01-28 10:28:37.434+00 1 podium podium 151 17 addressLine2 Office Address 2 Office Address 2 CLASSIC-MODELS.OFFICES.ADDRESSLINE2 4 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.599+00 2021-01-28 10:28:37.476+00 1 podium podium 135 21 country Customer Country Customer Country CLASSIC-MODELS.CUSTOMERS.COUNTRY 10 T 0.1 F F VARCHAR(50) STRING F F \N F \N F \N 2021-01-28 10:28:37.569+00 2 podium \N 153 21 customerLocation Customer Location Coordinates Customer Location Coordinates CLASSIC-MODELS.CUSTOMERS.CUSTOMERLOCATION 13 T 0.1 F F GEOMETRY STRING F F \N F \N F 2021-01-26 10:03:15.601+00 2021-01-28 10:28:37.6+00 1 podium podium 120 21 salesRepEmployeeNumber Customer Sales Rep Code Customer Sales Rep Code CLASSIC-MODELS.CUSTOMERS.SALESREPEMPLOYEENUMBER 11 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:03:15.57+00 2021-01-28 10:28:37.639+00 1 podium podium 170 21 customerNumber Customer Code Customer Code CLASSIC-MODELS.CUSTOMERS.CUSTOMERNUMBER 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:03:15.615+00 2021-01-28 10:28:37.653+00 1 podium podium 145 21 creditLimit Customer Credit Limit Customer Credit Limit CLASSIC-MODELS.CUSTOMERS.CREDITLIMIT 12 F 0.1 F F DOUBLE DOUBLE F F \N F \N F \N 2021-01-28 10:28:37.693+00 5 podium \N 163 21 addressLine2 Customer Address 2 Customer Address 2 CLASSIC-MODELS.CUSTOMERS.ADDRESSLINE2 6 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.609+00 2021-01-28 10:28:37.721+00 1 podium podium 160 20 productLine Product Line Code Product Line Code CLASSIC-MODELS.PRODUCTLINES.PRODUCTLINE 0 T 0.1 F F VARCHAR(50) STRING T F \N F \N F 2021-01-26 10:03:15.607+00 2021-01-28 10:28:37.804+00 1 podium podium 142 20 htmlDescription Product Line Description HTML Product Line Description HTML CLASSIC-MODELS.PRODUCTLINES.HTMLDESCRIPTION 2 F 0.1 F F MEDIUMTEXT STRING F F \N F \N F 2021-01-26 10:03:15.59+00 2021-01-28 10:28:37.83+00 1 podium podium 134 19 officeCode Office Code Office Code CLASSIC-MODELS.PRODUCTS.OFFICECODE 7 T 0.1 F F VARCHAR(10) STRING F T \N F \N F 2021-01-26 10:03:15.583+00 2021-01-28 10:28:37.944+00 1 podium podium 139 19 email Email Address Email Address CLASSIC-MODELS.PRODUCTS.EMAIL 4 T 0.1 F F VARCHAR(100) STRING F F ^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$ T \N F \N 2021-01-28 10:28:37.97+00 3 podium \N 216 26 orderNumber Order Number Order Number CLASSIC-MODELS.SALESORDERS.ORDERNUMBER 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:03:16.277+00 2021-01-28 10:28:38.199+00 1 podium podium 200 26 quantityOrdered Order Quantity Order Quantity CLASSIC-MODELS.SALESORDERS.QUANTITYORDERED 8 T 0.1 F F INT INTEGER F F \N F \N F 2021-01-26 10:03:16.261+00 2021-01-28 10:28:38.226+00 2 podium podium 220 26 shippedDate Order Shipped Date Date in which the order has been shipped CLASSIC-MODELS.SALESORDERS.SHIPPEDDATE 3 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.281+00 2021-01-28 10:28:38.269+00 1 podium podium 194 26 orderDate Order Date Order Date CLASSIC-MODELS.SALESORDERS.ORDERDATE 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.256+00 2021-01-28 10:28:38.283+00 1 podium podium 226 28 checkNumber Customer Check Numbner Customer Check Numbner CLASSIC-MODELS.PAYMENTS.CHECKNUMBER 0 T 0.1 F F VARCHAR(50) STRING T F \N F \N F 2021-01-26 10:03:16.286+00 2021-01-28 10:28:38.34+00 2 podium podium 190 23 postalCode Office ZIP Code Office ZIP Code CLASSIC-MODELS.OFFICES.POSTALCODE 7 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.252+00 2021-01-28 10:28:38.469+00 1 podium podium 215 23 addressLine2 Office Address 2 Office Address 2 CLASSIC-MODELS.OFFICES.ADDRESSLINE2 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.276+00 2021-01-28 10:28:38.513+00 1 podium podium 196 25 city Customer City Customer City CLASSIC-MODELS.CUSTOMERS.CITY 7 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.257+00 2021-01-28 10:28:38.583+00 1 podium podium 582 64 customerNumber Customer Code Customer Code CLASSIC-MODELS.CUSTOMERS.CUSTOMERNUMBER 0 T 0.1 F F INT INTEGER T T \N F \N F 2021-01-26 10:32:10.835+00 2021-01-28 10:28:39.728+00 2 podium podium 794 79 productCode \N \N \N 9 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.686+00 2021-01-27 11:08:00.686+00 0 podium podium 795 79 extension \N \N \N 34 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.688+00 2021-01-27 11:08:00.688+00 0 podium podium 796 79 quantityOrdered \N \N \N 8 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 11:08:00.689+00 2021-01-27 11:08:00.689+00 0 podium podium 797 79 postalCode \N \N \N 27 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.691+00 2021-01-27 11:08:00.691+00 0 podium podium 798 79 productScale \N \N \N 11 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.692+00 2021-01-27 11:08:00.692+00 0 podium podium 799 79 status \N \N \N 4 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.693+00 2021-01-27 11:08:00.693+00 0 podium podium 800 79 customerLocation \N \N \N 31 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.694+00 2021-01-27 11:08:00.694+00 0 podium podium 801 79 orderDate \N \N \N 1 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.695+00 2021-01-27 11:08:00.695+00 0 podium podium 802 79 addressLine1 \N \N \N 23 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.696+00 2021-01-27 11:08:00.696+00 0 podium podium 131 15 orderNumber Order Number Order Number CLASSIC-MODELS.SALESORDERS.ORDERNUMBER 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:03:15.58+00 2021-01-28 10:28:37.085+00 1 podium podium 129 16 productLine Product Line Foreign key of the product line CLASSIC-MODELS-ERRORS.PRODUCTS.PRODUCTLINE 8 F 0.1 F F VARCHAR(50) STRING F T \N F \N F 2021-01-26 10:03:15.579+00 2021-01-26 10:04:04.194+00 1 podium podium 132 16 productCode Product Code Product ID CLASSIC-MODELS-ERRORS.PRODUCTS.PRODUCTCODE 0 T 0.1 F F VARCHAR(15) STRING T F \N F \N F 2021-01-26 10:03:15.581+00 2021-01-26 10:04:04.237+00 1 podium podium 122 16 productName Product Name Name of the product CLASSIC-MODELS-ERRORS.PRODUCTS.PRODUCTNAME 1 T 0.1 F F VARCHAR(70) STRING F F \N F \N F 2021-01-26 10:03:15.572+00 2021-01-26 10:04:04.297+00 1 podium podium 143 15 shippedDate Order Shipped Date Date in which the order has been shipped CLASSIC-MODELS.SALESORDERS.SHIPPEDDATE 3 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:03:15.591+00 2021-01-28 10:28:37.162+00 1 podium podium 152 19 employeeNumber Employee Code Employee Code CLASSIC-MODELS.PRODUCTS.EMPLOYEENUMBER 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:03:15.6+00 2021-01-28 10:28:37.985+00 1 podium podium 126 21 city Customer City Customer City CLASSIC-MODELS.CUSTOMERS.CITY 7 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.575+00 2021-01-28 10:28:37.584+00 1 podium podium 150 15 quantityOrdered Order Quantity Order Quantity CLASSIC-MODELS.SALESORDERS.QUANTITYORDERED 8 T 0.1 F F INT INTEGER F F ^\\+?(0|[1-9]\\d*)$ T \N F \N 2021-01-28 10:28:37.116+00 2 podium \N 119 15 orderDate Order Date Order Date CLASSIC-MODELS.SALESORDERS.ORDERDATE 1 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:03:15.569+00 2021-01-28 10:28:37.176+00 1 podium podium 130 18 paymentDate Payment Date Payment Date CLASSIC-MODELS.PAYMENTS.PAYMENTDATE 1 T 0.1 F F DATETIME STRING F F \N F \N F 2021-01-26 10:03:15.58+00 2021-01-28 10:28:37.309+00 1 podium podium 125 17 country Office Country Office Country CLASSIC-MODELS.OFFICES.COUNTRY 6 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.574+00 2021-01-28 10:28:37.372+00 1 podium podium 127 17 phone Office Phone Number Office Phone Number CLASSIC-MODELS.OFFICES.PHONE 2 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.576+00 2021-01-28 10:28:37.405+00 1 podium podium 118 17 officeLocation Office Location Coordinates Office Location Coordinates CLASSIC-MODELS.OFFICES.OFFICELOCATION 9 T 0.1 F F GEOMETRY STRING F F \N F \N F 2021-01-26 10:03:15.568+00 2021-01-28 10:28:37.418+00 1 podium podium 144 17 officeCode Office Code Office Code CLASSIC-MODELS.OFFICES.OFFICECODE 0 T 0.1 F F VARCHAR(10) STRING T F \N F \N F 2021-01-26 10:03:15.592+00 2021-01-28 10:28:37.447+00 1 podium podium 147 17 addressLine1 Office Address 1 Office Address 1 CLASSIC-MODELS.OFFICES.ADDRESSLINE1 3 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.596+00 2021-01-28 10:28:37.462+00 1 podium podium 136 17 state Office State Office State CLASSIC-MODELS.OFFICES.STATE 5 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.585+00 2021-01-28 10:28:37.491+00 1 podium podium 123 17 territory Office Sales Territory Code Office Sales Territory Code CLASSIC-MODELS.OFFICES.TERRITORY 8 T 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:03:15.572+00 2021-01-28 10:28:37.503+00 1 podium podium 141 21 contactFirstName Customer First Name Customer First Name CLASSIC-MODELS.CUSTOMERS.CONTACTFIRSTNAME 3 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.589+00 2021-01-28 10:28:37.614+00 1 podium podium 138 21 postalCode Customer ZIP Code Customer ZIP Code CLASSIC-MODELS.CUSTOMERS.POSTALCODE 9 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:03:15.586+00 2021-01-28 10:28:37.626+00 1 podium podium 148 21 customerName Customer Customer CLASSIC-MODELS.CUSTOMERS.CUSTOMERNAME 1 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.596+00 2021-01-28 10:28:37.666+00 1 podium podium 157 21 phone Customer Phone Number Customer Phone Number CLASSIC-MODELS.CUSTOMERS.PHONE 4 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.604+00 2021-01-28 10:28:37.679+00 1 podium podium 121 21 addressLine1 Customer Address 1 Customer Address 1 CLASSIC-MODELS.CUSTOMERS.ADDRESSLINE1 5 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.571+00 2021-01-28 10:28:37.708+00 1 podium podium 146 21 contactLastName Customer Last Name Customer Last Name CLASSIC-MODELS.CUSTOMERS.CONTACTLASTNAME 2 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.594+00 2021-01-28 10:28:37.733+00 1 podium podium 124 21 state Customer State Customer State CLASSIC-MODELS.CUSTOMERS.STATE 8 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.573+00 2021-01-28 10:28:37.744+00 1 podium podium 117 20 textDescription Product Line Description Product Line Description CLASSIC-MODELS.PRODUCTLINES.TEXTDESCRIPTION 1 F 0.1 F F VARCHAR(4000) STRING F F \N F \N F 2021-01-26 10:03:15.567+00 2021-01-28 10:28:37.817+00 1 podium podium 155 19 lastName Employee Last Name Employee Last Name CLASSIC-MODELS.PRODUCTS.LASTNAME 1 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.602+00 2021-01-28 10:28:37.891+00 1 podium podium 159 19 firstName Employee First Name Employee First Name CLASSIC-MODELS.PRODUCTS.FIRSTNAME 2 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.606+00 2021-01-28 10:28:37.904+00 1 podium podium 156 19 jobTitle Employee Job Title Employee Job Title CLASSIC-MODELS.PRODUCTS.JOBTITLE 6 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.603+00 2021-01-28 10:28:37.93+00 1 podium podium 149 19 reportsTo Employee Reports To Employee Reports To CLASSIC-MODELS.PRODUCTS.REPORTSTO 5 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:03:15.597+00 2021-01-28 10:28:37.957+00 1 podium podium 164 15 orderLineNumber Order Line Number Order Line Number CLASSIC-MODELS.SALESORDERS.ORDERLINENUMBER 6 T 0.1 F F SMALLINT INTEGER T F \N F \N F 2021-01-26 10:03:15.61+00 2021-01-28 10:28:37.15+00 1 podium podium 167 15 priceEach Single Price Price for a single quantity CLASSIC-MODELS.SALESORDERS.PRICEEACH 7 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:03:15.613+00 2021-01-28 10:28:37.188+00 1 podium podium 166 16 quantityInStock Stock quantity Stock quantity for the product CLASSIC-MODELS-ERRORS.PRODUCTS.QUANTITYINSTOCK 5 T 0.1 F F SMALLINT INTEGER F F \N F \N F 2021-01-26 10:03:15.612+00 2021-01-26 10:04:04.259+00 1 podium podium 198 22 employeeNumber Employee Code Employee Code CLASSIC-MODELS.PRODUCTS.EMPLOYEENUMBER 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:03:16.259+00 2021-01-28 10:28:38.956+00 1 podium podium 182 25 customerLocation Customer Location Coordinates Customer Location Coordinates CLASSIC-MODELS.CUSTOMERS.CUSTOMERLOCATION 13 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.245+00 2021-01-28 10:28:38.598+00 1 podium podium 169 18 amount Payment Amount Payment Amount CLASSIC-MODELS.PAYMENTS.AMOUNT 2 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:03:15.614+00 2021-01-28 10:28:37.283+00 1 podium podium 214 26 customerNumber Customer Code Customer Code CLASSIC-MODELS.SALESORDERS.CUSTOMERNUMBER 5 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:03:16.275+00 2021-01-28 10:28:38.24+00 1 podium podium 197 27 quantityInStock Stock quantity Stock quantity for the product CLASSIC-MODELS-ERRORS.PRODUCTS.QUANTITYINSTOCK 5 T 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:03:16.258+00 2021-01-26 10:44:00.726+00 1 podium podium 205 27 productName Product Name Name of the product CLASSIC-MODELS-ERRORS.PRODUCTS.PRODUCTNAME 1 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.268+00 2021-01-26 10:44:00.761+00 1 podium podium 178 27 productVendor Product Vendor Supplier of the product CLASSIC-MODELS-ERRORS.PRODUCTS.PRODUCTVENDOR 3 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.242+00 2021-01-26 10:44:00.775+00 1 podium podium 171 18 customerNumber Customer Code Customer Code CLASSIC-MODELS.PAYMENTS.CUSTOMERNUMBER 3 T 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:03:15.616+00 2021-01-28 10:28:37.296+00 1 podium podium 174 19 extension Telephone Extension Telephone Extension CLASSIC-MODELS.PRODUCTS.EXTENSION 3 T 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:03:15.618+00 2021-01-28 10:28:37.917+00 1 podium podium 187 26 productCode Product Code Product Code CLASSIC-MODELS.SALESORDERS.PRODUCTCODE 9 T 0.1 F F STRING STRING F T \N F \N F 2021-01-26 10:03:16.249+00 2021-01-28 10:28:38.184+00 1 podium podium 210 26 requiredDate Order Required Date Date in which our Customer requires the order CLASSIC-MODELS.SALESORDERS.REQUIREDDATE 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.272+00 2021-01-28 10:28:38.213+00 1 podium podium 179 26 orderLineNumber Order Line Number Order Line Number CLASSIC-MODELS.SALESORDERS.ORDERLINENUMBER 6 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:03:16.243+00 2021-01-28 10:28:38.255+00 1 podium podium 206 26 priceEach Single Price Price for a single quantity CLASSIC-MODELS.SALESORDERS.PRICEEACH 7 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:03:16.268+00 2021-01-28 10:28:38.297+00 1 podium podium 180 26 status Order Status Order Status CLASSIC-MODELS.SALESORDERS.STATUS 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.243+00 2021-01-28 10:28:38.311+00 1 podium podium 188 28 customerNumber Customer Code Customer Code CLASSIC-MODELS.PAYMENTS.CUSTOMERNUMBER 3 T 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:03:16.25+00 2021-01-28 10:28:38.365+00 1 podium podium 212 28 paymentDate Payment Date Payment Date CLASSIC-MODELS.PAYMENTS.PAYMENTDATE 1 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.274+00 2021-01-28 10:28:38.38+00 1 podium podium 185 23 city Office City Office City CLASSIC-MODELS.OFFICES.CITY 1 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.248+00 2021-01-28 10:28:38.426+00 1 podium podium 186 23 phone Office Phone Number Office Phone Number CLASSIC-MODELS.OFFICES.PHONE 2 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.249+00 2021-01-28 10:28:38.44+00 1 podium podium 204 23 officeCode Office Code Office Code CLASSIC-MODELS.OFFICES.OFFICECODE 0 T 0.1 F F STRING STRING T F \N F \N F 2021-01-26 10:03:16.264+00 2021-01-28 10:28:38.485+00 1 podium podium 189 23 addressLine1 Office Address 1 Office Address 1 CLASSIC-MODELS.OFFICES.ADDRESSLINE1 3 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.251+00 2021-01-28 10:28:38.499+00 1 podium podium 208 23 state Office State Office State CLASSIC-MODELS.OFFICES.STATE 5 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.27+00 2021-01-28 10:28:38.526+00 1 podium podium 209 25 country Customer Country Customer Country CLASSIC-MODELS.CUSTOMERS.COUNTRY 10 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:16.271+00 2021-01-28 10:28:38.569+00 2 podium podium 181 25 postalCode Customer ZIP Code Customer ZIP Code CLASSIC-MODELS.CUSTOMERS.POSTALCODE 9 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.244+00 2021-01-28 10:28:38.626+00 1 podium podium 184 25 phone Customer Phone Number Customer Phone Number CLASSIC-MODELS.CUSTOMERS.PHONE 4 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.247+00 2021-01-28 10:28:38.685+00 1 podium podium 193 25 addressLine1 Customer Address 1 Customer Address 1 CLASSIC-MODELS.CUSTOMERS.ADDRESSLINE1 5 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.255+00 2021-01-28 10:28:38.719+00 1 podium podium 199 25 addressLine2 Customer Address 2 Customer Address 2 CLASSIC-MODELS.CUSTOMERS.ADDRESSLINE2 6 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.26+00 2021-01-28 10:28:38.734+00 1 podium podium 195 25 state Customer State Customer State CLASSIC-MODELS.CUSTOMERS.STATE 8 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.256+00 2021-01-28 10:28:38.762+00 1 podium podium 175 24 htmlDescription Product Line Description HTML Product Line Description HTML CLASSIC-MODELS.PRODUCTLINES.HTMLDESCRIPTION 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.238+00 2021-01-28 10:28:38.821+00 1 podium podium 176 22 firstName Employee First Name Employee First Name CLASSIC-MODELS.PRODUCTS.FIRSTNAME 2 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.24+00 2021-01-28 10:28:38.864+00 1 podium podium 177 22 extension Telephone Extension Telephone Extension CLASSIC-MODELS.PRODUCTS.EXTENSION 3 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.241+00 2021-01-28 10:28:38.879+00 1 podium podium 211 22 officeCode Office Code Office Code CLASSIC-MODELS.PRODUCTS.OFFICECODE 7 T 0.1 F F STRING STRING F T \N F \N F 2021-01-26 10:03:16.273+00 2021-01-28 10:28:38.91+00 1 podium podium 203 22 reportsTo Employee Reports To Employee Reports To CLASSIC-MODELS.PRODUCTS.REPORTSTO 5 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:03:16.263+00 2021-01-28 10:28:38.928+00 1 podium podium 165 16 buyPrice Buy Price Item purchase price CLASSIC-MODELS-ERRORS.PRODUCTS.BUYPRICE 6 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:03:15.611+00 2021-01-26 10:04:04.148+00 1 podium podium 137 16 MSRP MSRP Manufacturer's suggested retail price CLASSIC-MODELS-ERRORS.PRODUCTS.MSRP 7 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:03:15.586+00 2021-01-26 10:04:04.172+00 1 podium podium 162 16 productScale Product Scale Model car scale CLASSIC-MODELS-ERRORS.PRODUCTS.PRODUCTSCALE 2 T 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:03:15.608+00 2021-01-26 10:04:04.217+00 1 podium podium 172 16 productDescription Product Description Description of the product CLASSIC-MODELS-ERRORS.PRODUCTS.PRODUCTDESCRIPTION 4 T 0.1 F F TEXT STRING F F \N F \N F 2021-01-26 10:03:15.617+00 2021-01-26 10:04:04.278+00 1 podium podium 158 16 productVendor Product Vendor Supplier of the product CLASSIC-MODELS-ERRORS.PRODUCTS.PRODUCTVENDOR 3 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:03:15.605+00 2021-01-26 10:04:04.317+00 1 podium podium 803 79 reportsTo \N \N \N 36 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 11:08:00.698+00 2021-01-27 11:08:00.698+00 0 podium podium 804 79 country \N \N \N 28 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.699+00 2021-01-27 11:08:00.699+00 0 podium podium 805 79 MSRP \N \N \N 16 F 0.1 F F \N DOUBLE F F \N F \N F 2021-01-27 11:08:00.7+00 2021-01-27 11:08:00.7+00 0 podium podium 806 79 buyPrice \N \N \N 15 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.701+00 2021-01-27 11:08:00.701+00 0 podium podium 233 34 categoriescol \N \N \N 4 F 0.1 F F VARCHAR(45) STRING F F \N F \N F 2021-01-26 10:04:32.664+00 2021-01-26 10:04:32.664+00 0 podium podium 234 29 RequiredDate \N \N \N 4 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:04:32.666+00 2021-01-26 10:04:32.666+00 0 podium podium 235 36 ContactName \N \N \N 2 F 0.1 F F VARCHAR(30) STRING F F \N F \N F 2021-01-26 10:04:32.667+00 2021-01-26 10:04:32.667+00 0 podium podium 236 30 HomePhone \N \N \N 13 F 0.1 F F VARCHAR(24) STRING F F \N F \N F 2021-01-26 10:04:32.668+00 2021-01-26 10:04:32.668+00 0 podium podium 237 35 Address \N \N \N 4 F 0.1 F F VARCHAR(60) STRING F F \N F \N F 2021-01-26 10:04:32.669+00 2021-01-26 10:04:32.669+00 0 podium podium 238 30 TitleOfCourtesy \N \N \N 1 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:32.67+00 2021-01-26 10:04:32.67+00 0 podium podium 239 34 Description \N \N \N 3 F 0.1 F F VARCHAR(1000) STRING F F \N F \N F 2021-01-26 10:04:32.671+00 2021-01-26 10:04:32.671+00 0 podium podium 240 30 EmployeeID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:32.672+00 2021-01-26 10:04:32.672+00 0 podium podium 241 30 HireDate \N \N \N 7 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:04:32.673+00 2021-01-26 10:04:32.673+00 0 podium podium 242 31 ProductID \N \N \N 2 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:32.674+00 2021-01-26 10:04:32.674+00 0 podium podium 243 33 UnitsInStock \N \N \N 6 F 0.1 F F SMALLINT INTEGER F F \N F \N F 2021-01-26 10:04:32.675+00 2021-01-26 10:04:32.675+00 0 podium podium 244 36 ContactTitle \N \N \N 3 F 0.1 F F VARCHAR(30) STRING F F \N F \N F 2021-01-26 10:04:32.676+00 2021-01-26 10:04:32.676+00 0 podium podium 245 35 Fax \N \N \N 10 F 0.1 F F VARCHAR(24) STRING F F \N F \N F 2021-01-26 10:04:32.677+00 2021-01-26 10:04:32.677+00 0 podium podium 246 29 OrderDate \N \N \N 3 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:04:32.678+00 2021-01-26 10:04:32.678+00 0 podium podium 247 30 Extension \N \N \N 14 F 0.1 F F VARCHAR(4) STRING F F \N F \N F 2021-01-26 10:04:32.678+00 2021-01-26 10:04:32.678+00 0 podium podium 248 29 Freight \N \N \N 7 F 0.1 F F DECIMAL(10,2) DOUBLE F F \N F \N F 2021-01-26 10:04:32.679+00 2021-01-26 10:04:32.679+00 0 podium podium 249 33 ProductName \N \N \N 1 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:32.68+00 2021-01-26 10:04:32.68+00 0 podium podium 250 35 Phone \N \N \N 9 F 0.1 F F VARCHAR(24) STRING F F \N F \N F 2021-01-26 10:04:32.681+00 2021-01-26 10:04:32.681+00 0 podium podium 251 30 LastName \N \N \N 3 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:32.682+00 2021-01-26 10:04:32.682+00 0 podium podium 252 36 CompanyName \N \N \N 1 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:32.683+00 2021-01-26 10:04:32.683+00 0 podium podium 253 29 ShipCountry \N \N \N 13 F 0.1 F F VARCHAR(5) STRING F F \N F \N F 2021-01-26 10:04:32.683+00 2021-01-26 10:04:32.683+00 0 podium podium 254 31 Category \N \N \N 6 F 0.1 F F INT INTEGER F F \N F \N F 2021-01-26 10:04:32.684+00 2021-01-26 10:04:32.684+00 0 podium podium 255 33 CategoryID \N \N \N 3 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:32.685+00 2021-01-26 10:04:32.685+00 0 podium podium 256 35 Country \N \N \N 8 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:32.686+00 2021-01-26 10:04:32.686+00 0 podium podium 257 30 FirstName \N \N \N 4 F 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:04:32.687+00 2021-01-26 10:04:32.687+00 0 podium podium 258 30 Country \N \N \N 12 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:32.687+00 2021-01-26 10:04:32.687+00 0 podium podium 259 31 Discount \N \N \N 5 F 0.1 F F DECIMAL(10,2) DOUBLE F F \N F \N F 2021-01-26 10:04:32.688+00 2021-01-26 10:04:32.688+00 0 podium podium 222 23 officeLocation Office Location Coordinates Office Location Coordinates CLASSIC-MODELS.OFFICES.OFFICELOCATION 9 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.282+00 2021-01-28 10:28:38.455+00 1 podium podium 227 27 buyPrice Buy Price Item purchase price CLASSIC-MODELS-ERRORS.PRODUCTS.BUYPRICE 6 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:03:16.287+00 2021-01-26 10:44:00.638+00 1 podium podium 223 27 MSRP MSRP Manufacturer's suggested retail price CLASSIC-MODELS-ERRORS.PRODUCTS.MSRP 7 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:03:16.283+00 2021-01-26 10:44:00.657+00 1 podium podium 224 27 productLine Product Line Foreign key of the product line CLASSIC-MODELS-ERRORS.PRODUCTS.PRODUCTLINE 8 F 0.1 F F STRING STRING F T \N F \N F 2021-01-26 10:03:16.284+00 2021-01-26 10:44:00.674+00 1 podium podium 221 27 productScale Product Scale Model car scale CLASSIC-MODELS-ERRORS.PRODUCTS.PRODUCTSCALE 2 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.281+00 2021-01-26 10:44:00.692+00 1 podium podium 219 27 productCode Product Code Product ID CLASSIC-MODELS-ERRORS.PRODUCTS.PRODUCTCODE 0 T 0.1 F F STRING STRING T F \N F \N F 2021-01-26 10:03:16.28+00 2021-01-26 10:44:00.71+00 1 podium podium 225 23 territory Office Sales Territory Code Office Sales Territory Code CLASSIC-MODELS.OFFICES.TERRITORY 8 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.285+00 2021-01-28 10:28:38.542+00 1 podium podium 229 25 customerNumber Customer Code Customer Code CLASSIC-MODELS.CUSTOMERS.CUSTOMERNUMBER 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:03:16.288+00 2021-01-28 10:28:38.657+00 1 podium podium 230 25 customerName Customer Customer CLASSIC-MODELS.CUSTOMERS.CUSTOMERNAME 1 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.289+00 2021-01-28 10:28:38.672+00 1 podium podium 228 24 textDescription Product Line Description Product Line Description CLASSIC-MODELS.PRODUCTLINES.TEXTDESCRIPTION 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.287+00 2021-01-28 10:28:38.807+00 1 podium podium 260 36 SupplierID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:32.689+00 2021-01-26 10:04:32.689+00 0 podium podium 261 35 CustomerID \N \N \N 0 T 0.1 F F VARCHAR(5) STRING T F \N F \N F 2021-01-26 10:04:32.69+00 2021-01-26 10:04:32.69+00 0 podium podium 262 33 QuantityPerUnit \N \N \N 4 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:32.691+00 2021-01-26 10:04:32.691+00 0 podium podium 263 36 Region \N \N \N 6 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:32.692+00 2021-01-26 10:04:32.692+00 0 podium podium 264 33 UnitPrice \N \N \N 5 F 0.1 F F DECIMAL(10,2) DOUBLE F F \N F \N F 2021-01-26 10:04:32.693+00 2021-01-26 10:04:32.693+00 0 podium podium 265 29 ShipName \N \N \N 8 F 0.1 F F VARCHAR(5) STRING F F \N F \N F 2021-01-26 10:04:32.694+00 2021-01-26 10:04:32.694+00 0 podium podium 266 29 EmployeeID \N \N \N 2 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:32.695+00 2021-01-26 10:04:32.695+00 0 podium podium 267 29 CustomerID \N \N \N 1 F 0.1 F F VARCHAR(5) STRING F T \N F \N F 2021-01-26 10:04:32.695+00 2021-01-26 10:04:32.695+00 0 podium podium 268 29 OrderID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:32.696+00 2021-01-26 10:04:32.696+00 0 podium podium 269 30 PostalCode \N \N \N 11 F 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:04:32.697+00 2021-01-26 10:04:32.697+00 0 podium podium 270 34 CategoryName \N \N \N 2 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:32.698+00 2021-01-26 10:04:32.698+00 0 podium podium 271 29 ShipCity \N \N \N 10 F 0.1 F F VARCHAR(5) STRING F F \N F \N F 2021-01-26 10:04:32.699+00 2021-01-26 10:04:32.699+00 0 podium podium 272 31 Quantity \N \N \N 4 F 0.1 F F SMALLINT INTEGER F F \N F \N F 2021-01-26 10:04:32.7+00 2021-01-26 10:04:32.7+00 0 podium podium 273 29 ShipVia \N \N \N 6 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:32.7+00 2021-01-26 10:04:32.7+00 0 podium podium 274 36 Phone \N \N \N 9 F 0.1 F F VARCHAR(24) STRING F F \N F \N F 2021-01-26 10:04:32.701+00 2021-01-26 10:04:32.701+00 0 podium podium 275 30 Address \N \N \N 8 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:32.702+00 2021-01-26 10:04:32.702+00 0 podium podium 276 35 CompanyName \N \N \N 1 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:32.703+00 2021-01-26 10:04:32.703+00 0 podium podium 277 36 Fax \N \N \N 10 F 0.1 F F VARCHAR(24) STRING F F \N F \N F 2021-01-26 10:04:32.704+00 2021-01-26 10:04:32.704+00 0 podium podium 278 35 ContactTitle \N \N \N 3 F 0.1 F F VARCHAR(30) STRING F F \N F \N F 2021-01-26 10:04:32.704+00 2021-01-26 10:04:32.704+00 0 podium podium 279 30 BirthDate \N \N \N 6 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:04:32.705+00 2021-01-26 10:04:32.705+00 0 podium podium 280 36 City \N \N \N 5 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:32.706+00 2021-01-26 10:04:32.706+00 0 podium podium 281 32 ShipperID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:32.707+00 2021-01-26 10:04:32.707+00 0 podium podium 282 29 ShipRegion \N \N \N 11 F 0.1 F F VARCHAR(5) STRING F F \N F \N F 2021-01-26 10:04:32.707+00 2021-01-26 10:04:32.707+00 0 podium podium 283 34 Picture \N \N \N 1 F 0.1 F F VARCHAR(40) STRING F F \N F \N F 2021-01-26 10:04:32.708+00 2021-01-26 10:04:32.708+00 0 podium podium 284 35 PostalCode \N \N \N 7 F 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:04:32.709+00 2021-01-26 10:04:32.709+00 0 podium podium 285 36 PostalCode \N \N \N 7 F 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:04:32.71+00 2021-01-26 10:04:32.71+00 0 podium podium 286 36 Country \N \N \N 8 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:32.711+00 2021-01-26 10:04:32.711+00 0 podium podium 287 30 Photo \N \N \N 2 F 0.1 F F VARCHAR(40) STRING F F \N F \N F 2021-01-26 10:04:32.712+00 2021-01-26 10:04:32.712+00 0 podium podium 288 35 ContactName \N \N \N 2 F 0.1 F F VARCHAR(30) STRING F F \N F \N F 2021-01-26 10:04:32.712+00 2021-01-26 10:04:32.712+00 0 podium podium 289 34 CategoryID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:32.713+00 2021-01-26 10:04:32.713+00 0 podium podium 290 30 City \N \N \N 9 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:32.714+00 2021-01-26 10:04:32.714+00 0 podium podium 291 30 Region \N \N \N 10 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:32.715+00 2021-01-26 10:04:32.715+00 0 podium podium 292 31 UnitPrice \N \N \N 3 F 0.1 F F DECIMAL(10,2) DOUBLE F F \N F \N F 2021-01-26 10:04:32.715+00 2021-01-26 10:04:32.715+00 0 podium podium 293 30 Notes \N \N \N 15 F 0.1 F F VARCHAR(1000) STRING F F \N F \N F 2021-01-26 10:04:32.717+00 2021-01-26 10:04:32.717+00 0 podium podium 294 33 Discontinued \N \N \N 9 F 0.1 F F TINYINT INTEGER F F \N F \N F 2021-01-26 10:04:32.718+00 2021-01-26 10:04:32.718+00 0 podium podium 295 33 SupplierID \N \N \N 2 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:32.719+00 2021-01-26 10:04:32.719+00 0 podium podium 296 29 ShipAddress \N \N \N 9 F 0.1 F F VARCHAR(5) STRING F F \N F \N F 2021-01-26 10:04:32.719+00 2021-01-26 10:04:32.719+00 0 podium podium 297 30 ReportsTo \N \N \N 16 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:32.72+00 2021-01-26 10:04:32.72+00 0 podium podium 298 36 Address \N \N \N 4 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:32.721+00 2021-01-26 10:04:32.721+00 0 podium podium 299 33 UnitsOnOrder \N \N \N 7 F 0.1 F F SMALLINT INTEGER F F \N F \N F 2021-01-26 10:04:32.722+00 2021-01-26 10:04:32.722+00 0 podium podium 300 29 ShipPostalCode \N \N \N 12 F 0.1 F F VARCHAR(5) STRING F F \N F \N F 2021-01-26 10:04:32.723+00 2021-01-26 10:04:32.723+00 0 podium podium 301 33 ProductID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:32.724+00 2021-01-26 10:04:32.724+00 0 podium podium 302 35 City \N \N \N 5 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:32.724+00 2021-01-26 10:04:32.724+00 0 podium podium 303 29 ShippedDate \N \N \N 5 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:04:32.725+00 2021-01-26 10:04:32.725+00 0 podium podium 304 36 HomePage \N \N \N 11 F 0.1 F F VARCHAR(1000) STRING F F \N F \N F 2021-01-26 10:04:32.726+00 2021-01-26 10:04:32.726+00 0 podium podium 305 32 CompanyName \N \N \N 1 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:32.727+00 2021-01-26 10:04:32.727+00 0 podium podium 306 31 OrderID \N \N \N 1 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:32.727+00 2021-01-26 10:04:32.727+00 0 podium podium 307 35 Region \N \N \N 6 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:32.728+00 2021-01-26 10:04:32.728+00 0 podium podium 308 31 odID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:32.729+00 2021-01-26 10:04:32.729+00 0 podium podium 309 32 Phone \N \N \N 2 F 0.1 F F VARCHAR(24) STRING F F \N F \N F 2021-01-26 10:04:32.73+00 2021-01-26 10:04:32.73+00 0 podium podium 310 33 ReorderLevel \N \N \N 8 F 0.1 F F SMALLINT INTEGER F F \N F \N F 2021-01-26 10:04:32.731+00 2021-01-26 10:04:32.731+00 0 podium podium 311 30 Title \N \N \N 5 F 0.1 F F VARCHAR(30) STRING F F \N F \N F 2021-01-26 10:04:32.731+00 2021-01-26 10:04:32.731+00 0 podium podium 312 40 LastName \N \N \N 3 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.541+00 2021-01-26 10:04:33.541+00 0 podium podium 313 40 ReportsTo \N \N \N 16 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:04:33.542+00 2021-01-26 10:04:33.542+00 0 podium podium 314 40 HomePhone \N \N \N 13 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.543+00 2021-01-26 10:04:33.543+00 0 podium podium 315 41 City \N \N \N 5 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.544+00 2021-01-26 10:04:33.544+00 0 podium podium 316 43 Category \N \N \N 6 F 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:04:33.545+00 2021-01-26 10:04:33.545+00 0 podium podium 317 37 ShipVia \N \N \N 6 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:04:33.546+00 2021-01-26 10:04:33.546+00 0 podium podium 318 40 Extension \N \N \N 14 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.546+00 2021-01-26 10:04:33.546+00 0 podium podium 319 41 ContactName \N \N \N 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.547+00 2021-01-26 10:04:33.547+00 0 podium podium 320 43 Discount \N \N \N 5 F 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:04:33.548+00 2021-01-26 10:04:33.548+00 0 podium podium 321 42 Address \N \N \N 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.549+00 2021-01-26 10:04:33.549+00 0 podium podium 322 40 BirthDate \N \N \N 6 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.549+00 2021-01-26 10:04:33.549+00 0 podium podium 323 39 ProductID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:04:33.55+00 2021-01-26 10:04:33.55+00 0 podium podium 324 42 Fax \N \N \N 10 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.551+00 2021-01-26 10:04:33.551+00 0 podium podium 325 44 ShipperID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:04:33.552+00 2021-01-26 10:04:33.552+00 0 podium podium 326 37 ShipCity \N \N \N 10 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.553+00 2021-01-26 10:04:33.553+00 0 podium podium 327 39 SupplierID \N \N \N 2 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:04:33.553+00 2021-01-26 10:04:33.553+00 0 podium podium 328 37 EmployeeID \N \N \N 2 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:04:33.554+00 2021-01-26 10:04:33.554+00 0 podium podium 329 37 ShipName \N \N \N 8 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.555+00 2021-01-26 10:04:33.555+00 0 podium podium 330 37 ShipCountry \N \N \N 13 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.556+00 2021-01-26 10:04:33.556+00 0 podium podium 331 41 Country \N \N \N 8 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.556+00 2021-01-26 10:04:33.556+00 0 podium podium 332 42 CustomerID \N \N \N 0 T 0.1 F F STRING STRING T F \N F \N F 2021-01-26 10:04:33.557+00 2021-01-26 10:04:33.557+00 0 podium podium 333 43 odID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:04:33.558+00 2021-01-26 10:04:33.558+00 0 podium podium 334 44 CompanyName \N \N \N 1 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.559+00 2021-01-26 10:04:33.559+00 0 podium podium 335 39 ProductName \N \N \N 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.559+00 2021-01-26 10:04:33.559+00 0 podium podium 336 42 Country \N \N \N 8 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.56+00 2021-01-26 10:04:33.56+00 0 podium podium 337 37 ShippedDate \N \N \N 5 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.561+00 2021-01-26 10:04:33.561+00 0 podium podium 338 40 HireDate \N \N \N 7 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.562+00 2021-01-26 10:04:33.562+00 0 podium podium 339 40 FirstName \N \N \N 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.563+00 2021-01-26 10:04:33.563+00 0 podium podium 340 41 Fax \N \N \N 10 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.564+00 2021-01-26 10:04:33.564+00 0 podium podium 341 41 HomePage \N \N \N 11 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.564+00 2021-01-26 10:04:33.564+00 0 podium podium 342 38 CategoryID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:04:33.568+00 2021-01-26 10:04:33.568+00 0 podium podium 343 42 City \N \N \N 5 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.569+00 2021-01-26 10:04:33.569+00 0 podium podium 344 40 Region \N \N \N 10 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.57+00 2021-01-26 10:04:33.57+00 0 podium podium 345 43 ProductID \N \N \N 2 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:04:33.571+00 2021-01-26 10:04:33.571+00 0 podium podium 346 43 Quantity \N \N \N 4 F 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:04:33.572+00 2021-01-26 10:04:33.572+00 0 podium podium 347 39 UnitsInStock \N \N \N 6 F 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:04:33.573+00 2021-01-26 10:04:33.573+00 0 podium podium 348 38 Description \N \N \N 3 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.573+00 2021-01-26 10:04:33.573+00 0 podium podium 349 42 CompanyName \N \N \N 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.574+00 2021-01-26 10:04:33.574+00 0 podium podium 350 40 Country \N \N \N 12 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.575+00 2021-01-26 10:04:33.575+00 0 podium podium 351 37 RequiredDate \N \N \N 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.576+00 2021-01-26 10:04:33.576+00 0 podium podium 352 39 Discontinued \N \N \N 9 F 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:04:33.577+00 2021-01-26 10:04:33.577+00 0 podium podium 353 39 CategoryID \N \N \N 3 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:04:33.578+00 2021-01-26 10:04:33.578+00 0 podium podium 354 42 PostalCode \N \N \N 7 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.579+00 2021-01-26 10:04:33.579+00 0 podium podium 355 39 QuantityPerUnit \N \N \N 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.579+00 2021-01-26 10:04:33.579+00 0 podium podium 356 40 Address \N \N \N 8 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.58+00 2021-01-26 10:04:33.58+00 0 podium podium 357 38 Picture \N \N \N 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.581+00 2021-01-26 10:04:33.581+00 0 podium podium 358 41 PostalCode \N \N \N 7 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.582+00 2021-01-26 10:04:33.582+00 0 podium podium 359 40 EmployeeID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:04:33.583+00 2021-01-26 10:04:33.583+00 0 podium podium 360 40 PostalCode \N \N \N 11 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.583+00 2021-01-26 10:04:33.583+00 0 podium podium 361 42 ContactTitle \N \N \N 3 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.584+00 2021-01-26 10:04:33.584+00 0 podium podium 362 40 Photo \N \N \N 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.585+00 2021-01-26 10:04:33.585+00 0 podium podium 363 42 Phone \N \N \N 9 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.586+00 2021-01-26 10:04:33.586+00 0 podium podium 364 38 CategoryName \N \N \N 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.587+00 2021-01-26 10:04:33.587+00 0 podium podium 365 43 OrderID \N \N \N 1 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:04:33.587+00 2021-01-26 10:04:33.587+00 0 podium podium 366 40 TitleOfCourtesy \N \N \N 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.588+00 2021-01-26 10:04:33.588+00 0 podium podium 367 40 City \N \N \N 9 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.592+00 2021-01-26 10:04:33.592+00 0 podium podium 368 43 UnitPrice \N \N \N 3 F 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:04:33.593+00 2021-01-26 10:04:33.593+00 0 podium podium 369 37 ShipPostalCode \N \N \N 12 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.593+00 2021-01-26 10:04:33.593+00 0 podium podium 370 38 categoriescol \N \N \N 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.594+00 2021-01-26 10:04:33.594+00 0 podium podium 371 44 Phone \N \N \N 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.595+00 2021-01-26 10:04:33.595+00 0 podium podium 372 37 Freight \N \N \N 7 F 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:04:33.596+00 2021-01-26 10:04:33.596+00 0 podium podium 373 37 CustomerID \N \N \N 1 F 0.1 F F STRING STRING F T \N F \N F 2021-01-26 10:04:33.597+00 2021-01-26 10:04:33.597+00 0 podium podium 374 39 ReorderLevel \N \N \N 8 F 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:04:33.598+00 2021-01-26 10:04:33.598+00 0 podium podium 375 41 Phone \N \N \N 9 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.599+00 2021-01-26 10:04:33.599+00 0 podium podium 376 41 Address \N \N \N 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.6+00 2021-01-26 10:04:33.6+00 0 podium podium 377 42 Region \N \N \N 6 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.6+00 2021-01-26 10:04:33.6+00 0 podium podium 378 37 ShipAddress \N \N \N 9 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.601+00 2021-01-26 10:04:33.601+00 0 podium podium 379 37 ShipRegion \N \N \N 11 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.602+00 2021-01-26 10:04:33.602+00 0 podium podium 380 40 Notes \N \N \N 15 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.603+00 2021-01-26 10:04:33.603+00 0 podium podium 381 39 UnitPrice \N \N \N 5 F 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:04:33.603+00 2021-01-26 10:04:33.603+00 0 podium podium 382 42 ContactName \N \N \N 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.604+00 2021-01-26 10:04:33.604+00 0 podium podium 383 41 SupplierID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:04:33.605+00 2021-01-26 10:04:33.605+00 0 podium podium 384 41 Region \N \N \N 6 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.606+00 2021-01-26 10:04:33.606+00 0 podium podium 385 37 OrderID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:04:33.607+00 2021-01-26 10:04:33.607+00 0 podium podium 386 41 ContactTitle \N \N \N 3 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.607+00 2021-01-26 10:04:33.607+00 0 podium podium 387 41 CompanyName \N \N \N 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.608+00 2021-01-26 10:04:33.608+00 0 podium podium 388 40 Title \N \N \N 5 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.609+00 2021-01-26 10:04:33.609+00 0 podium podium 389 37 OrderDate \N \N \N 3 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:04:33.61+00 2021-01-26 10:04:33.61+00 0 podium podium 390 39 UnitsOnOrder \N \N \N 7 F 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:04:33.611+00 2021-01-26 10:04:33.611+00 0 podium podium 391 47 UnitPrice \N \N \N 3 F 0.1 F F DECIMAL(10,2) DOUBLE F F \N F \N F 2021-01-26 10:04:59.418+00 2021-01-26 10:04:59.418+00 0 podium podium 392 52 CompanyName \N \N \N 1 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:59.419+00 2021-01-26 10:04:59.419+00 0 podium podium 393 52 PostalCode \N \N \N 7 F 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:04:59.42+00 2021-01-26 10:04:59.42+00 0 podium podium 394 52 ContactTitle \N \N \N 3 F 0.1 F F VARCHAR(30) STRING F F \N F \N F 2021-01-26 10:04:59.421+00 2021-01-26 10:04:59.421+00 0 podium podium 395 50 CompanyName \N \N \N 1 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:59.422+00 2021-01-26 10:04:59.422+00 0 podium podium 396 48 UnitsOnOrder \N \N \N 7 F 0.1 F F SMALLINT INTEGER F F \N F \N F 2021-01-26 10:04:59.422+00 2021-01-26 10:04:59.422+00 0 podium podium 397 49 CustomerID \N \N \N 1 F 0.1 F F VARCHAR(5) STRING F T \N F \N F 2021-01-26 10:04:59.423+00 2021-01-26 10:04:59.423+00 0 podium podium 398 47 ProductID \N \N \N 2 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:59.424+00 2021-01-26 10:04:59.424+00 0 podium podium 399 52 Phone \N \N \N 9 F 0.1 F F VARCHAR(24) STRING F F \N F \N F 2021-01-26 10:04:59.424+00 2021-01-26 10:04:59.424+00 0 podium podium 400 52 City \N \N \N 5 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:59.425+00 2021-01-26 10:04:59.425+00 0 podium podium 401 47 Discount \N \N \N 5 F 0.1 F F DECIMAL(10,2) DOUBLE F F \N F \N F 2021-01-26 10:04:59.426+00 2021-01-26 10:04:59.426+00 0 podium podium 402 51 HomePhone \N \N \N 13 F 0.1 F F VARCHAR(24) STRING F F \N F \N F 2021-01-26 10:04:59.426+00 2021-01-26 10:04:59.426+00 0 podium podium 403 48 UnitPrice \N \N \N 5 F 0.1 F F DECIMAL(10,2) DOUBLE F F \N F \N F 2021-01-26 10:04:59.427+00 2021-01-26 10:04:59.427+00 0 podium podium 404 51 LastName \N \N \N 3 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:59.428+00 2021-01-26 10:04:59.428+00 0 podium podium 405 48 ProductName \N \N \N 1 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:59.428+00 2021-01-26 10:04:59.428+00 0 podium podium 406 50 CustomerID \N \N \N 0 T 0.1 F F VARCHAR(5) STRING T F \N F \N F 2021-01-26 10:04:59.429+00 2021-01-26 10:04:59.429+00 0 podium podium 407 52 SupplierID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:59.43+00 2021-01-26 10:04:59.43+00 0 podium podium 408 51 Extension \N \N \N 14 F 0.1 F F VARCHAR(4) STRING F F \N F \N F 2021-01-26 10:04:59.43+00 2021-01-26 10:04:59.43+00 0 podium podium 409 52 Fax \N \N \N 10 F 0.1 F F VARCHAR(24) STRING F F \N F \N F 2021-01-26 10:04:59.431+00 2021-01-26 10:04:59.431+00 0 podium podium 410 49 ShipRegion \N \N \N 11 F 0.1 F F VARCHAR(5) STRING F F \N F \N F 2021-01-26 10:04:59.431+00 2021-01-26 10:04:59.431+00 0 podium podium 411 48 ProductID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:59.432+00 2021-01-26 10:04:59.432+00 0 podium podium 412 50 Region \N \N \N 6 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:59.433+00 2021-01-26 10:04:59.433+00 0 podium podium 413 52 Address \N \N \N 4 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:59.433+00 2021-01-26 10:04:59.433+00 0 podium podium 414 51 City \N \N \N 9 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:59.434+00 2021-01-26 10:04:59.434+00 0 podium podium 415 47 OrderID \N \N \N 1 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:59.434+00 2021-01-26 10:04:59.434+00 0 podium podium 416 48 QuantityPerUnit \N \N \N 4 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:59.435+00 2021-01-26 10:04:59.435+00 0 podium podium 417 49 EmployeeID \N \N \N 2 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:59.436+00 2021-01-26 10:04:59.436+00 0 podium podium 418 47 Category \N \N \N 6 F 0.1 F F INT INTEGER F F \N F \N F 2021-01-26 10:04:59.436+00 2021-01-26 10:04:59.436+00 0 podium podium 419 50 PostalCode \N \N \N 7 F 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:04:59.437+00 2021-01-26 10:04:59.437+00 0 podium podium 420 51 TitleOfCourtesy \N \N \N 1 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:59.438+00 2021-01-26 10:04:59.438+00 0 podium podium 421 45 Phone \N \N \N 2 F 0.1 F F VARCHAR(24) STRING F F \N F \N F 2021-01-26 10:04:59.439+00 2021-01-26 10:04:59.439+00 0 podium podium 422 48 Discontinued \N \N \N 9 F 0.1 F F TINYINT INTEGER F F \N F \N F 2021-01-26 10:04:59.439+00 2021-01-26 10:04:59.439+00 0 podium podium 423 49 OrderID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:59.44+00 2021-01-26 10:04:59.44+00 0 podium podium 424 52 Country \N \N \N 8 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:59.441+00 2021-01-26 10:04:59.441+00 0 podium podium 425 49 ShipCountry \N \N \N 13 F 0.1 F F VARCHAR(5) STRING F F \N F \N F 2021-01-26 10:04:59.441+00 2021-01-26 10:04:59.441+00 0 podium podium 807 79 state \N \N \N 26 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.702+00 2021-01-27 11:08:00.702+00 0 podium podium 426 51 Notes \N \N \N 15 F 0.1 F F VARCHAR(1000) STRING F F \N F \N F 2021-01-26 10:04:59.442+00 2021-01-26 10:04:59.442+00 0 podium podium 427 51 BirthDate \N \N \N 6 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:04:59.443+00 2021-01-26 10:04:59.443+00 0 podium podium 428 51 Country \N \N \N 12 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:59.443+00 2021-01-26 10:04:59.443+00 0 podium podium 429 45 CompanyName \N \N \N 1 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:59.444+00 2021-01-26 10:04:59.444+00 0 podium podium 430 48 UnitsInStock \N \N \N 6 F 0.1 F F SMALLINT INTEGER F F \N F \N F 2021-01-26 10:04:59.445+00 2021-01-26 10:04:59.445+00 0 podium podium 431 49 ShipVia \N \N \N 6 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:59.445+00 2021-01-26 10:04:59.445+00 0 podium podium 432 52 ContactName \N \N \N 2 F 0.1 F F VARCHAR(30) STRING F F \N F \N F 2021-01-26 10:04:59.446+00 2021-01-26 10:04:59.446+00 0 podium podium 433 49 ShipPostalCode \N \N \N 12 F 0.1 F F VARCHAR(5) STRING F F \N F \N F 2021-01-26 10:04:59.447+00 2021-01-26 10:04:59.447+00 0 podium podium 434 49 ShipAddress \N \N \N 9 F 0.1 F F VARCHAR(5) STRING F F \N F \N F 2021-01-26 10:04:59.447+00 2021-01-26 10:04:59.447+00 0 podium podium 435 49 RequiredDate \N \N \N 4 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:04:59.448+00 2021-01-26 10:04:59.448+00 0 podium podium 436 46 Picture \N \N \N 1 F 0.1 F F VARCHAR(40) STRING F F \N F \N F 2021-01-26 10:04:59.448+00 2021-01-26 10:04:59.448+00 0 podium podium 437 50 ContactName \N \N \N 2 F 0.1 F F VARCHAR(30) STRING F F \N F \N F 2021-01-26 10:04:59.449+00 2021-01-26 10:04:59.449+00 0 podium podium 438 46 Description \N \N \N 3 F 0.1 F F VARCHAR(1000) STRING F F \N F \N F 2021-01-26 10:04:59.45+00 2021-01-26 10:04:59.45+00 0 podium podium 439 50 Fax \N \N \N 10 F 0.1 F F VARCHAR(24) STRING F F \N F \N F 2021-01-26 10:04:59.45+00 2021-01-26 10:04:59.45+00 0 podium podium 440 46 CategoryName \N \N \N 2 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:59.451+00 2021-01-26 10:04:59.451+00 0 podium podium 441 49 ShipCity \N \N \N 10 F 0.1 F F VARCHAR(5) STRING F F \N F \N F 2021-01-26 10:04:59.452+00 2021-01-26 10:04:59.452+00 0 podium podium 442 47 Quantity \N \N \N 4 F 0.1 F F SMALLINT INTEGER F F \N F \N F 2021-01-26 10:04:59.452+00 2021-01-26 10:04:59.452+00 0 podium podium 443 50 Country \N \N \N 8 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:59.453+00 2021-01-26 10:04:59.453+00 0 podium podium 444 51 Title \N \N \N 5 F 0.1 F F VARCHAR(30) STRING F F \N F \N F 2021-01-26 10:04:59.453+00 2021-01-26 10:04:59.453+00 0 podium podium 445 48 CategoryID \N \N \N 3 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:59.454+00 2021-01-26 10:04:59.454+00 0 podium podium 446 49 ShippedDate \N \N \N 5 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:04:59.455+00 2021-01-26 10:04:59.455+00 0 podium podium 447 48 ReorderLevel \N \N \N 8 F 0.1 F F SMALLINT INTEGER F F \N F \N F 2021-01-26 10:04:59.455+00 2021-01-26 10:04:59.455+00 0 podium podium 448 52 Region \N \N \N 6 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:59.456+00 2021-01-26 10:04:59.456+00 0 podium podium 449 45 ShipperID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:59.457+00 2021-01-26 10:04:59.457+00 0 podium podium 450 50 ContactTitle \N \N \N 3 F 0.1 F F VARCHAR(30) STRING F F \N F \N F 2021-01-26 10:04:59.457+00 2021-01-26 10:04:59.457+00 0 podium podium 451 51 EmployeeID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:59.459+00 2021-01-26 10:04:59.459+00 0 podium podium 452 52 HomePage \N \N \N 11 F 0.1 F F VARCHAR(1000) STRING F F \N F \N F 2021-01-26 10:04:59.46+00 2021-01-26 10:04:59.46+00 0 podium podium 453 51 ReportsTo \N \N \N 16 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:59.46+00 2021-01-26 10:04:59.46+00 0 podium podium 454 47 odID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:59.461+00 2021-01-26 10:04:59.461+00 0 podium podium 455 49 ShipName \N \N \N 8 F 0.1 F F VARCHAR(5) STRING F F \N F \N F 2021-01-26 10:04:59.462+00 2021-01-26 10:04:59.462+00 0 podium podium 456 50 City \N \N \N 5 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:59.462+00 2021-01-26 10:04:59.462+00 0 podium podium 457 51 Region \N \N \N 10 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:04:59.463+00 2021-01-26 10:04:59.463+00 0 podium podium 458 46 categoriescol \N \N \N 4 F 0.1 F F VARCHAR(45) STRING F F \N F \N F 2021-01-26 10:04:59.464+00 2021-01-26 10:04:59.464+00 0 podium podium 459 51 Photo \N \N \N 2 F 0.1 F F VARCHAR(40) STRING F F \N F \N F 2021-01-26 10:04:59.464+00 2021-01-26 10:04:59.464+00 0 podium podium 460 51 PostalCode \N \N \N 11 F 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:04:59.465+00 2021-01-26 10:04:59.465+00 0 podium podium 461 49 Freight \N \N \N 7 F 0.1 F F DECIMAL(10,2) DOUBLE F F \N F \N F 2021-01-26 10:04:59.466+00 2021-01-26 10:04:59.466+00 0 podium podium 462 51 Address \N \N \N 8 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:04:59.466+00 2021-01-26 10:04:59.466+00 0 podium podium 463 50 Address \N \N \N 4 F 0.1 F F VARCHAR(60) STRING F F \N F \N F 2021-01-26 10:04:59.467+00 2021-01-26 10:04:59.467+00 0 podium podium 464 50 Phone \N \N \N 9 F 0.1 F F VARCHAR(24) STRING F F \N F \N F 2021-01-26 10:04:59.467+00 2021-01-26 10:04:59.467+00 0 podium podium 465 48 SupplierID \N \N \N 2 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:04:59.468+00 2021-01-26 10:04:59.468+00 0 podium podium 466 51 FirstName \N \N \N 4 F 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:04:59.469+00 2021-01-26 10:04:59.469+00 0 podium podium 467 49 OrderDate \N \N \N 3 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:04:59.469+00 2021-01-26 10:04:59.469+00 0 podium podium 468 46 CategoryID \N \N \N 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:04:59.47+00 2021-01-26 10:04:59.47+00 0 podium podium 469 51 HireDate \N \N \N 7 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:04:59.47+00 2021-01-26 10:04:59.47+00 0 podium podium 470 60 UnitPrice \N \N \N 3 F 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:05:00.043+00 2021-01-26 10:05:00.043+00 0 podium podium 471 58 Region \N \N \N 6 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.044+00 2021-01-26 10:05:00.044+00 0 podium podium 472 59 PostalCode \N \N \N 11 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.045+00 2021-01-26 10:05:00.045+00 0 podium podium 473 53 Discontinued \N \N \N 9 F 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:05:00.045+00 2021-01-26 10:05:00.045+00 0 podium podium 474 53 SupplierID \N \N \N 2 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:05:00.046+00 2021-01-26 10:05:00.046+00 0 podium podium 475 58 City \N \N \N 5 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.047+00 2021-01-26 10:05:00.047+00 0 podium podium 476 55 Phone \N \N \N 9 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.047+00 2021-01-26 10:05:00.047+00 0 podium podium 477 59 FirstName \N \N \N 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.048+00 2021-01-26 10:05:00.048+00 0 podium podium 478 56 ShipCountry \N \N \N 13 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.048+00 2021-01-26 10:05:00.048+00 0 podium podium 479 58 Address \N \N \N 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.049+00 2021-01-26 10:05:00.049+00 0 podium podium 480 60 Category \N \N \N 6 F 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:05:00.05+00 2021-01-26 10:05:00.05+00 0 podium podium 481 59 EmployeeID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:05:00.05+00 2021-01-26 10:05:00.05+00 0 podium podium 482 55 Region \N \N \N 6 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.051+00 2021-01-26 10:05:00.051+00 0 podium podium 483 56 OrderDate \N \N \N 3 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.052+00 2021-01-26 10:05:00.052+00 0 podium podium 484 59 Photo \N \N \N 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.052+00 2021-01-26 10:05:00.052+00 0 podium podium 485 60 odID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:05:00.053+00 2021-01-26 10:05:00.053+00 0 podium podium 486 53 UnitsOnOrder \N \N \N 7 F 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:05:00.054+00 2021-01-26 10:05:00.054+00 0 podium podium 487 55 Address \N \N \N 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.054+00 2021-01-26 10:05:00.054+00 0 podium podium 488 53 CategoryID \N \N \N 3 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:05:00.055+00 2021-01-26 10:05:00.055+00 0 podium podium 489 55 ContactName \N \N \N 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.056+00 2021-01-26 10:05:00.056+00 0 podium podium 490 55 ContactTitle \N \N \N 3 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.056+00 2021-01-26 10:05:00.056+00 0 podium podium 491 53 ReorderLevel \N \N \N 8 F 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:05:00.057+00 2021-01-26 10:05:00.057+00 0 podium podium 492 55 City \N \N \N 5 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.057+00 2021-01-26 10:05:00.057+00 0 podium podium 493 58 Fax \N \N \N 10 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.058+00 2021-01-26 10:05:00.058+00 0 podium podium 494 58 HomePage \N \N \N 11 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.059+00 2021-01-26 10:05:00.059+00 0 podium podium 495 54 Picture \N \N \N 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.059+00 2021-01-26 10:05:00.059+00 0 podium podium 496 53 UnitsInStock \N \N \N 6 F 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:05:00.06+00 2021-01-26 10:05:00.06+00 0 podium podium 497 56 ShipVia \N \N \N 6 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:05:00.06+00 2021-01-26 10:05:00.06+00 0 podium podium 498 57 CompanyName \N \N \N 1 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.061+00 2021-01-26 10:05:00.061+00 0 podium podium 499 58 CompanyName \N \N \N 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.062+00 2021-01-26 10:05:00.062+00 0 podium podium 500 58 SupplierID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:05:00.064+00 2021-01-26 10:05:00.064+00 0 podium podium 501 54 CategoryName \N \N \N 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.065+00 2021-01-26 10:05:00.065+00 0 podium podium 502 60 Discount \N \N \N 5 F 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:05:00.065+00 2021-01-26 10:05:00.065+00 0 podium podium 503 59 BirthDate \N \N \N 6 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.066+00 2021-01-26 10:05:00.066+00 0 podium podium 504 59 Extension \N \N \N 14 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.067+00 2021-01-26 10:05:00.067+00 0 podium podium 505 59 City \N \N \N 9 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.067+00 2021-01-26 10:05:00.067+00 0 podium podium 506 60 Quantity \N \N \N 4 F 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:05:00.068+00 2021-01-26 10:05:00.068+00 0 podium podium 507 57 Phone \N \N \N 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.068+00 2021-01-26 10:05:00.068+00 0 podium podium 508 56 ShipCity \N \N \N 10 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.069+00 2021-01-26 10:05:00.069+00 0 podium podium 509 58 Country \N \N \N 8 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.07+00 2021-01-26 10:05:00.07+00 0 podium podium 510 56 ShipName \N \N \N 8 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.07+00 2021-01-26 10:05:00.07+00 0 podium podium 511 53 UnitPrice \N \N \N 5 F 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:05:00.071+00 2021-01-26 10:05:00.071+00 0 podium podium 512 54 categoriescol \N \N \N 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.071+00 2021-01-26 10:05:00.071+00 0 podium podium 513 59 Title \N \N \N 5 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.072+00 2021-01-26 10:05:00.072+00 0 podium podium 514 59 LastName \N \N \N 3 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.073+00 2021-01-26 10:05:00.073+00 0 podium podium 515 59 ReportsTo \N \N \N 16 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:05:00.073+00 2021-01-26 10:05:00.073+00 0 podium podium 516 57 ShipperID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:05:00.074+00 2021-01-26 10:05:00.074+00 0 podium podium 517 54 CategoryID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:05:00.074+00 2021-01-26 10:05:00.074+00 0 podium podium 518 55 CompanyName \N \N \N 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.075+00 2021-01-26 10:05:00.075+00 0 podium podium 519 53 ProductID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:05:00.076+00 2021-01-26 10:05:00.076+00 0 podium podium 520 59 HireDate \N \N \N 7 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.076+00 2021-01-26 10:05:00.076+00 0 podium podium 521 59 HomePhone \N \N \N 13 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.077+00 2021-01-26 10:05:00.077+00 0 podium podium 522 58 Phone \N \N \N 9 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.078+00 2021-01-26 10:05:00.078+00 0 podium podium 523 55 CustomerID \N \N \N 0 T 0.1 F F STRING STRING T F \N F \N F 2021-01-26 10:05:00.078+00 2021-01-26 10:05:00.078+00 0 podium podium 524 55 PostalCode \N \N \N 7 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.079+00 2021-01-26 10:05:00.079+00 0 podium podium 525 56 ShipPostalCode \N \N \N 12 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.079+00 2021-01-26 10:05:00.079+00 0 podium podium 526 54 Description \N \N \N 3 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.08+00 2021-01-26 10:05:00.08+00 0 podium podium 527 56 RequiredDate \N \N \N 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.081+00 2021-01-26 10:05:00.081+00 0 podium podium 528 58 PostalCode \N \N \N 7 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.081+00 2021-01-26 10:05:00.081+00 0 podium podium 529 58 ContactTitle \N \N \N 3 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.082+00 2021-01-26 10:05:00.082+00 0 podium podium 530 60 ProductID \N \N \N 2 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:05:00.083+00 2021-01-26 10:05:00.083+00 0 podium podium 531 59 Notes \N \N \N 15 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.084+00 2021-01-26 10:05:00.084+00 0 podium podium 532 56 EmployeeID \N \N \N 2 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:05:00.085+00 2021-01-26 10:05:00.085+00 0 podium podium 533 59 Region \N \N \N 10 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.085+00 2021-01-26 10:05:00.085+00 0 podium podium 534 53 QuantityPerUnit \N \N \N 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.087+00 2021-01-26 10:05:00.087+00 0 podium podium 535 56 OrderID \N \N \N 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:05:00.087+00 2021-01-26 10:05:00.087+00 0 podium podium 536 58 ContactName \N \N \N 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.088+00 2021-01-26 10:05:00.088+00 0 podium podium 537 55 Country \N \N \N 8 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.089+00 2021-01-26 10:05:00.089+00 0 podium podium 538 59 TitleOfCourtesy \N \N \N 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.09+00 2021-01-26 10:05:00.09+00 0 podium podium 539 55 Fax \N \N \N 10 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.09+00 2021-01-26 10:05:00.09+00 0 podium podium 540 60 OrderID \N \N \N 1 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:05:00.091+00 2021-01-26 10:05:00.091+00 0 podium podium 541 56 Freight \N \N \N 7 F 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:05:00.092+00 2021-01-26 10:05:00.092+00 0 podium podium 542 56 ShipRegion \N \N \N 11 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.095+00 2021-01-26 10:05:00.095+00 0 podium podium 543 53 ProductName \N \N \N 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.096+00 2021-01-26 10:05:00.096+00 0 podium podium 544 56 ShipAddress \N \N \N 9 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.097+00 2021-01-26 10:05:00.097+00 0 podium podium 545 59 Country \N \N \N 12 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.097+00 2021-01-26 10:05:00.097+00 0 podium podium 546 56 CustomerID \N \N \N 1 F 0.1 F F STRING STRING F T \N F \N F 2021-01-26 10:05:00.098+00 2021-01-26 10:05:00.098+00 0 podium podium 547 56 ShippedDate \N \N \N 5 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.099+00 2021-01-26 10:05:00.099+00 0 podium podium 548 59 Address \N \N \N 8 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:05:00.099+00 2021-01-26 10:05:00.099+00 0 podium podium 808 79 shippedDate \N \N \N 3 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.702+00 2021-01-27 11:08:00.702+00 0 podium podium 554 65 orderNumber Order Number Order Number CLASSIC-MODELS.SALESORDERS.ORDERNUMBER 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:32:10.819+00 2021-01-28 10:28:39.168+00 1 podium podium 567 65 productCode Product Code Product Code CLASSIC-MODELS.SALESORDERS.PRODUCTCODE 9 T 0.1 F F VARCHAR(15) STRING T T \N F \N F 2021-01-26 10:32:10.827+00 2021-01-28 10:28:39.151+00 2 podium podium 566 66 productScale Product Scale Model car scale CLASSIC-MODELS.PRODUCTS.PRODUCTSCALE 2 T 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:32:10.826+00 2021-01-26 10:38:54.426+00 1 podium podium 572 65 quantityOrdered Order Quantity Order Quantity CLASSIC-MODELS.SALESORDERS.QUANTITYORDERED 8 T 0.1 F F INT INTEGER F F \N F \N F 2021-01-26 10:32:10.829+00 2021-01-28 10:28:39.196+00 1 podium podium 577 66 productVendor Product Vendor Supplier of the product CLASSIC-MODELS.PRODUCTS.PRODUCTVENDOR 3 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.832+00 2021-01-26 10:38:54.497+00 1 podium podium 579 65 customerNumber Customer Code Customer Code CLASSIC-MODELS.SALESORDERS.CUSTOMERNUMBER 5 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:32:10.834+00 2021-01-28 10:28:39.21+00 1 podium podium 560 65 orderLineNumber Order Line Number Order Line Number CLASSIC-MODELS.SALESORDERS.ORDERLINENUMBER 6 T 0.1 F F SMALLINT INTEGER T F \N F \N F 2021-01-26 10:32:10.823+00 2021-01-28 10:28:39.224+00 1 podium podium 552 65 orderDate Order Date Order Date CLASSIC-MODELS.SALESORDERS.ORDERDATE 1 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:32:10.817+00 2021-01-28 10:28:39.254+00 1 podium podium 583 65 priceEach Single Price Price for a single quantity CLASSIC-MODELS.SALESORDERS.PRICEEACH 7 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:32:10.836+00 2021-01-28 10:28:39.268+00 1 podium podium 569 65 status Order Status Order Status CLASSIC-MODELS.SALESORDERS.STATUS 4 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:32:10.828+00 2021-01-28 10:28:39.282+00 1 podium podium 588 61 paymentDate Payment Date Payment Date CLASSIC-MODELS.PAYMENTS.PAYMENTDATE 1 T 0.1 F F DATETIME STRING F F \N F \N F 2021-01-26 10:32:10.839+00 2021-01-28 10:28:39.388+00 1 podium podium 576 63 country Office Country Office Country CLASSIC-MODELS.OFFICES.COUNTRY 6 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.832+00 2021-01-28 10:28:39.446+00 1 podium podium 551 63 officeLocation Office Location Coordinates Office Location Coordinates CLASSIC-MODELS.OFFICES.OFFICELOCATION 9 T 0.1 F F GEOMETRY STRING F F \N F \N F 2021-01-26 10:32:10.817+00 2021-01-28 10:28:39.49+00 1 podium podium 586 63 addressLine1 Office Address 1 Office Address 1 CLASSIC-MODELS.OFFICES.ADDRESSLINE1 3 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.838+00 2021-01-28 10:28:39.535+00 1 podium podium 555 63 addressLine2 Office Address 2 Office Address 2 CLASSIC-MODELS.OFFICES.ADDRESSLINE2 4 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.82+00 2021-01-28 10:28:39.55+00 1 podium podium 568 63 state Office State Office State CLASSIC-MODELS.OFFICES.STATE 5 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.827+00 2021-01-28 10:28:39.564+00 1 podium podium 574 64 country Customer Country Customer Country CLASSIC-MODELS.CUSTOMERS.COUNTRY 10 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.83+00 2021-01-28 10:28:39.639+00 1 podium podium 564 64 contactFirstName Customer First Name Customer First Name CLASSIC-MODELS.CUSTOMERS.CONTACTFIRSTNAME 3 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.825+00 2021-01-28 10:28:39.682+00 1 podium podium 565 64 postalCode Customer ZIP Code Customer ZIP Code CLASSIC-MODELS.CUSTOMERS.POSTALCODE 9 F 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:32:10.825+00 2021-01-28 10:28:39.699+00 1 podium podium 581 64 customerName Customer Customer CLASSIC-MODELS.CUSTOMERS.CUSTOMERNAME 1 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.835+00 2021-01-28 10:28:39.746+00 1 podium podium 575 64 addressLine1 Customer Address 1 Customer Address 1 CLASSIC-MODELS.CUSTOMERS.ADDRESSLINE1 5 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.831+00 2021-01-28 10:28:39.798+00 1 podium podium 559 64 addressLine2 Customer Address 2 Customer Address 2 CLASSIC-MODELS.CUSTOMERS.ADDRESSLINE2 6 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.822+00 2021-01-28 10:28:39.814+00 1 podium podium 563 64 state Customer State Customer State CLASSIC-MODELS.CUSTOMERS.STATE 8 F 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.824+00 2021-01-28 10:28:39.853+00 1 podium podium 549 62 firstName Employee First Name Employee First Name CLASSIC-MODELS.PRODUCTS.FIRSTNAME 2 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.815+00 2021-01-28 10:28:40.018+00 1 podium podium 553 62 jobTitle Employee Job Title Employee Job Title CLASSIC-MODELS.PRODUCTS.JOBTITLE 6 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.818+00 2021-01-28 10:28:40.048+00 1 podium podium 556 62 reportsTo Employee Reports To Employee Reports To CLASSIC-MODELS.PRODUCTS.REPORTSTO 5 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:32:10.82+00 2021-01-28 10:28:40.077+00 1 podium podium 562 62 employeeNumber Employee Code Employee Code CLASSIC-MODELS.PRODUCTS.EMPLOYEENUMBER 0 T 0.1 F F INT INTEGER T F \N F \N F 2021-01-26 10:32:10.824+00 2021-01-28 10:28:40.107+00 1 podium podium 809 79 priceEach \N \N \N 7 F 0.1 F F \N DOUBLE F F \N F \N F 2021-01-27 11:08:00.703+00 2021-01-27 11:08:00.703+00 0 podium podium 810 79 salesRepEmployeeNumber \N \N \N 29 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 11:08:00.705+00 2021-01-27 11:08:00.705+00 0 podium podium 594 65 requiredDate Order Required Date Date in which our Customer requires the order CLASSIC-MODELS.SALESORDERS.REQUIREDDATE 2 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:32:10.842+00 2021-01-28 10:28:39.183+00 1 podium podium 596 61 checkNumber Customer Check Numbner Customer Check Numbner CLASSIC-MODELS.PAYMENTS.CHECKNUMBER 0 T 0.1 F F VARCHAR(50) STRING T F \N F \N F 2021-01-26 10:32:10.843+00 2021-01-28 10:28:39.342+00 1 podium podium 593 66 productName Product Name Name of the product CLASSIC-MODELS.PRODUCTS.PRODUCTNAME 1 T 0.1 F F VARCHAR(70) STRING F F \N F \N F 2021-01-26 10:32:10.842+00 2021-01-26 10:38:54.481+00 1 podium podium 635 72 MSRP MSRP Manufacturer's suggested retail price CLASSIC-MODELS.PRODUCTS.MSRP 7 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:32:11.259+00 2021-01-26 10:44:00.955+00 1 podium podium 621 72 productScale Product Scale Model car scale CLASSIC-MODELS.PRODUCTS.PRODUCTSCALE 2 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.251+00 2021-01-26 10:44:00.986+00 1 podium podium 633 72 productDescription Product Description Description of the product CLASSIC-MODELS.PRODUCTS.PRODUCTDESCRIPTION 4 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.258+00 2021-01-26 10:44:01.04+00 1 podium podium 602 63 city Office City Office City CLASSIC-MODELS.OFFICES.CITY 1 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.847+00 2021-01-28 10:28:39.461+00 1 podium podium 603 63 officeCode Office Code Office Code CLASSIC-MODELS.OFFICES.OFFICECODE 0 T 0.1 F F VARCHAR(10) STRING T F \N F \N F 2021-01-26 10:32:10.847+00 2021-01-28 10:28:39.521+00 1 podium podium 605 64 phone Customer Phone Number Customer Phone Number CLASSIC-MODELS.CUSTOMERS.PHONE 4 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.848+00 2021-01-28 10:28:39.766+00 1 podium podium 604 67 productLine Product Line Code Product Line Code CLASSIC-MODELS.PRODUCTLINES.PRODUCTLINE 0 T 0.1 F F VARCHAR(50) STRING T F \N F \N F 2021-01-26 10:32:10.848+00 2021-01-28 10:28:39.917+00 1 podium podium 592 67 htmlDescription Product Line Description HTML Product Line Description HTML CLASSIC-MODELS.PRODUCTLINES.HTMLDESCRIPTION 2 F 0.1 F F MEDIUMTEXT STRING F F \N F \N F 2021-01-26 10:32:10.841+00 2021-01-28 10:28:39.945+00 1 podium podium 601 62 officeCode Office Code Office Code CLASSIC-MODELS.PRODUCTS.OFFICECODE 7 T 0.1 F F VARCHAR(10) STRING F T \N F \N F 2021-01-26 10:32:10.846+00 2021-01-28 10:28:40.063+00 1 podium podium 625 70 orderNumber Order Number Order Number CLASSIC-MODELS.SALESORDERS.ORDERNUMBER 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:32:11.253+00 2021-01-28 10:28:40.32+00 1 podium podium 638 70 orderLineNumber Order Line Number Order Line Number CLASSIC-MODELS.SALESORDERS.ORDERLINENUMBER 6 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:32:11.262+00 2021-01-28 10:28:40.381+00 1 podium podium 630 70 shippedDate Order Shipped Date Date in which the order has been shipped CLASSIC-MODELS.SALESORDERS.SHIPPEDDATE 3 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.256+00 2021-01-28 10:28:40.398+00 1 podium podium 640 70 priceEach Single Price Price for a single quantity CLASSIC-MODELS.SALESORDERS.PRICEEACH 7 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:32:11.263+00 2021-01-28 10:28:40.427+00 1 podium podium 619 70 status Order Status Order Status CLASSIC-MODELS.SALESORDERS.STATUS 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.25+00 2021-01-28 10:28:40.442+00 1 podium podium 645 74 paymentDate Payment Date Payment Date CLASSIC-MODELS.PAYMENTS.PAYMENTDATE 1 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.266+00 2021-01-28 10:28:40.518+00 1 podium podium 623 68 country Office Country Office Country CLASSIC-MODELS.OFFICES.COUNTRY 6 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.252+00 2021-01-28 10:28:40.546+00 1 podium podium 637 68 phone Office Phone Number Office Phone Number CLASSIC-MODELS.OFFICES.PHONE 2 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.261+00 2021-01-28 10:28:40.578+00 1 podium podium 644 68 postalCode Office ZIP Code Office ZIP Code CLASSIC-MODELS.OFFICES.POSTALCODE 7 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.265+00 2021-01-28 10:28:40.611+00 1 podium podium 618 68 officeCode Office Code Office Code CLASSIC-MODELS.OFFICES.OFFICECODE 0 T 0.1 F F STRING STRING T F \N F \N F 2021-01-26 10:32:11.249+00 2021-01-28 10:28:40.627+00 1 podium podium 639 68 addressLine1 Office Address 1 Office Address 1 CLASSIC-MODELS.OFFICES.ADDRESSLINE1 3 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.262+00 2021-01-28 10:28:40.643+00 1 podium podium 608 68 territory Office Sales Territory Code Office Sales Territory Code CLASSIC-MODELS.OFFICES.TERRITORY 8 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.243+00 2021-01-28 10:28:40.686+00 1 podium podium 617 69 country Customer Country Customer Country CLASSIC-MODELS.CUSTOMERS.COUNTRY 10 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.249+00 2021-01-28 10:28:40.713+00 1 podium podium 636 69 contactFirstName Customer First Name Customer First Name CLASSIC-MODELS.CUSTOMERS.CONTACTFIRSTNAME 3 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.259+00 2021-01-28 10:28:40.762+00 1 podium podium 632 69 customerName Customer Customer CLASSIC-MODELS.CUSTOMERS.CUSTOMERNAME 1 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.257+00 2021-01-28 10:28:40.83+00 1 podium podium 613 69 creditLimit Customer Credit Limit Customer Credit Limit CLASSIC-MODELS.CUSTOMERS.CREDITLIMIT 12 F 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:32:11.246+00 2021-01-28 10:28:40.862+00 1 podium podium 616 69 addressLine2 Customer Address 2 Customer Address 2 CLASSIC-MODELS.CUSTOMERS.ADDRESSLINE2 6 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.248+00 2021-01-28 10:28:40.904+00 1 podium podium 624 69 contactLastName Customer Last Name Customer Last Name CLASSIC-MODELS.CUSTOMERS.CONTACTLASTNAME 2 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.252+00 2021-01-28 10:28:40.919+00 1 podium podium 609 71 firstName Employee First Name Employee First Name CLASSIC-MODELS.PRODUCTS.FIRSTNAME 2 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.244+00 2021-01-28 10:28:41.043+00 1 podium podium 642 71 jobTitle Employee Job Title Employee Job Title CLASSIC-MODELS.PRODUCTS.JOBTITLE 6 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.264+00 2021-01-28 10:28:41.073+00 1 podium podium 620 71 email Email Address Email Address CLASSIC-MODELS.PRODUCTS.EMAIL 4 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.25+00 2021-01-28 10:28:41.12+00 1 podium podium 634 71 employeeNumber Employee Code Employee Code CLASSIC-MODELS.PRODUCTS.EMPLOYEENUMBER 0 T 0.1 F F INTEGER INTEGER T F \N F \N F 2021-01-26 10:32:11.258+00 2021-01-28 10:28:41.136+00 1 podium podium 606 66 MSRP MSRP Manufacturer's suggested retail price CLASSIC-MODELS.PRODUCTS.MSRP 7 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:32:10.849+00 2021-01-26 10:38:54.4+00 1 podium podium 570 66 productLine Product Line Foreign key of the product line CLASSIC-MODELS.PRODUCTS.PRODUCTLINE 8 F 0.1 F F VARCHAR(50) STRING F T \N F \N F 2021-01-26 10:32:10.828+00 2021-01-26 10:38:54.413+00 1 podium podium 580 66 quantityInStock Stock quantity Stock quantity for the product CLASSIC-MODELS.PRODUCTS.QUANTITYINSTOCK 5 T 0.1 F F SMALLINT INTEGER F F \N F \N F 2021-01-26 10:32:10.834+00 2021-01-26 10:38:54.453+00 1 podium podium 595 66 productDescription Product Description Description of the product CLASSIC-MODELS.PRODUCTS.PRODUCTDESCRIPTION 4 T 0.1 F F TEXT STRING F F \N F \N F 2021-01-26 10:32:10.843+00 2021-01-26 10:38:54.468+00 1 podium podium 665 75 MSRP \N \N \N 7 F 0.1 F F \N DOUBLE F F \N F \N F 2021-01-26 10:41:46.472+00 2021-01-26 10:41:46.472+00 0 podium podium 666 75 productScale \N \N \N 2 F 0.1 F F \N STRING F F \N F \N F 2021-01-26 10:41:46.473+00 2021-01-26 10:41:46.473+00 0 podium podium 667 75 productDescription \N \N \N 4 F 0.1 F F \N STRING F F \N F \N F 2021-01-26 10:41:46.474+00 2021-01-26 10:41:46.474+00 0 podium podium 668 75 buyPrice \N \N \N 6 F 0.1 F F \N DOUBLE F F \N F \N F 2021-01-26 10:41:46.475+00 2021-01-26 10:41:46.475+00 0 podium podium 669 75 textDescription \N \N \N 9 F 0.1 F F \N STRING F F \N F \N F 2021-01-26 10:41:46.475+00 2021-01-26 10:41:46.475+00 0 podium podium 670 75 productName \N \N \N 1 F 0.1 F F \N STRING F F \N F \N F 2021-01-26 10:41:46.476+00 2021-01-26 10:41:46.476+00 0 podium podium 671 75 productCode \N \N \N 0 F 0.1 F F \N STRING F F \N F \N F 2021-01-26 10:41:46.477+00 2021-01-26 10:41:46.477+00 0 podium podium 672 75 quantityInStock \N \N \N 5 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-26 10:41:46.477+00 2021-01-26 10:41:46.477+00 0 podium podium 673 75 productLine \N \N \N 8 F 0.1 F F \N STRING F F \N F \N F 2021-01-26 10:41:46.478+00 2021-01-26 10:41:46.478+00 0 podium podium 674 75 productVendor \N \N \N 3 F 0.1 F F \N STRING F F \N F \N F 2021-01-26 10:41:46.478+00 2021-01-26 10:41:46.478+00 0 podium podium 183 27 productDescription Product Description Description of the product CLASSIC-MODELS-ERRORS.PRODUCTS.PRODUCTDESCRIPTION 4 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.246+00 2021-01-26 10:44:00.745+00 1 podium podium 651 72 buyPrice Buy Price Item purchase price CLASSIC-MODELS.PRODUCTS.BUYPRICE 6 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:32:11.269+00 2021-01-26 10:44:00.937+00 1 podium podium 655 72 productLine Product Line Foreign key of the product line CLASSIC-MODELS.PRODUCTS.PRODUCTLINE 8 F 0.1 F F STRING STRING F T \N F \N F 2021-01-26 10:32:11.271+00 2021-01-26 10:44:00.972+00 1 podium podium 664 70 requiredDate Order Required Date Date in which our Customer requires the order CLASSIC-MODELS.SALESORDERS.REQUIREDDATE 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.277+00 2021-01-28 10:28:40.335+00 1 podium podium 628 72 quantityInStock Stock quantity Stock quantity for the product CLASSIC-MODELS.PRODUCTS.QUANTITYINSTOCK 5 T 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:32:11.255+00 2021-01-26 10:44:01.019+00 1 podium podium 626 72 productName Product Name Name of the product CLASSIC-MODELS.PRODUCTS.PRODUCTNAME 1 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.254+00 2021-01-26 10:44:01.059+00 1 podium podium 663 72 productVendor Product Vendor Supplier of the product CLASSIC-MODELS.PRODUCTS.PRODUCTVENDOR 3 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.276+00 2021-01-26 10:44:01.075+00 1 podium podium 811 79 textDescription \N \N \N 18 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.706+00 2021-01-27 11:08:00.706+00 0 podium podium 812 79 customerName \N \N \N 19 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.707+00 2021-01-27 11:08:00.707+00 0 podium podium 813 79 requiredDate \N \N \N 2 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.708+00 2021-01-27 11:08:00.708+00 0 podium podium 814 79 quantityInStock \N \N \N 14 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 11:08:00.709+00 2021-01-27 11:08:00.709+00 0 podium podium 815 79 lastName \N \N \N 32 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.71+00 2021-01-27 11:08:00.71+00 0 podium podium 816 79 customerNumber \N \N \N 5 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 11:08:00.711+00 2021-01-27 11:08:00.711+00 0 podium podium 817 79 officeCode \N \N \N 38 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.712+00 2021-01-27 11:08:00.712+00 0 podium podium 818 79 productLine \N \N \N 17 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.713+00 2021-01-27 11:08:00.713+00 0 podium podium 819 79 addressLine2 \N \N \N 24 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.714+00 2021-01-27 11:08:00.714+00 0 podium podium 820 79 orderTotal \N \N \N 39 F 0.1 F F \N DECIMAL F F \N F \N F 2021-01-27 11:08:00.716+00 2021-01-27 11:08:00.716+00 0 podium podium 821 79 orderLineNumber \N \N \N 6 F 0.1 F F \N INTEGER F F \N F \N F 2021-01-27 11:08:00.717+00 2021-01-27 11:08:00.717+00 0 podium podium 822 79 productName \N \N \N 10 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.718+00 2021-01-27 11:08:00.718+00 0 podium podium 823 79 productDescription \N \N \N 13 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.719+00 2021-01-27 11:08:00.719+00 0 podium podium 824 79 city \N \N \N 25 F 0.1 F F \N STRING F F \N F \N F 2021-01-27 11:08:00.721+00 2021-01-27 11:08:00.721+00 0 podium podium 647 68 state Office State Office State CLASSIC-MODELS.OFFICES.STATE 5 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.267+00 2021-01-28 10:28:40.672+00 1 podium podium 653 70 quantityOrdered Order Quantity Order Quantity CLASSIC-MODELS.SALESORDERS.QUANTITYORDERED 8 T 0.1 F F INTEGER INTEGER F F \N F \N F 2021-01-26 10:32:11.27+00 2021-01-28 10:28:40.351+00 1 podium podium 657 74 customerNumber Customer Code Customer Code CLASSIC-MODELS.PAYMENTS.CUSTOMERNUMBER 3 T 0.1 F F INTEGER INTEGER T T \N F \N F 2021-01-26 10:32:11.272+00 2021-01-28 10:28:40.5+00 2 podium podium 652 69 postalCode Customer ZIP Code Customer ZIP Code CLASSIC-MODELS.CUSTOMERS.POSTALCODE 9 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.27+00 2021-01-28 10:28:40.782+00 1 podium podium 649 69 salesRepEmployeeNumber Customer Sales Rep Code Customer Sales Rep Code CLASSIC-MODELS.CUSTOMERS.SALESREPEMPLOYEENUMBER 11 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:32:11.268+00 2021-01-28 10:28:40.798+00 1 podium podium 650 69 state Customer State Customer State CLASSIC-MODELS.CUSTOMERS.STATE 8 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.269+00 2021-01-28 10:28:40.935+00 1 podium podium 662 73 textDescription Product Line Description Product Line Description CLASSIC-MODELS.PRODUCTLINES.TEXTDESCRIPTION 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.276+00 2021-01-28 10:28:40.982+00 1 podium podium 654 71 extension Telephone Extension Telephone Extension CLASSIC-MODELS.PRODUCTS.EXTENSION 3 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.271+00 2021-01-28 10:28:41.058+00 1 podium podium 648 71 officeCode Office Code Office Code CLASSIC-MODELS.PRODUCTS.OFFICECODE 7 T 0.1 F F STRING STRING F T \N F \N F 2021-01-26 10:32:11.268+00 2021-01-28 10:28:41.088+00 1 podium podium 218 25 contactFirstName Customer First Name Customer First Name CLASSIC-MODELS.CUSTOMERS.CONTACTFIRSTNAME 3 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.279+00 2021-01-28 10:28:38.611+00 1 podium podium 232 25 salesRepEmployeeNumber Customer Sales Rep Code Customer Sales Rep Code CLASSIC-MODELS.CUSTOMERS.SALESREPEMPLOYEENUMBER 11 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:03:16.291+00 2021-01-28 10:28:38.642+00 1 podium podium 191 25 creditLimit Customer Credit Limit Customer Credit Limit CLASSIC-MODELS.CUSTOMERS.CREDITLIMIT 12 F 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:03:16.253+00 2021-01-28 10:28:38.703+00 1 podium podium 201 25 contactLastName Customer Last Name Customer Last Name CLASSIC-MODELS.CUSTOMERS.CONTACTLASTNAME 2 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.262+00 2021-01-28 10:28:38.748+00 1 podium podium 231 24 productLine Product Line Code Product Line Code CLASSIC-MODELS.PRODUCTLINES.PRODUCTLINE 0 T 0.1 F F STRING STRING T F \N F \N F 2021-01-26 10:03:16.29+00 2021-01-28 10:28:38.792+00 1 podium podium 213 22 lastName Employee Last Name Employee Last Name CLASSIC-MODELS.PRODUCTS.LASTNAME 1 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.274+00 2021-01-28 10:28:38.849+00 1 podium podium 217 22 jobTitle Employee Job Title Employee Job Title CLASSIC-MODELS.PRODUCTS.JOBTITLE 6 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:03:16.278+00 2021-01-28 10:28:38.894+00 1 podium podium 192 22 email Email Address Email Address CLASSIC-MODELS.PRODUCTS.EMAIL 4 T 0.1 F F VARCHAR(100) STRING F F \N F \N F 2021-01-26 10:03:16.254+00 2021-01-28 10:28:38.943+00 2 podium podium 561 65 shippedDate Order Shipped Date Date in which the order has been shipped CLASSIC-MODELS.SALESORDERS.SHIPPEDDATE 3 F 0.1 F F DATE STRING F F \N F \N F 2021-01-26 10:32:10.823+00 2021-01-28 10:28:39.238+00 1 podium podium 571 61 amount Payment Amount Payment Amount CLASSIC-MODELS.PAYMENTS.AMOUNT 2 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:32:10.829+00 2021-01-28 10:28:39.358+00 1 podium podium 599 61 customerNumber Customer Code Customer Code CLASSIC-MODELS.PAYMENTS.CUSTOMERNUMBER 3 T 0.1 F F INT INTEGER T T \N F \N F 2021-01-26 10:32:10.845+00 2021-01-28 10:28:39.374+00 2 podium podium 557 63 phone Office Phone Number Office Phone Number CLASSIC-MODELS.OFFICES.PHONE 2 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.821+00 2021-01-28 10:28:39.476+00 1 podium podium 585 63 postalCode Office ZIP Code Office ZIP Code CLASSIC-MODELS.OFFICES.POSTALCODE 7 T 0.1 F F VARCHAR(15) STRING F F \N F \N F 2021-01-26 10:32:10.837+00 2021-01-28 10:28:39.506+00 1 podium podium 550 63 territory Office Sales Territory Code Office Sales Territory Code CLASSIC-MODELS.OFFICES.TERRITORY 8 T 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:32:10.816+00 2021-01-28 10:28:39.582+00 1 podium podium 598 64 city Customer City Customer City CLASSIC-MODELS.CUSTOMERS.CITY 7 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.844+00 2021-01-28 10:28:39.654+00 1 podium podium 584 64 customerLocation Customer Location Coordinates Customer Location Coordinates CLASSIC-MODELS.CUSTOMERS.CUSTOMERLOCATION 13 T 0.1 F F GEOMETRY STRING F F \N F \N F 2021-01-26 10:32:10.836+00 2021-01-28 10:28:39.668+00 1 podium podium 558 64 salesRepEmployeeNumber Customer Sales Rep Code Customer Sales Rep Code CLASSIC-MODELS.CUSTOMERS.SALESREPEMPLOYEENUMBER 11 F 0.1 F F INT INTEGER F T \N F \N F 2021-01-26 10:32:10.821+00 2021-01-28 10:28:39.714+00 1 podium podium 578 64 creditLimit Customer Credit Limit Customer Credit Limit CLASSIC-MODELS.CUSTOMERS.CREDITLIMIT 12 F 0.1 F F DOUBLE DOUBLE F F \N F \N F \N 2021-01-28 10:28:39.782+00 6 podium \N 573 64 contactLastName Customer Last Name Customer Last Name CLASSIC-MODELS.CUSTOMERS.CONTACTLASTNAME 2 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.83+00 2021-01-28 10:28:39.834+00 1 podium podium 600 67 textDescription Product Line Description Product Line Description CLASSIC-MODELS.PRODUCTLINES.TEXTDESCRIPTION 1 F 0.1 F F VARCHAR(4000) STRING F F \N F \N F 2021-01-26 10:32:10.846+00 2021-01-28 10:28:39.93+00 1 podium podium 597 62 lastName Employee Last Name Employee Last Name CLASSIC-MODELS.PRODUCTS.LASTNAME 1 T 0.1 F F VARCHAR(50) STRING F F \N F \N F 2021-01-26 10:32:10.844+00 2021-01-28 10:28:40.003+00 1 podium podium 590 62 extension Telephone Extension Telephone Extension CLASSIC-MODELS.PRODUCTS.EXTENSION 3 T 0.1 F F VARCHAR(10) STRING F F \N F \N F 2021-01-26 10:32:10.84+00 2021-01-28 10:28:40.034+00 1 podium podium 591 62 email Email Address Email Address CLASSIC-MODELS.PRODUCTS.EMAIL 4 T 0.1 F F VARCHAR(100) STRING F F \N F \N F 2021-01-26 10:32:10.84+00 2021-01-28 10:28:40.092+00 1 podium podium 610 70 customerNumber Customer Code Customer Code CLASSIC-MODELS.SALESORDERS.CUSTOMERNUMBER 5 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:32:11.245+00 2021-01-28 10:28:40.366+00 1 podium podium 641 70 orderDate Order Date Order Date CLASSIC-MODELS.SALESORDERS.ORDERDATE 1 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.264+00 2021-01-28 10:28:40.412+00 1 podium podium 656 74 checkNumber Customer Check Numbner Customer Check Numbner CLASSIC-MODELS.PAYMENTS.CHECKNUMBER 0 T 0.1 F F STRING STRING T F \N F \N F 2021-01-26 10:32:11.272+00 2021-01-28 10:28:40.468+00 1 podium podium 646 74 amount Payment Amount Payment Amount CLASSIC-MODELS.PAYMENTS.AMOUNT 2 T 0.1 F F DOUBLE DOUBLE F F \N F \N F 2021-01-26 10:32:11.266+00 2021-01-28 10:28:40.485+00 1 podium podium 622 68 city Office City Office City CLASSIC-MODELS.OFFICES.CITY 1 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.251+00 2021-01-28 10:28:40.561+00 1 podium podium 615 68 officeLocation Office Location Coordinates Office Location Coordinates CLASSIC-MODELS.OFFICES.OFFICELOCATION 9 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.247+00 2021-01-28 10:28:40.595+00 1 podium podium 614 68 addressLine2 Office Address 2 Office Address 2 CLASSIC-MODELS.OFFICES.ADDRESSLINE2 4 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.247+00 2021-01-28 10:28:40.658+00 1 podium podium 612 69 city Customer City Customer City CLASSIC-MODELS.CUSTOMERS.CITY 7 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.246+00 2021-01-28 10:28:40.73+00 1 podium podium 659 69 customerLocation Customer Location Coordinates Customer Location Coordinates CLASSIC-MODELS.CUSTOMERS.CUSTOMERLOCATION 13 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.274+00 2021-01-28 10:28:40.746+00 1 podium podium 631 69 customerNumber Customer Code Customer Code CLASSIC-MODELS.CUSTOMERS.CUSTOMERNUMBER 0 T 0.1 F F INTEGER INTEGER T T \N F \N F 2021-01-26 10:32:11.257+00 2021-01-28 10:28:40.814+00 2 podium podium 611 69 phone Customer Phone Number Customer Phone Number CLASSIC-MODELS.CUSTOMERS.PHONE 4 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.245+00 2021-01-28 10:28:40.846+00 1 podium podium 629 69 addressLine1 Customer Address 1 Customer Address 1 CLASSIC-MODELS.CUSTOMERS.ADDRESSLINE1 5 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.256+00 2021-01-28 10:28:40.888+00 1 podium podium 661 73 productLine Product Line Code Product Line Code CLASSIC-MODELS.PRODUCTLINES.PRODUCTLINE 0 T 0.1 F F STRING STRING T F \N F \N F 2021-01-26 10:32:11.275+00 2021-01-28 10:28:40.964+00 1 podium podium 658 73 htmlDescription Product Line Description HTML Product Line Description HTML CLASSIC-MODELS.PRODUCTLINES.HTMLDESCRIPTION 2 F 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.273+00 2021-01-28 10:28:40.998+00 1 podium podium 627 71 lastName Employee Last Name Employee Last Name CLASSIC-MODELS.PRODUCTS.LASTNAME 1 T 0.1 F F STRING STRING F F \N F \N F 2021-01-26 10:32:11.255+00 2021-01-28 10:28:41.028+00 1 podium podium 643 71 reportsTo Employee Reports To Employee Reports To CLASSIC-MODELS.PRODUCTS.REPORTSTO 5 F 0.1 F F INTEGER INTEGER F T \N F \N F 2021-01-26 10:32:11.265+00 2021-01-28 10:28:41.104+00 1 podium podium \. -- -- Data for Name: pd_field_biz_def; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_field_biz_def (nid, field_nid, business_name, business_desc, approval_status, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 1 139 Valid email We consider email (not empty field) valid only if it contains "@" symbol 1 2021-01-26 10:23:05.102+00 2021-01-26 10:23:05.102+00 0 podium podium 2 135 Country Field Country field MUST be populated 1 2021-01-26 10:26:21.89+00 2021-01-26 10:26:21.89+00 0 podium podium 3 150 Ordered quantity We accept only orders with POSITIVE quantity 1 2021-01-26 10:30:53.516+00 2021-01-26 10:30:53.516+00 0 podium podium 4 587 Sensitive information This field is sensitive. Not everyone in the organization has the grant to view the price we pay for our products. 1 2021-01-28 08:24:01.115+00 2021-01-28 08:24:01.115+00 0 podium podium 6 578 Sensitive information Not everyone in the company has the grant to view our customer credit limit. Only Finance and Sales. 1 2021-01-28 08:26:24.805+00 2021-01-28 08:26:24.805+00 0 podium podium 5 145 Sensitive information Not everyone in the company has the grant to view our customer credit limit. Only Finance and Sales. 1 2021-01-28 08:25:44.488+00 2021-01-28 08:26:38.829+00 1 podium podium \. -- -- Data for Name: pd_field_pc_rel; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_field_pc_rel (nid, parent_field_nid, child_field_nid, vadd_rule_nid, created_ttz, modified_ttz, version, modifiedby, createdby, relation_info) FROM stdin; 87 164 179 4 2021-01-26 10:03:16.339+00 2021-01-26 10:03:16.339+00 0 podium podium \N 88 174 177 4 2021-01-26 10:03:16.34+00 2021-01-26 10:03:16.34+00 0 podium podium \N 89 158 178 4 2021-01-26 10:03:16.341+00 2021-01-26 10:03:16.341+00 0 podium podium \N 90 120 232 4 2021-01-26 10:03:16.342+00 2021-01-26 10:03:16.342+00 0 podium podium \N 91 159 176 4 2021-01-26 10:03:16.344+00 2021-01-26 10:03:16.344+00 0 podium podium \N 92 134 211 4 2021-01-26 10:03:16.345+00 2021-01-26 10:03:16.345+00 0 podium podium \N 93 140 210 4 2021-01-26 10:03:16.347+00 2021-01-26 10:03:16.347+00 0 podium podium \N 94 142 175 4 2021-01-26 10:03:16.347+00 2021-01-26 10:03:16.347+00 0 podium podium \N 95 172 183 4 2021-01-26 10:03:16.348+00 2021-01-26 10:03:16.348+00 0 podium podium \N 96 150 200 4 2021-01-26 10:03:16.349+00 2021-01-26 10:03:16.349+00 0 podium podium \N 97 167 206 4 2021-01-26 10:03:16.35+00 2021-01-26 10:03:16.35+00 0 podium podium \N 98 163 199 4 2021-01-26 10:03:16.351+00 2021-01-26 10:03:16.351+00 0 podium podium \N 99 168 187 4 2021-01-26 10:03:16.352+00 2021-01-26 10:03:16.352+00 0 podium podium \N 100 170 229 4 2021-01-26 10:03:16.353+00 2021-01-26 10:03:16.353+00 0 podium podium \N 101 144 204 4 2021-01-26 10:03:16.354+00 2021-01-26 10:03:16.354+00 0 podium podium \N 102 119 194 4 2021-01-26 10:03:16.355+00 2021-01-26 10:03:16.355+00 0 podium podium \N 103 154 185 4 2021-01-26 10:03:16.356+00 2021-01-26 10:03:16.356+00 0 podium podium \N 104 148 230 4 2021-01-26 10:03:16.357+00 2021-01-26 10:03:16.357+00 0 podium podium \N 105 129 224 4 2021-01-26 10:03:16.358+00 2021-01-26 10:03:16.358+00 0 podium podium \N 106 143 220 4 2021-01-26 10:03:16.358+00 2021-01-26 10:03:16.358+00 0 podium podium \N 107 149 203 4 2021-01-26 10:03:16.359+00 2021-01-26 10:03:16.359+00 0 podium podium \N 108 153 182 4 2021-01-26 10:03:16.36+00 2021-01-26 10:03:16.36+00 0 podium podium \N 109 133 180 4 2021-01-26 10:03:16.361+00 2021-01-26 10:03:16.361+00 0 podium podium \N 110 156 217 4 2021-01-26 10:03:16.362+00 2021-01-26 10:03:16.362+00 0 podium podium \N 111 165 227 4 2021-01-26 10:03:16.364+00 2021-01-26 10:03:16.364+00 0 podium podium \N 112 169 207 4 2021-01-26 10:03:16.364+00 2021-01-26 10:03:16.364+00 0 podium podium \N 113 151 215 4 2021-01-26 10:03:16.365+00 2021-01-26 10:03:16.365+00 0 podium podium \N 114 141 218 4 2021-01-26 10:03:16.366+00 2021-01-26 10:03:16.366+00 0 podium podium \N 115 173 226 4 2021-01-26 10:03:16.367+00 2021-01-26 10:03:16.367+00 0 podium podium \N 116 161 214 4 2021-01-26 10:03:16.368+00 2021-01-26 10:03:16.368+00 0 podium podium \N 117 145 191 4 2021-01-26 10:03:16.369+00 2021-01-26 10:03:16.369+00 0 podium podium \N 118 139 192 4 2021-01-26 10:03:16.37+00 2021-01-26 10:03:16.37+00 0 podium podium \N 119 138 181 4 2021-01-26 10:03:16.371+00 2021-01-26 10:03:16.371+00 0 podium podium \N 120 171 188 4 2021-01-26 10:03:16.372+00 2021-01-26 10:03:16.372+00 0 podium podium \N 121 121 193 4 2021-01-26 10:03:16.373+00 2021-01-26 10:03:16.373+00 0 podium podium \N 122 135 209 4 2021-01-26 10:03:16.374+00 2021-01-26 10:03:16.374+00 0 podium podium \N 123 147 189 4 2021-01-26 10:03:16.375+00 2021-01-26 10:03:16.375+00 0 podium podium \N 124 125 202 4 2021-01-26 10:03:16.376+00 2021-01-26 10:03:16.376+00 0 podium podium \N 125 136 208 4 2021-01-26 10:03:16.377+00 2021-01-26 10:03:16.377+00 0 podium podium \N 126 118 222 4 2021-01-26 10:03:16.377+00 2021-01-26 10:03:16.377+00 0 podium podium \N 127 132 219 4 2021-01-26 10:03:16.378+00 2021-01-26 10:03:16.378+00 0 podium podium \N 128 131 216 4 2021-01-26 10:03:16.379+00 2021-01-26 10:03:16.379+00 0 podium podium \N 129 146 201 4 2021-01-26 10:03:16.38+00 2021-01-26 10:03:16.38+00 0 podium podium \N 130 123 225 4 2021-01-26 10:03:16.381+00 2021-01-26 10:03:16.381+00 0 podium podium \N 131 126 196 4 2021-01-26 10:03:16.382+00 2021-01-26 10:03:16.382+00 0 podium podium \N 132 127 186 4 2021-01-26 10:03:16.382+00 2021-01-26 10:03:16.382+00 0 podium podium \N 133 166 197 4 2021-01-26 10:03:16.383+00 2021-01-26 10:03:16.383+00 0 podium podium \N 134 128 190 4 2021-01-26 10:03:16.384+00 2021-01-26 10:03:16.384+00 0 podium podium \N 135 155 213 4 2021-01-26 10:03:16.384+00 2021-01-26 10:03:16.384+00 0 podium podium \N 136 122 205 4 2021-01-26 10:03:16.385+00 2021-01-26 10:03:16.385+00 0 podium podium \N 137 152 198 4 2021-01-26 10:03:16.386+00 2021-01-26 10:03:16.386+00 0 podium podium \N 138 160 231 4 2021-01-26 10:03:16.386+00 2021-01-26 10:03:16.386+00 0 podium podium \N 139 130 212 4 2021-01-26 10:03:16.387+00 2021-01-26 10:03:16.387+00 0 podium podium \N 140 157 184 4 2021-01-26 10:03:16.388+00 2021-01-26 10:03:16.388+00 0 podium podium \N 141 124 195 4 2021-01-26 10:03:16.388+00 2021-01-26 10:03:16.388+00 0 podium podium \N 142 117 228 4 2021-01-26 10:03:16.389+00 2021-01-26 10:03:16.389+00 0 podium podium \N 143 162 221 4 2021-01-26 10:03:16.39+00 2021-01-26 10:03:16.39+00 0 podium podium \N 144 137 223 4 2021-01-26 10:03:16.39+00 2021-01-26 10:03:16.39+00 0 podium podium \N 145 170 161 2 2021-01-26 10:03:16.616+00 2021-01-26 10:03:16.616+00 0 podium podium [salesorders_FK_customers] 146 229 214 2 2021-01-26 10:03:16.619+00 2021-01-26 10:03:16.619+00 0 podium podium [salesorders_FK_customers] 147 170 161 2 2021-01-26 10:03:16.623+00 2021-01-26 10:03:16.623+00 0 podium podium [salesorders_FK_customers] 148 229 214 2 2021-01-26 10:03:16.626+00 2021-01-26 10:03:16.626+00 0 podium podium [salesorders_FK_customers] 149 132 168 2 2021-01-26 10:03:16.629+00 2021-01-26 10:03:16.629+00 0 podium podium [salesorders_FK_products] 150 219 187 2 2021-01-26 10:03:16.632+00 2021-01-26 10:03:16.632+00 0 podium podium [salesorders_FK_products] 151 132 168 2 2021-01-26 10:03:16.636+00 2021-01-26 10:03:16.636+00 0 podium podium [salesorders_FK_products] 152 219 187 2 2021-01-26 10:03:16.639+00 2021-01-26 10:03:16.639+00 0 podium podium [salesorders_FK_products] 153 160 129 2 2021-01-26 10:03:16.642+00 2021-01-26 10:03:16.642+00 0 podium podium [fk_Products_ProductLines] 154 231 224 2 2021-01-26 10:03:16.645+00 2021-01-26 10:03:16.645+00 0 podium podium [fk_Products_ProductLines] 155 160 129 2 2021-01-26 10:03:16.648+00 2021-01-26 10:03:16.648+00 0 podium podium [fk_Products_ProductLines] 156 231 224 2 2021-01-26 10:03:16.652+00 2021-01-26 10:03:16.652+00 0 podium podium [fk_Products_ProductLines] 157 170 171 2 2021-01-26 10:03:16.656+00 2021-01-26 10:03:16.656+00 0 podium podium [fk_Payments_Customers] 158 229 188 2 2021-01-26 10:03:16.659+00 2021-01-26 10:03:16.659+00 0 podium podium [fk_Payments_Customers] 159 170 171 2 2021-01-26 10:03:16.662+00 2021-01-26 10:03:16.662+00 0 podium podium [fk_Payments_Customers] 160 229 188 2 2021-01-26 10:03:16.664+00 2021-01-26 10:03:16.664+00 0 podium podium [fk_Payments_Customers] 161 152 149 2 2021-01-26 10:03:16.666+00 2021-01-26 10:03:16.666+00 0 podium podium [fk_Employees_Employees] 162 198 203 2 2021-01-26 10:03:16.668+00 2021-01-26 10:03:16.668+00 0 podium podium [fk_Employees_Employees] 163 152 149 2 2021-01-26 10:03:16.67+00 2021-01-26 10:03:16.67+00 0 podium podium [fk_Employees_Employees] 164 198 203 2 2021-01-26 10:03:16.672+00 2021-01-26 10:03:16.672+00 0 podium podium [fk_Employees_Employees] 165 144 134 2 2021-01-26 10:03:16.674+00 2021-01-26 10:03:16.674+00 0 podium podium [fk_Employees_Offices] 166 204 211 2 2021-01-26 10:03:16.676+00 2021-01-26 10:03:16.676+00 0 podium podium [fk_Employees_Offices] 167 144 134 2 2021-01-26 10:03:16.679+00 2021-01-26 10:03:16.679+00 0 podium podium [fk_Employees_Offices] 168 204 211 2 2021-01-26 10:03:16.681+00 2021-01-26 10:03:16.681+00 0 podium podium [fk_Employees_Offices] 169 152 120 2 2021-01-26 10:03:16.683+00 2021-01-26 10:03:16.683+00 0 podium podium [fk_Customers_Employees] 170 198 232 2 2021-01-26 10:03:16.684+00 2021-01-26 10:03:16.684+00 0 podium podium [fk_Customers_Employees] 171 152 120 2 2021-01-26 10:03:16.686+00 2021-01-26 10:03:16.686+00 0 podium podium [fk_Customers_Employees] 172 198 232 2 2021-01-26 10:03:16.688+00 2021-01-26 10:03:16.688+00 0 podium podium [fk_Customers_Employees] 173 288 382 4 2021-01-26 10:04:33.671+00 2021-01-26 10:04:33.671+00 0 podium podium \N 174 271 326 4 2021-01-26 10:04:33.673+00 2021-01-26 10:04:33.673+00 0 podium podium \N 175 234 351 4 2021-01-26 10:04:33.674+00 2021-01-26 10:04:33.674+00 0 podium podium \N 176 262 355 4 2021-01-26 10:04:33.675+00 2021-01-26 10:04:33.675+00 0 podium podium \N 177 303 337 4 2021-01-26 10:04:33.676+00 2021-01-26 10:04:33.676+00 0 podium podium \N 178 301 323 4 2021-01-26 10:04:33.677+00 2021-01-26 10:04:33.677+00 0 podium podium \N 179 280 315 4 2021-01-26 10:04:33.678+00 2021-01-26 10:04:33.678+00 0 podium podium \N 180 273 317 4 2021-01-26 10:04:33.679+00 2021-01-26 10:04:33.679+00 0 podium podium \N 181 308 333 4 2021-01-26 10:04:33.68+00 2021-01-26 10:04:33.68+00 0 podium podium \N 182 293 380 4 2021-01-26 10:04:33.68+00 2021-01-26 10:04:33.68+00 0 podium podium \N 183 289 342 4 2021-01-26 10:04:33.681+00 2021-01-26 10:04:33.681+00 0 podium podium \N 184 253 330 4 2021-01-26 10:04:33.682+00 2021-01-26 10:04:33.682+00 0 podium podium \N 185 283 357 4 2021-01-26 10:04:33.682+00 2021-01-26 10:04:33.682+00 0 podium podium \N 186 263 384 4 2021-01-26 10:04:33.683+00 2021-01-26 10:04:33.683+00 0 podium podium \N 187 233 370 4 2021-01-26 10:04:33.684+00 2021-01-26 10:04:33.684+00 0 podium podium \N 188 299 390 4 2021-01-26 10:04:33.685+00 2021-01-26 10:04:33.685+00 0 podium podium \N 189 252 387 4 2021-01-26 10:04:33.685+00 2021-01-26 10:04:33.685+00 0 podium podium \N 190 238 366 4 2021-01-26 10:04:33.686+00 2021-01-26 10:04:33.686+00 0 podium podium \N 191 284 354 4 2021-01-26 10:04:33.686+00 2021-01-26 10:04:33.686+00 0 podium podium \N 192 261 332 4 2021-01-26 10:04:33.687+00 2021-01-26 10:04:33.687+00 0 podium podium \N 193 268 385 4 2021-01-26 10:04:33.687+00 2021-01-26 10:04:33.687+00 0 podium podium \N 194 251 312 4 2021-01-26 10:04:33.688+00 2021-01-26 10:04:33.688+00 0 podium podium \N 195 244 386 4 2021-01-26 10:04:33.688+00 2021-01-26 10:04:33.688+00 0 podium podium \N 196 242 345 4 2021-01-26 10:04:33.689+00 2021-01-26 10:04:33.689+00 0 podium podium \N 197 298 376 4 2021-01-26 10:04:33.689+00 2021-01-26 10:04:33.689+00 0 podium podium \N 198 246 389 4 2021-01-26 10:04:33.69+00 2021-01-26 10:04:33.69+00 0 podium podium \N 199 295 327 4 2021-01-26 10:04:33.69+00 2021-01-26 10:04:33.69+00 0 podium podium \N 200 235 319 4 2021-01-26 10:04:33.691+00 2021-01-26 10:04:33.691+00 0 podium podium \N 201 256 336 4 2021-01-26 10:04:33.691+00 2021-01-26 10:04:33.691+00 0 podium podium \N 202 260 383 4 2021-01-26 10:04:33.692+00 2021-01-26 10:04:33.692+00 0 podium podium \N 203 279 322 4 2021-01-26 10:04:33.693+00 2021-01-26 10:04:33.693+00 0 podium podium \N 204 257 339 4 2021-01-26 10:04:33.693+00 2021-01-26 10:04:33.693+00 0 podium podium \N 205 236 314 4 2021-01-26 10:04:33.694+00 2021-01-26 10:04:33.694+00 0 podium podium \N 206 277 340 4 2021-01-26 10:04:33.694+00 2021-01-26 10:04:33.694+00 0 podium podium \N 207 309 371 4 2021-01-26 10:04:33.695+00 2021-01-26 10:04:33.695+00 0 podium podium \N 208 258 350 4 2021-01-26 10:04:33.696+00 2021-01-26 10:04:33.696+00 0 podium podium \N 209 294 352 4 2021-01-26 10:04:33.696+00 2021-01-26 10:04:33.696+00 0 podium podium \N 210 267 373 4 2021-01-26 10:04:33.697+00 2021-01-26 10:04:33.697+00 0 podium podium \N 211 292 368 4 2021-01-26 10:04:33.697+00 2021-01-26 10:04:33.697+00 0 podium podium \N 212 300 369 4 2021-01-26 10:04:33.698+00 2021-01-26 10:04:33.698+00 0 podium podium \N 213 264 381 4 2021-01-26 10:04:33.699+00 2021-01-26 10:04:33.699+00 0 podium podium \N 214 281 325 4 2021-01-26 10:04:33.699+00 2021-01-26 10:04:33.699+00 0 podium podium \N 215 265 329 4 2021-01-26 10:04:33.7+00 2021-01-26 10:04:33.7+00 0 podium podium \N 216 249 335 4 2021-01-26 10:04:33.701+00 2021-01-26 10:04:33.701+00 0 podium podium \N 217 275 356 4 2021-01-26 10:04:33.701+00 2021-01-26 10:04:33.701+00 0 podium podium \N 218 307 377 4 2021-01-26 10:04:33.702+00 2021-01-26 10:04:33.702+00 0 podium podium \N 219 270 364 4 2021-01-26 10:04:33.703+00 2021-01-26 10:04:33.703+00 0 podium podium \N 220 287 362 4 2021-01-26 10:04:33.703+00 2021-01-26 10:04:33.703+00 0 podium podium \N 221 247 318 4 2021-01-26 10:04:33.704+00 2021-01-26 10:04:33.704+00 0 podium podium \N 222 240 359 4 2021-01-26 10:04:33.705+00 2021-01-26 10:04:33.705+00 0 podium podium \N 223 243 347 4 2021-01-26 10:04:33.706+00 2021-01-26 10:04:33.706+00 0 podium podium \N 224 286 331 4 2021-01-26 10:04:33.707+00 2021-01-26 10:04:33.707+00 0 podium podium \N 225 290 367 4 2021-01-26 10:04:33.708+00 2021-01-26 10:04:33.708+00 0 podium podium \N 226 285 358 4 2021-01-26 10:04:33.708+00 2021-01-26 10:04:33.708+00 0 podium podium \N 227 241 338 4 2021-01-26 10:04:33.709+00 2021-01-26 10:04:33.709+00 0 podium podium \N 228 269 360 4 2021-01-26 10:04:33.71+00 2021-01-26 10:04:33.71+00 0 podium podium \N 229 254 316 4 2021-01-26 10:04:33.711+00 2021-01-26 10:04:33.711+00 0 podium podium \N 230 248 372 4 2021-01-26 10:04:33.712+00 2021-01-26 10:04:33.712+00 0 podium podium \N 231 296 378 4 2021-01-26 10:04:33.712+00 2021-01-26 10:04:33.712+00 0 podium podium \N 232 305 334 4 2021-01-26 10:04:33.713+00 2021-01-26 10:04:33.713+00 0 podium podium \N 233 272 346 4 2021-01-26 10:04:33.714+00 2021-01-26 10:04:33.714+00 0 podium podium \N 234 297 313 4 2021-01-26 10:04:33.715+00 2021-01-26 10:04:33.715+00 0 podium podium \N 235 302 343 4 2021-01-26 10:04:33.716+00 2021-01-26 10:04:33.716+00 0 podium podium \N 236 266 328 4 2021-01-26 10:04:33.717+00 2021-01-26 10:04:33.717+00 0 podium podium \N 237 278 361 4 2021-01-26 10:04:33.717+00 2021-01-26 10:04:33.717+00 0 podium podium \N 238 259 320 4 2021-01-26 10:04:33.718+00 2021-01-26 10:04:33.718+00 0 podium podium \N 239 311 388 4 2021-01-26 10:04:33.719+00 2021-01-26 10:04:33.719+00 0 podium podium \N 240 274 375 4 2021-01-26 10:04:33.72+00 2021-01-26 10:04:33.72+00 0 podium podium \N 241 239 348 4 2021-01-26 10:04:33.72+00 2021-01-26 10:04:33.72+00 0 podium podium \N 242 245 324 4 2021-01-26 10:04:33.721+00 2021-01-26 10:04:33.721+00 0 podium podium \N 243 310 374 4 2021-01-26 10:04:33.722+00 2021-01-26 10:04:33.722+00 0 podium podium \N 244 282 379 4 2021-01-26 10:04:33.722+00 2021-01-26 10:04:33.722+00 0 podium podium \N 245 237 321 4 2021-01-26 10:04:33.723+00 2021-01-26 10:04:33.723+00 0 podium podium \N 246 255 353 4 2021-01-26 10:04:33.724+00 2021-01-26 10:04:33.724+00 0 podium podium \N 247 291 344 4 2021-01-26 10:04:33.725+00 2021-01-26 10:04:33.725+00 0 podium podium \N 248 250 363 4 2021-01-26 10:04:33.725+00 2021-01-26 10:04:33.725+00 0 podium podium \N 249 276 349 4 2021-01-26 10:04:33.726+00 2021-01-26 10:04:33.726+00 0 podium podium \N 250 304 341 4 2021-01-26 10:04:33.727+00 2021-01-26 10:04:33.727+00 0 podium podium \N 251 306 365 4 2021-01-26 10:04:33.728+00 2021-01-26 10:04:33.728+00 0 podium podium \N 252 261 267 2 2021-01-26 10:04:34.093+00 2021-01-26 10:04:34.093+00 0 podium podium [FK_Orders_Customers] 253 332 373 2 2021-01-26 10:04:34.098+00 2021-01-26 10:04:34.098+00 0 podium podium [FK_Orders_Customers] 254 261 267 2 2021-01-26 10:04:34.102+00 2021-01-26 10:04:34.102+00 0 podium podium [FK_Orders_Customers] 255 332 373 2 2021-01-26 10:04:34.105+00 2021-01-26 10:04:34.105+00 0 podium podium [FK_Orders_Customers] 256 240 266 2 2021-01-26 10:04:34.108+00 2021-01-26 10:04:34.108+00 0 podium podium [FK_Orders_Employees] 257 359 328 2 2021-01-26 10:04:34.112+00 2021-01-26 10:04:34.112+00 0 podium podium [FK_Orders_Employees] 258 240 266 2 2021-01-26 10:04:34.115+00 2021-01-26 10:04:34.115+00 0 podium podium [FK_Orders_Employees] 259 359 328 2 2021-01-26 10:04:34.118+00 2021-01-26 10:04:34.118+00 0 podium podium [FK_Orders_Employees] 260 281 273 2 2021-01-26 10:04:34.121+00 2021-01-26 10:04:34.121+00 0 podium podium [FK_Orders_Shippers] 261 325 317 2 2021-01-26 10:04:34.124+00 2021-01-26 10:04:34.124+00 0 podium podium [FK_Orders_Shippers] 262 281 273 2 2021-01-26 10:04:34.127+00 2021-01-26 10:04:34.127+00 0 podium podium [FK_Orders_Shippers] 263 325 317 2 2021-01-26 10:04:34.131+00 2021-01-26 10:04:34.131+00 0 podium podium [FK_Orders_Shippers] 264 240 297 2 2021-01-26 10:04:34.134+00 2021-01-26 10:04:34.134+00 0 podium podium [ReportsTo] 265 359 313 2 2021-01-26 10:04:34.137+00 2021-01-26 10:04:34.137+00 0 podium podium [ReportsTo] 266 240 297 2 2021-01-26 10:04:34.14+00 2021-01-26 10:04:34.14+00 0 podium podium [ReportsTo] 267 359 313 2 2021-01-26 10:04:34.143+00 2021-01-26 10:04:34.143+00 0 podium podium [ReportsTo] 268 268 306 2 2021-01-26 10:04:34.147+00 2021-01-26 10:04:34.147+00 0 podium podium [FK_Order_Details_Orders] 269 385 365 2 2021-01-26 10:04:34.15+00 2021-01-26 10:04:34.15+00 0 podium podium [FK_Order_Details_Orders] 270 268 306 2 2021-01-26 10:04:34.153+00 2021-01-26 10:04:34.153+00 0 podium podium [FK_Order_Details_Orders] 271 385 365 2 2021-01-26 10:04:34.156+00 2021-01-26 10:04:34.156+00 0 podium podium [FK_Order_Details_Orders] 272 301 242 2 2021-01-26 10:04:34.159+00 2021-01-26 10:04:34.159+00 0 podium podium [FK_Order_Details_Products] 273 323 345 2 2021-01-26 10:04:34.163+00 2021-01-26 10:04:34.163+00 0 podium podium [FK_Order_Details_Products] 274 301 242 2 2021-01-26 10:04:34.166+00 2021-01-26 10:04:34.166+00 0 podium podium [FK_Order_Details_Products] 275 323 345 2 2021-01-26 10:04:34.169+00 2021-01-26 10:04:34.169+00 0 podium podium [FK_Order_Details_Products] 276 289 255 2 2021-01-26 10:04:34.173+00 2021-01-26 10:04:34.173+00 0 podium podium [FK_Products_Categories] 277 342 353 2 2021-01-26 10:04:34.176+00 2021-01-26 10:04:34.176+00 0 podium podium [FK_Products_Categories] 278 289 255 2 2021-01-26 10:04:34.179+00 2021-01-26 10:04:34.179+00 0 podium podium [FK_Products_Categories] 279 342 353 2 2021-01-26 10:04:34.182+00 2021-01-26 10:04:34.182+00 0 podium podium [FK_Products_Categories] 280 260 295 2 2021-01-26 10:04:34.186+00 2021-01-26 10:04:34.186+00 0 podium podium [FK_Products_Suppliers] 281 383 327 2 2021-01-26 10:04:34.189+00 2021-01-26 10:04:34.189+00 0 podium podium [FK_Products_Suppliers] 282 260 295 2 2021-01-26 10:04:34.192+00 2021-01-26 10:04:34.192+00 0 podium podium [FK_Products_Suppliers] 283 383 327 2 2021-01-26 10:04:34.195+00 2021-01-26 10:04:34.195+00 0 podium podium [FK_Products_Suppliers] 284 453 515 4 2021-01-26 10:05:00.142+00 2021-01-26 10:05:00.142+00 0 podium podium \N 285 451 481 4 2021-01-26 10:05:00.143+00 2021-01-26 10:05:00.143+00 0 podium podium \N 286 404 514 4 2021-01-26 10:05:00.144+00 2021-01-26 10:05:00.144+00 0 podium podium \N 287 418 480 4 2021-01-26 10:05:00.145+00 2021-01-26 10:05:00.145+00 0 podium podium \N 288 442 506 4 2021-01-26 10:05:00.145+00 2021-01-26 10:05:00.145+00 0 podium podium \N 289 437 489 4 2021-01-26 10:05:00.146+00 2021-01-26 10:05:00.146+00 0 podium podium \N 290 424 509 4 2021-01-26 10:05:00.147+00 2021-01-26 10:05:00.147+00 0 podium podium \N 291 469 520 4 2021-01-26 10:05:00.147+00 2021-01-26 10:05:00.147+00 0 podium podium \N 292 433 525 4 2021-01-26 10:05:00.148+00 2021-01-26 10:05:00.148+00 0 podium podium \N 293 450 490 4 2021-01-26 10:05:00.149+00 2021-01-26 10:05:00.149+00 0 podium podium \N 294 414 505 4 2021-01-26 10:05:00.149+00 2021-01-26 10:05:00.149+00 0 podium podium \N 295 459 484 4 2021-01-26 10:05:00.15+00 2021-01-26 10:05:00.15+00 0 podium podium \N 296 428 545 4 2021-01-26 10:05:00.15+00 2021-01-26 10:05:00.15+00 0 podium podium \N 297 427 503 4 2021-01-26 10:05:00.151+00 2021-01-26 10:05:00.151+00 0 podium podium \N 298 454 485 4 2021-01-26 10:05:00.151+00 2021-01-26 10:05:00.151+00 0 podium podium \N 299 447 491 4 2021-01-26 10:05:00.152+00 2021-01-26 10:05:00.152+00 0 podium podium \N 300 415 540 4 2021-01-26 10:05:00.153+00 2021-01-26 10:05:00.153+00 0 podium podium \N 301 396 486 4 2021-01-26 10:05:00.153+00 2021-01-26 10:05:00.153+00 0 podium podium \N 302 399 522 4 2021-01-26 10:05:00.154+00 2021-01-26 10:05:00.154+00 0 podium podium \N 303 395 518 4 2021-01-26 10:05:00.154+00 2021-01-26 10:05:00.154+00 0 podium podium \N 304 464 476 4 2021-01-26 10:05:00.155+00 2021-01-26 10:05:00.155+00 0 podium podium \N 305 400 475 4 2021-01-26 10:05:00.155+00 2021-01-26 10:05:00.155+00 0 podium podium \N 306 458 512 4 2021-01-26 10:05:00.156+00 2021-01-26 10:05:00.156+00 0 podium podium \N 307 457 533 4 2021-01-26 10:05:00.156+00 2021-01-26 10:05:00.156+00 0 podium podium \N 308 401 502 4 2021-01-26 10:05:00.157+00 2021-01-26 10:05:00.157+00 0 podium podium \N 309 417 532 4 2021-01-26 10:05:00.157+00 2021-01-26 10:05:00.157+00 0 podium podium \N 310 468 517 4 2021-01-26 10:05:00.158+00 2021-01-26 10:05:00.158+00 0 podium podium \N 311 392 499 4 2021-01-26 10:05:00.159+00 2021-01-26 10:05:00.159+00 0 podium podium \N 312 429 498 4 2021-01-26 10:05:00.159+00 2021-01-26 10:05:00.159+00 0 podium podium \N 313 466 477 4 2021-01-26 10:05:00.16+00 2021-01-26 10:05:00.16+00 0 podium podium \N 314 407 500 4 2021-01-26 10:05:00.16+00 2021-01-26 10:05:00.16+00 0 podium podium \N 315 452 494 4 2021-01-26 10:05:00.161+00 2021-01-26 10:05:00.161+00 0 podium podium \N 316 397 546 4 2021-01-26 10:05:00.162+00 2021-01-26 10:05:00.162+00 0 podium podium \N 317 444 513 4 2021-01-26 10:05:00.162+00 2021-01-26 10:05:00.162+00 0 podium podium \N 318 406 523 4 2021-01-26 10:05:00.163+00 2021-01-26 10:05:00.163+00 0 podium podium \N 319 410 542 4 2021-01-26 10:05:00.163+00 2021-01-26 10:05:00.163+00 0 podium podium \N 320 430 496 4 2021-01-26 10:05:00.164+00 2021-01-26 10:05:00.164+00 0 podium podium \N 321 403 511 4 2021-01-26 10:05:00.164+00 2021-01-26 10:05:00.164+00 0 podium podium \N 322 443 537 4 2021-01-26 10:05:00.165+00 2021-01-26 10:05:00.165+00 0 podium podium \N 323 432 536 4 2021-01-26 10:05:00.166+00 2021-01-26 10:05:00.166+00 0 podium podium \N 324 440 501 4 2021-01-26 10:05:00.166+00 2021-01-26 10:05:00.166+00 0 podium podium \N 325 434 544 4 2021-01-26 10:05:00.167+00 2021-01-26 10:05:00.167+00 0 podium podium \N 326 431 497 4 2021-01-26 10:05:00.167+00 2021-01-26 10:05:00.167+00 0 podium podium \N 327 446 547 4 2021-01-26 10:05:00.168+00 2021-01-26 10:05:00.168+00 0 podium podium \N 328 449 516 4 2021-01-26 10:05:00.168+00 2021-01-26 10:05:00.168+00 0 podium podium \N 329 394 529 4 2021-01-26 10:05:00.169+00 2021-01-26 10:05:00.169+00 0 podium podium \N 330 436 495 4 2021-01-26 10:05:00.169+00 2021-01-26 10:05:00.169+00 0 podium podium \N 331 420 538 4 2021-01-26 10:05:00.17+00 2021-01-26 10:05:00.17+00 0 podium podium \N 332 416 534 4 2021-01-26 10:05:00.17+00 2021-01-26 10:05:00.17+00 0 podium podium \N 333 419 524 4 2021-01-26 10:05:00.171+00 2021-01-26 10:05:00.171+00 0 podium podium \N 334 423 535 4 2021-01-26 10:05:00.172+00 2021-01-26 10:05:00.172+00 0 podium podium \N 335 408 504 4 2021-01-26 10:05:00.172+00 2021-01-26 10:05:00.172+00 0 podium podium \N 336 439 539 4 2021-01-26 10:05:00.173+00 2021-01-26 10:05:00.173+00 0 podium podium \N 337 402 521 4 2021-01-26 10:05:00.173+00 2021-01-26 10:05:00.173+00 0 podium podium \N 338 393 528 4 2021-01-26 10:05:00.174+00 2021-01-26 10:05:00.174+00 0 podium podium \N 339 460 472 4 2021-01-26 10:05:00.174+00 2021-01-26 10:05:00.174+00 0 podium podium \N 340 467 483 4 2021-01-26 10:05:00.175+00 2021-01-26 10:05:00.175+00 0 podium podium \N 341 448 471 4 2021-01-26 10:05:00.175+00 2021-01-26 10:05:00.175+00 0 podium podium \N 342 422 473 4 2021-01-26 10:05:00.176+00 2021-01-26 10:05:00.176+00 0 podium podium \N 343 456 492 4 2021-01-26 10:05:00.176+00 2021-01-26 10:05:00.176+00 0 podium podium \N 344 463 487 4 2021-01-26 10:05:00.177+00 2021-01-26 10:05:00.177+00 0 podium podium \N 345 398 530 4 2021-01-26 10:05:00.178+00 2021-01-26 10:05:00.178+00 0 podium podium \N 346 445 488 4 2021-01-26 10:05:00.178+00 2021-01-26 10:05:00.178+00 0 podium podium \N 347 409 493 4 2021-01-26 10:05:00.18+00 2021-01-26 10:05:00.18+00 0 podium podium \N 348 462 548 4 2021-01-26 10:05:00.181+00 2021-01-26 10:05:00.181+00 0 podium podium \N 349 411 519 4 2021-01-26 10:05:00.181+00 2021-01-26 10:05:00.181+00 0 podium podium \N 350 438 526 4 2021-01-26 10:05:00.182+00 2021-01-26 10:05:00.182+00 0 podium podium \N 351 441 508 4 2021-01-26 10:05:00.182+00 2021-01-26 10:05:00.182+00 0 podium podium \N 352 421 507 4 2021-01-26 10:05:00.183+00 2021-01-26 10:05:00.183+00 0 podium podium \N 353 405 543 4 2021-01-26 10:05:00.184+00 2021-01-26 10:05:00.184+00 0 podium podium \N 354 435 527 4 2021-01-26 10:05:00.184+00 2021-01-26 10:05:00.184+00 0 podium podium \N 355 426 531 4 2021-01-26 10:05:00.185+00 2021-01-26 10:05:00.185+00 0 podium podium \N 356 465 474 4 2021-01-26 10:05:00.185+00 2021-01-26 10:05:00.185+00 0 podium podium \N 357 461 541 4 2021-01-26 10:05:00.186+00 2021-01-26 10:05:00.186+00 0 podium podium \N 358 425 478 4 2021-01-26 10:05:00.186+00 2021-01-26 10:05:00.186+00 0 podium podium \N 359 413 479 4 2021-01-26 10:05:00.187+00 2021-01-26 10:05:00.187+00 0 podium podium \N 360 391 470 4 2021-01-26 10:05:00.187+00 2021-01-26 10:05:00.187+00 0 podium podium \N 361 412 482 4 2021-01-26 10:05:00.188+00 2021-01-26 10:05:00.188+00 0 podium podium \N 362 455 510 4 2021-01-26 10:05:00.189+00 2021-01-26 10:05:00.189+00 0 podium podium \N 363 423 415 2 2021-01-26 10:05:00.39+00 2021-01-26 10:05:00.39+00 0 podium podium [FK_Order_Details_Orders] 364 535 540 2 2021-01-26 10:05:00.393+00 2021-01-26 10:05:00.393+00 0 podium podium [FK_Order_Details_Orders] 365 423 415 2 2021-01-26 10:05:00.395+00 2021-01-26 10:05:00.395+00 0 podium podium [FK_Order_Details_Orders] 366 535 540 2 2021-01-26 10:05:00.397+00 2021-01-26 10:05:00.397+00 0 podium podium [FK_Order_Details_Orders] 367 411 398 2 2021-01-26 10:05:00.399+00 2021-01-26 10:05:00.399+00 0 podium podium [FK_Order_Details_Products] 368 519 530 2 2021-01-26 10:05:00.401+00 2021-01-26 10:05:00.401+00 0 podium podium [FK_Order_Details_Products] 369 411 398 2 2021-01-26 10:05:00.403+00 2021-01-26 10:05:00.403+00 0 podium podium [FK_Order_Details_Products] 370 519 530 2 2021-01-26 10:05:00.405+00 2021-01-26 10:05:00.405+00 0 podium podium [FK_Order_Details_Products] 371 468 445 2 2021-01-26 10:05:00.407+00 2021-01-26 10:05:00.407+00 0 podium podium [FK_Products_Categories] 372 517 488 2 2021-01-26 10:05:00.41+00 2021-01-26 10:05:00.41+00 0 podium podium [FK_Products_Categories] 373 468 445 2 2021-01-26 10:05:00.412+00 2021-01-26 10:05:00.412+00 0 podium podium [FK_Products_Categories] 374 517 488 2 2021-01-26 10:05:00.414+00 2021-01-26 10:05:00.414+00 0 podium podium [FK_Products_Categories] 375 407 465 2 2021-01-26 10:05:00.416+00 2021-01-26 10:05:00.416+00 0 podium podium [FK_Products_Suppliers] 376 500 474 2 2021-01-26 10:05:00.418+00 2021-01-26 10:05:00.418+00 0 podium podium [FK_Products_Suppliers] 377 407 465 2 2021-01-26 10:05:00.42+00 2021-01-26 10:05:00.42+00 0 podium podium [FK_Products_Suppliers] 378 500 474 2 2021-01-26 10:05:00.422+00 2021-01-26 10:05:00.422+00 0 podium podium [FK_Products_Suppliers] 379 406 397 2 2021-01-26 10:05:00.424+00 2021-01-26 10:05:00.424+00 0 podium podium [FK_Orders_Customers] 380 523 546 2 2021-01-26 10:05:00.426+00 2021-01-26 10:05:00.426+00 0 podium podium [FK_Orders_Customers] 381 406 397 2 2021-01-26 10:05:00.428+00 2021-01-26 10:05:00.428+00 0 podium podium [FK_Orders_Customers] 382 523 546 2 2021-01-26 10:05:00.43+00 2021-01-26 10:05:00.43+00 0 podium podium [FK_Orders_Customers] 383 451 417 2 2021-01-26 10:05:00.432+00 2021-01-26 10:05:00.432+00 0 podium podium [FK_Orders_Employees] 384 481 532 2 2021-01-26 10:05:00.435+00 2021-01-26 10:05:00.435+00 0 podium podium [FK_Orders_Employees] 385 451 417 2 2021-01-26 10:05:00.438+00 2021-01-26 10:05:00.438+00 0 podium podium [FK_Orders_Employees] 386 481 532 2 2021-01-26 10:05:00.44+00 2021-01-26 10:05:00.44+00 0 podium podium [FK_Orders_Employees] 387 449 431 2 2021-01-26 10:05:00.442+00 2021-01-26 10:05:00.442+00 0 podium podium [FK_Orders_Shippers] 388 516 497 2 2021-01-26 10:05:00.444+00 2021-01-26 10:05:00.444+00 0 podium podium [FK_Orders_Shippers] 389 449 431 2 2021-01-26 10:05:00.446+00 2021-01-26 10:05:00.446+00 0 podium podium [FK_Orders_Shippers] 390 516 497 2 2021-01-26 10:05:00.448+00 2021-01-26 10:05:00.448+00 0 podium podium [FK_Orders_Shippers] 391 451 453 2 2021-01-26 10:05:00.45+00 2021-01-26 10:05:00.45+00 0 podium podium [ReportsTo] 392 481 515 2 2021-01-26 10:05:00.452+00 2021-01-26 10:05:00.452+00 0 podium podium [ReportsTo] 393 451 453 2 2021-01-26 10:05:00.454+00 2021-01-26 10:05:00.454+00 0 podium podium [ReportsTo] 394 481 515 2 2021-01-26 10:05:00.456+00 2021-01-26 10:05:00.456+00 0 podium podium [ReportsTo] 395 584 659 4 2021-01-26 10:32:11.309+00 2021-01-26 10:32:11.309+00 0 podium podium \N 396 561 630 4 2021-01-26 10:32:11.31+00 2021-01-26 10:32:11.31+00 0 podium podium \N 397 590 654 4 2021-01-26 10:32:11.311+00 2021-01-26 10:32:11.311+00 0 podium podium \N 398 594 664 4 2021-01-26 10:32:11.311+00 2021-01-26 10:32:11.311+00 0 podium podium \N 399 591 620 4 2021-01-26 10:32:11.312+00 2021-01-26 10:32:11.312+00 0 podium podium \N 400 558 649 4 2021-01-26 10:32:11.312+00 2021-01-26 10:32:11.312+00 0 podium podium \N 401 601 648 4 2021-01-26 10:32:11.313+00 2021-01-26 10:32:11.313+00 0 podium podium \N 402 588 645 4 2021-01-26 10:32:11.314+00 2021-01-26 10:32:11.314+00 0 podium podium \N 403 555 614 4 2021-01-26 10:32:11.314+00 2021-01-26 10:32:11.314+00 0 podium podium \N 404 604 661 4 2021-01-26 10:32:11.314+00 2021-01-26 10:32:11.314+00 0 podium podium \N 405 592 658 4 2021-01-26 10:32:11.315+00 2021-01-26 10:32:11.315+00 0 podium podium \N 406 598 612 4 2021-01-26 10:32:11.315+00 2021-01-26 10:32:11.315+00 0 podium podium \N 407 578 613 4 2021-01-26 10:32:11.316+00 2021-01-26 10:32:11.316+00 0 podium podium \N 408 563 650 4 2021-01-26 10:32:11.316+00 2021-01-26 10:32:11.316+00 0 podium podium \N 409 574 617 4 2021-01-26 10:32:11.317+00 2021-01-26 10:32:11.317+00 0 podium podium \N 410 605 611 4 2021-01-26 10:32:11.317+00 2021-01-26 10:32:11.317+00 0 podium podium \N 411 585 644 4 2021-01-26 10:32:11.318+00 2021-01-26 10:32:11.318+00 0 podium podium \N 412 550 608 4 2021-01-26 10:32:11.318+00 2021-01-26 10:32:11.318+00 0 podium podium \N 413 549 609 4 2021-01-26 10:32:11.319+00 2021-01-26 10:32:11.319+00 0 podium podium \N 414 556 643 4 2021-01-26 10:32:11.32+00 2021-01-26 10:32:11.32+00 0 podium podium \N 415 596 656 4 2021-01-26 10:32:11.321+00 2021-01-26 10:32:11.321+00 0 podium podium \N 416 567 607 4 2021-01-26 10:32:11.321+00 2021-01-26 10:32:11.321+00 0 podium podium \N 417 582 631 4 2021-01-26 10:32:11.322+00 2021-01-26 10:32:11.322+00 0 podium podium \N 418 562 634 4 2021-01-26 10:32:11.323+00 2021-01-26 10:32:11.323+00 0 podium podium \N 419 593 626 4 2021-01-26 10:32:11.323+00 2021-01-26 10:32:11.323+00 0 podium podium \N 420 570 655 4 2021-01-26 10:32:11.324+00 2021-01-26 10:32:11.324+00 0 podium podium \N 421 597 627 4 2021-01-26 10:32:11.324+00 2021-01-26 10:32:11.324+00 0 podium podium \N 422 600 662 4 2021-01-26 10:32:11.325+00 2021-01-26 10:32:11.325+00 0 podium podium \N 423 552 641 4 2021-01-26 10:32:11.325+00 2021-01-26 10:32:11.325+00 0 podium podium \N 424 576 623 4 2021-01-26 10:32:11.326+00 2021-01-26 10:32:11.326+00 0 podium podium \N 425 602 622 4 2021-01-26 10:32:11.326+00 2021-01-26 10:32:11.326+00 0 podium podium \N 426 587 651 4 2021-01-26 10:32:11.327+00 2021-01-26 10:32:11.327+00 0 podium podium \N 427 595 633 4 2021-01-26 10:32:11.327+00 2021-01-26 10:32:11.327+00 0 podium podium \N 428 580 628 4 2021-01-26 10:32:11.327+00 2021-01-26 10:32:11.327+00 0 podium podium \N 429 606 635 4 2021-01-26 10:32:11.328+00 2021-01-26 10:32:11.328+00 0 podium podium \N 430 581 632 4 2021-01-26 10:32:11.328+00 2021-01-26 10:32:11.328+00 0 podium podium \N 431 557 637 4 2021-01-26 10:32:11.329+00 2021-01-26 10:32:11.329+00 0 podium podium \N 432 565 652 4 2021-01-26 10:32:11.329+00 2021-01-26 10:32:11.329+00 0 podium podium \N 433 564 636 4 2021-01-26 10:32:11.33+00 2021-01-26 10:32:11.33+00 0 podium podium \N 434 577 663 4 2021-01-26 10:32:11.33+00 2021-01-26 10:32:11.33+00 0 podium podium \N 435 589 660 4 2021-01-26 10:32:11.33+00 2021-01-26 10:32:11.33+00 0 podium podium \N 436 579 610 4 2021-01-26 10:32:11.331+00 2021-01-26 10:32:11.331+00 0 podium podium \N 437 586 639 4 2021-01-26 10:32:11.331+00 2021-01-26 10:32:11.331+00 0 podium podium \N 438 573 624 4 2021-01-26 10:32:11.332+00 2021-01-26 10:32:11.332+00 0 podium podium \N 439 599 657 4 2021-01-26 10:32:11.332+00 2021-01-26 10:32:11.332+00 0 podium podium \N 440 559 616 4 2021-01-26 10:32:11.332+00 2021-01-26 10:32:11.332+00 0 podium podium \N 441 572 653 4 2021-01-26 10:32:11.333+00 2021-01-26 10:32:11.333+00 0 podium podium \N 442 575 629 4 2021-01-26 10:32:11.333+00 2021-01-26 10:32:11.333+00 0 podium podium \N 443 603 618 4 2021-01-26 10:32:11.334+00 2021-01-26 10:32:11.334+00 0 podium podium \N 444 553 642 4 2021-01-26 10:32:11.334+00 2021-01-26 10:32:11.334+00 0 podium podium \N 445 568 647 4 2021-01-26 10:32:11.334+00 2021-01-26 10:32:11.334+00 0 podium podium \N 446 551 615 4 2021-01-26 10:32:11.335+00 2021-01-26 10:32:11.335+00 0 podium podium \N 447 569 619 4 2021-01-26 10:32:11.335+00 2021-01-26 10:32:11.335+00 0 podium podium \N 448 554 625 4 2021-01-26 10:32:11.336+00 2021-01-26 10:32:11.336+00 0 podium podium \N 449 571 646 4 2021-01-26 10:32:11.336+00 2021-01-26 10:32:11.336+00 0 podium podium \N 450 583 640 4 2021-01-26 10:32:11.336+00 2021-01-26 10:32:11.336+00 0 podium podium \N 451 560 638 4 2021-01-26 10:32:11.337+00 2021-01-26 10:32:11.337+00 0 podium podium \N 452 566 621 4 2021-01-26 10:32:11.337+00 2021-01-26 10:32:11.337+00 0 podium podium \N 453 582 599 2 2021-01-26 10:32:11.541+00 2021-01-26 10:32:11.541+00 0 podium podium [fk_Payments_Customers] 454 631 657 2 2021-01-26 10:32:11.543+00 2021-01-26 10:32:11.543+00 0 podium podium [fk_Payments_Customers] 455 582 599 2 2021-01-26 10:32:11.544+00 2021-01-26 10:32:11.544+00 0 podium podium [fk_Payments_Customers] 456 631 657 2 2021-01-26 10:32:11.546+00 2021-01-26 10:32:11.546+00 0 podium podium [fk_Payments_Customers] 457 562 556 2 2021-01-26 10:32:11.548+00 2021-01-26 10:32:11.548+00 0 podium podium [fk_Employees_Employees] 458 634 643 2 2021-01-26 10:32:11.549+00 2021-01-26 10:32:11.549+00 0 podium podium [fk_Employees_Employees] 459 562 556 2 2021-01-26 10:32:11.551+00 2021-01-26 10:32:11.551+00 0 podium podium [fk_Employees_Employees] 460 634 643 2 2021-01-26 10:32:11.552+00 2021-01-26 10:32:11.552+00 0 podium podium [fk_Employees_Employees] 461 603 601 2 2021-01-26 10:32:11.554+00 2021-01-26 10:32:11.554+00 0 podium podium [fk_Employees_Offices] 462 618 648 2 2021-01-26 10:32:11.555+00 2021-01-26 10:32:11.555+00 0 podium podium [fk_Employees_Offices] 463 603 601 2 2021-01-26 10:32:11.557+00 2021-01-26 10:32:11.557+00 0 podium podium [fk_Employees_Offices] 464 618 648 2 2021-01-26 10:32:11.558+00 2021-01-26 10:32:11.558+00 0 podium podium [fk_Employees_Offices] 465 562 558 2 2021-01-26 10:32:11.56+00 2021-01-26 10:32:11.56+00 0 podium podium [fk_Customers_Employees] 466 634 649 2 2021-01-26 10:32:11.561+00 2021-01-26 10:32:11.561+00 0 podium podium [fk_Customers_Employees] 467 562 558 2 2021-01-26 10:32:11.563+00 2021-01-26 10:32:11.563+00 0 podium podium [fk_Customers_Employees] 468 634 649 2 2021-01-26 10:32:11.565+00 2021-01-26 10:32:11.565+00 0 podium podium [fk_Customers_Employees] 469 582 579 2 2021-01-26 10:32:11.566+00 2021-01-26 10:32:11.566+00 0 podium podium [salesorders_FK_customers] 470 631 610 2 2021-01-26 10:32:11.568+00 2021-01-26 10:32:11.568+00 0 podium podium [salesorders_FK_customers] 471 582 579 2 2021-01-26 10:32:11.569+00 2021-01-26 10:32:11.569+00 0 podium podium [salesorders_FK_customers] 472 631 610 2 2021-01-26 10:32:11.571+00 2021-01-26 10:32:11.571+00 0 podium podium [salesorders_FK_customers] 473 589 567 2 2021-01-26 10:32:11.573+00 2021-01-26 10:32:11.573+00 0 podium podium [salesorders_FK_products] 474 660 607 2 2021-01-26 10:32:11.574+00 2021-01-26 10:32:11.574+00 0 podium podium [salesorders_FK_products] 475 589 567 2 2021-01-26 10:32:11.576+00 2021-01-26 10:32:11.576+00 0 podium podium [salesorders_FK_products] 476 660 607 2 2021-01-26 10:32:11.577+00 2021-01-26 10:32:11.577+00 0 podium podium [salesorders_FK_products] 477 604 570 2 2021-01-26 10:32:11.579+00 2021-01-26 10:32:11.579+00 0 podium podium [fk_Products_ProductLines] 478 661 655 2 2021-01-26 10:32:11.58+00 2021-01-26 10:32:11.58+00 0 podium podium [fk_Products_ProductLines] 479 604 570 2 2021-01-26 10:32:11.582+00 2021-01-26 10:32:11.582+00 0 podium podium [fk_Products_ProductLines] 480 661 655 2 2021-01-26 10:32:11.583+00 2021-01-26 10:32:11.583+00 0 podium podium [fk_Products_ProductLines] 481 567 589 2 2021-01-27 13:38:27.239+00 2021-01-27 13:38:27.239+00 0 podium podium \N 482 607 660 2 2021-01-27 13:38:27.241+00 2021-01-27 13:38:27.241+00 0 podium podium \N 483 599 582 2 2021-01-27 13:38:27.242+00 2021-01-27 13:38:27.242+00 0 podium podium \N 484 657 631 2 2021-01-27 13:38:27.243+00 2021-01-27 13:38:27.243+00 0 podium podium \N \. -- -- Data for Name: pd_field_prop_bk; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_field_prop_bk (nid, field_nid, prop_name, prop_value, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_field_tag; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_field_tag (nid, field_nid, tag, created_ttz, modified_ttz, version, modifiedby, createdby, is_external) FROM stdin; 1 165 purchase price 2021-01-26 10:04:04.146+00 2021-01-26 10:04:04.146+00 0 podium podium f 2 137 msrp 2021-01-26 10:04:04.17+00 2021-01-26 10:04:04.17+00 0 podium podium f 3 129 line 2021-01-26 10:04:04.192+00 2021-01-26 10:04:04.192+00 0 podium podium f 4 162 scale 2021-01-26 10:04:04.216+00 2021-01-26 10:04:04.216+00 0 podium podium f 5 132 code 2021-01-26 10:04:04.236+00 2021-01-26 10:04:04.236+00 0 podium podium f 6 166 quantity 2021-01-26 10:04:04.257+00 2021-01-26 10:04:04.257+00 0 podium podium f 7 166 stock 2021-01-26 10:04:04.257+00 2021-01-26 10:04:04.257+00 0 podium podium f 8 172 description 2021-01-26 10:04:04.277+00 2021-01-26 10:04:04.277+00 0 podium podium f 9 122 name 2021-01-26 10:04:04.295+00 2021-01-26 10:04:04.295+00 0 podium podium f 10 158 vendor 2021-01-26 10:04:04.315+00 2021-01-26 10:04:04.315+00 0 podium podium f 21 139 validation-rule 2021-01-26 10:23:13.463+00 2021-01-26 10:23:13.463+00 0 podium podium f 22 135 notempty 2021-01-26 10:26:21.891+00 2021-01-26 10:26:21.891+00 0 podium podium f 23 135 validation-rule 2021-01-26 10:26:21.892+00 2021-01-26 10:26:21.892+00 0 podium podium f 24 173 sensitive 2021-01-26 10:28:46.608+00 2021-01-26 10:28:46.608+00 0 podium podium f 25 145 sensitive 2021-01-26 10:29:47.627+00 2021-01-26 10:29:47.627+00 0 podium podium f 26 150 validation-rule 2021-01-26 10:30:53.517+00 2021-01-26 10:30:53.517+00 0 podium podium f 27 587 purchase price 2021-01-26 10:38:54.384+00 2021-01-26 10:38:54.384+00 0 podium podium f 28 606 msrp 2021-01-26 10:38:54.399+00 2021-01-26 10:38:54.399+00 0 podium podium f 29 570 line 2021-01-26 10:38:54.412+00 2021-01-26 10:38:54.412+00 0 podium podium f 30 566 scale 2021-01-26 10:38:54.425+00 2021-01-26 10:38:54.425+00 0 podium podium f 31 589 code 2021-01-26 10:38:54.438+00 2021-01-26 10:38:54.438+00 0 podium podium f 32 580 quantity 2021-01-26 10:38:54.451+00 2021-01-26 10:38:54.451+00 0 podium podium f 33 580 stock 2021-01-26 10:38:54.452+00 2021-01-26 10:38:54.452+00 0 podium podium f 34 595 description 2021-01-26 10:38:54.467+00 2021-01-26 10:38:54.467+00 0 podium podium f 35 593 name 2021-01-26 10:38:54.481+00 2021-01-26 10:38:54.481+00 0 podium podium f 36 577 vendor 2021-01-26 10:38:54.496+00 2021-01-26 10:38:54.496+00 0 podium podium f 37 227 purchase price 2021-01-26 10:44:00.637+00 2021-01-26 10:44:00.637+00 0 podium podium f 38 223 msrp 2021-01-26 10:44:00.656+00 2021-01-26 10:44:00.656+00 0 podium podium f 39 224 line 2021-01-26 10:44:00.673+00 2021-01-26 10:44:00.673+00 0 podium podium f 40 221 scale 2021-01-26 10:44:00.69+00 2021-01-26 10:44:00.69+00 0 podium podium f 41 219 code 2021-01-26 10:44:00.709+00 2021-01-26 10:44:00.709+00 0 podium podium f 42 197 quantity 2021-01-26 10:44:00.725+00 2021-01-26 10:44:00.725+00 0 podium podium f 43 197 stock 2021-01-26 10:44:00.725+00 2021-01-26 10:44:00.725+00 0 podium podium f 44 183 description 2021-01-26 10:44:00.744+00 2021-01-26 10:44:00.744+00 0 podium podium f 45 205 name 2021-01-26 10:44:00.76+00 2021-01-26 10:44:00.76+00 0 podium podium f 46 178 vendor 2021-01-26 10:44:00.774+00 2021-01-26 10:44:00.774+00 0 podium podium f 47 651 purchase price 2021-01-26 10:44:00.936+00 2021-01-26 10:44:00.936+00 0 podium podium f 48 635 msrp 2021-01-26 10:44:00.954+00 2021-01-26 10:44:00.954+00 0 podium podium f 49 655 line 2021-01-26 10:44:00.971+00 2021-01-26 10:44:00.971+00 0 podium podium f 50 621 scale 2021-01-26 10:44:00.985+00 2021-01-26 10:44:00.985+00 0 podium podium f 51 660 code 2021-01-26 10:44:00.999+00 2021-01-26 10:44:00.999+00 0 podium podium f 52 628 stock 2021-01-26 10:44:01.017+00 2021-01-26 10:44:01.017+00 0 podium podium f 53 628 quantity 2021-01-26 10:44:01.018+00 2021-01-26 10:44:01.018+00 0 podium podium f 54 633 description 2021-01-26 10:44:01.039+00 2021-01-26 10:44:01.039+00 0 podium podium f 55 626 name 2021-01-26 10:44:01.058+00 2021-01-26 10:44:01.058+00 0 podium podium f 56 663 vendor 2021-01-26 10:44:01.074+00 2021-01-26 10:44:01.074+00 0 podium podium f 57 587 sensitive 2021-01-27 11:10:55.619+00 2021-01-27 11:10:55.619+00 0 podium podium f 58 578 sensitive 2021-01-27 11:11:17.644+00 2021-01-27 11:11:17.644+00 0 podium podium f \. -- -- Data for Name: pd_format_def; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_format_def (nid, sname, createdby, created_ttz, modifiedby, modified_ttz, version) FROM stdin; 1 QCS-S3-FORMAT system 2020-11-13 17:33:42.091196+00 system 2020-11-13 17:33:42.091196+00 0 2 Local-FORMAT podium 2021-01-27 13:30:25.595+00 podium 2021-01-27 13:30:25.595+00 0 \. -- -- Data for Name: pd_format_def_prop; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_format_def_prop (nid, format_nid, prop_name, prop_value, createdby, created_ttz, modifiedby, modified_ttz, version) FROM stdin; 1 1 file_format QVD system 2020-11-13 17:33:42.091196+00 system 2020-11-13 17:33:42.091196+00 0 2 1 field_delimiter , system 2020-11-13 17:33:42.091196+00 system 2020-11-13 17:33:42.091196+00 0 3 1 record_terminator \\n system 2020-11-13 17:33:42.091196+00 system 2020-11-13 17:33:42.091196+00 0 4 1 include_header true system 2020-11-13 17:33:42.091196+00 system 2020-11-13 17:33:42.091196+00 0 5 2 field_delimiter \\t podium 2021-01-27 13:30:25.598+00 podium 2021-01-27 13:30:25.598+00 0 6 2 include_trailer_record_count false podium 2021-01-27 13:30:25.599+00 podium 2021-01-27 13:30:25.599+00 0 7 2 character_set UTF-8 podium 2021-01-27 13:30:25.6+00 podium 2021-01-27 13:30:25.6+00 0 8 2 record_terminator \\n podium 2021-01-27 13:30:25.601+00 podium 2021-01-27 13:30:25.601+00 0 9 2 include_trailer_load_time false podium 2021-01-27 13:30:25.601+00 podium 2021-01-27 13:30:25.601+00 0 10 2 file_format TEXTFILE podium 2021-01-27 13:30:25.602+00 podium 2021-01-27 13:30:25.602+00 0 11 2 include_trailer_filename false podium 2021-01-27 13:30:25.604+00 podium 2021-01-27 13:30:25.604+00 0 12 2 include_trailer false podium 2021-01-27 13:30:25.605+00 podium 2021-01-27 13:30:25.605+00 0 13 2 include_header true podium 2021-01-27 13:30:25.605+00 podium 2021-01-27 13:30:25.605+00 0 14 2 include_trailer_extract_time false podium 2021-01-27 13:30:25.606+00 podium 2021-01-27 13:30:25.606+00 0 \. -- -- Data for Name: pd_gc_registry; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_gc_registry (nid, obj_id, obj_name, obj_type, workorder_status, status_log, actor_name, target_location, no_of_attempts, start_time, end_time, created_ttz, modified_ttz, version, modifiedby, createdby, cluster_nid) FROM stdin; \. -- -- Data for Name: pd_group; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_group (nid, sname, created_ttz, modified_ttz, version, modifiedby, createdby, ad_connection_nid, origin, display_name) FROM stdin; 1 SUPER_GROUP 2020-11-13 17:34:10.523+00 2020-11-13 17:34:10.523+00 0 ANONYMOUS ANONYMOUS \N local \N 2 POWER_USER 2021-01-27 13:43:16.357+00 2021-01-27 13:43:16.357+00 0 podium podium \N local \N 3 BUSINESS_USER 2021-01-27 13:43:44.96+00 2021-01-27 13:43:44.96+00 0 podium podium \N local \N 4 BUSINESS_USER_MASK 2021-01-27 13:46:52.276+00 2021-01-27 13:46:52.276+00 0 podium podium \N local \N \. -- -- Data for Name: pd_group_group; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_group_group (parent_nid, child_nid, nid, createdby, modifiedby, created_ttz, modified_ttz, version) FROM stdin; \. -- -- Data for Name: pd_group_user; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_group_user (nid, group_nid, user_nid, role_nid, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 1 1 1 5 2020-11-13 17:34:11.078+00 2020-11-13 17:34:11.078+00 0 ANONYMOUS ANONYMOUS 8 3 3 8 2021-01-27 13:45:15.137+00 2021-01-27 13:45:15.137+00 0 podium podium 9 2 2 1 2021-01-27 13:45:26.449+00 2021-01-27 13:45:26.449+00 0 podium podium 10 4 3 6 2021-01-27 13:46:52.381+00 2021-01-27 13:46:52.381+00 0 podium podium 11 4 4 7 2021-01-27 13:47:22.203+00 2021-01-27 13:47:22.203+00 0 podium podium \. -- -- Data for Name: pd_jdbc_source_info; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_jdbc_source_info (nid, sname, driver_classname, start_escchar, end_escchar, conn_str_pattern, schemas_tobe_skipped, datatype_override_keyvals, unsupported_datatype_names, createdby, created_ttz, modifiedby, modified_ttz, version, alt_classpath) FROM stdin; 2 HIVE org.apache.hive.jdbc.HiveDriver ` ` jdbc:hive2://:/ \N \N \N podium 2020-11-13 17:33:33.528916+00 podium 2020-11-13 17:33:33.528916+00 0 \N 1 DB2 com.ibm.db2.jcc.DB2Driver " " jdbc:db2://:/ \N \N BINARY,VARBINARY,blob,CHAR FOR BIT DATA,CHARACTER FOR BIT DATA,VARCHAR FOR BIT DATA,VARCHAR2 FOR BIT DATA podium 2020-11-13 17:33:33.528916+00 podium 2020-11-13 17:33:33.528916+00 0 \N 4 SQLSERVER com.microsoft.sqlserver.jdbc.SQLServerDriver [ ] dbc:sqlserver://:;databaseName= \N \N binary,image,varbinary,cursor,hierarchyid,sql_variant,table,rowversion podium 2020-11-13 17:33:33.528916+00 podium 2020-11-13 17:33:33.528916+00 0 \N 7 MYSQL com.mysql.jdbc.Driver ` ` jdbc:mysql://:/ \N \N BINARY,VARBINARY,TINYBLOB,BLOB,MEDIUMBLOB,LONGBLOB,BIT(65) podium 2020-11-13 17:33:34.471541+00 podium 2020-11-13 17:33:34.471541+00 0 \N 5 ORACLE oracle.jdbc.driver.OracleDriver " " jdbc:oracle:thin@:: ANONYMOUS,APEX_040000,APEX_PUBLIC_USER,CTXSYS,DBSNMP,DIP,EXFSYS,FLOWS_%,FLOWS_FILES,LBACSYS,MDDATA,MDSYS,MGMT_VIEW,OLAPSYS,ORACLE_OCM,ORDDATA,ORDPLUGINS,ORDSYS,OUTLN,OWBSYS,SI_INFORMTN_SCHEMA,SPATIAL_CSW_ADMIN_USR,SPATIAL_WFS_ADMIN_USR,SYS,SYSMAN,SYSTEM,WKPROXY,WKSYS,WK_TEST,WMSYS,XDB,XS$NULL \N BLOB,RAW,LONG RAW podium 2020-11-13 17:33:33.528916+00 podium 2020-11-13 17:33:33.528916+00 0 \N 3 TERADATA com.teradata.jdbc.TeraDriver " " jdbc:teradata:///dbs_port=,database= /All,/Crashdumps,/DBC,/dbcmngr,/Samples,/SQLJ,/Sys_Calender,/SysAdmin,/SYSBAR,/SYSLIB,/SYSSPATIAL,/SystemFe,/STSUDTLIB,/TD_SUSFNLIB,/TD_SYSXML,/TDQCD,/TDStats \N Byte,Blob,VarByte podium 2020-11-13 17:33:33.528916+00 podium 2020-11-13 17:33:33.528916+00 0 \N 6 POSTGRESQL org.postgresql.Driver " " jdbc:postgresql://:/ information_schema,pg_catalog \N bytea podium 2020-11-13 17:33:33.528916+00 podium 2020-11-13 17:33:33.528916+00 0 \N 8 SNOWFLAKE net.snowflake.client.jdbc.SnowflakeDriver " " jdbc:snowflake://.snowflakecomputing.com/? \N \N \N podium 2020-11-13 17:33:42.382094+00 podium 2020-11-13 17:33:42.382094+00 0 \N 9 BIGQUERY com.simba.googlebigquery.jdbc42.Driver ` ` jdbc:bigquery://https://www.googleapis.com/bigquery/v2:443;ProjectId=[project];OAuthType=0;OAuthServiceAcctEmail=[gserviceaccount_email];OAuthPvtKeyPath=[path_to_gserviceaccount_json]; \N \N \N podium 2020-11-13 17:33:42.443511+00 podium 2020-11-13 17:33:42.443511+00 0 \N 10 DATABRICKS com.simba.spark.jdbc41.Driver " " jdbc:spark://:/default;transportMode=http;ssl=1;httpPath=;AuthMech=3;UID=token;PWD= \N \N \N podium 2020-11-13 17:33:42.443511+00 podium 2020-11-13 17:33:42.443511+00 0 \N \. -- -- Data for Name: pd_job_manager_wo; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_job_manager_wo (nid, job_id, job_type, delivery_time, start_time, end_time, workorder_status, status_log, detailed_status_log, actor_name, record_count, createdby, created_ttz, modifiedby, modified_ttz, version) FROM stdin; \. -- -- Data for Name: pd_job_manager_wo_param; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_job_manager_wo_param (workorder_nid, jobparams, jobparams_key) FROM stdin; \. -- -- Data for Name: pd_license_info; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_license_info (nid, sname, key_string, createdby, modifiedby, created_ttz, modified_ttz, version) FROM stdin; \. -- -- Data for Name: pd_lineage_edge; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_lineage_edge (nid, createdby, created_ttz, modifiedby, modified_ttz, version, from_node_nid, to_node_nid, edge_type, json_metadata) FROM stdin; 15 podium 2021-01-26 10:03:16.079+00 podium 2021-01-26 10:03:16.079+00 0 16 17 LOAD {} 16 podium 2021-01-26 10:03:16.088+00 podium 2021-01-26 10:03:16.088+00 0 16 18 LOAD {} 17 podium 2021-01-26 10:03:16.096+00 podium 2021-01-26 10:03:16.096+00 0 16 19 LOAD {} 18 podium 2021-01-26 10:03:16.104+00 podium 2021-01-26 10:03:16.104+00 0 16 20 LOAD {} 19 podium 2021-01-26 10:03:16.112+00 podium 2021-01-26 10:03:16.112+00 0 16 21 LOAD {} 20 podium 2021-01-26 10:03:16.121+00 podium 2021-01-26 10:03:16.121+00 0 16 22 LOAD {} 21 podium 2021-01-26 10:03:16.129+00 podium 2021-01-26 10:03:16.129+00 0 16 23 LOAD {} 22 podium 2021-01-26 10:03:16.404+00 podium 2021-01-26 10:03:16.404+00 0 21 25 LOAD {} 23 podium 2021-01-26 10:03:16.405+00 podium 2021-01-26 10:03:16.405+00 0 20 30 LOAD {} 24 podium 2021-01-26 10:03:16.406+00 podium 2021-01-26 10:03:16.406+00 0 22 28 LOAD {} 25 podium 2021-01-26 10:03:16.407+00 podium 2021-01-26 10:03:16.407+00 0 19 24 LOAD {} 26 podium 2021-01-26 10:03:16.407+00 podium 2021-01-26 10:03:16.407+00 0 23 27 LOAD {} 27 podium 2021-01-26 10:03:16.408+00 podium 2021-01-26 10:03:16.408+00 0 17 26 LOAD {} 28 podium 2021-01-26 10:03:16.409+00 podium 2021-01-26 10:03:16.409+00 0 18 29 LOAD {} 29 podium 2021-01-26 10:04:33.218+00 podium 2021-01-26 10:04:33.218+00 0 31 32 LOAD {} 30 podium 2021-01-26 10:04:33.226+00 podium 2021-01-26 10:04:33.226+00 0 31 33 LOAD {} 31 podium 2021-01-26 10:04:33.232+00 podium 2021-01-26 10:04:33.232+00 0 31 34 LOAD {} 32 podium 2021-01-26 10:04:33.239+00 podium 2021-01-26 10:04:33.239+00 0 31 35 LOAD {} 33 podium 2021-01-26 10:04:33.246+00 podium 2021-01-26 10:04:33.246+00 0 31 36 LOAD {} 34 podium 2021-01-26 10:04:33.252+00 podium 2021-01-26 10:04:33.252+00 0 31 37 LOAD {} 35 podium 2021-01-26 10:04:33.258+00 podium 2021-01-26 10:04:33.258+00 0 31 38 LOAD {} 36 podium 2021-01-26 10:04:33.265+00 podium 2021-01-26 10:04:33.265+00 0 31 39 LOAD {} 37 podium 2021-01-26 10:04:33.749+00 podium 2021-01-26 10:04:33.749+00 0 34 43 LOAD {} 38 podium 2021-01-26 10:04:33.75+00 podium 2021-01-26 10:04:33.75+00 0 38 41 LOAD {} 39 podium 2021-01-26 10:04:33.75+00 podium 2021-01-26 10:04:33.75+00 0 32 42 LOAD {} 40 podium 2021-01-26 10:04:33.751+00 podium 2021-01-26 10:04:33.751+00 0 36 46 LOAD {} 41 podium 2021-01-26 10:04:33.751+00 podium 2021-01-26 10:04:33.751+00 0 33 44 LOAD {} 42 podium 2021-01-26 10:04:33.752+00 podium 2021-01-26 10:04:33.752+00 0 37 40 LOAD {} 43 podium 2021-01-26 10:04:33.753+00 podium 2021-01-26 10:04:33.753+00 0 35 45 LOAD {} 44 podium 2021-01-26 10:04:33.753+00 podium 2021-01-26 10:04:33.753+00 0 39 47 LOAD {} 45 podium 2021-01-26 10:04:59.902+00 podium 2021-01-26 10:04:59.902+00 0 48 49 LOAD {} 46 podium 2021-01-26 10:04:59.91+00 podium 2021-01-26 10:04:59.91+00 0 48 50 LOAD {} 47 podium 2021-01-26 10:04:59.917+00 podium 2021-01-26 10:04:59.917+00 0 48 51 LOAD {} 48 podium 2021-01-26 10:04:59.924+00 podium 2021-01-26 10:04:59.924+00 0 48 52 LOAD {} 49 podium 2021-01-26 10:04:59.931+00 podium 2021-01-26 10:04:59.931+00 0 48 53 LOAD {} 50 podium 2021-01-26 10:04:59.938+00 podium 2021-01-26 10:04:59.938+00 0 48 54 LOAD {} 51 podium 2021-01-26 10:04:59.945+00 podium 2021-01-26 10:04:59.945+00 0 48 55 LOAD {} 52 podium 2021-01-26 10:04:59.95+00 podium 2021-01-26 10:04:59.95+00 0 48 56 LOAD {} 53 podium 2021-01-26 10:05:00.203+00 podium 2021-01-26 10:05:00.203+00 0 55 62 LOAD {} 54 podium 2021-01-26 10:05:00.204+00 podium 2021-01-26 10:05:00.204+00 0 49 58 LOAD {} 55 podium 2021-01-26 10:05:00.205+00 podium 2021-01-26 10:05:00.205+00 0 53 57 LOAD {} 56 podium 2021-01-26 10:05:00.205+00 podium 2021-01-26 10:05:00.205+00 0 54 61 LOAD {} 57 podium 2021-01-26 10:05:00.206+00 podium 2021-01-26 10:05:00.206+00 0 50 59 LOAD {} 58 podium 2021-01-26 10:05:00.207+00 podium 2021-01-26 10:05:00.207+00 0 51 64 LOAD {} 59 podium 2021-01-26 10:05:00.207+00 podium 2021-01-26 10:05:00.207+00 0 52 63 LOAD {} 60 podium 2021-01-26 10:05:00.208+00 podium 2021-01-26 10:05:00.208+00 0 56 60 LOAD {} 61 podium 2021-01-26 10:32:11.147+00 podium 2021-01-26 10:32:11.147+00 0 65 66 LOAD {} 62 podium 2021-01-26 10:32:11.155+00 podium 2021-01-26 10:32:11.155+00 0 65 67 LOAD {} 63 podium 2021-01-26 10:32:11.162+00 podium 2021-01-26 10:32:11.162+00 0 65 68 LOAD {} 64 podium 2021-01-26 10:32:11.167+00 podium 2021-01-26 10:32:11.167+00 0 65 69 LOAD {} 65 podium 2021-01-26 10:32:11.172+00 podium 2021-01-26 10:32:11.172+00 0 65 70 LOAD {} 66 podium 2021-01-26 10:32:11.177+00 podium 2021-01-26 10:32:11.177+00 0 65 71 LOAD {} 67 podium 2021-01-26 10:32:11.181+00 podium 2021-01-26 10:32:11.181+00 0 65 72 LOAD {} 68 podium 2021-01-26 10:32:11.348+00 podium 2021-01-26 10:32:11.348+00 0 71 74 LOAD {} 69 podium 2021-01-26 10:32:11.348+00 podium 2021-01-26 10:32:11.348+00 0 72 79 LOAD {} 70 podium 2021-01-26 10:32:11.349+00 podium 2021-01-26 10:32:11.349+00 0 67 77 LOAD {} 71 podium 2021-01-26 10:32:11.349+00 podium 2021-01-26 10:32:11.349+00 0 69 78 LOAD {} 72 podium 2021-01-26 10:32:11.349+00 podium 2021-01-26 10:32:11.349+00 0 68 73 LOAD {} 73 podium 2021-01-26 10:32:11.35+00 podium 2021-01-26 10:32:11.35+00 0 66 76 LOAD {} 74 podium 2021-01-26 10:32:11.35+00 podium 2021-01-26 10:32:11.35+00 0 70 75 LOAD {} 75 ANONYMOUS 2021-01-26 10:42:29.238+00 ANONYMOUS 2021-01-26 10:42:29.238+00 0 74 80 PREPARE_DATAFLOW {} 76 ANONYMOUS 2021-01-26 10:42:29.279+00 ANONYMOUS 2021-01-26 10:42:29.279+00 0 79 80 PREPARE_DATAFLOW {} 77 ANONYMOUS 2021-01-26 10:42:29.325+00 ANONYMOUS 2021-01-26 10:42:29.325+00 0 80 81 PREPARE_DATAFLOW {} 88 ANONYMOUS 2021-01-27 10:47:11.362+00 ANONYMOUS 2021-01-27 10:47:11.362+00 0 81 82 PREPARE_DATAFLOW {} 89 ANONYMOUS 2021-01-27 10:47:11.401+00 ANONYMOUS 2021-01-27 10:47:11.401+00 0 78 82 PREPARE_DATAFLOW {} 90 ANONYMOUS 2021-01-27 10:47:11.428+00 ANONYMOUS 2021-01-27 10:47:11.428+00 0 75 82 PREPARE_DATAFLOW {} 91 ANONYMOUS 2021-01-27 10:47:11.454+00 ANONYMOUS 2021-01-27 10:47:11.454+00 0 77 82 PREPARE_DATAFLOW {} 92 ANONYMOUS 2021-01-27 10:47:11.49+00 ANONYMOUS 2021-01-27 10:47:11.49+00 0 82 84 PREPARE_DATAFLOW {} 108 ANONYMOUS 2021-01-27 11:18:08.183+00 ANONYMOUS 2021-01-27 11:18:08.183+00 0 75 85 PREPARE_DATAFLOW {} 109 ANONYMOUS 2021-01-27 11:18:08.221+00 ANONYMOUS 2021-01-27 11:18:08.221+00 0 78 85 PREPARE_DATAFLOW {} 110 ANONYMOUS 2021-01-27 11:18:08.247+00 ANONYMOUS 2021-01-27 11:18:08.247+00 0 77 85 PREPARE_DATAFLOW {} 111 ANONYMOUS 2021-01-27 11:18:08.274+00 ANONYMOUS 2021-01-27 11:18:08.274+00 0 81 85 PREPARE_DATAFLOW {} 112 ANONYMOUS 2021-01-27 11:18:08.297+00 ANONYMOUS 2021-01-27 11:18:08.297+00 0 85 86 PREPARE_DATAFLOW {} 113 ANONYMOUS 2021-01-27 13:19:38.442+00 ANONYMOUS 2021-01-27 13:19:38.442+00 0 25 87 PREPARE_DATAFLOW {} 114 ANONYMOUS 2021-01-27 13:19:38.467+00 ANONYMOUS 2021-01-27 13:19:38.467+00 0 87 88 PREPARE_DATAFLOW {} 115 ANONYMOUS 2021-01-27 13:29:00.321+00 ANONYMOUS 2021-01-27 13:29:00.321+00 0 84 89 PREPARE_DATAFLOW {} 116 ANONYMOUS 2021-01-27 13:29:00.35+00 ANONYMOUS 2021-01-27 13:29:00.35+00 0 89 90 PREPARE_DATAFLOW {} 117 podium 2021-01-28 11:02:16.762+00 podium 2021-01-28 11:02:16.762+00 0 91 92 OTHER {} 118 podium 2021-01-28 11:02:54.97+00 podium 2021-01-28 11:02:54.97+00 0 92 93 OTHER {} 122 podium 2021-01-28 11:16:08.573+00 podium 2021-01-28 11:16:08.573+00 0 94 65 OTHER {} 123 podium 2021-01-28 11:17:00.814+00 podium 2021-01-28 11:17:00.814+00 0 93 94 OTHER {} \. -- -- Data for Name: pd_lineage_node; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_lineage_node (nid, sname, createdby, created_ttz, modifiedby, modified_ttz, version, external_type, external_id, json_metadata) FROM stdin; 16 classic-models-errors podium 2021-01-26 10:03:16.072+00 podium 2021-01-26 10:03:16.072+00 0 SOURCE 4 {"subtype":"JDBC_SOURCE"} 17 salesorders podium 2021-01-26 10:03:16.076+00 podium 2021-01-26 10:03:16.076+00 0 ENTITY 15 {"subtype":"EXTERNAL"} 18 products podium 2021-01-26 10:03:16.085+00 podium 2021-01-26 10:03:16.085+00 0 ENTITY 16 {"subtype":"EXTERNAL"} 19 offices podium 2021-01-26 10:03:16.093+00 podium 2021-01-26 10:03:16.093+00 0 ENTITY 17 {"subtype":"EXTERNAL"} 20 payments podium 2021-01-26 10:03:16.102+00 podium 2021-01-26 10:03:16.102+00 0 ENTITY 18 {"subtype":"EXTERNAL"} 21 employees podium 2021-01-26 10:03:16.11+00 podium 2021-01-26 10:03:16.11+00 0 ENTITY 19 {"subtype":"EXTERNAL"} 22 productlines podium 2021-01-26 10:03:16.118+00 podium 2021-01-26 10:03:16.118+00 0 ENTITY 20 {"subtype":"EXTERNAL"} 23 customers podium 2021-01-26 10:03:16.127+00 podium 2021-01-26 10:03:16.127+00 0 ENTITY 21 {"subtype":"EXTERNAL"} 24 offices podium 2021-01-26 10:03:16.398+00 podium 2021-01-26 10:03:16.398+00 0 ENTITY 23 {"subtype":"INTERNAL"} 25 employees podium 2021-01-26 10:03:16.398+00 podium 2021-01-26 10:03:16.398+00 0 ENTITY 22 {"subtype":"INTERNAL"} 26 salesorders podium 2021-01-26 10:03:16.399+00 podium 2021-01-26 10:03:16.399+00 0 ENTITY 26 {"subtype":"INTERNAL"} 27 customers podium 2021-01-26 10:03:16.399+00 podium 2021-01-26 10:03:16.399+00 0 ENTITY 25 {"subtype":"INTERNAL"} 28 productlines podium 2021-01-26 10:03:16.401+00 podium 2021-01-26 10:03:16.401+00 0 ENTITY 24 {"subtype":"INTERNAL"} 29 products podium 2021-01-26 10:03:16.402+00 podium 2021-01-26 10:03:16.402+00 0 ENTITY 27 {"subtype":"INTERNAL"} 30 payments podium 2021-01-26 10:03:16.402+00 podium 2021-01-26 10:03:16.402+00 0 ENTITY 28 {"subtype":"INTERNAL"} 31 sales podium 2021-01-26 10:04:33.214+00 podium 2021-01-26 10:04:33.214+00 0 SOURCE 6 {"subtype":"JDBC_SOURCE"} 32 orders podium 2021-01-26 10:04:33.216+00 podium 2021-01-26 10:04:33.216+00 0 ENTITY 29 {"subtype":"EXTERNAL"} 33 employees podium 2021-01-26 10:04:33.223+00 podium 2021-01-26 10:04:33.223+00 0 ENTITY 30 {"subtype":"EXTERNAL"} 34 order_details podium 2021-01-26 10:04:33.23+00 podium 2021-01-26 10:04:33.23+00 0 ENTITY 31 {"subtype":"EXTERNAL"} 35 shippers podium 2021-01-26 10:04:33.237+00 podium 2021-01-26 10:04:33.237+00 0 ENTITY 32 {"subtype":"EXTERNAL"} 36 products podium 2021-01-26 10:04:33.244+00 podium 2021-01-26 10:04:33.244+00 0 ENTITY 33 {"subtype":"EXTERNAL"} 37 categories podium 2021-01-26 10:04:33.25+00 podium 2021-01-26 10:04:33.25+00 0 ENTITY 34 {"subtype":"EXTERNAL"} 38 customers podium 2021-01-26 10:04:33.256+00 podium 2021-01-26 10:04:33.256+00 0 ENTITY 35 {"subtype":"EXTERNAL"} 39 suppliers podium 2021-01-26 10:04:33.263+00 podium 2021-01-26 10:04:33.263+00 0 ENTITY 36 {"subtype":"EXTERNAL"} 40 categories podium 2021-01-26 10:04:33.743+00 podium 2021-01-26 10:04:33.743+00 0 ENTITY 38 {"subtype":"INTERNAL"} 41 customers podium 2021-01-26 10:04:33.744+00 podium 2021-01-26 10:04:33.744+00 0 ENTITY 42 {"subtype":"INTERNAL"} 42 orders podium 2021-01-26 10:04:33.744+00 podium 2021-01-26 10:04:33.744+00 0 ENTITY 37 {"subtype":"INTERNAL"} 43 order_details podium 2021-01-26 10:04:33.745+00 podium 2021-01-26 10:04:33.745+00 0 ENTITY 43 {"subtype":"INTERNAL"} 44 employees podium 2021-01-26 10:04:33.746+00 podium 2021-01-26 10:04:33.746+00 0 ENTITY 40 {"subtype":"INTERNAL"} 45 shippers podium 2021-01-26 10:04:33.746+00 podium 2021-01-26 10:04:33.746+00 0 ENTITY 44 {"subtype":"INTERNAL"} 46 products podium 2021-01-26 10:04:33.747+00 podium 2021-01-26 10:04:33.747+00 0 ENTITY 39 {"subtype":"INTERNAL"} 47 suppliers podium 2021-01-26 10:04:33.747+00 podium 2021-01-26 10:04:33.747+00 0 ENTITY 41 {"subtype":"INTERNAL"} 48 sales-errors podium 2021-01-26 10:04:59.898+00 podium 2021-01-26 10:04:59.898+00 0 SOURCE 8 {"subtype":"JDBC_SOURCE"} 49 shippers podium 2021-01-26 10:04:59.9+00 podium 2021-01-26 10:04:59.9+00 0 ENTITY 45 {"subtype":"EXTERNAL"} 50 categories podium 2021-01-26 10:04:59.907+00 podium 2021-01-26 10:04:59.907+00 0 ENTITY 46 {"subtype":"EXTERNAL"} 51 order_details podium 2021-01-26 10:04:59.915+00 podium 2021-01-26 10:04:59.915+00 0 ENTITY 47 {"subtype":"EXTERNAL"} 52 products podium 2021-01-26 10:04:59.922+00 podium 2021-01-26 10:04:59.922+00 0 ENTITY 48 {"subtype":"EXTERNAL"} 53 orders podium 2021-01-26 10:04:59.929+00 podium 2021-01-26 10:04:59.929+00 0 ENTITY 49 {"subtype":"EXTERNAL"} 54 customers podium 2021-01-26 10:04:59.936+00 podium 2021-01-26 10:04:59.936+00 0 ENTITY 50 {"subtype":"EXTERNAL"} 55 employees podium 2021-01-26 10:04:59.943+00 podium 2021-01-26 10:04:59.943+00 0 ENTITY 51 {"subtype":"EXTERNAL"} 56 suppliers podium 2021-01-26 10:04:59.949+00 podium 2021-01-26 10:04:59.949+00 0 ENTITY 52 {"subtype":"EXTERNAL"} 57 orders podium 2021-01-26 10:05:00.197+00 podium 2021-01-26 10:05:00.197+00 0 ENTITY 56 {"subtype":"INTERNAL"} 58 shippers podium 2021-01-26 10:05:00.197+00 podium 2021-01-26 10:05:00.197+00 0 ENTITY 57 {"subtype":"INTERNAL"} 59 categories podium 2021-01-26 10:05:00.198+00 podium 2021-01-26 10:05:00.198+00 0 ENTITY 54 {"subtype":"INTERNAL"} 60 suppliers podium 2021-01-26 10:05:00.198+00 podium 2021-01-26 10:05:00.198+00 0 ENTITY 58 {"subtype":"INTERNAL"} 61 customers podium 2021-01-26 10:05:00.199+00 podium 2021-01-26 10:05:00.199+00 0 ENTITY 55 {"subtype":"INTERNAL"} 62 employees podium 2021-01-26 10:05:00.199+00 podium 2021-01-26 10:05:00.199+00 0 ENTITY 59 {"subtype":"INTERNAL"} 63 products podium 2021-01-26 10:05:00.2+00 podium 2021-01-26 10:05:00.2+00 0 ENTITY 53 {"subtype":"INTERNAL"} 64 order_details podium 2021-01-26 10:05:00.2+00 podium 2021-01-26 10:05:00.2+00 0 ENTITY 60 {"subtype":"INTERNAL"} 65 classic-models podium 2021-01-26 10:32:11.142+00 podium 2021-01-26 10:32:11.142+00 0 SOURCE 10 {"subtype":"JDBC_SOURCE"} 66 payments podium 2021-01-26 10:32:11.145+00 podium 2021-01-26 10:32:11.145+00 0 ENTITY 61 {"subtype":"EXTERNAL"} 67 employees podium 2021-01-26 10:32:11.153+00 podium 2021-01-26 10:32:11.153+00 0 ENTITY 62 {"subtype":"EXTERNAL"} 68 offices podium 2021-01-26 10:32:11.16+00 podium 2021-01-26 10:32:11.16+00 0 ENTITY 63 {"subtype":"EXTERNAL"} 69 customers podium 2021-01-26 10:32:11.165+00 podium 2021-01-26 10:32:11.165+00 0 ENTITY 64 {"subtype":"EXTERNAL"} 70 salesorders podium 2021-01-26 10:32:11.17+00 podium 2021-01-26 10:32:11.17+00 0 ENTITY 65 {"subtype":"EXTERNAL"} 71 products podium 2021-01-26 10:32:11.175+00 podium 2021-01-26 10:32:11.175+00 0 ENTITY 66 {"subtype":"EXTERNAL"} 72 productlines podium 2021-01-26 10:32:11.18+00 podium 2021-01-26 10:32:11.18+00 0 ENTITY 67 {"subtype":"EXTERNAL"} 73 offices podium 2021-01-26 10:32:11.344+00 podium 2021-01-26 10:32:11.344+00 0 ENTITY 68 {"subtype":"INTERNAL"} 74 products podium 2021-01-26 10:32:11.345+00 podium 2021-01-26 10:32:11.345+00 0 ENTITY 72 {"subtype":"INTERNAL"} 75 salesorders podium 2021-01-26 10:32:11.345+00 podium 2021-01-26 10:32:11.345+00 0 ENTITY 70 {"subtype":"INTERNAL"} 76 payments podium 2021-01-26 10:32:11.345+00 podium 2021-01-26 10:32:11.345+00 0 ENTITY 74 {"subtype":"INTERNAL"} 77 employees podium 2021-01-26 10:32:11.346+00 podium 2021-01-26 10:32:11.346+00 0 ENTITY 71 {"subtype":"INTERNAL"} 78 customers podium 2021-01-26 10:32:11.346+00 podium 2021-01-26 10:32:11.346+00 0 ENTITY 69 {"subtype":"INTERNAL"} 79 productlines podium 2021-01-26 10:32:11.347+00 podium 2021-01-26 10:32:11.347+00 0 ENTITY 73 {"subtype":"INTERNAL"} 80 classicmodels_products_full ANONYMOUS 2021-01-26 10:42:29.197+00 ANONYMOUS 2021-01-26 10:42:29.197+00 0 DATAFLOW 3000 {} 81 products_full ANONYMOUS 2021-01-26 10:42:29.312+00 ANONYMOUS 2021-01-26 10:42:29.312+00 0 ENTITY 75 {"subtype":"PREPARE_TARGET"} 82 classicmodels_salesorders_full ANONYMOUS 2021-01-27 10:16:04.699+00 podium 2021-01-27 10:19:40.576+00 1 DATAFLOW 3006 {} 84 salesorders_full ANONYMOUS 2021-01-27 10:47:11.478+00 ANONYMOUS 2021-01-27 10:47:11.478+00 0 ENTITY 77 {"subtype":"PREPARE_TARGET"} 85 classicmodels_salesorders_full_mask ANONYMOUS 2021-01-27 11:08:35.501+00 ANONYMOUS 2021-01-27 11:08:35.501+00 0 DATAFLOW 3019 {} 86 sales_full_masked ANONYMOUS 2021-01-27 11:08:35.635+00 ANONYMOUS 2021-01-27 11:08:35.635+00 0 ENTITY 79 {"subtype":"PREPARE_TARGET"} 87 classicmodels_errors_employees_ugly ANONYMOUS 2021-01-27 13:19:38.388+00 ANONYMOUS 2021-01-27 13:19:38.388+00 0 DATAFLOW 3032 {} 88 employees_ugly ANONYMOUS 2021-01-27 13:19:38.458+00 ANONYMOUS 2021-01-27 13:19:38.458+00 0 ENTITY 80 {"subtype":"PREPARE_TARGET"} 89 classicmodels_salesorders_aggregated ANONYMOUS 2021-01-27 13:29:00.288+00 ANONYMOUS 2021-01-27 13:29:00.288+00 0 DATAFLOW 3036 {} 90 salesorder_by_customer_productscale ANONYMOUS 2021-01-27 13:29:00.343+00 ANONYMOUS 2021-01-27 13:29:00.343+00 0 ENTITY 81 {"subtype":"PREPARE_TARGET"} 91 SAP R/3 podium 2021-01-28 10:53:01.318+00 podium 2021-01-28 10:53:01.318+00 0 OTHER sap-r3-source {"icon":"SAP_2011_logo_res.svg","sapName":"foo","sapAddress":"bar"} 92 Qlik Replicate podium 2021-01-28 10:56:52.364+00 podium 2021-01-28 10:56:52.364+00 0 OTHER qlik-replicate-00 {"icon":"replicate_icon.svg"} 93 Qlik Compose 4 DW podium 2021-01-28 11:00:19.021+00 podium 2021-01-28 11:00:19.021+00 0 OTHER qlik-compose-00 {"icon":"qlik-vector-logo_res.svg"} 94 Snowflake Datawarehouse podium 2021-01-28 11:12:57.15+00 podium 2021-01-28 11:12:57.15+00 0 OTHER snowflake-00 {"icon":"Snowflake_Logo_res.svg"} \. -- -- Data for Name: pd_maintenance_workorder; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_maintenance_workorder (nid, delivery_time, start_time, end_time, order_size, record_count, workorder_status, delivery_id, status_log, detailed_status_log, created_ttz, modified_ttz, version, actor_name, modifiedby, createdby) FROM stdin; 1 2020-11-13 17:35:01.157+00 2020-11-13 17:35:01.213+00 2020-11-13 17:35:01.214+00 -1 0 FINISHED \N 2020-11-13 17:35:01.213: Starting job: Maintenance Job\n2020-11-13 17:35:01.214: Finished job: Maintenance Job\n2020-11-13 17:35:01.277: Watching for process completion/termination.\n \N 2020-11-13 17:35:01.176+00 2020-11-13 17:35:01.281+00 2 qdc ANONYMOUS ANONYMOUS 2 2020-11-16 12:02:01.217+00 2020-11-16 12:02:01.272+00 2020-11-16 12:02:01.273+00 -1 0 FINISHED \N 2020-11-16 12:02:01.272: Starting job: Maintenance Job\n2020-11-16 12:02:01.272: Finished job: Maintenance Job\n2020-11-16 12:02:01.295: Watching for process completion/termination.\n \N 2020-11-16 12:02:01.226+00 2020-11-16 12:02:01.303+00 2 qdc ANONYMOUS ANONYMOUS 3 2021-01-26 09:45:01.279+00 2021-01-26 09:45:01.361+00 2021-01-26 09:45:01.362+00 -1 0 FINISHED \N 2021-01-26 09:45:01.361: Starting job: Maintenance Job\n2021-01-26 09:45:01.362: Finished job: Maintenance Job\n2021-01-26 09:45:01.366: Watching for process completion/termination.\n \N 2021-01-26 09:45:01.289+00 2021-01-26 09:45:01.371+00 1 qdc ANONYMOUS ANONYMOUS 4 2021-01-27 03:00:01.039+00 2021-01-27 03:00:01.049+00 2021-01-27 03:00:01.049+00 -1 0 FINISHED \N 2021-01-27 03:00:01.049: Starting job: Maintenance Job\n2021-01-27 03:00:01.049: Finished job: Maintenance Job\n2021-01-27 03:00:01.060: Watching for process completion/termination.\n \N 2021-01-27 03:00:01.04+00 2021-01-27 03:00:01.061+00 2 qdc ANONYMOUS ANONYMOUS 5 2021-01-28 03:00:01.035+00 2021-01-28 03:00:01.127+00 2021-01-28 03:00:01.127+00 -1 0 FINISHED \N 2021-01-28 03:00:01.127: Starting job: Maintenance Job\n2021-01-28 03:00:01.127: Finished job: Maintenance Job\n2021-01-28 03:00:01.129: Watching for process completion/termination.\n \N 2021-01-28 03:00:01.044+00 2021-01-28 03:00:01.131+00 1 qdc ANONYMOUS ANONYMOUS \. -- -- Data for Name: pd_maintenance_workorder_prop; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_maintenance_workorder_prop (nid, workorder_nid, prop_name, prop_value, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 1 1 maintenance.info.tasks 2020-11-13 17:35:01.185+00 2020-11-13 17:35:01.185+00 0 ANONYMOUS ANONYMOUS 2 1 schedule.type Custom Schedule 2020-11-13 17:35:01.191+00 2020-11-13 17:35:01.191+00 0 ANONYMOUS ANONYMOUS 3 1 last_run_at 1605288812796 2020-11-13 17:35:01.193+00 2020-11-13 17:35:01.193+00 0 ANONYMOUS ANONYMOUS 4 1 created_by \N 2020-11-13 17:35:01.196+00 2020-11-13 17:35:01.196+00 0 ANONYMOUS ANONYMOUS 5 2 maintenance.info.tasks 2020-11-16 12:02:01.236+00 2020-11-16 12:02:01.236+00 0 ANONYMOUS ANONYMOUS 6 2 schedule.type Custom Schedule 2020-11-16 12:02:01.253+00 2020-11-16 12:02:01.253+00 0 ANONYMOUS ANONYMOUS 7 2 last_run_at 1605288901000 2020-11-16 12:02:01.256+00 2020-11-16 12:02:01.256+00 0 ANONYMOUS ANONYMOUS 8 2 created_by \N 2020-11-16 12:02:01.258+00 2020-11-16 12:02:01.258+00 0 ANONYMOUS ANONYMOUS 9 3 maintenance.info.tasks 2021-01-26 09:45:01.314+00 2021-01-26 09:45:01.314+00 0 ANONYMOUS ANONYMOUS 10 3 created_by \N 2021-01-26 09:45:01.34+00 2021-01-26 09:45:01.34+00 0 ANONYMOUS ANONYMOUS 11 3 schedule.type Custom Schedule 2021-01-26 09:45:01.344+00 2021-01-26 09:45:01.344+00 0 ANONYMOUS ANONYMOUS 12 3 last_run_at 1605528121001 2021-01-26 09:45:01.349+00 2021-01-26 09:45:01.349+00 0 ANONYMOUS ANONYMOUS 13 4 schedule.type Custom Schedule 2021-01-27 03:00:01.041+00 2021-01-27 03:00:01.041+00 0 ANONYMOUS ANONYMOUS 14 4 maintenance.info.tasks 2021-01-27 03:00:01.042+00 2021-01-27 03:00:01.042+00 0 ANONYMOUS ANONYMOUS 15 4 last_run_at 1611654301001 2021-01-27 03:00:01.043+00 2021-01-27 03:00:01.043+00 0 ANONYMOUS ANONYMOUS 16 4 created_by \N 2021-01-27 03:00:01.044+00 2021-01-27 03:00:01.044+00 0 ANONYMOUS ANONYMOUS 17 5 created_by \N 2021-01-28 03:00:01.05+00 2021-01-28 03:00:01.05+00 0 ANONYMOUS ANONYMOUS 18 5 schedule.type Custom Schedule 2021-01-28 03:00:01.052+00 2021-01-28 03:00:01.052+00 0 ANONYMOUS ANONYMOUS 19 5 maintenance.info.tasks 2021-01-28 03:00:01.053+00 2021-01-28 03:00:01.053+00 0 ANONYMOUS ANONYMOUS 20 5 last_run_at 1611716401000 2021-01-28 03:00:01.054+00 2021-01-28 03:00:01.054+00 0 ANONYMOUS ANONYMOUS \. -- -- Data for Name: pd_metric_category; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_metric_category (nid, sname, description, createdby, created_ttz, modifiedby, modified_ttz, version) FROM stdin; 1 QDC This metric category is used for all QDC entities. podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 2 QVD This metric category is used for QVDs. podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 3 QVD_CATALOG This metric category is used for QVD_CATALOG_TRIAL and QVD_CATALOG_UNRESTRICTED license. podium 2020-11-13 17:33:42.031635+00 podium 2020-11-13 17:33:42.031635+00 0 \. -- -- Data for Name: pd_metric_category_definition; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_metric_category_definition (nid, metric_category_nid, metric_definition_nid, createdby, created_ttz, modifiedby, modified_ttz, version) FROM stdin; 1 1 1 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 2 1 2 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 3 1 3 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 4 1 4 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 5 1 5 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 6 1 6 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 7 1 7 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 8 1 8 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 9 1 9 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 10 1 10 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 11 1 11 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 12 1 12 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 13 1 13 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 14 1 14 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 15 1 15 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 16 1 16 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 17 1 17 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 18 1 18 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 19 1 19 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 20 1 20 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 21 1 21 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 22 1 22 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 23 1 23 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 24 1 24 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 25 1 25 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 26 1 26 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 27 1 27 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 28 1 28 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 29 1 29 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 30 1 30 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 31 1 31 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 32 1 32 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 33 1 33 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 34 1 34 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 35 1 35 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 36 1 36 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 37 1 37 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 38 1 38 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 39 1 39 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 40 1 40 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 41 1 41 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 42 1 42 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 43 1 43 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 44 1 44 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 45 1 45 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 46 1 46 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 47 1 47 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 48 2 11 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 49 2 13 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 50 2 17 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 51 2 31 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 52 2 32 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 53 2 33 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 54 2 34 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 55 2 38 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 56 2 48 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 57 2 49 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 58 2 50 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 59 2 51 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 60 2 52 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 61 2 53 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 62 2 54 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 63 2 55 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 64 2 56 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 65 2 57 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 66 2 58 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 67 2 59 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 68 2 60 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 69 2 61 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 70 2 62 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 71 2 63 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 72 2 64 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 73 2 65 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 74 2 66 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 75 2 67 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 76 2 68 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 77 2 69 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 78 2 70 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 79 2 71 podium 2020-11-13 17:33:41.356944+00 podium 2020-11-13 17:33:41.356944+00 0 80 2 18 podium 2020-11-13 17:33:41.580475+00 podium 2020-11-13 17:33:41.580475+00 0 81 2 19 podium 2020-11-13 17:33:41.580475+00 podium 2020-11-13 17:33:41.580475+00 0 82 2 20 podium 2020-11-13 17:33:41.580475+00 podium 2020-11-13 17:33:41.580475+00 0 83 2 39 podium 2020-11-13 17:33:41.580475+00 podium 2020-11-13 17:33:41.580475+00 0 \. -- -- Data for Name: pd_metric_definition; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_metric_definition (nid, sname, class_name, argument_str, metric_rank, is_enabled, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby) FROM stdin; 5 TOTAL_ENTITIES com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_entity" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 6 TOTAL_EXTERNAL_ENTITIES com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_entity WHERE entity_type = 'EXTERNAL'" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 7 TOTAL_INTERNAL_ENTITIES com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_entity WHERE entity_type = 'INTERNAL'" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 8 TOTAL_PREPARE_TARGETS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_entity WHERE entity_type = 'PREPARE_TARGET'" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 9 TOTAL_EXPLORE_TARGETS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_entity WHERE entity_type = 'USER'" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 11 ENTITY_TAGS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_entity_tag WHERE entity_nid IN (:externalEntityId, :internalEntityId)" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 13 ENTITY_COMMENTS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_field_biz_def WHERE field_nid IN (SELECT nid FROM podium_core.pd_field WHERE entity_nid IN (:externalEntityId, :internalEntityId))" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 15 ENTITY_DATAFLOWS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(DISTINCT bundle_nid) FROM podium_core.pd_prep_package WHERE package_type IN ('LOADER', 'STORE') AND entity_id = :internalEntityId" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 17 ENTITY_PUBLISH_JOBS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_publish WHERE dataset_nid IN (SELECT dataset_nid FROM podium_core.pd_dataset_entity WHERE entity_nid = :internalEntityId)" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 22 PERCENT_FINISHED_LOADS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "FINISHED_LOADS / ALL_LOADS" 1001 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 25 AVERAGE_TAGS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "TOTAL_TAGS / TOTAL_PODIUM_ENTITIES" 1001 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 26 AVERAGE_COMMENTS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "TOTAL_COMMENTS / TOTAL_PODIUM_ENTITIES" 1001 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 27 AVERAGE_DATAFLOWS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "TOTAL_DATAFLOWS / TOTAL_PODIUM_ENTITIES" 1001 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 28 AVERAGE_PUBLISH_JOBS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "TOTAL_PUBLISH_JOBS / TOTAL_PODIUM_ENTITIES" 1001 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 29 LOAD_PERIOD com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "LAST_FINISHED_LOAD - FIRST_FINISHED_LOAD" 1001 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 10 TOTAL_TAGS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(DISTINCT et.nid) FROM podium_core.pd_entity_tag et, podium_core.pd_entity e, podium_core.pd_source s WHERE et.entity_nid = e.nid AND s.nid = e.source_nid AND ((e.entity_sub_type IS NULL OR e.entity_sub_type != 'QVD') AND s.source_type != 'QVD')" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 20 GOOD_RECORDS com.nvs.core.service.metrics.impl.RecordCountMetricsCalculator --directory good 101 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.511139+00 2 podium podium 18 BAD_RECORDS com.nvs.core.service.metrics.impl.RecordCountMetricsCalculator --directory bad 101 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.511139+00 2 podium podium 19 UGLY_RECORDS com.nvs.core.service.metrics.impl.RecordCountMetricsCalculator --directory ugly 101 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.511139+00 2 podium podium 1 ALL_DATA_LOADS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_workorder WHERE entity_nid = :externalEntityId AND delivery_time > :startTime AND delivery_time <= :endTime" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.527025+00 2 podium podium 2 FINISHED_DATA_LOADS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_workorder WHERE entity_nid = :externalEntityId AND workorder_status IN ('FINISHED', 'RUNNING') AND delivery_time > :startTime AND delivery_time <= :endTime" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.527025+00 2 podium podium 12 TOTAL_COMMENTS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(DISTINCT fbd.nid) FROM podium_core.pd_field_biz_def fbd, podium_core.pd_field f, podium_core.pd_entity e, podium_core.pd_source s WHERE fbd.field_nid = f.nid AND f.entity_nid = e.nid AND s.nid = e.source_nid AND ((e.entity_sub_type IS NULL OR e.entity_sub_type != 'QVD') AND s.source_type != 'QVD')" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 16 TOTAL_PUBLISH_JOBS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT count(DISTINCT p.nid) FROM podium_core.pd_publish p, podium_core.pd_dataset d, podium_core.pd_dataset_entity de, podium_core.pd_entity e WHERE p.dataset_nid = d.nid AND de.dataset_nid = d.nid AND de.entity_nid = e.nid AND (e.entity_sub_type IS NULL OR e.entity_sub_type != 'QVD')" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 23 PERCENT_BAD_RECORDS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "(BAD_RECORDS == 0.0) ? 0.0 : BAD_RECORDS / TOTAL_RECORDS" 1001 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:42.700733+00 0 podium podium 24 PERCENT_UGLY_RECORDS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "(UGLY_RECORDS == 0.0) ? 0.0 : UGLY_RECORDS / TOTAL_RECORDS" 1001 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:42.700733+00 0 podium podium 21 TOTAL_PODIUM_ENTITIES com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "TOTAL_INTERNAL_ENTITIES + TOTAL_PREPARE_TARGETS + TOTAL_EXPLORE_TARGETS" 1000 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 31 NORMALIZED_TAGS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "Math.min(1, 0.5 + ((ENTITY_TAGS - AVERAGE_TAGS) / AVERAGE_TAGS) * 0.5)" 2001 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 32 NORMALIZED_COMMENTS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "Math.min(1, 0.5 + ((ENTITY_COMMENTS - AVERAGE_COMMENTS) / AVERAGE_COMMENTS) * 0.5)" 2001 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 33 NORMALIZED_DATAFLOWS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "Math.min(1, 0.5 + ((ENTITY_DATAFLOWS - AVERAGE_DATAFLOWS) / AVERAGE_DATAFLOWS) * 0.5)" 2001 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 34 NORMALIZED_PUBLISH_JOBS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "Math.min(1, 0.5 + ((ENTITY_PUBLISH_JOBS - AVERAGE_PUBLISH_JOBS) / AVERAGE_PUBLISH_JOBS) * 0.5)" 2001 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 35 HDFS_SIZE_BYTES com.nvs.core.service.metrics.impl.HdfsSizeMetricsCalculator 1 t \N 2020-11-13 17:33:39.39953+00 \N 2020-11-13 17:33:39.39953+00 0 podium podium 36 COMPLEMENT_PERCENT_BAD_RECORDS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "1.0 - PERCENT_BAD_RECORDS" 1002 t \N 2020-11-13 17:33:39.39953+00 \N 2020-11-13 17:33:39.39953+00 0 podium podium 37 COMPLEMENT_PERCENT_UGLY_RECORDS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "1.0 - PERCENT_UGLY_RECORDS" 1002 t \N 2020-11-13 17:33:39.39953+00 \N 2020-11-13 17:33:39.39953+00 0 podium podium 38 NUMBER_OF_FIELDS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_field WHERE entity_nid = :internalEntityId" 1 t \N 2020-11-13 17:33:39.443926+00 \N 2020-11-13 17:33:39.443926+00 0 podium podium 39 TOTAL_RECORDS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "GOOD_RECORDS + BAD_RECORDS + UGLY_RECORDS" 1000 t \N 2020-11-13 17:33:39.443926+00 \N 2020-11-13 17:33:39.443926+00 0 podium podium 3 FIRST_FINISHED_DATA_LOAD com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT extract(epoch from min(delivery_time)) * 1000 FROM podium_core.pd_workorder WHERE entity_nid = :externalEntityId AND workorder_status IN ('FINISHED', 'RUNNING') AND delivery_time > :startTime AND delivery_time <= :endTime" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.527025+00 2 podium podium 4 LAST_FINISHED_DATA_LOAD com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT extract(epoch from max(delivery_time)) * 1000 FROM podium_core.pd_workorder WHERE entity_nid = :externalEntityId AND workorder_status IN ('FINISHED', 'RUNNING') AND delivery_time > :startTime AND delivery_time <= :endTime" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.527025+00 2 podium podium 40 ALL_PREPARE_LOADS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_prepare_execution_workorder WHERE bundle_nid IN (SELECT bundle_nid FROM podium_core.pd_prep_package WHERE package_type = 'STORE' AND entity_id = :internalEntityId) AND delivery_time > :startTime AND delivery_time <= :endTime" 1 t \N 2020-11-13 17:33:39.527025+00 \N 2020-11-13 17:33:39.527025+00 0 podium podium 41 FINISHED_PREPARE_LOADS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_prepare_execution_workorder WHERE bundle_nid IN (SELECT bundle_nid FROM podium_core.pd_prep_package WHERE package_type = 'STORE' AND entity_id = :internalEntityId) AND workorder_status IN ('FINISHED', 'RUNNING') AND delivery_time > :startTime AND delivery_time <= :endTime" 1 t \N 2020-11-13 17:33:39.527025+00 \N 2020-11-13 17:33:39.527025+00 0 podium podium 42 FIRST_FINISHED_PREPARE_LOAD com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT extract(epoch from min(delivery_time)) * 1000 FROM podium_core.pd_prepare_execution_workorder WHERE bundle_nid IN (SELECT bundle_nid FROM podium_core.pd_prep_package WHERE package_type = 'STORE' AND entity_id = :internalEntityId) AND workorder_status IN ('FINISHED', 'RUNNING') AND delivery_time > :startTime AND delivery_time <= :endTime" 1 t \N 2020-11-13 17:33:39.527025+00 \N 2020-11-13 17:33:39.527025+00 0 podium podium 43 LAST_FINISHED_PREPARE_LOAD com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT extract(epoch from max(delivery_time)) * 1000 FROM podium_core.pd_prepare_execution_workorder WHERE bundle_nid IN (SELECT bundle_nid FROM podium_core.pd_prep_package WHERE package_type = 'STORE' AND entity_id = :internalEntityId) AND workorder_status IN ('FINISHED', 'RUNNING') AND delivery_time > :startTime AND delivery_time <= :endTime" 1 t \N 2020-11-13 17:33:39.527025+00 \N 2020-11-13 17:33:39.527025+00 0 podium podium 44 ALL_LOADS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "ALL_DATA_LOADS + ALL_PREPARE_LOADS" 1000 t \N 2020-11-13 17:33:39.527025+00 \N 2020-11-13 17:33:39.527025+00 0 podium podium 45 FINISHED_LOADS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "FINISHED_DATA_LOADS + FINISHED_PREPARE_LOADS" 1000 t \N 2020-11-13 17:33:39.527025+00 \N 2020-11-13 17:33:39.527025+00 0 podium podium 30 RECENCY com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "((System.currentTimeMillis() - LAST_FINISHED_LOAD) < (LOAD_PERIOD / FINISHED_LOADS))? 1 : 0" 2001 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 46 FIRST_FINISHED_LOAD com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "Math.max(FIRST_FINISHED_DATA_LOAD, FIRST_FINISHED_PREPARE_LOAD)" 1000 t \N 2020-11-13 17:33:39.527025+00 \N 2020-11-13 17:33:39.527025+00 0 podium podium 47 LAST_FINISHED_LOAD com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "Math.max(LAST_FINISHED_DATA_LOAD, LAST_FINISHED_PREPARE_LOAD)" 1000 t \N 2020-11-13 17:33:39.527025+00 \N 2020-11-13 17:33:39.527025+00 0 podium podium 14 TOTAL_DATAFLOWS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(DISTINCT bundle_nid) FROM podium_core.pd_prep_package pp, podium_core.pd_entity e WHERE pp.entity_id = e.nid AND pp.package_type IN ('LOADER', 'STORE') AND (e.entity_sub_type IS NULL OR e.entity_sub_type != 'QVD')" 1 t \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 48 TOTAL_QVD_ENTITIES com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(1) FROM podium_core.pd_entity WHERE entity_sub_type = 'QVD'" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 49 TOTAL_TAGS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(DISTINCT et.nid) FROM podium_core.pd_entity_tag et, podium_core.pd_entity e, podium_core.pd_source s WHERE et.entity_nid = e.nid AND s.nid = e.source_nid AND (e.entity_sub_type = 'QVD' OR s.source_type = 'QVD')" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 50 TOTAL_COMMENTS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(DISTINCT fbd.nid) FROM podium_core.pd_field_biz_def fbd, podium_core.pd_field f, podium_core.pd_entity e, podium_core.pd_source s WHERE fbd.field_nid = f.nid AND f.entity_nid = e.nid AND s.nid = e.source_nid AND (e.entity_sub_type = 'QVD' OR s.source_type = 'QVD')" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 51 TOTAL_PUBLISH_JOBS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT count(DISTINCT p.nid) FROM podium_core.pd_publish p, podium_core.pd_dataset d, podium_core.pd_dataset_entity de, podium_core.pd_entity e WHERE p.dataset_nid = d.nid AND de.dataset_nid = d.nid AND de.entity_nid = e.nid AND e.entity_sub_type = 'QVD'" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 52 TOTAL_DATAFLOWS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(DISTINCT bundle_nid) FROM podium_core.pd_prep_package pp, podium_core.pd_entity e WHERE pp.entity_id = e.nid AND pp.package_type IN ('LOADER') AND e.entity_sub_type = 'QVD'" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 53 ENTITY_DATAFLOWS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT COUNT(DISTINCT bundle_nid) FROM podium_core.pd_prep_package WHERE package_type IN ('LOADER') AND entity_id = :internalEntityId" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 54 AVERAGE_TAGS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "TOTAL_TAGS / TOTAL_QVD_ENTITIES" 1001 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 55 AVERAGE_COMMENTS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "TOTAL_COMMENTS / TOTAL_QVD_ENTITIES" 1001 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 56 AVERAGE_PUBLISH_JOBS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "TOTAL_PUBLISH_JOBS / TOTAL_QVD_ENTITIES" 1001 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 57 AVERAGE_DATAFLOWS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "TOTAL_DATAFLOWS / TOTAL_QVD_ENTITIES" 1001 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 58 QVD_FILE_SIZE com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT prop_value FROM podium_core.pd_prop_setting WHERE prop_def_nid = (SELECT nid FROM podium_core.pd_prop_definition WHERE sname = 'qvd.file.entity.filesize') AND parent_class = 'com.nvs.core.model.meta.DataEntity' AND parent_nid IN (:externalEntityId)" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 61 QVD_RECORDS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT prop_value FROM podium_core.pd_prop_setting WHERE prop_def_nid = (SELECT nid FROM podium_core.pd_prop_definition WHERE sname = 'qvd.header.entity.NoOfRecords') AND parent_class = 'com.nvs.core.model.meta.DataEntity' AND parent_nid IN (:externalEntityId)" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 64 SIZE_VOLUME com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "(QVD_FILE_SIZE == SMALLEST_QVD_FILE_SIZE && SMALLEST_QVD_FILE_SIZE == LARGEST_QVD_FILE_SIZE) ? 1 : (QVD_FILE_SIZE - SMALLEST_QVD_FILE_SIZE) / (LARGEST_QVD_FILE_SIZE - SMALLEST_QVD_FILE_SIZE)" 1001 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 65 SIZE_RECORDS com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "(QVD_RECORDS == SMALLEST_QVD_RECORDS && SMALLEST_QVD_RECORDS == LARGEST_QVD_RECORDS) ? 1 : (QVD_RECORDS - SMALLEST_QVD_RECORDS) / (LARGEST_QVD_RECORDS - SMALLEST_QVD_RECORDS)" 1001 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 66 QVD_FILE_ENTITY_CREATE_TIME com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT prop_value FROM podium_core.pd_prop_setting WHERE prop_def_nid = (SELECT nid FROM podium_core.pd_prop_definition WHERE sname = 'qvd.file.entity.createtime') AND parent_class = 'com.nvs.core.model.meta.DataEntity' AND parent_nid IN (:externalEntityId)" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 67 QVD_FILE_ENTITY_UPDATE_TIME com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT prop_value FROM podium_core.pd_prop_setting WHERE prop_def_nid = (SELECT nid FROM podium_core.pd_prop_definition WHERE sname = 'qvd.file.entity.updatetime') AND parent_class = 'com.nvs.core.model.meta.DataEntity' AND parent_nid IN (:externalEntityId)" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 68 QVD_FILE_ENTITY_NUM_UPDATES com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT prop_value FROM podium_core.pd_prop_setting WHERE prop_def_nid = (SELECT nid FROM podium_core.pd_prop_definition WHERE sname = 'qvd.file.entity.numupdates') AND parent_class = 'com.nvs.core.model.meta.DataEntity' AND parent_nid IN (:externalEntityId)" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 70 LATEST_PERIOD com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "System.currentTimeMillis() - QVD_FILE_ENTITY_UPDATE_TIME" 1001 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 59 SMALLEST_QVD_FILE_SIZE com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT MIN(prop_value) FROM (SELECT prop_value::bigint AS prop_value FROM podium_core.pd_prop_setting WHERE prop_def_nid = (SELECT nid FROM podium_core.pd_prop_definition WHERE sname = 'qvd.file.entity.filesize') AND parent_class = 'com.nvs.core.model.meta.DataEntity') tmp" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 60 LARGEST_QVD_FILE_SIZE com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT MAX(prop_value) FROM (SELECT prop_value::bigint AS prop_value FROM podium_core.pd_prop_setting WHERE prop_def_nid = (SELECT nid FROM podium_core.pd_prop_definition WHERE sname = 'qvd.file.entity.filesize') AND parent_class = 'com.nvs.core.model.meta.DataEntity') tmp" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 62 SMALLEST_QVD_RECORDS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT MIN(prop_value) FROM (SELECT prop_value::bigint AS prop_value FROM podium_core.pd_prop_setting WHERE prop_def_nid = (SELECT nid FROM podium_core.pd_prop_definition WHERE sname = 'qvd.header.entity.NoOfRecords') AND parent_class = 'com.nvs.core.model.meta.DataEntity') tmp" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 63 LARGEST_QVD_RECORDS com.nvs.core.service.metrics.impl.MetadataSqlMetricsCalculator --query "SELECT MAX(prop_value) FROM (SELECT prop_value::bigint AS prop_value FROM podium_core.pd_prop_setting WHERE prop_def_nid = (SELECT nid FROM podium_core.pd_prop_definition WHERE sname = 'qvd.header.entity.NoOfRecords') AND parent_class = 'com.nvs.core.model.meta.DataEntity') tmp" 1 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 69 TYPICAL_PERIOD com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "(QVD_FILE_ENTITY_NUM_UPDATES == 1) ? Double.NaN : (QVD_FILE_ENTITY_UPDATE_TIME - QVD_FILE_ENTITY_CREATE_TIME) / (QVD_FILE_ENTITY_NUM_UPDATES - 1)" 1001 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 71 RECENCY com.nvs.core.service.metrics.impl.DerivedMetricsCalculator --expression "(QVD_FILE_ENTITY_NUM_UPDATES == 1) ? Double.NaN : (LATEST_PERIOD <= TYPICAL_PERIOD) ? 1 : Math.max(0, 1 - 0.5 * (LATEST_PERIOD - TYPICAL_PERIOD) / TYPICAL_PERIOD)" 2001 t \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium \. -- -- Data for Name: pd_metric_weight; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_metric_weight (nid, kpi_category, metric_weight, metric_definition_nid, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby, metric_category_nid) FROM stdin; 1 OPERATIONAL 0.5 30 \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 1 2 OPERATIONAL 0.5 22 \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 1 5 POPULARITY 0.15 31 \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 1 6 POPULARITY 0.15 32 \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 1 7 POPULARITY 0.35 33 \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 1 8 POPULARITY 0.35 34 \N 2020-11-13 17:33:39.289807+00 \N 2020-11-13 17:33:39.289807+00 0 podium podium 1 9 QUALITY 0.3 36 \N 2020-11-13 17:33:39.39953+00 \N 2020-11-13 17:33:39.39953+00 0 podium podium 1 10 QUALITY 0.7 37 \N 2020-11-13 17:33:39.39953+00 \N 2020-11-13 17:33:39.39953+00 0 podium podium 1 15 QUALITY 0.5 64 \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 2 16 QUALITY 0.5 65 \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 2 17 OPERATIONAL 1.0 71 \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 2 11 POPULARITY 0.15 31 \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 2 13 POPULARITY 0.15 33 \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 2 12 POPULARITY 0.20 32 \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 2 14 POPULARITY 0.50 34 \N 2020-11-13 17:33:41.356944+00 \N 2020-11-13 17:33:41.356944+00 0 podium podium 2 18 POPULARITY 0.15 31 \N 2020-11-13 17:33:42.031635+00 \N 2020-11-13 17:33:42.031635+00 0 podium podium 3 19 POPULARITY 0.20 32 \N 2020-11-13 17:33:42.031635+00 \N 2020-11-13 17:33:42.031635+00 0 podium podium 3 20 POPULARITY 0.65 34 \N 2020-11-13 17:33:42.031635+00 \N 2020-11-13 17:33:42.031635+00 0 podium podium 3 21 QUALITY 0.5 64 \N 2020-11-13 17:33:42.031635+00 \N 2020-11-13 17:33:42.031635+00 0 podium podium 3 22 QUALITY 0.5 65 \N 2020-11-13 17:33:42.031635+00 \N 2020-11-13 17:33:42.031635+00 0 podium podium 3 23 OPERATIONAL 1.0 71 \N 2020-11-13 17:33:42.031635+00 \N 2020-11-13 17:33:42.031635+00 0 podium podium 3 \. -- -- Data for Name: pd_obfuscation_rule; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_obfuscation_rule (nid, sname, random_seed, class_name, argument_str, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby) FROM stdin; 1 Char Class Random random com.podiumdata.utils.obfuscation.CharClassObfuscator \N \N 2020-11-13 17:33:36.910986+00 \N 2020-11-13 17:33:36.910986+00 0 podium podium 2 Numeric Blur 50% salt0 com.podiumdata.utils.obfuscation.NumericObfuscator --blur-percentage 50 \N 2020-11-13 17:33:36.910986+00 \N 2020-11-13 17:33:36.910986+00 0 podium podium 3 Numeric Round to Nearest 100 salt0 com.podiumdata.utils.obfuscation.NumericObfuscator --round-to-nearest 100 \N 2020-11-13 17:33:36.910986+00 \N 2020-11-13 17:33:36.910986+00 0 podium podium 4 Numeric Floor 500 Ceiling 10000 salt0 com.podiumdata.utils.obfuscation.NumericObfuscator --floor 500 --ceiling 10000 \N 2020-11-13 17:33:36.910986+00 \N 2020-11-13 17:33:36.910986+00 0 podium podium 5 Replace Null salt0 com.podiumdata.utils.obfuscation.ConstantValueObfuscator --replacement-when-null OBFUSCATEDDATA \N 2020-11-13 17:33:36.910986+00 \N 2020-11-13 17:33:36.910986+00 0 podium podium 6 Replace Not Null salt0 com.podiumdata.utils.obfuscation.ConstantValueObfuscator --replacement-when-not-null OBFUSCATEDDATA \N 2020-11-13 17:33:36.910986+00 \N 2020-11-13 17:33:36.910986+00 0 podium podium 7 Replace All With Null salt0 com.podiumdata.utils.obfuscation.ConstantValueObfuscator --always-null \N 2020-11-13 17:33:36.910986+00 \N 2020-11-13 17:33:36.910986+00 0 podium podium 8 Digest MD5 Upper x2 salt0 com.podiumdata.utils.obfuscation.DigestObfuscator --digest-name MD5 --hex-upper-case --iteration-count 2 \N 2020-11-13 17:33:36.910986+00 \N 2020-11-13 17:33:36.910986+00 0 podium podium 9 Digest SHA256 Lower salt0 com.podiumdata.utils.obfuscation.DigestObfuscator --hex-lower-case \N 2020-11-13 17:33:36.910986+00 \N 2020-11-13 17:33:36.910986+00 0 podium podium \. -- -- Data for Name: pd_prep_aggregator_expression; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_aggregator_expression (aggregator_nid, expression, idx) FROM stdin; 3038 SUM(orderTotal) 0 \. -- -- Data for Name: pd_prep_aggregator_group; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_aggregator_group (aggregator_nid, expression, idx) FROM stdin; 3038 customerNumber 0 3038 productScale 1 \. -- -- Data for Name: pd_prep_compare_condition; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_compare_condition (compare_nid, detail_expression, join_operator, master_expression, idx) FROM stdin; \. -- -- Data for Name: pd_prep_compare_join; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_compare_join (compare_nid, detail_expression, join_operator, master_expression, idx) FROM stdin; \. -- -- Data for Name: pd_prep_connector; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_connector (nid, created_ttz, modified_ttz, version, bundle_nid, inbound_port_nid, outbound_port_nid, connection_id, modifiedby, createdby) FROM stdin; 116 2021-01-27 10:46:42.829 2021-01-27 10:46:42.829 0 3006 15 25 con_39 podium podium 32 2021-01-27 08:25:25.539 2021-01-27 08:25:25.539 0 3000 3 6 con_17 podium podium 33 2021-01-27 08:25:25.54 2021-01-27 08:25:25.54 0 3000 4 7 con_18 podium podium 34 2021-01-27 08:25:25.541 2021-01-27 08:25:25.541 0 3000 1 5 con_19 podium podium 35 2021-01-27 08:25:25.541 2021-01-27 08:25:25.541 0 3000 8 2 con_20 podium podium 117 2021-01-27 10:46:42.832 2021-01-27 10:46:42.832 0 3006 16 27 con_40 podium podium 118 2021-01-27 10:46:42.833 2021-01-27 10:46:42.833 0 3006 9 17 con_41 podium podium 119 2021-01-27 10:46:42.835 2021-01-27 10:46:42.835 0 3006 18 10 con_42 podium podium 120 2021-01-27 10:46:42.836 2021-01-27 10:46:42.836 0 3006 19 24 con_43 podium podium 121 2021-01-27 10:46:42.838 2021-01-27 10:46:42.838 0 3006 11 20 con_44 podium podium 122 2021-01-27 10:46:42.84 2021-01-27 10:46:42.84 0 3006 21 12 con_45 podium podium 123 2021-01-27 10:46:42.841 2021-01-27 10:46:42.841 0 3006 22 26 con_46 podium podium 124 2021-01-27 10:46:42.843 2021-01-27 10:46:42.843 0 3006 13 23 con_47 podium podium 125 2021-01-27 10:46:42.844 2021-01-27 10:46:42.844 0 3006 29 14 con_53 podium podium 205 2021-01-27 11:17:35.874 2021-01-27 11:17:35.874 0 3019 36 46 con_41 podium podium 206 2021-01-27 11:17:35.875 2021-01-27 11:17:35.875 0 3019 37 48 con_42 podium podium 207 2021-01-27 11:17:35.876 2021-01-27 11:17:35.876 0 3019 30 38 con_43 podium podium 208 2021-01-27 11:17:35.876 2021-01-27 11:17:35.876 0 3019 39 31 con_44 podium podium 209 2021-01-27 11:17:35.877 2021-01-27 11:17:35.877 0 3019 40 45 con_45 podium podium 210 2021-01-27 11:17:35.877 2021-01-27 11:17:35.877 0 3019 32 41 con_46 podium podium 211 2021-01-27 11:17:35.878 2021-01-27 11:17:35.878 0 3019 42 33 con_47 podium podium 212 2021-01-27 11:17:35.879 2021-01-27 11:17:35.879 0 3019 43 47 con_48 podium podium 213 2021-01-27 11:17:35.88 2021-01-27 11:17:35.88 0 3019 34 44 con_49 podium podium 214 2021-01-27 11:17:35.88 2021-01-27 11:17:35.88 0 3019 50 35 con_50 podium podium 217 2021-01-27 13:19:07.058 2021-01-27 13:19:07.058 0 3032 51 53 con_11 podium podium 218 2021-01-27 13:19:07.059 2021-01-27 13:19:07.059 0 3032 54 52 con_17 podium podium 222 2021-01-27 13:28:29.071 2021-01-27 13:28:29.071 0 3036 57 59 con_292 podium podium 223 2021-01-27 13:28:29.072 2021-01-27 13:28:29.072 0 3036 55 58 con_301 podium podium 224 2021-01-27 13:28:29.073 2021-01-27 13:28:29.073 0 3036 60 56 con_307 podium podium \. -- -- Data for Name: pd_prep_field_format; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_field_format (sname, data_type, record_format_nid, idx) FROM stdin; productCode STRING 1 0 productName STRING 1 1 productScale STRING 1 2 productVendor STRING 1 3 productDescription STRING 1 4 quantityInStock INTEGER 1 5 buyPrice DOUBLE 1 6 MSRP DOUBLE 1 7 productLine STRING 1 8 textDescription STRING 1 9 htmlDescription STRING 1 10 productCode STRING 2 0 productName STRING 2 1 productScale STRING 2 2 productVendor STRING 2 3 productDescription STRING 2 4 quantityInStock INTEGER 2 5 buyPrice DOUBLE 2 6 MSRP DOUBLE 2 7 productLine STRING 2 8 textDescription STRING 2 9 productCode STRING 3 0 productName STRING 3 1 productScale STRING 3 2 productVendor STRING 3 3 productDescription STRING 3 4 quantityInStock INTEGER 3 5 buyPrice DOUBLE 3 6 MSRP DOUBLE 3 7 productLine STRING 3 8 productLine STRING 4 0 textDescription STRING 4 1 htmlDescription STRING 4 2 productCode STRING 5 0 productName STRING 5 1 productScale STRING 5 2 productVendor STRING 5 3 productDescription STRING 5 4 quantityInStock INTEGER 5 5 buyPrice DOUBLE 5 6 MSRP DOUBLE 5 7 productLine STRING 5 8 textDescription STRING 5 9 htmlDescription STRING 5 10 productCode STRING 6 0 productName STRING 6 1 productScale STRING 6 2 productVendor STRING 6 3 productDescription STRING 6 4 quantityInStock INTEGER 6 5 buyPrice DOUBLE 6 6 MSRP DOUBLE 6 7 productLine STRING 6 8 productLine STRING 7 0 textDescription STRING 7 1 htmlDescription STRING 7 2 productCode STRING 8 0 productName STRING 8 1 productScale STRING 8 2 productVendor STRING 8 3 productDescription STRING 8 4 quantityInStock INTEGER 8 5 buyPrice DOUBLE 8 6 MSRP DOUBLE 8 7 productLine STRING 8 8 textDescription STRING 8 9 orderNumber INTEGER 9 0 orderDate STRING 9 1 requiredDate STRING 9 2 shippedDate STRING 9 3 status STRING 9 4 customerNumber INTEGER 9 5 orderLineNumber INTEGER 9 6 priceEach DOUBLE 9 7 quantityOrdered INTEGER 9 8 productCode STRING 9 9 productName STRING 9 10 productScale STRING 9 11 productVendor STRING 9 12 productDescription STRING 9 13 quantityInStock INTEGER 9 14 buyPrice DOUBLE 9 15 MSRP DOUBLE 9 16 productLine STRING 9 17 textDescription STRING 9 18 orderNumber INTEGER 10 0 orderDate STRING 10 1 requiredDate STRING 10 2 shippedDate STRING 10 3 status STRING 10 4 customerNumber INTEGER 10 5 orderLineNumber INTEGER 10 6 priceEach DOUBLE 10 7 quantityOrdered INTEGER 10 8 productCode STRING 10 9 productName STRING 10 10 productScale STRING 10 11 productVendor STRING 10 12 productDescription STRING 10 13 quantityInStock INTEGER 10 14 buyPrice DOUBLE 10 15 MSRP DOUBLE 10 16 productLine STRING 10 17 textDescription STRING 10 18 orderNumber INTEGER 11 0 orderDate STRING 11 1 requiredDate STRING 11 2 shippedDate STRING 11 3 status STRING 11 4 customerNumber INTEGER 11 5 orderLineNumber INTEGER 11 6 priceEach DOUBLE 11 7 quantityOrdered INTEGER 11 8 productCode STRING 11 9 productName STRING 11 10 productScale STRING 11 11 productVendor STRING 11 12 productDescription STRING 11 13 quantityInStock INTEGER 11 14 buyPrice DOUBLE 11 15 MSRP DOUBLE 11 16 productLine STRING 11 17 textDescription STRING 11 18 customerName STRING 11 19 contactLastName STRING 11 20 contactFirstName STRING 11 21 phone STRING 11 22 addressLine1 STRING 11 23 addressLine2 STRING 11 24 city STRING 11 25 state STRING 11 26 postalCode STRING 11 27 country STRING 11 28 salesRepEmployeeNumber INTEGER 11 29 creditLimit DOUBLE 11 30 customerLocation STRING 11 31 orderNumber INTEGER 12 0 orderDate STRING 12 1 requiredDate STRING 12 2 shippedDate STRING 12 3 status STRING 12 4 customerNumber INTEGER 12 5 orderLineNumber INTEGER 12 6 priceEach DOUBLE 12 7 quantityOrdered INTEGER 12 8 productCode STRING 12 9 productName STRING 12 10 productScale STRING 12 11 productVendor STRING 12 12 productDescription STRING 12 13 quantityInStock INTEGER 12 14 buyPrice DOUBLE 12 15 MSRP DOUBLE 12 16 productLine STRING 12 17 textDescription STRING 12 18 customerName STRING 12 19 contactLastName STRING 12 20 contactFirstName STRING 12 21 phone STRING 12 22 addressLine1 STRING 12 23 addressLine2 STRING 12 24 city STRING 12 25 state STRING 12 26 postalCode STRING 12 27 country STRING 12 28 salesRepEmployeeNumber INTEGER 12 29 creditLimit DOUBLE 12 30 customerLocation STRING 12 31 orderNumber INTEGER 13 0 orderDate STRING 13 1 requiredDate STRING 13 2 shippedDate STRING 13 3 status STRING 13 4 customerNumber INTEGER 13 5 orderLineNumber INTEGER 13 6 priceEach DOUBLE 13 7 quantityOrdered INTEGER 13 8 productCode STRING 13 9 productName STRING 13 10 productScale STRING 13 11 productVendor STRING 13 12 productDescription STRING 13 13 quantityInStock INTEGER 13 14 buyPrice DOUBLE 13 15 MSRP DOUBLE 13 16 productLine STRING 13 17 textDescription STRING 13 18 customerName STRING 13 19 contactLastName STRING 13 20 contactFirstName STRING 13 21 phone STRING 13 22 addressLine1 STRING 13 23 addressLine2 STRING 13 24 city STRING 13 25 state STRING 13 26 postalCode STRING 13 27 country STRING 13 28 salesRepEmployeeNumber INTEGER 13 29 creditLimit DOUBLE 13 30 customerLocation STRING 13 31 lastName STRING 13 32 firstName STRING 13 33 extension STRING 13 34 email STRING 13 35 reportsTo INTEGER 13 36 jobTitle STRING 13 37 officeCode STRING 13 38 orderNumber INTEGER 15 0 orderDate STRING 15 1 requiredDate STRING 15 2 shippedDate STRING 15 3 status STRING 15 4 customerNumber INTEGER 15 5 orderLineNumber INTEGER 15 6 priceEach DOUBLE 15 7 quantityOrdered INTEGER 15 8 productCode STRING 15 9 productCode STRING 16 0 productName STRING 16 1 productScale STRING 16 2 productVendor STRING 16 3 productDescription STRING 16 4 quantityInStock INTEGER 16 5 buyPrice DOUBLE 16 6 MSRP DOUBLE 16 7 productLine STRING 16 8 textDescription STRING 16 9 orderNumber INTEGER 17 0 orderDate STRING 17 1 requiredDate STRING 17 2 shippedDate STRING 17 3 status STRING 17 4 customerNumber INTEGER 17 5 orderLineNumber INTEGER 17 6 priceEach DOUBLE 17 7 quantityOrdered INTEGER 17 8 productCode STRING 17 9 productName STRING 17 10 productScale STRING 17 11 productVendor STRING 17 12 productDescription STRING 17 13 quantityInStock INTEGER 17 14 buyPrice DOUBLE 17 15 MSRP DOUBLE 17 16 productLine STRING 17 17 textDescription STRING 17 18 orderNumber INTEGER 18 0 orderDate STRING 18 1 requiredDate STRING 18 2 shippedDate STRING 18 3 status STRING 18 4 customerNumber INTEGER 18 5 orderLineNumber INTEGER 18 6 priceEach DOUBLE 18 7 quantityOrdered INTEGER 18 8 productCode STRING 18 9 productName STRING 18 10 productScale STRING 18 11 productVendor STRING 18 12 productDescription STRING 18 13 quantityInStock INTEGER 18 14 buyPrice DOUBLE 18 15 MSRP DOUBLE 18 16 productLine STRING 18 17 textDescription STRING 18 18 customerNumber INTEGER 19 0 customerName STRING 19 1 contactLastName STRING 19 2 contactFirstName STRING 19 3 phone STRING 19 4 addressLine1 STRING 19 5 addressLine2 STRING 19 6 city STRING 19 7 state STRING 19 8 postalCode STRING 19 9 country STRING 19 10 salesRepEmployeeNumber INTEGER 19 11 creditLimit DOUBLE 19 12 customerLocation STRING 19 13 orderNumber INTEGER 20 0 orderDate STRING 20 1 requiredDate STRING 20 2 shippedDate STRING 20 3 status STRING 20 4 customerNumber INTEGER 20 5 orderLineNumber INTEGER 20 6 priceEach DOUBLE 20 7 quantityOrdered INTEGER 20 8 productCode STRING 20 9 productName STRING 20 10 productScale STRING 20 11 productVendor STRING 20 12 productDescription STRING 20 13 quantityInStock INTEGER 20 14 buyPrice DOUBLE 20 15 MSRP DOUBLE 20 16 productLine STRING 20 17 textDescription STRING 20 18 customerName STRING 20 19 contactLastName STRING 20 20 contactFirstName STRING 20 21 phone STRING 20 22 addressLine1 STRING 20 23 addressLine2 STRING 20 24 city STRING 20 25 state STRING 20 26 postalCode STRING 20 27 country STRING 20 28 salesRepEmployeeNumber INTEGER 20 29 creditLimit DOUBLE 20 30 customerLocation STRING 20 31 orderNumber INTEGER 21 0 orderDate STRING 21 1 requiredDate STRING 21 2 shippedDate STRING 21 3 status STRING 21 4 customerNumber INTEGER 21 5 orderLineNumber INTEGER 21 6 priceEach DOUBLE 21 7 quantityOrdered INTEGER 21 8 productCode STRING 21 9 productName STRING 21 10 productScale STRING 21 11 productVendor STRING 21 12 productDescription STRING 21 13 quantityInStock INTEGER 21 14 buyPrice DOUBLE 21 15 MSRP DOUBLE 21 16 productLine STRING 21 17 textDescription STRING 21 18 customerName STRING 21 19 contactLastName STRING 21 20 contactFirstName STRING 21 21 phone STRING 21 22 addressLine1 STRING 21 23 addressLine2 STRING 21 24 city STRING 21 25 state STRING 21 26 postalCode STRING 21 27 country STRING 21 28 salesRepEmployeeNumber INTEGER 21 29 creditLimit DOUBLE 21 30 customerLocation STRING 21 31 employeeNumber INTEGER 22 0 lastName STRING 22 1 firstName STRING 22 2 extension STRING 22 3 email STRING 22 4 reportsTo INTEGER 22 5 jobTitle STRING 22 6 officeCode STRING 22 7 orderNumber INTEGER 23 0 orderDate STRING 23 1 requiredDate STRING 23 2 shippedDate STRING 23 3 status STRING 23 4 customerNumber INTEGER 23 5 orderLineNumber INTEGER 23 6 priceEach DOUBLE 23 7 quantityOrdered INTEGER 23 8 productCode STRING 23 9 productName STRING 23 10 productScale STRING 23 11 productVendor STRING 23 12 productDescription STRING 23 13 quantityInStock INTEGER 23 14 buyPrice DOUBLE 23 15 MSRP DOUBLE 23 16 productLine STRING 23 17 textDescription STRING 23 18 customerName STRING 23 19 contactLastName STRING 23 20 contactFirstName STRING 23 21 phone STRING 23 22 addressLine1 STRING 23 23 addressLine2 STRING 23 24 city STRING 23 25 state STRING 23 26 postalCode STRING 23 27 country STRING 23 28 salesRepEmployeeNumber INTEGER 23 29 creditLimit DOUBLE 23 30 customerLocation STRING 23 31 lastName STRING 23 32 firstName STRING 23 33 extension STRING 23 34 email STRING 23 35 reportsTo INTEGER 23 36 jobTitle STRING 23 37 officeCode STRING 23 38 customerNumber INTEGER 24 0 customerName STRING 24 1 contactLastName STRING 24 2 contactFirstName STRING 24 3 phone STRING 24 4 addressLine1 STRING 24 5 addressLine2 STRING 24 6 city STRING 24 7 state STRING 24 8 postalCode STRING 24 9 country STRING 24 10 salesRepEmployeeNumber INTEGER 24 11 creditLimit DOUBLE 24 12 customerLocation STRING 24 13 orderNumber INTEGER 25 0 orderDate STRING 25 1 requiredDate STRING 25 2 shippedDate STRING 25 3 status STRING 25 4 customerNumber INTEGER 25 5 orderLineNumber INTEGER 25 6 priceEach DOUBLE 25 7 quantityOrdered INTEGER 25 8 productCode STRING 25 9 employeeNumber INTEGER 26 0 lastName STRING 26 1 firstName STRING 26 2 extension STRING 26 3 email STRING 26 4 reportsTo INTEGER 26 5 jobTitle STRING 26 6 officeCode STRING 26 7 productCode STRING 27 0 productName STRING 27 1 productScale STRING 27 2 productVendor STRING 27 3 productDescription STRING 27 4 quantityInStock INTEGER 27 5 buyPrice DOUBLE 27 6 MSRP DOUBLE 27 7 productLine STRING 27 8 textDescription STRING 27 9 orderNumber INTEGER 28 0 orderDate STRING 28 1 requiredDate STRING 28 2 shippedDate STRING 28 3 status STRING 28 4 customerNumber INTEGER 28 5 orderLineNumber INTEGER 28 6 priceEach DOUBLE 28 7 quantityOrdered INTEGER 28 8 productCode STRING 28 9 productName STRING 28 10 productScale STRING 28 11 productVendor STRING 28 12 productDescription STRING 28 13 quantityInStock INTEGER 28 14 buyPrice DOUBLE 28 15 MSRP DOUBLE 28 16 productLine STRING 28 17 textDescription STRING 28 18 customerName STRING 28 19 contactLastName STRING 28 20 contactFirstName STRING 28 21 phone STRING 28 22 addressLine1 STRING 28 23 addressLine2 STRING 28 24 city STRING 28 25 state STRING 28 26 postalCode STRING 28 27 country STRING 28 28 salesRepEmployeeNumber INTEGER 28 29 creditLimit DOUBLE 28 30 customerLocation STRING 28 31 lastName STRING 28 32 firstName STRING 28 33 extension STRING 28 34 email STRING 28 35 reportsTo INTEGER 28 36 jobTitle STRING 28 37 officeCode STRING 28 38 orderNumber INTEGER 14 0 orderDate STRING 14 1 requiredDate STRING 14 2 shippedDate STRING 14 3 status STRING 14 4 customerNumber INTEGER 14 5 orderLineNumber INTEGER 14 6 priceEach DOUBLE 14 7 quantityOrdered INTEGER 14 8 productCode STRING 14 9 productName STRING 14 10 productScale STRING 14 11 productVendor STRING 14 12 productDescription STRING 14 13 quantityInStock INTEGER 14 14 buyPrice DOUBLE 14 15 MSRP DOUBLE 14 16 productLine STRING 14 17 textDescription STRING 14 18 customerName STRING 14 19 contactLastName STRING 14 20 contactFirstName STRING 14 21 phone STRING 14 22 addressLine1 STRING 14 23 addressLine2 STRING 14 24 city STRING 14 25 state STRING 14 26 postalCode STRING 14 27 country STRING 14 28 salesRepEmployeeNumber INTEGER 14 29 creditLimit DOUBLE 14 30 customerLocation STRING 14 31 lastName STRING 14 32 firstName STRING 14 33 extension STRING 14 34 email STRING 14 35 reportsTo INTEGER 14 36 jobTitle STRING 14 37 officeCode STRING 14 38 orderTotal DECIMAL 14 39 orderNumber INTEGER 29 0 orderDate STRING 29 1 requiredDate STRING 29 2 shippedDate STRING 29 3 status STRING 29 4 customerNumber INTEGER 29 5 orderLineNumber INTEGER 29 6 priceEach DOUBLE 29 7 quantityOrdered INTEGER 29 8 productCode STRING 29 9 productName STRING 29 10 productScale STRING 29 11 productVendor STRING 29 12 productDescription STRING 29 13 quantityInStock INTEGER 29 14 buyPrice DOUBLE 29 15 MSRP DOUBLE 29 16 productLine STRING 29 17 textDescription STRING 29 18 customerName STRING 29 19 contactLastName STRING 29 20 contactFirstName STRING 29 21 phone STRING 29 22 addressLine1 STRING 29 23 addressLine2 STRING 29 24 city STRING 29 25 state STRING 29 26 postalCode STRING 29 27 country STRING 29 28 salesRepEmployeeNumber INTEGER 29 29 creditLimit DOUBLE 29 30 customerLocation STRING 29 31 lastName STRING 29 32 firstName STRING 29 33 extension STRING 29 34 email STRING 29 35 reportsTo INTEGER 29 36 jobTitle STRING 29 37 officeCode STRING 29 38 orderTotal DECIMAL 29 39 orderNumber INTEGER 30 0 orderDate STRING 30 1 requiredDate STRING 30 2 shippedDate STRING 30 3 status STRING 30 4 customerNumber INTEGER 30 5 orderLineNumber INTEGER 30 6 priceEach DOUBLE 30 7 quantityOrdered INTEGER 30 8 productCode STRING 30 9 productName STRING 30 10 productScale STRING 30 11 productVendor STRING 30 12 productDescription STRING 30 13 quantityInStock INTEGER 30 14 buyPrice DOUBLE 30 15 MSRP DOUBLE 30 16 productLine STRING 30 17 textDescription STRING 30 18 orderNumber INTEGER 31 0 orderDate STRING 31 1 requiredDate STRING 31 2 shippedDate STRING 31 3 status STRING 31 4 customerNumber INTEGER 31 5 orderLineNumber INTEGER 31 6 priceEach DOUBLE 31 7 quantityOrdered INTEGER 31 8 productCode STRING 31 9 productName STRING 31 10 productScale STRING 31 11 productVendor STRING 31 12 productDescription STRING 31 13 quantityInStock INTEGER 31 14 buyPrice DOUBLE 31 15 MSRP DOUBLE 31 16 productLine STRING 31 17 textDescription STRING 31 18 orderNumber INTEGER 32 0 orderDate STRING 32 1 requiredDate STRING 32 2 shippedDate STRING 32 3 status STRING 32 4 customerNumber INTEGER 32 5 orderLineNumber INTEGER 32 6 priceEach DOUBLE 32 7 quantityOrdered INTEGER 32 8 productCode STRING 32 9 productName STRING 32 10 productScale STRING 32 11 productVendor STRING 32 12 productDescription STRING 32 13 quantityInStock INTEGER 32 14 buyPrice DOUBLE 32 15 MSRP DOUBLE 32 16 productLine STRING 32 17 textDescription STRING 32 18 customerName STRING 32 19 contactLastName STRING 32 20 contactFirstName STRING 32 21 phone STRING 32 22 addressLine1 STRING 32 23 addressLine2 STRING 32 24 city STRING 32 25 state STRING 32 26 postalCode STRING 32 27 country STRING 32 28 salesRepEmployeeNumber INTEGER 32 29 creditLimit DOUBLE 32 30 customerLocation STRING 32 31 orderNumber INTEGER 33 0 orderDate STRING 33 1 requiredDate STRING 33 2 shippedDate STRING 33 3 status STRING 33 4 customerNumber INTEGER 33 5 orderLineNumber INTEGER 33 6 priceEach DOUBLE 33 7 quantityOrdered INTEGER 33 8 productCode STRING 33 9 productName STRING 33 10 productScale STRING 33 11 productVendor STRING 33 12 productDescription STRING 33 13 quantityInStock INTEGER 33 14 buyPrice DOUBLE 33 15 MSRP DOUBLE 33 16 productLine STRING 33 17 textDescription STRING 33 18 customerName STRING 33 19 contactLastName STRING 33 20 contactFirstName STRING 33 21 phone STRING 33 22 addressLine1 STRING 33 23 addressLine2 STRING 33 24 city STRING 33 25 state STRING 33 26 postalCode STRING 33 27 country STRING 33 28 salesRepEmployeeNumber INTEGER 33 29 creditLimit DOUBLE 33 30 customerLocation STRING 33 31 orderNumber INTEGER 34 0 orderDate STRING 34 1 requiredDate STRING 34 2 shippedDate STRING 34 3 status STRING 34 4 customerNumber INTEGER 34 5 orderLineNumber INTEGER 34 6 priceEach DOUBLE 34 7 quantityOrdered INTEGER 34 8 productCode STRING 34 9 productName STRING 34 10 productScale STRING 34 11 productVendor STRING 34 12 productDescription STRING 34 13 quantityInStock INTEGER 34 14 buyPrice DOUBLE 34 15 MSRP DOUBLE 34 16 productLine STRING 34 17 textDescription STRING 34 18 customerName STRING 34 19 contactLastName STRING 34 20 contactFirstName STRING 34 21 phone STRING 34 22 addressLine1 STRING 34 23 addressLine2 STRING 34 24 city STRING 34 25 state STRING 34 26 postalCode STRING 34 27 country STRING 34 28 salesRepEmployeeNumber INTEGER 34 29 creditLimit DOUBLE 34 30 customerLocation STRING 34 31 lastName STRING 34 32 firstName STRING 34 33 extension STRING 34 34 email STRING 34 35 reportsTo INTEGER 34 36 jobTitle STRING 34 37 officeCode STRING 34 38 orderNumber INTEGER 36 0 orderDate STRING 36 1 requiredDate STRING 36 2 shippedDate STRING 36 3 status STRING 36 4 customerNumber INTEGER 36 5 orderLineNumber INTEGER 36 6 priceEach DOUBLE 36 7 quantityOrdered INTEGER 36 8 productCode STRING 36 9 productCode STRING 37 0 productName STRING 37 1 productScale STRING 37 2 productVendor STRING 37 3 productDescription STRING 37 4 quantityInStock INTEGER 37 5 buyPrice DOUBLE 37 6 MSRP DOUBLE 37 7 productLine STRING 37 8 textDescription STRING 37 9 orderNumber INTEGER 38 0 orderDate STRING 38 1 requiredDate STRING 38 2 shippedDate STRING 38 3 status STRING 38 4 customerNumber INTEGER 38 5 orderLineNumber INTEGER 38 6 priceEach DOUBLE 38 7 quantityOrdered INTEGER 38 8 productCode STRING 38 9 productName STRING 38 10 productScale STRING 38 11 productVendor STRING 38 12 productDescription STRING 38 13 quantityInStock INTEGER 38 14 buyPrice DOUBLE 38 15 MSRP DOUBLE 38 16 productLine STRING 38 17 textDescription STRING 38 18 orderNumber INTEGER 39 0 orderDate STRING 39 1 requiredDate STRING 39 2 shippedDate STRING 39 3 status STRING 39 4 customerNumber INTEGER 39 5 orderLineNumber INTEGER 39 6 priceEach DOUBLE 39 7 quantityOrdered INTEGER 39 8 productCode STRING 39 9 productName STRING 39 10 productScale STRING 39 11 productVendor STRING 39 12 productDescription STRING 39 13 quantityInStock INTEGER 39 14 buyPrice DOUBLE 39 15 MSRP DOUBLE 39 16 productLine STRING 39 17 textDescription STRING 39 18 customerNumber INTEGER 40 0 customerName STRING 40 1 contactLastName STRING 40 2 contactFirstName STRING 40 3 phone STRING 40 4 addressLine1 STRING 40 5 addressLine2 STRING 40 6 city STRING 40 7 state STRING 40 8 postalCode STRING 40 9 country STRING 40 10 salesRepEmployeeNumber INTEGER 40 11 creditLimit DOUBLE 40 12 customerLocation STRING 40 13 orderNumber INTEGER 41 0 orderDate STRING 41 1 requiredDate STRING 41 2 shippedDate STRING 41 3 status STRING 41 4 customerNumber INTEGER 41 5 orderLineNumber INTEGER 41 6 priceEach DOUBLE 41 7 quantityOrdered INTEGER 41 8 productCode STRING 41 9 productName STRING 41 10 productScale STRING 41 11 productVendor STRING 41 12 productDescription STRING 41 13 quantityInStock INTEGER 41 14 buyPrice DOUBLE 41 15 MSRP DOUBLE 41 16 productLine STRING 41 17 textDescription STRING 41 18 customerName STRING 41 19 contactLastName STRING 41 20 contactFirstName STRING 41 21 phone STRING 41 22 addressLine1 STRING 41 23 addressLine2 STRING 41 24 city STRING 41 25 state STRING 41 26 postalCode STRING 41 27 country STRING 41 28 salesRepEmployeeNumber INTEGER 41 29 creditLimit DOUBLE 41 30 customerLocation STRING 41 31 orderNumber INTEGER 42 0 orderDate STRING 42 1 requiredDate STRING 42 2 shippedDate STRING 42 3 status STRING 42 4 customerNumber INTEGER 42 5 orderLineNumber INTEGER 42 6 priceEach DOUBLE 42 7 quantityOrdered INTEGER 42 8 productCode STRING 42 9 productName STRING 42 10 productScale STRING 42 11 productVendor STRING 42 12 productDescription STRING 42 13 quantityInStock INTEGER 42 14 buyPrice DOUBLE 42 15 MSRP DOUBLE 42 16 productLine STRING 42 17 textDescription STRING 42 18 customerName STRING 42 19 contactLastName STRING 42 20 contactFirstName STRING 42 21 phone STRING 42 22 addressLine1 STRING 42 23 addressLine2 STRING 42 24 city STRING 42 25 state STRING 42 26 postalCode STRING 42 27 country STRING 42 28 salesRepEmployeeNumber INTEGER 42 29 creditLimit DOUBLE 42 30 customerLocation STRING 42 31 employeeNumber INTEGER 43 0 lastName STRING 43 1 firstName STRING 43 2 extension STRING 43 3 email STRING 43 4 reportsTo INTEGER 43 5 jobTitle STRING 43 6 officeCode STRING 43 7 orderNumber INTEGER 44 0 orderDate STRING 44 1 requiredDate STRING 44 2 shippedDate STRING 44 3 status STRING 44 4 customerNumber INTEGER 44 5 orderLineNumber INTEGER 44 6 priceEach DOUBLE 44 7 quantityOrdered INTEGER 44 8 productCode STRING 44 9 productName STRING 44 10 productScale STRING 44 11 productVendor STRING 44 12 productDescription STRING 44 13 quantityInStock INTEGER 44 14 buyPrice DOUBLE 44 15 MSRP DOUBLE 44 16 productLine STRING 44 17 textDescription STRING 44 18 customerName STRING 44 19 contactLastName STRING 44 20 contactFirstName STRING 44 21 phone STRING 44 22 addressLine1 STRING 44 23 addressLine2 STRING 44 24 city STRING 44 25 state STRING 44 26 postalCode STRING 44 27 country STRING 44 28 salesRepEmployeeNumber INTEGER 44 29 creditLimit DOUBLE 44 30 customerLocation STRING 44 31 lastName STRING 44 32 firstName STRING 44 33 extension STRING 44 34 email STRING 44 35 reportsTo INTEGER 44 36 jobTitle STRING 44 37 officeCode STRING 44 38 customerNumber INTEGER 45 0 customerName STRING 45 1 contactLastName STRING 45 2 contactFirstName STRING 45 3 phone STRING 45 4 addressLine1 STRING 45 5 addressLine2 STRING 45 6 city STRING 45 7 state STRING 45 8 postalCode STRING 45 9 country STRING 45 10 salesRepEmployeeNumber INTEGER 45 11 creditLimit DOUBLE 45 12 customerLocation STRING 45 13 orderNumber INTEGER 46 0 orderDate STRING 46 1 requiredDate STRING 46 2 shippedDate STRING 46 3 status STRING 46 4 customerNumber INTEGER 46 5 orderLineNumber INTEGER 46 6 priceEach DOUBLE 46 7 quantityOrdered INTEGER 46 8 productCode STRING 46 9 employeeNumber INTEGER 47 0 lastName STRING 47 1 firstName STRING 47 2 extension STRING 47 3 email STRING 47 4 reportsTo INTEGER 47 5 jobTitle STRING 47 6 officeCode STRING 47 7 productCode STRING 48 0 productName STRING 48 1 productScale STRING 48 2 productVendor STRING 48 3 productDescription STRING 48 4 quantityInStock INTEGER 48 5 buyPrice DOUBLE 48 6 MSRP DOUBLE 48 7 productLine STRING 48 8 textDescription STRING 48 9 orderNumber INTEGER 35 0 orderDate STRING 35 1 requiredDate STRING 35 2 shippedDate STRING 35 3 status STRING 35 4 customerNumber INTEGER 35 5 orderLineNumber INTEGER 35 6 priceEach DOUBLE 35 7 quantityOrdered INTEGER 35 8 productCode STRING 35 9 productName STRING 35 10 productScale STRING 35 11 productVendor STRING 35 12 productDescription STRING 35 13 quantityInStock INTEGER 35 14 buyPrice STRING 35 15 MSRP DOUBLE 35 16 productLine STRING 35 17 textDescription STRING 35 18 customerName STRING 35 19 contactLastName STRING 35 20 contactFirstName STRING 35 21 phone STRING 35 22 addressLine1 STRING 35 23 addressLine2 STRING 35 24 city STRING 35 25 state STRING 35 26 postalCode STRING 35 27 country STRING 35 28 salesRepEmployeeNumber INTEGER 35 29 creditLimit STRING 35 30 customerLocation STRING 35 31 lastName STRING 35 32 firstName STRING 35 33 extension STRING 35 34 email STRING 35 35 reportsTo INTEGER 35 36 jobTitle STRING 35 37 officeCode STRING 35 38 orderTotal DECIMAL 35 39 orderNumber INTEGER 50 0 orderDate STRING 50 1 requiredDate STRING 50 2 shippedDate STRING 50 3 status STRING 50 4 customerNumber INTEGER 50 5 orderLineNumber INTEGER 50 6 priceEach DOUBLE 50 7 quantityOrdered INTEGER 50 8 productCode STRING 50 9 productName STRING 50 10 productScale STRING 50 11 productVendor STRING 50 12 productDescription STRING 50 13 quantityInStock INTEGER 50 14 buyPrice STRING 50 15 MSRP DOUBLE 50 16 productLine STRING 50 17 textDescription STRING 50 18 customerName STRING 50 19 contactLastName STRING 50 20 contactFirstName STRING 50 21 phone STRING 50 22 addressLine1 STRING 50 23 addressLine2 STRING 50 24 city STRING 50 25 state STRING 50 26 postalCode STRING 50 27 country STRING 50 28 salesRepEmployeeNumber INTEGER 50 29 creditLimit STRING 50 30 customerLocation STRING 50 31 lastName STRING 50 32 firstName STRING 50 33 extension STRING 50 34 email STRING 50 35 reportsTo INTEGER 50 36 jobTitle STRING 50 37 officeCode STRING 50 38 orderTotal DECIMAL 50 39 employeeNumber STRING 51 0 lastName STRING 51 1 firstName STRING 51 2 extension STRING 51 3 email STRING 51 4 reportsTo STRING 51 5 jobTitle STRING 51 6 officeCode STRING 51 7 employeeNumber STRING 52 0 lastName STRING 52 1 firstName STRING 52 2 extension STRING 52 3 email STRING 52 4 reportsTo STRING 52 5 jobTitle STRING 52 6 officeCode STRING 52 7 systemComment STRING 52 8 employeeNumber STRING 53 0 lastName STRING 53 1 firstName STRING 53 2 extension STRING 53 3 email STRING 53 4 reportsTo STRING 53 5 jobTitle STRING 53 6 officeCode STRING 53 7 employeeNumber STRING 54 0 lastName STRING 54 1 firstName STRING 54 2 extension STRING 54 3 email STRING 54 4 reportsTo STRING 54 5 jobTitle STRING 54 6 officeCode STRING 54 7 systemComment STRING 54 8 customerNumber INTEGER 55 0 productScale STRING 55 1 orderTotal DECIMAL 55 2 customerNumber INTEGER 56 0 productScale STRING 56 1 orderTotal DECIMAL 56 2 orderNumber INTEGER 57 0 orderDate STRING 57 1 requiredDate STRING 57 2 shippedDate STRING 57 3 status STRING 57 4 customerNumber INTEGER 57 5 orderLineNumber INTEGER 57 6 priceEach DOUBLE 57 7 quantityOrdered INTEGER 57 8 productCode STRING 57 9 productName STRING 57 10 productScale STRING 57 11 productVendor STRING 57 12 productDescription STRING 57 13 quantityInStock INTEGER 57 14 buyPrice DOUBLE 57 15 MSRP DOUBLE 57 16 productLine STRING 57 17 textDescription STRING 57 18 customerName STRING 57 19 contactLastName STRING 57 20 contactFirstName STRING 57 21 phone STRING 57 22 addressLine1 STRING 57 23 addressLine2 STRING 57 24 city STRING 57 25 state STRING 57 26 postalCode STRING 57 27 country STRING 57 28 salesRepEmployeeNumber INTEGER 57 29 creditLimit DOUBLE 57 30 customerLocation STRING 57 31 lastName STRING 57 32 firstName STRING 57 33 extension STRING 57 34 email STRING 57 35 reportsTo INTEGER 57 36 jobTitle STRING 57 37 officeCode STRING 57 38 orderTotal DECIMAL 57 39 customerNumber INTEGER 58 0 productScale STRING 58 1 orderTotal DECIMAL 58 2 orderNumber INTEGER 59 0 orderDate STRING 59 1 requiredDate STRING 59 2 shippedDate STRING 59 3 status STRING 59 4 customerNumber INTEGER 59 5 orderLineNumber INTEGER 59 6 priceEach DOUBLE 59 7 quantityOrdered INTEGER 59 8 productCode STRING 59 9 productName STRING 59 10 productScale STRING 59 11 productVendor STRING 59 12 productDescription STRING 59 13 quantityInStock INTEGER 59 14 buyPrice DOUBLE 59 15 MSRP DOUBLE 59 16 productLine STRING 59 17 textDescription STRING 59 18 customerName STRING 59 19 contactLastName STRING 59 20 contactFirstName STRING 59 21 phone STRING 59 22 addressLine1 STRING 59 23 addressLine2 STRING 59 24 city STRING 59 25 state STRING 59 26 postalCode STRING 59 27 country STRING 59 28 salesRepEmployeeNumber INTEGER 59 29 creditLimit DOUBLE 59 30 customerLocation STRING 59 31 lastName STRING 59 32 firstName STRING 59 33 extension STRING 59 34 email STRING 59 35 reportsTo INTEGER 59 36 jobTitle STRING 59 37 officeCode STRING 59 38 orderTotal DECIMAL 59 39 customerNumber INTEGER 60 0 productScale STRING 60 1 orderTotal DECIMAL 60 2 \. -- -- Data for Name: pd_prep_joiner_condition; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_joiner_condition (joiner_nid, detail_expression, join_operator, master_expression, idx) FROM stdin; 3002 productLine EQ productLine 0 3010 productCode EQ productCode 0 3011 customerNumber EQ customerNumber 0 3012 employeeNumber EQ salesRepEmployeeNumber 0 3023 productCode EQ productCode 0 3024 customerNumber EQ customerNumber 0 3025 employeeNumber EQ salesRepEmployeeNumber 0 \. -- -- Data for Name: pd_prep_joiner_detail_field; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_joiner_detail_field (joiner_nid, field_name, idx) FROM stdin; 3002 textDescription 0 3002 htmlDescription 1 3010 productName 0 3010 productScale 1 3010 productVendor 2 3010 productDescription 3 3010 quantityInStock 4 3010 buyPrice 5 3010 MSRP 6 3010 productLine 7 3010 textDescription 8 3011 customerName 0 3011 contactLastName 1 3011 contactFirstName 2 3011 phone 3 3011 addressLine1 4 3011 addressLine2 5 3011 city 6 3011 state 7 3011 postalCode 8 3011 country 9 3011 salesRepEmployeeNumber 10 3011 creditLimit 11 3011 customerLocation 12 3012 lastName 0 3012 firstName 1 3012 extension 2 3012 email 3 3012 reportsTo 4 3012 jobTitle 5 3012 officeCode 6 3023 productName 0 3023 productScale 1 3023 productVendor 2 3023 productDescription 3 3023 quantityInStock 4 3023 buyPrice 5 3023 MSRP 6 3023 productLine 7 3023 textDescription 8 3024 customerName 0 3024 contactLastName 1 3024 contactFirstName 2 3024 phone 3 3024 addressLine1 4 3024 addressLine2 5 3024 city 6 3024 state 7 3024 postalCode 8 3024 country 9 3024 salesRepEmployeeNumber 10 3024 creditLimit 11 3024 customerLocation 12 3025 lastName 0 3025 firstName 1 3025 extension 2 3025 email 3 3025 reportsTo 4 3025 jobTitle 5 3025 officeCode 6 \. -- -- Data for Name: pd_prep_joiner_master_field; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_joiner_master_field (joiner_nid, field_name, idx) FROM stdin; 3002 productCode 0 3002 productName 1 3002 productScale 2 3002 productVendor 3 3002 productDescription 4 3002 quantityInStock 5 3002 buyPrice 6 3002 MSRP 7 3002 productLine 8 3010 orderNumber 0 3010 orderDate 1 3010 requiredDate 2 3010 shippedDate 3 3010 status 4 3010 customerNumber 5 3010 orderLineNumber 6 3010 priceEach 7 3010 quantityOrdered 8 3010 productCode 9 3011 orderNumber 0 3011 orderDate 1 3011 requiredDate 2 3011 shippedDate 3 3011 status 4 3011 customerNumber 5 3011 orderLineNumber 6 3011 priceEach 7 3011 quantityOrdered 8 3011 productCode 9 3011 productName 10 3011 productScale 11 3011 productVendor 12 3011 productDescription 13 3011 quantityInStock 14 3011 buyPrice 15 3011 MSRP 16 3011 productLine 17 3011 textDescription 18 3012 orderNumber 0 3012 orderDate 1 3012 requiredDate 2 3012 shippedDate 3 3012 status 4 3012 customerNumber 5 3012 orderLineNumber 6 3012 priceEach 7 3012 quantityOrdered 8 3012 productCode 9 3012 productName 10 3012 productScale 11 3012 productVendor 12 3012 productDescription 13 3012 quantityInStock 14 3012 buyPrice 15 3012 MSRP 16 3012 productLine 17 3012 textDescription 18 3012 customerName 19 3012 contactLastName 20 3012 contactFirstName 21 3012 phone 22 3012 addressLine1 23 3012 addressLine2 24 3012 city 25 3012 state 26 3012 postalCode 27 3012 country 28 3012 salesRepEmployeeNumber 29 3012 creditLimit 30 3012 customerLocation 31 3023 orderNumber 0 3023 orderDate 1 3023 requiredDate 2 3023 shippedDate 3 3023 status 4 3023 customerNumber 5 3023 orderLineNumber 6 3023 priceEach 7 3023 quantityOrdered 8 3023 productCode 9 3024 orderNumber 0 3024 orderDate 1 3024 requiredDate 2 3024 shippedDate 3 3024 status 4 3024 customerNumber 5 3024 orderLineNumber 6 3024 priceEach 7 3024 quantityOrdered 8 3024 productCode 9 3024 productName 10 3024 productScale 11 3024 productVendor 12 3024 productDescription 13 3024 quantityInStock 14 3024 buyPrice 15 3024 MSRP 16 3024 productLine 17 3024 textDescription 18 3025 orderNumber 0 3025 orderDate 1 3025 requiredDate 2 3025 shippedDate 3 3025 status 4 3025 customerNumber 5 3025 orderLineNumber 6 3025 priceEach 7 3025 quantityOrdered 8 3025 productCode 9 3025 productName 10 3025 productScale 11 3025 productVendor 12 3025 productDescription 13 3025 quantityInStock 14 3025 buyPrice 15 3025 MSRP 16 3025 productLine 17 3025 textDescription 18 3025 customerName 19 3025 contactLastName 20 3025 contactFirstName 21 3025 phone 22 3025 addressLine1 23 3025 addressLine2 24 3025 city 25 3025 state 26 3025 postalCode 27 3025 country 28 3025 salesRepEmployeeNumber 29 3025 creditLimit 30 3025 customerLocation 31 \. -- -- Data for Name: pd_prep_package; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_package (package_type, nid, created_ttz, modified_ttz, version, sname, expression, mode, entity_id, entity_name, data_selection, load_partitions, sample_limit, bundle_nid, package_id, package_comments, modifiedby, createdby, source_name) FROM stdin; TRANSFORMER 3001 2021-01-26 10:41:47.131 2021-01-26 10:41:47.131 0 \N \N \N \N \N \N \N \N 3000 container_1 podium podium \N JOINER 3002 2021-01-26 10:41:47.16 2021-01-26 10:41:47.16 0 \N \N INNER \N \N \N \N \N 3000 container_join_1 podium podium \N LOADER 3003 2021-01-26 10:41:47.173 2021-01-26 10:41:47.173 0 products \N PODIUM_INTERNAL 72 products ALL \N 3000 entity_72_2 \N podium podium \N LOADER 3004 2021-01-26 10:41:47.176 2021-01-26 10:41:47.176 0 productlines \N PODIUM_INTERNAL 73 productlines ALL \N 3000 entity_73_1 \N podium podium \N STORE 3005 2021-01-26 10:41:47.184 2021-01-26 10:41:47.184 0 products_full \N PODIUM_INTERNAL 75 products_full \N \N \N 3000 entity_store_3 \N podium podium \N TRANSFORMER 3007 2021-01-27 08:21:27.74 2021-01-27 08:21:27.74 0 \N \N \N \N \N \N \N \N 3006 container_1 podium podium \N TRANSFORMER 3008 2021-01-27 08:21:27.743 2021-01-27 08:21:27.743 0 \N \N \N \N \N \N \N \N 3006 container_2 podium podium \N JOINER 3010 2021-01-27 08:21:27.749 2021-01-27 08:21:27.749 0 \N \N INNER \N \N \N \N \N 3006 container_join_1 podium podium \N JOINER 3011 2021-01-27 08:21:27.753 2021-01-27 08:21:27.753 0 \N \N INNER \N \N \N \N \N 3006 container_join_2 podium podium \N JOINER 3012 2021-01-27 08:21:27.757 2021-01-27 08:21:27.757 0 \N \N INNER \N \N \N \N \N 3006 container_join_3 podium podium \N LOADER 3013 2021-01-27 08:21:27.761 2021-01-27 08:21:27.761 0 customers \N PODIUM_INTERNAL 69 customers ALL \N 3006 entity_69_3 \N podium podium \N LOADER 3014 2021-01-27 08:21:27.764 2021-01-27 08:21:27.764 0 salesorders \N PODIUM_INTERNAL 70 salesorders ALL \N 3006 entity_70_1 \N podium podium \N LOADER 3015 2021-01-27 08:21:27.766 2021-01-27 08:21:27.766 0 employees \N PODIUM_INTERNAL 71 employees ALL \N 3006 entity_71_2 \N podium podium \N LOADER 3016 2021-01-27 08:21:27.767 2021-01-27 08:21:27.767 0 products_full \N PODIUM_INTERNAL 75 products_full ALL \N 3006 entity_75_4 \N podium podium \N TRANSFORMER 3022 2021-01-27 11:00:14.07 2021-01-27 11:17:30.915 3 \N \N \N \N \N \N \N \N 3019 container_3 podium podium \N BUNDLE 3019 2021-01-27 11:00:14.032 2021-01-27 11:17:35.883 8 classicmodels_salesorders_full_mask \N \N \N \N \N \N \N \N \N \N podium podium \N BUNDLE 3000 2021-01-26 10:41:47.115 2021-01-27 08:25:25.543 3 classicmodels_products_full \N \N \N \N \N \N \N \N \N \N podium podium \N TRANSFORMER 3009 2021-01-27 08:21:27.746 2021-01-27 10:15:23.941 1 \N \N \N \N \N \N \N \N 3006 container_3 podium podium \N TRANSFORMER 3033 2021-01-27 13:19:01.497 2021-01-27 13:19:01.497 0 \N \N \N \N \N \N \N \N 3032 container_1 podium podium \N LOADER 3034 2021-01-27 13:19:01.501 2021-01-27 13:19:01.501 0 employees \N PODIUM_INTERNAL 22 employees UGLY \N 3032 entity_22_1 \N podium podium \N STORE 3035 2021-01-27 13:19:01.504 2021-01-27 13:19:01.504 0 employees_ugly \N PODIUM_INTERNAL 80 employees_ugly \N \N \N 3032 entity_store_2 \N podium podium \N BUNDLE 3032 2021-01-27 13:19:01.494 2021-01-27 13:19:07.06 1 classicmodels_errors_employees_ugly \N \N \N \N \N \N \N \N \N \N podium podium \N TRANSFORMER 3037 2021-01-27 13:28:22.518 2021-01-27 13:28:22.518 0 \N \N \N \N \N \N \N \N 3036 container_2 podium podium \N STORE 3018 2021-01-27 10:46:26.878 2021-01-27 10:46:26.878 0 salesorders_full \N PODIUM_INTERNAL 77 salesorders_full \N \N \N 3006 entity_store_5 \N podium podium \N AGGREGATOR 3038 2021-01-27 13:28:22.559 2021-01-27 13:28:22.559 0 \N \N \N \N \N \N \N \N 3036 container_aggregation_2 podium podium \N BUNDLE 3006 2021-01-27 08:21:27.736 2021-01-27 10:46:42.852 10 classicmodels_salesorders_full \N \N \N \N \N \N \N \N \N \N podium podium \N TRANSFORMER 3020 2021-01-27 11:00:14.056 2021-01-27 11:00:14.056 0 \N \N \N \N \N \N \N \N 3019 container_1 podium podium \N TRANSFORMER 3021 2021-01-27 11:00:14.064 2021-01-27 11:00:14.064 0 \N \N \N \N \N \N \N \N 3019 container_2 podium podium \N JOINER 3023 2021-01-27 11:00:14.087 2021-01-27 11:00:14.087 0 \N \N INNER \N \N \N \N \N 3019 container_join_1 podium podium \N JOINER 3024 2021-01-27 11:00:14.097 2021-01-27 11:00:14.097 0 \N \N INNER \N \N \N \N \N 3019 container_join_2 podium podium \N JOINER 3025 2021-01-27 11:00:14.106 2021-01-27 11:00:14.106 0 \N \N INNER \N \N \N \N \N 3019 container_join_3 podium podium \N LOADER 3026 2021-01-27 11:00:14.131 2021-01-27 11:00:14.131 0 customers \N PODIUM_INTERNAL 69 customers ALL \N 3019 entity_69_3 \N podium podium \N LOADER 3027 2021-01-27 11:00:14.134 2021-01-27 11:00:14.134 0 salesorders \N PODIUM_INTERNAL 70 salesorders ALL \N 3019 entity_70_1 \N podium podium \N LOADER 3028 2021-01-27 11:00:14.138 2021-01-27 11:00:14.138 0 employees \N PODIUM_INTERNAL 71 employees ALL \N 3019 entity_71_2 \N podium podium \N LOADER 3029 2021-01-27 11:00:14.142 2021-01-27 11:00:14.142 0 products_full \N PODIUM_INTERNAL 75 products_full ALL \N 3019 entity_75_4 \N podium podium \N LOADER 3039 2021-01-27 13:28:22.567 2021-01-27 13:28:22.567 0 salesorders_full \N PODIUM_INTERNAL 77 salesorders_full ALL \N 3036 entity_77_3 \N podium podium \N STORE 3031 2021-01-27 11:08:00.905 2021-01-27 11:08:00.905 0 sales_full_masked \N PODIUM_INTERNAL 79 sales_full_masked \N \N \N 3019 entity_store_5 \N podium podium \N STORE 3040 2021-01-27 13:28:22.571 2021-01-27 13:28:22.571 0 salesorder_by_customer_productscale \N PODIUM_INTERNAL 81 salesorder_by_customer_productscale \N \N \N 3036 entity_store_2 \N podium podium \N BUNDLE 3036 2021-01-27 13:28:22.514 2021-01-27 13:28:29.075 1 classicmodels_salesorders_aggregated \N \N \N \N \N \N \N \N \N \N podium podium \N \. -- -- Data for Name: pd_prep_parameter; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_parameter (bundle_nid, parameters, parameters_key) FROM stdin; \. -- -- Data for Name: pd_prep_port; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_port (nid, created_ttz, modified_ttz, version, port_type, package_nid, record_format_nid, idx, port_id, modifiedby, createdby) FROM stdin; 9 2021-01-27 08:21:27.741 2021-01-27 08:24:12.289 1 INBOUND 3007 9 0 container_1_INBOUND_0 podium podium 10 2021-01-27 08:21:27.742 2021-01-27 08:24:12.289 1 OUTBOUND 3007 10 0 container_1_OUTBOUND_0 podium podium 11 2021-01-27 08:21:27.744 2021-01-27 08:24:12.289 1 INBOUND 3008 11 0 container_2_INBOUND_0 podium podium 12 2021-01-27 08:21:27.745 2021-01-27 08:24:12.289 1 OUTBOUND 3008 12 0 container_2_OUTBOUND_0 podium podium 13 2021-01-27 08:21:27.746 2021-01-27 08:24:12.289 1 INBOUND 3009 13 0 container_3_INBOUND_0 podium podium 14 2021-01-27 08:21:27.748 2021-01-27 08:24:12.289 1 OUTBOUND 3009 14 0 container_3_OUTBOUND_0 podium podium 15 2021-01-27 08:21:27.749 2021-01-27 08:24:12.29 1 INBOUND 3010 15 0 container_join_1_INBOUND_0 podium podium 16 2021-01-27 08:21:27.75 2021-01-27 08:24:12.29 1 INBOUND 3010 16 1 container_join_1_INBOUND_1 podium podium 1 2021-01-26 10:41:47.135 2021-01-26 10:42:02.544 1 INBOUND 3001 1 0 container_1_INBOUND_0 podium podium 2 2021-01-26 10:41:47.153 2021-01-26 10:42:02.543 1 OUTBOUND 3001 2 0 container_1_OUTBOUND_0 podium podium 3 2021-01-26 10:41:47.161 2021-01-26 10:42:02.544 1 INBOUND 3002 3 0 container_join_1_INBOUND_0 podium podium 4 2021-01-26 10:41:47.162 2021-01-26 10:42:02.544 1 INBOUND 3002 4 1 container_join_1_INBOUND_1 podium podium 5 2021-01-26 10:41:47.163 2021-01-26 10:42:02.544 1 OUTBOUND 3002 5 0 container_join_1_OUTBOUND_0 podium podium 6 2021-01-26 10:41:47.174 2021-01-26 10:42:02.545 1 OUTBOUND 3003 6 0 entity_72_2_OUTBOUND_0 podium podium 7 2021-01-26 10:41:47.177 2021-01-26 10:42:02.545 1 OUTBOUND 3004 7 0 entity_73_1_OUTBOUND_0 podium podium 8 2021-01-26 10:41:47.185 2021-01-26 10:42:02.545 1 INBOUND 3005 8 0 entity_store_3_INBOUND_0 podium podium 17 2021-01-27 08:21:27.751 2021-01-27 08:24:12.289 1 OUTBOUND 3010 17 0 container_join_1_OUTBOUND_0 podium podium 18 2021-01-27 08:21:27.754 2021-01-27 08:24:12.29 1 INBOUND 3011 18 0 container_join_2_INBOUND_0 podium podium 19 2021-01-27 08:21:27.755 2021-01-27 08:24:12.29 1 INBOUND 3011 19 1 container_join_2_INBOUND_1 podium podium 20 2021-01-27 08:21:27.756 2021-01-27 08:24:12.29 1 OUTBOUND 3011 20 0 container_join_2_OUTBOUND_0 podium podium 21 2021-01-27 08:21:27.758 2021-01-27 08:24:12.29 1 INBOUND 3012 21 0 container_join_3_INBOUND_0 podium podium 22 2021-01-27 08:21:27.759 2021-01-27 08:24:12.29 1 INBOUND 3012 22 1 container_join_3_INBOUND_1 podium podium 23 2021-01-27 08:21:27.76 2021-01-27 08:24:12.29 1 OUTBOUND 3012 23 0 container_join_3_OUTBOUND_0 podium podium 24 2021-01-27 08:21:27.762 2021-01-27 08:24:12.29 1 OUTBOUND 3013 24 0 entity_69_3_OUTBOUND_0 podium podium 25 2021-01-27 08:21:27.764 2021-01-27 08:24:12.291 1 OUTBOUND 3014 25 0 entity_70_1_OUTBOUND_0 podium podium 26 2021-01-27 08:21:27.766 2021-01-27 08:24:12.291 1 OUTBOUND 3015 26 0 entity_71_2_OUTBOUND_0 podium podium 27 2021-01-27 08:21:27.768 2021-01-27 08:24:12.291 1 OUTBOUND 3016 27 0 entity_75_4_OUTBOUND_0 podium podium 29 2021-01-27 10:46:26.884 2021-01-27 10:46:42.855 1 INBOUND 3018 29 0 entity_store_5_INBOUND_0 podium podium 30 2021-01-27 11:00:14.058 2021-01-27 11:01:16.792 1 INBOUND 3020 30 0 container_1_INBOUND_0 podium podium 31 2021-01-27 11:00:14.061 2021-01-27 11:01:16.792 1 OUTBOUND 3020 31 0 container_1_OUTBOUND_0 podium podium 32 2021-01-27 11:00:14.065 2021-01-27 11:01:16.793 1 INBOUND 3021 32 0 container_2_INBOUND_0 podium podium 33 2021-01-27 11:00:14.067 2021-01-27 11:01:16.793 1 OUTBOUND 3021 33 0 container_2_OUTBOUND_0 podium podium 34 2021-01-27 11:00:14.071 2021-01-27 11:01:16.794 1 INBOUND 3022 34 0 container_3_INBOUND_0 podium podium 35 2021-01-27 11:00:14.073 2021-01-27 11:01:16.793 1 OUTBOUND 3022 35 0 container_3_OUTBOUND_0 podium podium 36 2021-01-27 11:00:14.089 2021-01-27 11:01:16.794 1 INBOUND 3023 36 0 container_join_1_INBOUND_0 podium podium 37 2021-01-27 11:00:14.091 2021-01-27 11:01:16.794 1 INBOUND 3023 37 1 container_join_1_INBOUND_1 podium podium 38 2021-01-27 11:00:14.093 2021-01-27 11:01:16.794 1 OUTBOUND 3023 38 0 container_join_1_OUTBOUND_0 podium podium 39 2021-01-27 11:00:14.098 2021-01-27 11:01:16.795 1 INBOUND 3024 39 0 container_join_2_INBOUND_0 podium podium 40 2021-01-27 11:00:14.101 2021-01-27 11:01:16.796 1 INBOUND 3024 40 1 container_join_2_INBOUND_1 podium podium 41 2021-01-27 11:00:14.103 2021-01-27 11:01:16.795 1 OUTBOUND 3024 41 0 container_join_2_OUTBOUND_0 podium podium 42 2021-01-27 11:00:14.107 2021-01-27 11:01:16.797 1 INBOUND 3025 42 0 container_join_3_INBOUND_0 podium podium 43 2021-01-27 11:00:14.111 2021-01-27 11:01:16.797 1 INBOUND 3025 43 1 container_join_3_INBOUND_1 podium podium 44 2021-01-27 11:00:14.113 2021-01-27 11:01:16.796 1 OUTBOUND 3025 44 0 container_join_3_OUTBOUND_0 podium podium 45 2021-01-27 11:00:14.132 2021-01-27 11:01:16.797 1 OUTBOUND 3026 45 0 entity_69_3_OUTBOUND_0 podium podium 46 2021-01-27 11:00:14.135 2021-01-27 11:01:16.798 1 OUTBOUND 3027 46 0 entity_70_1_OUTBOUND_0 podium podium 47 2021-01-27 11:00:14.138 2021-01-27 11:01:16.798 1 OUTBOUND 3028 47 0 entity_71_2_OUTBOUND_0 podium podium 48 2021-01-27 11:00:14.144 2021-01-27 11:01:16.799 1 OUTBOUND 3029 48 0 entity_75_4_OUTBOUND_0 podium podium 50 2021-01-27 11:08:00.906 2021-01-27 11:08:08.101 1 INBOUND 3031 50 0 entity_store_5_INBOUND_0 podium podium 51 2021-01-27 13:19:01.498 2021-01-27 13:19:07.062 1 INBOUND 3033 51 0 container_1_INBOUND_0 podium podium 52 2021-01-27 13:19:01.5 2021-01-27 13:19:07.061 1 OUTBOUND 3033 52 0 container_1_OUTBOUND_0 podium podium 53 2021-01-27 13:19:01.502 2021-01-27 13:19:07.061 1 OUTBOUND 3034 53 0 entity_22_1_OUTBOUND_0 podium podium 54 2021-01-27 13:19:01.505 2021-01-27 13:19:07.061 1 INBOUND 3035 54 0 entity_store_2_INBOUND_0 podium podium 55 2021-01-27 13:28:22.519 2021-01-27 13:28:29.076 1 INBOUND 3037 55 0 container_2_INBOUND_0 podium podium 56 2021-01-27 13:28:22.52 2021-01-27 13:28:29.076 1 OUTBOUND 3037 56 0 container_2_OUTBOUND_0 podium podium 57 2021-01-27 13:28:22.561 2021-01-27 13:28:29.076 1 INBOUND 3038 57 0 container_aggregation_2_INBOUND_0 podium podium 58 2021-01-27 13:28:22.563 2021-01-27 13:28:29.076 1 OUTBOUND 3038 58 0 container_aggregation_2_OUTBOUND_0 podium podium 59 2021-01-27 13:28:22.568 2021-01-27 13:28:29.076 1 OUTBOUND 3039 59 0 entity_77_3_OUTBOUND_0 podium podium 60 2021-01-27 13:28:22.572 2021-01-27 13:28:29.075 1 INBOUND 3040 60 0 entity_store_2_INBOUND_0 podium podium \. -- -- Data for Name: pd_prep_record_format; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_record_format (nid, created_ttz, modified_ttz, version, sname, modifiedby, createdby) FROM stdin; 1 2021-01-26 10:41:47.137 2021-01-26 10:41:47.137 0 \N podium podium 2 2021-01-26 10:41:47.153 2021-01-26 10:41:47.153 0 \N podium podium 3 2021-01-26 10:41:47.161 2021-01-26 10:41:47.161 0 products podium podium 4 2021-01-26 10:41:47.162 2021-01-26 10:41:47.162 0 productlines podium podium 5 2021-01-26 10:41:47.163 2021-01-26 10:41:47.163 0 \N podium podium 6 2021-01-26 10:41:47.174 2021-01-26 10:41:47.174 0 \N podium podium 7 2021-01-26 10:41:47.177 2021-01-26 10:41:47.177 0 \N podium podium 8 2021-01-26 10:41:47.185 2021-01-26 10:41:47.185 0 \N podium podium 9 2021-01-27 08:21:27.741 2021-01-27 08:21:27.741 0 \N podium podium 10 2021-01-27 08:21:27.742 2021-01-27 08:21:27.742 0 \N podium podium 11 2021-01-27 08:21:27.744 2021-01-27 08:21:27.744 0 \N podium podium 12 2021-01-27 08:21:27.745 2021-01-27 08:21:27.745 0 \N podium podium 13 2021-01-27 08:21:27.747 2021-01-27 08:21:27.747 0 \N podium podium 15 2021-01-27 08:21:27.749 2021-01-27 08:21:27.749 0 salesorders podium podium 16 2021-01-27 08:21:27.75 2021-01-27 08:21:27.75 0 products_full podium podium 17 2021-01-27 08:21:27.751 2021-01-27 08:21:27.751 0 \N podium podium 18 2021-01-27 08:21:27.754 2021-01-27 08:21:27.754 0 Transformer_2 podium podium 19 2021-01-27 08:21:27.755 2021-01-27 08:21:27.755 0 customers podium podium 20 2021-01-27 08:21:27.756 2021-01-27 08:21:27.756 0 \N podium podium 21 2021-01-27 08:21:27.758 2021-01-27 08:21:27.758 0 Transformer_4 podium podium 22 2021-01-27 08:21:27.759 2021-01-27 08:21:27.759 0 employees podium podium 23 2021-01-27 08:21:27.76 2021-01-27 08:21:27.76 0 \N podium podium 24 2021-01-27 08:21:27.762 2021-01-27 08:21:27.762 0 \N podium podium 25 2021-01-27 08:21:27.764 2021-01-27 08:21:27.764 0 \N podium podium 26 2021-01-27 08:21:27.766 2021-01-27 08:21:27.766 0 \N podium podium 27 2021-01-27 08:21:27.768 2021-01-27 08:21:27.768 0 \N podium podium 28 2021-01-27 08:24:12.272 2021-01-27 08:24:12.272 0 \N podium podium 14 2021-01-27 08:21:27.748 2021-01-27 10:15:23.942 1 \N podium podium 29 2021-01-27 10:46:26.889 2021-01-27 10:46:26.889 0 \N podium podium 30 2021-01-27 11:00:14.058 2021-01-27 11:00:14.058 0 \N podium podium 31 2021-01-27 11:00:14.061 2021-01-27 11:00:14.061 0 \N podium podium 32 2021-01-27 11:00:14.065 2021-01-27 11:00:14.065 0 \N podium podium 33 2021-01-27 11:00:14.068 2021-01-27 11:00:14.068 0 \N podium podium 34 2021-01-27 11:00:14.072 2021-01-27 11:00:14.072 0 \N podium podium 36 2021-01-27 11:00:14.089 2021-01-27 11:00:14.089 0 salesorders podium podium 37 2021-01-27 11:00:14.091 2021-01-27 11:00:14.091 0 products_full podium podium 38 2021-01-27 11:00:14.093 2021-01-27 11:00:14.093 0 \N podium podium 39 2021-01-27 11:00:14.098 2021-01-27 11:00:14.098 0 Transformer_2 podium podium 40 2021-01-27 11:00:14.101 2021-01-27 11:00:14.101 0 customers podium podium 41 2021-01-27 11:00:14.103 2021-01-27 11:00:14.103 0 \N podium podium 42 2021-01-27 11:00:14.108 2021-01-27 11:00:14.108 0 Transformer_4 podium podium 43 2021-01-27 11:00:14.111 2021-01-27 11:00:14.111 0 employees podium podium 44 2021-01-27 11:00:14.113 2021-01-27 11:00:14.113 0 \N podium podium 45 2021-01-27 11:00:14.132 2021-01-27 11:00:14.132 0 \N podium podium 46 2021-01-27 11:00:14.136 2021-01-27 11:00:14.136 0 \N podium podium 47 2021-01-27 11:00:14.139 2021-01-27 11:00:14.139 0 \N podium podium 48 2021-01-27 11:00:14.144 2021-01-27 11:00:14.144 0 \N podium podium 50 2021-01-27 11:08:00.907 2021-01-27 11:08:00.907 0 \N podium podium 35 2021-01-27 11:00:14.074 2021-01-27 11:08:00.932 1 \N podium podium 51 2021-01-27 13:19:01.498 2021-01-27 13:19:01.498 0 \N podium podium 52 2021-01-27 13:19:01.5 2021-01-27 13:19:01.5 0 \N podium podium 53 2021-01-27 13:19:01.502 2021-01-27 13:19:01.502 0 \N podium podium 54 2021-01-27 13:19:01.506 2021-01-27 13:19:01.506 0 \N podium podium 55 2021-01-27 13:28:22.519 2021-01-27 13:28:22.519 0 \N podium podium 56 2021-01-27 13:28:22.521 2021-01-27 13:28:22.521 0 \N podium podium 57 2021-01-27 13:28:22.561 2021-01-27 13:28:22.561 0 \N podium podium 58 2021-01-27 13:28:22.563 2021-01-27 13:28:22.563 0 \N podium podium 59 2021-01-27 13:28:22.568 2021-01-27 13:28:22.568 0 \N podium podium 60 2021-01-27 13:28:22.572 2021-01-27 13:28:22.572 0 \N podium podium \. -- -- Data for Name: pd_prep_router_expression; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_router_expression (router_nid, expression, idx) FROM stdin; \. -- -- Data for Name: pd_prep_sort_condition; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_sort_condition (sorter_nid, sort_direction, sort_field, idx) FROM stdin; \. -- -- Data for Name: pd_prep_transformer_expression; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prep_transformer_expression (transformer_nid, expression, idx) FROM stdin; 3001 productCode 0 3001 productName 1 3001 productScale 2 3001 productVendor 3 3001 productDescription 4 3001 quantityInStock 5 3001 buyPrice 6 3001 MSRP 7 3001 productLine 8 3001 textDescription 9 3007 orderNumber 0 3007 orderDate 1 3007 requiredDate 2 3007 shippedDate 3 3007 status 4 3007 customerNumber 5 3007 orderLineNumber 6 3007 priceEach 7 3007 quantityOrdered 8 3007 productCode 9 3007 productName 10 3007 productScale 11 3007 productVendor 12 3007 productDescription 13 3007 quantityInStock 14 3007 buyPrice 15 3007 MSRP 16 3007 productLine 17 3007 textDescription 18 3008 orderNumber 0 3008 orderDate 1 3008 requiredDate 2 3008 shippedDate 3 3008 status 4 3008 customerNumber 5 3008 orderLineNumber 6 3008 priceEach 7 3008 quantityOrdered 8 3008 productCode 9 3008 productName 10 3008 productScale 11 3008 productVendor 12 3008 productDescription 13 3008 quantityInStock 14 3008 buyPrice 15 3008 MSRP 16 3008 productLine 17 3008 textDescription 18 3008 customerName 19 3008 contactLastName 20 3008 contactFirstName 21 3008 phone 22 3008 addressLine1 23 3008 addressLine2 24 3008 city 25 3008 state 26 3008 postalCode 27 3008 country 28 3008 salesRepEmployeeNumber 29 3008 creditLimit 30 3008 customerLocation 31 3009 orderNumber 0 3009 orderDate 1 3009 requiredDate 2 3009 shippedDate 3 3009 status 4 3009 customerNumber 5 3009 orderLineNumber 6 3009 priceEach 7 3009 quantityOrdered 8 3009 productCode 9 3009 productName 10 3009 productScale 11 3009 productVendor 12 3009 productDescription 13 3009 quantityInStock 14 3009 buyPrice 15 3009 MSRP 16 3009 productLine 17 3009 textDescription 18 3009 customerName 19 3009 contactLastName 20 3009 contactFirstName 21 3009 phone 22 3009 addressLine1 23 3009 addressLine2 24 3009 city 25 3009 state 26 3009 postalCode 27 3009 country 28 3009 salesRepEmployeeNumber 29 3009 creditLimit 30 3009 customerLocation 31 3009 lastName 32 3009 firstName 33 3009 extension 34 3009 email 35 3009 reportsTo 36 3009 jobTitle 37 3009 officeCode 38 3009 TO_DECIMAL ( priceEach * quantityOrdered ) 39 3020 orderNumber 0 3020 orderDate 1 3020 requiredDate 2 3020 shippedDate 3 3020 status 4 3020 customerNumber 5 3020 orderLineNumber 6 3020 priceEach 7 3020 quantityOrdered 8 3020 productCode 9 3020 productName 10 3020 productScale 11 3020 productVendor 12 3020 productDescription 13 3020 quantityInStock 14 3020 buyPrice 15 3020 MSRP 16 3020 productLine 17 3020 textDescription 18 3021 orderNumber 0 3021 orderDate 1 3021 requiredDate 2 3021 shippedDate 3 3021 status 4 3021 customerNumber 5 3021 orderLineNumber 6 3021 priceEach 7 3021 quantityOrdered 8 3021 productCode 9 3021 productName 10 3021 productScale 11 3021 productVendor 12 3021 productDescription 13 3021 quantityInStock 14 3021 buyPrice 15 3021 MSRP 16 3021 productLine 17 3021 textDescription 18 3021 customerName 19 3021 contactLastName 20 3021 contactFirstName 21 3021 phone 22 3021 addressLine1 23 3021 addressLine2 24 3021 city 25 3021 state 26 3021 postalCode 27 3021 country 28 3021 salesRepEmployeeNumber 29 3021 creditLimit 30 3021 customerLocation 31 3022 orderNumber 0 3022 orderDate 1 3022 requiredDate 2 3022 shippedDate 3 3022 status 4 3022 customerNumber 5 3022 orderLineNumber 6 3022 priceEach 7 3022 quantityOrdered 8 3022 productCode 9 3022 productName 10 3022 productScale 11 3022 productVendor 12 3022 productDescription 13 3022 quantityInStock 14 3022 Obfuscate ( buyPrice, 'Digest SHA256 Lower' ) 15 3022 MSRP 16 3022 productLine 17 3022 textDescription 18 3022 customerName 19 3022 contactLastName 20 3022 contactFirstName 21 3022 phone 22 3022 addressLine1 23 3022 addressLine2 24 3022 city 25 3022 state 26 3022 postalCode 27 3022 country 28 3022 salesRepEmployeeNumber 29 3022 Obfuscate ( creditLimit, 'Digest MD5 Upper x2' ) 30 3022 customerLocation 31 3022 lastName 32 3022 firstName 33 3022 extension 34 3022 email 35 3022 reportsTo 36 3022 jobTitle 37 3022 officeCode 38 3022 TO_DECIMAL ( priceEach * quantityOrdered ) 39 3033 employeeNumber 0 3033 lastName 1 3033 firstName 2 3033 extension 3 3033 email 4 3033 reportsTo 5 3033 jobTitle 6 3033 officeCode 7 3033 'Wrong email, please verify and fix' 8 3037 customerNumber 0 3037 productScale 1 3037 orderTotal 2 \. -- -- Data for Name: pd_prepare_execution_wo_param; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prepare_execution_wo_param (workorder_nid, jobparams, jobparams_key) FROM stdin; \. -- -- Data for Name: pd_prepare_execution_wo_prop; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prepare_execution_wo_prop (nid, workorder_nid, prop_name, prop_value, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_prepare_execution_workorder; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prepare_execution_workorder (nid, bundle_nid, delivery_time, start_time, end_time, order_size, record_count, workorder_status, delivery_id, status_log, detailed_status_log, created_ttz, modified_ttz, version, actor_name, modifiedby, createdby, chaff_count, expected_count, good_count, bad_count, ugly_count, sample_count, load_type, partition_name) FROM stdin; 1 3000 2021-01-25 23:00:00+00 2021-01-26 10:42:29.051+00 2021-01-26 10:42:43.447+00 0 110 FINISHED classicmodels_products_full.LOCAL.20210125230000 2021-01-26 10:42:29.051: Starting job: classicmodels_products_full.LOCAL.20210125230000\n2021-01-26 10:42:29.084: Watching for process completion/termination.\n2021-01-26 10:42:29.343: Lineage generation is turned off globally. Will not attempt to refresh lineage for prepare dataflow.\n2021-01-26 10:42:29.346: Generating scripts to execute dataflow.\n2021-01-26 10:42:29.986: Scripts successfully generated for the dataflow.\n2021-01-26 10:42:29.988: Executing dataflow now with engine: LOCAL\n2021-01-26 10:42:38.631: Starting prepare profiling task.\n2021-01-26 10:42:38.649: products_full: Starting job: classic_models.products_full.20210125230000\n2021-01-26 10:42:38.649: products_full: Started loading into receiving.\n2021-01-26 10:42:38.923: products_full: Receiving data with load type: DATA\n2021-01-26 10:42:40.367: products_full: Finished loading into receiving.\n2021-01-26 10:42:40.368: products_full: Started profile merging.\n2021-01-26 10:42:41.621: products_full: Finished profile merging.\n2021-01-26 10:42:41.621: products_full: Started profile persistence.\n2021-01-26 10:42:41.697: products_full: Profile record counts: good=110, bad=0, ugly=0, filtered=0, total=110.\n2021-01-26 10:42:41.697: products_full: Finished profile persistence.\n2021-01-26 10:42:41.697: products_full: Finished job: classic_models.products_full.20210125230000\n2021-01-26 10:42:41.697: Finished prepare profiling task.\n2021-01-26 10:42:41.698: Started setting posix permissions.\n2021-01-26 10:42:41.756: Finished setting posix permissions.\n2021-01-26 10:42:41.784: Creating distribution tables for target entity products_full.\n2021-01-26 10:42:41.950: Calculating record count.\n2021-01-26 10:42:41.952: Starting prepare cleanup.\n2021-01-26 10:42:41.987: Finished prepare cleanup.\n2021-01-26 10:42:41.987: Running postprocessing rules.\n2021-01-26 10:42:42.052: Finished running postprocessing rules.\n2021-01-26 10:42:42.054: Running metrics computation.\n2021-01-26 10:42:43.409: Finished metrics computation.\n2021-01-26 10:42:43.446: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:42:43.447: Finished job: classicmodels_products_full.LOCAL.20210125230000\n \N 2021-01-26 10:42:03.371+00 2021-01-26 10:42:43.454+00 5 podium ANONYMOUS podium 0 0 220 0 0 11 DATA 20210125230000 2 3006 2021-01-27 09:00:00+00 2021-01-27 10:16:04.504+00 2021-01-27 10:16:33.173+00 0 2473 FINISHED salesorders_full.LOCAL.20210127090000 2021-01-27 10:16:04.505: Starting job: salesorders_full.LOCAL.20210127090000\n2021-01-27 10:16:04.532: Watching for process completion/termination.\n2021-01-27 10:16:04.884: Lineage generation is turned off globally. Will not attempt to refresh lineage for prepare dataflow.\n2021-01-27 10:16:04.905: Generating scripts to execute dataflow.\n2021-01-27 10:16:05.795: Scripts successfully generated for the dataflow.\n2021-01-27 10:16:05.795: Executing dataflow now with engine: LOCAL\n2021-01-27 10:16:28.051: Starting prepare profiling task.\n2021-01-27 10:16:28.067: salesorders_full: Starting job: classic_models.salesorders_full.20210127090000\n2021-01-27 10:16:28.067: salesorders_full: Started loading into receiving.\n2021-01-27 10:16:28.358: salesorders_full: Receiving data with load type: DATA\n2021-01-27 10:16:29.696: salesorders_full: Finished loading into receiving.\n2021-01-27 10:16:29.696: salesorders_full: Started profile merging.\n2021-01-27 10:16:31.007: salesorders_full: Finished profile merging.\n2021-01-27 10:16:31.007: salesorders_full: Started profile persistence.\n2021-01-27 10:16:31.078: salesorders_full: Profile record counts: good=0, bad=2473, ugly=0, filtered=0, total=2473.\n2021-01-27 10:16:31.078: salesorders_full: Finished profile persistence.\n2021-01-27 10:16:31.078: salesorders_full: Finished job: classic_models.salesorders_full.20210127090000\n2021-01-27 10:16:31.079: Finished prepare profiling task.\n2021-01-27 10:16:31.079: Started setting posix permissions.\n2021-01-27 10:16:31.161: Finished setting posix permissions.\n2021-01-27 10:16:31.200: Creating distribution tables for target entity salesorders_full.\n2021-01-27 10:16:31.378: Calculating record count.\n2021-01-27 10:16:31.380: Starting prepare cleanup.\n2021-01-27 10:16:31.410: Finished prepare cleanup.\n2021-01-27 10:16:31.411: Running postprocessing rules.\n2021-01-27 10:16:31.571: Finished running postprocessing rules.\n2021-01-27 10:16:31.585: Running metrics computation.\n2021-01-27 10:16:33.131: Finished metrics computation.\n2021-01-27 10:16:33.172: Not inferring entity relations because it is turned off globally.\n2021-01-27 10:16:33.173: Finished job: salesorders_full.LOCAL.20210127090000\n \N 2021-01-27 10:15:33.685+00 2021-01-27 10:47:38.162+00 6 podium ANONYMOUS podium 0 0 4946 0 0 37 DATA 20210127090000 3 3006 2021-01-27 09:00:00+00 2021-01-27 10:21:15.883+00 2021-01-27 10:21:44.103+00 0 2473 FINISHED classicmodels_salesorders_full.LOCAL.20210127102045 2021-01-27 10:21:15.883: Starting job: classicmodels_salesorders_full.LOCAL.20210127102045\n2021-01-27 10:21:15.904: Watching for process completion/termination.\n2021-01-27 10:21:16.311: Lineage generation is turned off globally. Will not attempt to refresh lineage for prepare dataflow.\n2021-01-27 10:21:16.311: Generating scripts to execute dataflow.\n2021-01-27 10:21:17.156: Scripts successfully generated for the dataflow.\n2021-01-27 10:21:17.156: Executing dataflow now with engine: LOCAL\n2021-01-27 10:21:39.157: Starting prepare profiling task.\n2021-01-27 10:21:39.175: salesorders_full: Starting job: classic_models.salesorders_full.20210127102045\n2021-01-27 10:21:39.176: salesorders_full: Started loading into receiving.\n2021-01-27 10:21:39.432: salesorders_full: Receiving data with load type: DATA\n2021-01-27 10:21:40.810: salesorders_full: Finished loading into receiving.\n2021-01-27 10:21:40.810: salesorders_full: Started profile merging.\n2021-01-27 10:21:42.155: salesorders_full: Finished profile merging.\n2021-01-27 10:21:42.155: salesorders_full: Started profile persistence.\n2021-01-27 10:21:42.240: salesorders_full: Profile record counts: good=0, bad=2473, ugly=0, filtered=0, total=2473.\n2021-01-27 10:21:42.241: salesorders_full: Finished profile persistence.\n2021-01-27 10:21:42.241: salesorders_full: Finished job: classic_models.salesorders_full.20210127102045\n2021-01-27 10:21:42.241: Finished prepare profiling task.\n2021-01-27 10:21:42.242: Started reconciling partitions.\n2021-01-27 10:21:42.327: Finished reconciling partitions.\n2021-01-27 10:21:42.328: Started setting posix permissions.\n2021-01-27 10:21:42.434: Finished setting posix permissions.\n2021-01-27 10:21:42.472: Creating distribution tables for target entity salesorders_full.\n2021-01-27 10:21:42.654: Calculating record count.\n2021-01-27 10:21:42.671: Starting prepare cleanup.\n2021-01-27 10:21:42.701: Finished prepare cleanup.\n2021-01-27 10:21:42.702: Running postprocessing rules.\n2021-01-27 10:21:42.772: Finished running postprocessing rules.\n2021-01-27 10:21:42.772: Running metrics computation.\n2021-01-27 10:21:44.056: Finished metrics computation.\n2021-01-27 10:21:44.103: Not inferring entity relations because it is turned off globally.\n2021-01-27 10:21:44.103: Finished job: classicmodels_salesorders_full.LOCAL.20210127102045\n \N 2021-01-27 10:20:45.009+00 2021-01-27 10:21:44.11+00 5 podium ANONYMOUS podium 0 0 2473 2473 0 0 OVERWRITE 20210127090000 4 3006 2021-01-27 09:00:00+00 2021-01-27 10:47:11.115+00 2021-01-27 10:47:39.801+00 0 2473 FINISHED classicmodels_salesorders_full.LOCAL.20210127104645 2021-01-27 10:47:11.115: Starting job: classicmodels_salesorders_full.LOCAL.20210127104645\n2021-01-27 10:47:11.130: Watching for process completion/termination.\n2021-01-27 10:47:11.504: Lineage generation is turned off globally. Will not attempt to refresh lineage for prepare dataflow.\n2021-01-27 10:47:11.505: Generating scripts to execute dataflow.\n2021-01-27 10:47:12.423: Scripts successfully generated for the dataflow.\n2021-01-27 10:47:12.424: Executing dataflow now with engine: LOCAL\n2021-01-27 10:47:34.544: Starting prepare profiling task.\n2021-01-27 10:47:34.559: salesorders_full: Starting job: classic_models.salesorders_full.20210127104645\n2021-01-27 10:47:34.560: salesorders_full: Started loading into receiving.\n2021-01-27 10:47:34.872: salesorders_full: Receiving data with load type: DATA\n2021-01-27 10:47:36.292: salesorders_full: Finished loading into receiving.\n2021-01-27 10:47:36.293: salesorders_full: Started profile merging.\n2021-01-27 10:47:37.598: salesorders_full: Finished profile merging.\n2021-01-27 10:47:37.598: salesorders_full: Started profile persistence.\n2021-01-27 10:47:37.701: salesorders_full: Profile record counts: good=2473, bad=0, ugly=0, filtered=0, total=2473.\n2021-01-27 10:47:37.701: salesorders_full: Finished profile persistence.\n2021-01-27 10:47:37.701: salesorders_full: Finished job: classic_models.salesorders_full.20210127104645\n2021-01-27 10:47:37.701: Finished prepare profiling task.\n2021-01-27 10:47:37.702: Started reconciling partitions.\n2021-01-27 10:47:37.821: Finished reconciling partitions.\n2021-01-27 10:47:37.823: Started setting posix permissions.\n2021-01-27 10:47:37.935: Finished setting posix permissions.\n2021-01-27 10:47:37.968: Creating distribution tables for target entity salesorders_full.\n2021-01-27 10:47:38.147: Calculating record count.\n2021-01-27 10:47:38.167: Starting prepare cleanup.\n2021-01-27 10:47:38.199: Finished prepare cleanup.\n2021-01-27 10:47:38.199: Running postprocessing rules.\n2021-01-27 10:47:38.277: Finished running postprocessing rules.\n2021-01-27 10:47:38.278: Running metrics computation.\n2021-01-27 10:47:39.743: Finished metrics computation.\n2021-01-27 10:47:39.801: Not inferring entity relations because it is turned off globally.\n2021-01-27 10:47:39.801: Finished job: classicmodels_salesorders_full.LOCAL.20210127104645\n \N 2021-01-27 10:46:45.213+00 2021-01-27 10:47:39.809+00 5 podium ANONYMOUS podium 0 0 4946 0 0 37 OVERWRITE 20210127090000 7 3019 2021-01-27 11:00:00+00 2021-01-27 11:14:56.109+00 2021-01-27 11:15:25.068+00 0 2473 FINISHED classicmodels_salesorders_full_mask.LOCAL.20210127111425 2021-01-27 11:14:56.110: Starting job: classicmodels_salesorders_full_mask.LOCAL.20210127111425\n2021-01-27 11:14:56.161: Watching for process completion/termination.\n2021-01-27 11:14:56.426: Lineage generation is turned off globally. Will not attempt to refresh lineage for prepare dataflow.\n2021-01-27 11:14:56.433: Generating scripts to execute dataflow.\n2021-01-27 11:14:57.365: Scripts successfully generated for the dataflow.\n2021-01-27 11:14:57.365: Starting prepare shipping task.\n2021-01-27 11:14:57.533: Finished prepare shipping task.\n2021-01-27 11:14:57.534: Executing dataflow now with engine: LOCAL\n2021-01-27 11:15:19.770: Starting prepare profiling task.\n2021-01-27 11:15:19.787: sales_full_masked: Starting job: classic_models.sales_full_masked.20210127111425\n2021-01-27 11:15:19.788: sales_full_masked: Started loading into receiving.\n2021-01-27 11:15:20.214: sales_full_masked: Receiving data with load type: DATA\n2021-01-27 11:15:21.651: sales_full_masked: Finished loading into receiving.\n2021-01-27 11:15:21.651: sales_full_masked: Started profile merging.\n2021-01-27 11:15:22.984: sales_full_masked: Finished profile merging.\n2021-01-27 11:15:22.985: sales_full_masked: Started profile persistence.\n2021-01-27 11:15:23.054: sales_full_masked: Profile record counts: good=2473, bad=0, ugly=0, filtered=0, total=2473.\n2021-01-27 11:15:23.054: sales_full_masked: Finished profile persistence.\n2021-01-27 11:15:23.054: sales_full_masked: Finished job: classic_models.sales_full_masked.20210127111425\n2021-01-27 11:15:23.055: Finished prepare profiling task.\n2021-01-27 11:15:23.056: Started reconciling partitions.\n2021-01-27 11:15:23.161: Finished reconciling partitions.\n2021-01-27 11:15:23.161: Started setting posix permissions.\n2021-01-27 11:15:23.268: Finished setting posix permissions.\n2021-01-27 11:15:23.300: Creating distribution tables for target entity sales_full_masked.\n2021-01-27 11:15:23.468: Calculating record count.\n2021-01-27 11:15:23.491: Starting prepare cleanup.\n2021-01-27 11:15:23.519: Finished prepare cleanup.\n2021-01-27 11:15:23.522: Running postprocessing rules.\n2021-01-27 11:15:23.593: Finished running postprocessing rules.\n2021-01-27 11:15:23.593: Running metrics computation.\n2021-01-27 11:15:25.027: Finished metrics computation.\n2021-01-27 11:15:25.068: Not inferring entity relations because it is turned off globally.\n2021-01-27 11:15:25.068: Finished job: classicmodels_salesorders_full_mask.LOCAL.20210127111425\n \N 2021-01-27 11:14:25.349+00 2021-01-27 11:15:25.073+00 5 podium ANONYMOUS podium 0 0 4946 0 0 35 OVERWRITE 20210127110000 5 3019 2021-01-27 11:00:00+00 2021-01-27 11:08:35.323+00 2021-01-27 11:09:03.472+00 0 2473 FINISHED classicmodels_salesorders_full_mask.LOCAL.20210127110000 2021-01-27 11:08:35.323: Starting job: classicmodels_salesorders_full_mask.LOCAL.20210127110000\n2021-01-27 11:08:35.363: Watching for process completion/termination.\n2021-01-27 11:08:35.672: Lineage generation is turned off globally. Will not attempt to refresh lineage for prepare dataflow.\n2021-01-27 11:08:35.684: Generating scripts to execute dataflow.\n2021-01-27 11:08:36.559: Scripts successfully generated for the dataflow.\n2021-01-27 11:08:36.559: Starting prepare shipping task.\n2021-01-27 11:08:36.715: Finished prepare shipping task.\n2021-01-27 11:08:36.716: Executing dataflow now with engine: LOCAL\n2021-01-27 11:08:58.853: Starting prepare profiling task.\n2021-01-27 11:08:58.869: sales_full_masked: Starting job: classic_models.sales_full_masked.20210127110000\n2021-01-27 11:08:58.869: sales_full_masked: Started loading into receiving.\n2021-01-27 11:08:59.089: sales_full_masked: Receiving data with load type: DATA\n2021-01-27 11:09:00.412: sales_full_masked: Finished loading into receiving.\n2021-01-27 11:09:00.412: sales_full_masked: Started profile merging.\n2021-01-27 11:09:01.704: sales_full_masked: Finished profile merging.\n2021-01-27 11:09:01.705: sales_full_masked: Started profile persistence.\n2021-01-27 11:09:01.780: sales_full_masked: Profile record counts: good=2473, bad=0, ugly=0, filtered=0, total=2473.\n2021-01-27 11:09:01.780: sales_full_masked: Finished profile persistence.\n2021-01-27 11:09:01.780: sales_full_masked: Finished job: classic_models.sales_full_masked.20210127110000\n2021-01-27 11:09:01.781: Finished prepare profiling task.\n2021-01-27 11:09:01.781: Started setting posix permissions.\n2021-01-27 11:09:01.863: Finished setting posix permissions.\n2021-01-27 11:09:01.901: Creating distribution tables for target entity sales_full_masked.\n2021-01-27 11:09:02.086: Calculating record count.\n2021-01-27 11:09:02.089: Starting prepare cleanup.\n2021-01-27 11:09:02.123: Finished prepare cleanup.\n2021-01-27 11:09:02.128: Running postprocessing rules.\n2021-01-27 11:09:02.194: Finished running postprocessing rules.\n2021-01-27 11:09:02.195: Running metrics computation.\n2021-01-27 11:09:03.425: Finished metrics computation.\n2021-01-27 11:09:03.472: Not inferring entity relations because it is turned off globally.\n2021-01-27 11:09:03.472: Finished job: classicmodels_salesorders_full_mask.LOCAL.20210127110000\n \N 2021-01-27 11:08:09.505+00 2021-01-27 11:15:23.485+00 7 podium ANONYMOUS podium 0 0 4946 0 0 35 DATA 20210127110000 6 3019 2021-01-27 11:00:00+00 2021-01-27 11:12:19.069+00 2021-01-27 11:12:47.579+00 0 2473 FINISHED classicmodels_salesorders_full_mask.LOCAL.20210127111153 2021-01-27 11:12:19.069: Starting job: classicmodels_salesorders_full_mask.LOCAL.20210127111153\n2021-01-27 11:12:19.084: Watching for process completion/termination.\n2021-01-27 11:12:19.463: Lineage generation is turned off globally. Will not attempt to refresh lineage for prepare dataflow.\n2021-01-27 11:12:19.464: Generating scripts to execute dataflow.\n2021-01-27 11:12:20.348: Scripts successfully generated for the dataflow.\n2021-01-27 11:12:20.348: Starting prepare shipping task.\n2021-01-27 11:12:20.493: Finished prepare shipping task.\n2021-01-27 11:12:20.494: Executing dataflow now with engine: LOCAL\n2021-01-27 11:12:42.760: Starting prepare profiling task.\n2021-01-27 11:12:42.775: sales_full_masked: Starting job: classic_models.sales_full_masked.20210127111153\n2021-01-27 11:12:42.776: sales_full_masked: Started loading into receiving.\n2021-01-27 11:12:43.049: sales_full_masked: Receiving data with load type: DATA\n2021-01-27 11:12:44.380: sales_full_masked: Finished loading into receiving.\n2021-01-27 11:12:44.381: sales_full_masked: Started profile merging.\n2021-01-27 11:12:45.631: sales_full_masked: Finished profile merging.\n2021-01-27 11:12:45.631: sales_full_masked: Started profile persistence.\n2021-01-27 11:12:45.715: sales_full_masked: Profile record counts: good=2473, bad=0, ugly=0, filtered=0, total=2473.\n2021-01-27 11:12:45.715: sales_full_masked: Finished profile persistence.\n2021-01-27 11:12:45.715: sales_full_masked: Finished job: classic_models.sales_full_masked.20210127111153\n2021-01-27 11:12:45.715: Finished prepare profiling task.\n2021-01-27 11:12:45.716: Started reconciling partitions.\n2021-01-27 11:12:45.814: Finished reconciling partitions.\n2021-01-27 11:12:45.814: Started setting posix permissions.\n2021-01-27 11:12:45.894: Finished setting posix permissions.\n2021-01-27 11:12:45.924: Creating distribution tables for target entity sales_full_masked.\n2021-01-27 11:12:46.086: Calculating record count.\n2021-01-27 11:12:46.109: Starting prepare cleanup.\n2021-01-27 11:12:46.133: Finished prepare cleanup.\n2021-01-27 11:12:46.133: Running postprocessing rules.\n2021-01-27 11:12:46.210: Finished running postprocessing rules.\n2021-01-27 11:12:46.211: Running metrics computation.\n2021-01-27 11:12:47.537: Finished metrics computation.\n2021-01-27 11:12:47.579: Not inferring entity relations because it is turned off globally.\n2021-01-27 11:12:47.579: Finished job: classicmodels_salesorders_full_mask.LOCAL.20210127111153\n \N 2021-01-27 11:11:53.219+00 2021-01-27 11:12:47.584+00 5 podium ANONYMOUS podium 0 0 4946 0 0 32 OVERWRITE 20210127110000 8 3019 2021-01-27 11:00:00+00 2021-01-27 11:18:07.968+00 2021-01-27 11:18:36.894+00 0 2473 FINISHED classicmodels_salesorders_full_mask.LOCAL.20210127111737 2021-01-27 11:18:07.968: Starting job: classicmodels_salesorders_full_mask.LOCAL.20210127111737\n2021-01-27 11:18:08.020: Watching for process completion/termination.\n2021-01-27 11:18:08.317: Lineage generation is turned off globally. Will not attempt to refresh lineage for prepare dataflow.\n2021-01-27 11:18:08.318: Generating scripts to execute dataflow.\n2021-01-27 11:18:09.269: Scripts successfully generated for the dataflow.\n2021-01-27 11:18:09.270: Starting prepare shipping task.\n2021-01-27 11:18:09.438: Finished prepare shipping task.\n2021-01-27 11:18:09.438: Executing dataflow now with engine: LOCAL\n2021-01-27 11:18:31.788: Starting prepare profiling task.\n2021-01-27 11:18:31.805: sales_full_masked: Starting job: classic_models.sales_full_masked.20210127111737\n2021-01-27 11:18:31.806: sales_full_masked: Started loading into receiving.\n2021-01-27 11:18:32.058: sales_full_masked: Receiving data with load type: DATA\n2021-01-27 11:18:33.435: sales_full_masked: Finished loading into receiving.\n2021-01-27 11:18:33.435: sales_full_masked: Started profile merging.\n2021-01-27 11:18:34.783: sales_full_masked: Finished profile merging.\n2021-01-27 11:18:34.784: sales_full_masked: Started profile persistence.\n2021-01-27 11:18:34.880: sales_full_masked: Profile record counts: good=2473, bad=0, ugly=0, filtered=0, total=2473.\n2021-01-27 11:18:34.880: sales_full_masked: Finished profile persistence.\n2021-01-27 11:18:34.880: sales_full_masked: Finished job: classic_models.sales_full_masked.20210127111737\n2021-01-27 11:18:34.880: Finished prepare profiling task.\n2021-01-27 11:18:34.881: Started reconciling partitions.\n2021-01-27 11:18:34.985: Finished reconciling partitions.\n2021-01-27 11:18:34.986: Started setting posix permissions.\n2021-01-27 11:18:35.070: Finished setting posix permissions.\n2021-01-27 11:18:35.110: Creating distribution tables for target entity sales_full_masked.\n2021-01-27 11:18:35.276: Calculating record count.\n2021-01-27 11:18:35.308: Starting prepare cleanup.\n2021-01-27 11:18:35.339: Finished prepare cleanup.\n2021-01-27 11:18:35.339: Running postprocessing rules.\n2021-01-27 11:18:35.410: Finished running postprocessing rules.\n2021-01-27 11:18:35.411: Running metrics computation.\n2021-01-27 11:18:36.837: Finished metrics computation.\n2021-01-27 11:18:36.894: Not inferring entity relations because it is turned off globally.\n2021-01-27 11:18:36.894: Finished job: classicmodels_salesorders_full_mask.LOCAL.20210127111737\n \N 2021-01-27 11:17:37.191+00 2021-01-27 11:18:36.902+00 5 podium ANONYMOUS podium 0 0 4946 0 0 35 OVERWRITE 20210127110000 10 3036 2021-01-27 13:00:00+00 2021-01-27 13:29:00.14+00 2021-01-27 13:29:14.294+00 0 556 FINISHED classicmodels_salesorders_aggregated.LOCAL.20210127130000 2021-01-27 13:29:00.140: Starting job: classicmodels_salesorders_aggregated.LOCAL.20210127130000\n2021-01-27 13:29:00.182: Watching for process completion/termination.\n2021-01-27 13:29:00.370: Lineage generation is turned off globally. Will not attempt to refresh lineage for prepare dataflow.\n2021-01-27 13:29:00.375: Generating scripts to execute dataflow.\n2021-01-27 13:29:00.854: Scripts successfully generated for the dataflow.\n2021-01-27 13:29:00.857: Executing dataflow now with engine: LOCAL\n2021-01-27 13:29:09.238: Starting prepare profiling task.\n2021-01-27 13:29:09.255: salesorder_by_customer_productscale: Starting job: classic_models.salesorder_by_customer_productscale.20210127130000\n2021-01-27 13:29:09.255: salesorder_by_customer_productscale: Started loading into receiving.\n2021-01-27 13:29:09.538: salesorder_by_customer_productscale: Receiving data with load type: DATA\n2021-01-27 13:29:10.957: salesorder_by_customer_productscale: Finished loading into receiving.\n2021-01-27 13:29:10.957: salesorder_by_customer_productscale: Started profile merging.\n2021-01-27 13:29:12.315: salesorder_by_customer_productscale: Finished profile merging.\n2021-01-27 13:29:12.315: salesorder_by_customer_productscale: Started profile persistence.\n2021-01-27 13:29:12.394: salesorder_by_customer_productscale: Profile record counts: good=556, bad=0, ugly=0, filtered=0, total=556.\n2021-01-27 13:29:12.394: salesorder_by_customer_productscale: Finished profile persistence.\n2021-01-27 13:29:12.394: salesorder_by_customer_productscale: Finished job: classic_models.salesorder_by_customer_productscale.20210127130000\n2021-01-27 13:29:12.395: Finished prepare profiling task.\n2021-01-27 13:29:12.395: Started setting posix permissions.\n2021-01-27 13:29:12.451: Finished setting posix permissions.\n2021-01-27 13:29:12.493: Creating distribution tables for target entity salesorder_by_customer_productscale.\n2021-01-27 13:29:12.668: Calculating record count.\n2021-01-27 13:29:12.670: Starting prepare cleanup.\n2021-01-27 13:29:12.705: Finished prepare cleanup.\n2021-01-27 13:29:12.706: Running postprocessing rules.\n2021-01-27 13:29:12.763: Finished running postprocessing rules.\n2021-01-27 13:29:12.764: Running metrics computation.\n2021-01-27 13:29:14.252: Finished metrics computation.\n2021-01-27 13:29:14.294: Not inferring entity relations because it is turned off globally.\n2021-01-27 13:29:14.294: Finished job: classicmodels_salesorders_aggregated.LOCAL.20210127130000\n \N 2021-01-27 13:28:29.613+00 2021-01-27 13:29:14.307+00 5 podium ANONYMOUS podium 0 0 1112 0 0 13 DATA 20210127130000 9 3032 2021-01-27 13:00:00+00 2021-01-27 13:19:38.202+00 2021-01-27 13:19:52.54+00 0 3 FINISHED classicmodels_errors_employees_ugly.LOCAL.20210127130000 2021-01-27 13:19:38.202: Starting job: classicmodels_errors_employees_ugly.LOCAL.20210127130000\n2021-01-27 13:19:38.262: Watching for process completion/termination.\n2021-01-27 13:19:38.489: Lineage generation is turned off globally. Will not attempt to refresh lineage for prepare dataflow.\n2021-01-27 13:19:38.495: Generating scripts to execute dataflow.\n2021-01-27 13:19:39.205: Scripts successfully generated for the dataflow.\n2021-01-27 13:19:39.210: Executing dataflow now with engine: LOCAL\n2021-01-27 13:19:47.433: Starting prepare profiling task.\n2021-01-27 13:19:47.453: employees_ugly: Starting job: classic_models_errors.employees_ugly.20210127130000\n2021-01-27 13:19:47.454: employees_ugly: Started loading into receiving.\n2021-01-27 13:19:47.706: employees_ugly: Receiving data with load type: DATA\n2021-01-27 13:19:49.062: employees_ugly: Finished loading into receiving.\n2021-01-27 13:19:49.063: employees_ugly: Started profile merging.\n2021-01-27 13:19:50.377: employees_ugly: Finished profile merging.\n2021-01-27 13:19:50.378: employees_ugly: Started profile persistence.\n2021-01-27 13:19:50.467: employees_ugly: Profile record counts: good=3, bad=0, ugly=0, filtered=0, total=3.\n2021-01-27 13:19:50.467: employees_ugly: Finished profile persistence.\n2021-01-27 13:19:50.467: employees_ugly: Finished job: classic_models_errors.employees_ugly.20210127130000\n2021-01-27 13:19:50.467: Finished prepare profiling task.\n2021-01-27 13:19:50.468: Started setting posix permissions.\n2021-01-27 13:19:50.516: Finished setting posix permissions.\n2021-01-27 13:19:50.561: Creating distribution tables for target entity employees_ugly.\n2021-01-27 13:19:50.715: Calculating record count.\n2021-01-27 13:19:50.720: Starting prepare cleanup.\n2021-01-27 13:19:50.752: Finished prepare cleanup.\n2021-01-27 13:19:50.753: Running postprocessing rules.\n2021-01-27 13:19:50.805: Finished running postprocessing rules.\n2021-01-27 13:19:50.809: Running metrics computation.\n2021-01-27 13:19:52.498: Finished metrics computation.\n2021-01-27 13:19:52.540: Not inferring entity relations because it is turned off globally.\n2021-01-27 13:19:52.540: Finished job: classicmodels_errors_employees_ugly.LOCAL.20210127130000\n \N 2021-01-27 13:19:07.64+00 2021-01-27 13:19:52.549+00 5 podium ANONYMOUS podium 0 0 6 0 0 3 DATA 20210127130000 \. -- -- Data for Name: pd_prod_info; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prod_info (nid, sname, version_major, version_minor, version_build, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 1 PODIUM 4 8 2020-11-13 17:34:08.104+00 2020-11-13 17:34:08.104+00 0 ANONYMOUS ANONYMOUS \. -- -- Data for Name: pd_prop_category; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prop_category (nid, sname, description, prop_dep_nid, created_ttz, modified_ttz, version, modifiedby, createdby, parent_nid) FROM stdin; 24 Workflow Properties Properties related to Sequencer Graph. \N \N \N 0 \N \N \N 1 Field Props Properties related to fields. \N \N \N 0 \N \N \N 2 Entity Props Properties related to entities. \N \N \N 0 \N \N \N 3 Source Props Properties related to sources. \N \N \N 0 \N \N \N 4 Default Source Props Default properties related to sources. \N \N \N 0 \N \N \N 5 Hadoop Source Conn Props Properties related to Hadoop source connections. \N \N \N 0 \N \N \N 7 JDBC Source Conn Props Properties related to JDBC source connections. \N \N \N 0 \N \N \N 8 Source Conn Props Properties related to source connections. \N \N \N 0 \N \N \N 9 Default Generic Properties. \N \N \N 0 \N \N \N 10 FILE Source Conn Props Properties related to FILE source connection. \N \N \N 0 \N \N \N 11 XML Source Conn Props Properties related to XML source connection. \N \N \N 0 \N \N \N 12 MAINFRAME Source Conn Props Properties related to MAINFRAME source connection. \N \N \N 0 \N \N \N 33 Workflow WorkOrder Properties Workflow WorkOrder Properties \N 2020-11-13 17:33:39.067199+00 2020-11-13 17:33:39.067199+00 0 SYSTEM SYSTEM \N 34 KAFKA Source Conn Props Kafka Source Conn Props \N 2020-11-13 17:33:39.119879+00 2020-11-13 17:33:39.119879+00 0 SYSTEM SYSTEM \N 6 SQOOP Source Conn Props Properties related to SQOOP source connection. \N \N \N 0 \N \N \N 13 Prepare Workorder Props Properties related to prepare workorder. \N \N \N 0 \N \N \N 14 XML Field Props Properties related to field created with XML entity. \N \N \N 0 \N \N \N 15 Mainframe Field Props Properties related to field creatd with Mainframe entity. \N \N \N 0 \N \N \N 16 JDBC Field Props Properties related to field creatd with JDBC entity. \N \N \N 0 \N \N \N 17 File Field Props Properties related to to field creatd with Flat File entity. \N \N \N 0 \N \N \N 18 Default Entity Props Default properties for entity. \N \N \N 0 \N \N \N 35 JSON Source Conn Props Properties related to JSON source connections. \N 2020-11-13 17:33:39.248275+00 2020-11-13 17:33:39.248275+00 0 \N \N \N 36 JSON Field Props Properties related to field created with JSON entity. \N 2020-11-13 17:33:39.807862+00 2020-11-13 17:33:39.807862+00 0 SYSTEM SYSTEM \N 37 QVD Source Props QVD Source Properties \N 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM \N 38 QVD Source Conn Props QVD Source Connection Properties \N 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM \N 19 New JDBC Entity Props Default properties for new JDBC entity. \N \N \N 0 \N \N 18 20 New File Entity Props Default properties for new File entity. \N \N \N 0 \N \N 18 21 New XML Entity Props Default properties for new XML entity. \N \N \N 0 \N \N 18 22 New Mainframe Entity Props Default properties for new Mainframe entity. \N \N \N 0 \N \N 18 23 OPENCONNECTOR Source Conn Props Properties related to OPENCONNECTOR source connection. \N \N \N 0 \N \N \N 25 Data Load Task Properties Properties related to Data Load Task in Sequencer Graph. \N \N \N 0 \N \N \N 26 Publish Task Properties Properties related to Data Publish Task in Sequencer Graph. \N \N \N 0 \N \N \N 27 Prepare Task Properties Properties related to Prepare Task in Sequencer workflow. \N \N \N 0 \N \N \N 28 System Settings Properties All system settings properties \N 2020-11-13 17:33:36.235635+00 2020-11-13 17:33:36.235635+00 0 SYSTEM SYSTEM \N 29 Garbage Collector Props Garbage Collector Properties \N 2020-11-13 17:33:36.571159+00 2020-11-13 17:33:36.571159+00 0 SYSTEM SYSTEM \N 30 Custom Task Properties Properties related to Custom Task in Workflow Graph. \N \N \N 0 \N \N \N 31 Terminator Task Properties Properties related to Terminator Task in Workflow Graph. \N \N \N 0 \N \N \N 32 Dataflow Props Dataflow Properties \N 2020-11-13 17:33:38.963047+00 2020-11-13 17:33:38.963047+00 0 SYSTEM SYSTEM \N 40 QVD Field Props QVD Field Properties \N 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM \N 39 New QVD Entity Props New QVD Entity Properties that will be created when new QVD entity is created. \N 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 18 41 ADLS Source Conn Props ADLS Source Conn Props \N 2020-11-13 17:33:41.664962+00 2020-11-13 17:33:41.664962+00 0 SYSTEM SYSTEM \N \. -- -- Data for Name: pd_prop_category_members; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prop_category_members (category_nid, member_nid, nid, required, sort_idx, createdby, modifiedby, created_ttz, modified_ttz, version, default_value) FROM stdin; 2 347 549 f -1 podium podium 2021-01-28 11:25:30.424+00 2021-01-28 11:25:30.424+00 0 \N 18 347 550 f -1 podium podium 2021-01-28 11:25:30.426+00 2021-01-28 11:25:30.426+00 0 \N 2 348 551 f -1 podium podium 2021-01-28 11:38:43.353+00 2021-01-28 11:38:43.353+00 0 \N 18 348 552 f -1 podium podium 2021-01-28 11:38:43.356+00 2021-01-28 11:38:43.356+00 0 \N 4 349 553 f -1 podium podium 2021-01-28 11:41:08.428+00 2021-01-28 11:41:08.428+00 0 \N 3 349 554 f -1 podium podium 2021-01-28 11:41:08.429+00 2021-01-28 11:41:08.429+00 0 \N 16 350 555 f -1 podium podium 2021-01-28 11:42:12.331+00 2021-01-28 11:42:12.331+00 0 \N 1 350 556 f -1 podium podium 2021-01-28 11:42:12.333+00 2021-01-28 11:42:12.333+00 0 \N 3 1 1 f -1 \N \N \N \N 0 \N 3 2 2 f -1 \N \N \N \N 0 \N 3 3 3 f -1 \N \N \N \N 0 \N 3 4 4 f -1 \N \N \N \N 0 \N 3 70 5 f -1 \N \N \N \N 0 \N 3 73 6 f -1 \N \N \N \N 0 \N 3 90 7 f -1 \N \N \N \N 0 \N 3 93 8 f -1 \N \N \N \N 0 \N 3 103 9 f -1 \N \N \N \N 0 \N 3 113 10 f -1 \N \N \N \N 0 \N 3 77 16 f -1 \N \N \N \N 0 \N 3 57 17 f -1 \N \N \N \N 0 true 3 56 18 f -1 \N \N \N \N 0 true 3 58 19 f -1 \N \N \N \N 0 true 2 351 557 f -1 podium podium 2021-01-28 11:46:11.035+00 2021-01-28 11:46:11.035+00 0 \N 18 351 558 f -1 podium podium 2021-01-28 11:46:11.038+00 2021-01-28 11:46:11.038+00 0 \N 2 66 93 f -1 \N \N \N \N 0 \N 2 67 94 f -1 \N \N \N \N 0 \N 2 68 95 f -1 \N \N \N \N 0 \N 2 69 96 f -1 \N \N \N \N 0 \N 2 71 97 f -1 \N \N \N \N 0 \N 2 72 98 f -1 \N \N \N \N 0 \N 2 74 99 f -1 \N \N \N \N 0 \N 2 75 100 f -1 \N \N \N \N 0 \N 2 77 101 f -1 \N \N \N \N 0 \N 2 79 102 f -1 \N \N \N \N 0 \N 2 80 103 f -1 \N \N \N \N 0 \N 16 352 559 f -1 podium podium 2021-01-28 11:50:29.256+00 2021-01-28 11:50:29.256+00 0 \N 1 352 560 f -1 podium podium 2021-01-28 11:50:29.258+00 2021-01-28 11:50:29.258+00 0 \N 6 96 210 f -1 SYSTEM SYSTEM 2020-11-13 17:33:35.14235+00 2020-11-13 17:33:35.14235+00 0 \N 14 49 182 f -1 \N \N \N \N 0 \N 14 52 183 f -1 \N \N \N \N 0 \N 14 53 184 f -1 \N \N \N \N 0 \N 14 78 187 f -1 \N \N \N \N 0 \N 14 79 188 f -1 \N \N \N \N 0 \N 14 91 189 f -1 \N \N \N \N 0 \N 14 98 190 f -1 \N \N \N \N 0 \N 14 106 191 f -1 \N \N \N \N 0 \N 14 108 192 f -1 \N \N \N \N 0 \N 14 111 193 f -1 \N \N \N \N 0 \N 3 59 20 f -1 \N \N \N \N 0 false 8 117 21 f -1 \N \N \N \N 0 \N 8 118 22 f -1 \N \N \N \N 0 \N 8 119 23 f -1 \N \N \N \N 0 \N 6 118 25 f -1 \N \N \N \N 0 \N 6 119 26 f -1 \N \N \N \N 0 \N 6 121 28 f -1 \N \N \N \N 0 \N 7 118 30 f -1 \N \N \N \N 0 \N 7 119 31 f -1 \N \N \N \N 0 \N 5 118 32 f -1 \N \N \N \N 0 \N 5 119 33 f -1 \N \N \N \N 0 \N 5 122 34 f -1 \N \N \N \N 0 \N 5 123 35 f -1 \N \N \N \N 0 \N 5 124 36 f -1 \N \N \N \N 0 \N 5 125 37 f -1 \N \N \N \N 0 \N 7 126 38 f -1 \N \N \N \N 0 \N 10 118 40 f -1 \N \N \N \N 0 \N 10 119 41 f -1 \N \N \N \N 0 \N 11 118 43 f -1 \N \N \N \N 0 \N 11 119 44 f -1 \N \N \N \N 0 \N 12 118 46 f -1 \N \N \N \N 0 \N 12 119 47 f -1 \N \N \N \N 0 \N 2 5 48 f -1 \N \N \N \N 0 \N 2 6 49 f -1 \N \N \N \N 0 \N 2 7 50 f -1 \N \N \N \N 0 \N 2 8 51 f -1 \N \N \N \N 0 \N 2 9 52 f -1 \N \N \N \N 0 OPTIONAL 2 10 53 f -1 \N \N \N \N 0 \N 2 11 54 f -1 \N \N \N \N 0 \N 2 12 55 f -1 \N \N \N \N 0 0 2 13 56 f -1 \N \N \N \N 0 0 2 14 57 f -1 \N \N \N \N 0 false 2 15 58 f -1 \N \N \N \N 0 \N 2 16 59 f -1 \N \N \N \N 0 \N 2 17 60 f -1 \N \N \N \N 0 false 2 18 61 f -1 \N \N \N \N 0 \N 2 19 62 f -1 \N \N \N \N 0 \N 2 20 63 f -1 \N \N \N \N 0 0 2 21 64 f -1 \N \N \N \N 0 0 2 22 65 f -1 \N \N \N \N 0 \N 2 23 66 f -1 \N \N \N \N 0 \N 2 24 67 f -1 \N \N \N \N 0 false 2 25 68 f -1 \N \N \N \N 0 \N 2 26 69 f -1 \N \N \N \N 0 OPTIONAL 2 27 70 f -1 \N \N \N \N 0 \N 2 28 71 f -1 \N \N \N \N 0 0.0 2 29 72 f -1 \N \N \N \N 0 \N 2 30 73 f -1 \N \N \N \N 0 -1 2 31 74 f -1 \N \N \N \N 0 1 2 32 75 f -1 \N \N \N \N 0 65536 2 33 76 f -1 \N \N \N \N 0 \N 2 34 77 f -1 \N \N \N \N 0 \N 2 35 78 f -1 \N \N \N \N 0 false 2 36 79 f -1 \N \N \N \N 0 \N 2 37 80 f -1 \N \N \N \N 0 \N 2 38 81 f -1 \N \N \N \N 0 \N 2 39 82 f -1 \N \N \N \N 0 \N 2 40 83 f -1 \N \N \N \N 0 \N 2 41 84 f -1 \N \N \N \N 0 \N 2 42 85 f -1 \N \N \N \N 0 \N 15 81 273 t -1 SYSTEM SYSTEM 2020-11-13 17:33:35.599271+00 2020-11-13 17:33:35.599271+00 0 false 16 81 274 t -1 SYSTEM SYSTEM 2020-11-13 17:33:35.599271+00 2020-11-13 17:33:35.599271+00 0 false 2 59 86 f -1 \N \N \N \N 0 false 2 60 87 f -1 \N \N \N \N 0 \N 2 61 88 f -1 \N \N \N \N 0 \N 2 62 89 f -1 \N \N \N \N 0 \N 2 63 90 f -1 \N \N \N \N 0 \N 2 64 91 f -1 \N \N \N \N 0 \N 2 65 92 f -1 \N \N \N \N 0 \N 4 77 15 t -1 \N \N \N \N 0 \N 2 82 104 f -1 \N \N \N \N 0 \N 2 84 105 f -1 \N \N \N \N 0 \N 2 85 106 f -1 \N \N \N \N 0 \N 2 86 107 f -1 \N \N \N \N 0 false 2 87 108 f -1 \N \N \N \N 0 \N 2 88 109 f -1 \N \N \N \N 0 \N 2 89 110 f -1 \N \N \N \N 0 false 2 91 111 f -1 \N \N \N \N 0 \N 2 92 112 f -1 \N \N \N \N 0 0 2 94 113 f -1 \N \N \N \N 0 \N 2 95 114 f -1 \N \N \N \N 0 \N 2 96 115 f -1 \N \N \N \N 0 \N 2 98 116 f -1 \N \N \N \N 0 \N 2 99 117 f -1 \N \N \N \N 0 \N 2 100 118 f -1 \N \N \N \N 0 \N 2 101 119 f -1 \N \N \N \N 0 \N 2 105 120 f -1 \N \N \N \N 0 \N 2 107 121 f -1 \N \N \N \N 0 \N 2 108 122 f -1 \N \N \N \N 0 \N 2 109 123 f -1 \N \N \N \N 0 \N 2 110 124 f -1 \N \N \N \N 0 \N 2 111 125 f -1 \N \N \N \N 0 \N 2 112 126 f -1 \N \N \N \N 0 \N 2 114 127 f -1 \N \N \N \N 0 Snapshot 2 116 128 f -1 \N \N \N \N 0 \N 13 127 129 f -1 \N \N \N \N 0 \N 13 128 130 f -1 \N \N \N \N 0 \N 13 129 131 f -1 \N \N \N \N 0 \N 13 130 132 f -1 \N \N \N \N 0 \N 1 43 134 f -1 \N \N \N \N 0 \N 1 44 135 f -1 \N \N \N \N 0 \N 1 45 136 f -1 \N \N \N \N 0 \N 1 46 137 f -1 \N \N \N \N 0 true 1 47 138 f -1 \N \N \N \N 0 false 1 48 139 f -1 \N \N \N \N 0 true 1 49 140 f -1 \N \N \N \N 0 \N 1 50 141 f -1 \N \N \N \N 0 \N 1 51 142 f -1 \N \N \N \N 0 \N 1 52 143 f -1 \N \N \N \N 0 \N 1 53 144 f -1 \N \N \N \N 0 \N 1 54 145 f -1 \N \N \N \N 0 \N 1 55 146 f -1 \N \N \N \N 0 \N 1 56 147 f -1 \N \N \N \N 0 true 1 57 148 f -1 \N \N \N \N 0 true 1 58 149 f -1 \N \N \N \N 0 true 1 76 150 f -1 \N \N \N \N 0 \N 1 78 151 f -1 \N \N \N \N 0 \N 1 81 152 f -1 \N \N \N \N 0 false 1 83 153 f -1 \N \N \N \N 0 \N 1 97 154 f -1 \N \N \N \N 0 true 1 102 155 f -1 \N \N \N \N 0 false 1 104 156 f -1 \N \N \N \N 0 \N 1 106 157 f -1 \N \N \N \N 0 \N 1 115 158 f -1 \N \N \N \N 0 false 1 134 159 f -1 \N \N \N \N 0 \N 14 44 160 f -1 \N \N \N \N 0 \N 14 45 161 f -1 \N \N \N \N 0 \N 14 50 162 f -1 \N \N \N \N 0 \N 14 51 163 f -1 \N \N \N \N 0 \N 14 134 164 f -1 \N \N \N \N 0 \N 15 134 169 f -1 \N \N \N \N 0 \N 16 134 174 f -1 \N \N \N \N 0 \N 17 134 179 f -1 \N \N \N \N 0 \N 6 136 180 t 0 SYSTEM SYSTEM 2020-11-13 17:33:35.096836+00 2020-11-13 17:33:35.096836+00 0 \N 6 135 181 t 2 SYSTEM SYSTEM 2020-11-13 17:33:35.096836+00 2020-11-13 17:33:35.096836+00 0 4 6 120 27 t 1 \N \N \N \N 0 $EntityName 6 117 24 t -1 \N \N \N \N 0 \N 7 117 29 t -1 \N \N \N \N 0 \N 10 117 39 t -1 \N \N \N \N 0 \N 11 117 42 t -1 \N \N \N \N 0 \N 12 117 45 t -1 \N \N \N \N 0 \N 15 44 165 t -1 \N \N \N \N 0 \N 15 45 166 t -1 \N \N \N \N 0 \N 15 50 167 t -1 \N \N \N \N 0 \N 15 51 168 t -1 \N \N \N \N 0 \N 16 44 170 t -1 \N \N \N \N 0 \N 16 45 171 t -1 \N \N \N \N 0 \N 16 50 172 t -1 \N \N \N \N 0 \N 16 51 173 t -1 \N \N \N \N 0 \N 17 44 175 t -1 \N \N \N \N 0 \N 17 45 176 t -1 \N \N \N \N 0 \N 17 50 177 t -1 \N \N \N \N 0 \N 17 76 204 f -1 \N \N \N \N 0 \N 18 77 214 t -1 \N \N \N \N 0 \N 18 114 215 t -1 \N \N \N \N 0 Snapshot 1 137 217 f -1 \N \N \N \N 0 2 56 218 f -1 \N \N \N \N 0 true 2 57 219 f -1 \N \N \N \N 0 true 2 58 220 f -1 \N \N \N \N 0 true 2 136 221 f -1 \N \N \N \N 0 \N 2 120 222 f -1 \N \N \N \N 0 $EntityName 2 135 223 f -1 \N \N \N \N 0 4 2 138 224 f -1 \N \N \N \N 0 \N 3 138 225 f -1 \N \N \N \N 0 \N 2 139 226 f -1 \N \N \N \N 0 \N 3 139 227 f -1 \N \N \N \N 0 \N 2 140 228 f -1 \N \N \N \N 0 \N 3 140 229 f -1 \N \N \N \N 0 \N 2 141 230 f -1 \N \N \N \N 0 \N 3 141 231 f -1 \N \N \N \N 0 \N 2 142 232 f -1 \N \N \N \N 0 \N 3 142 233 f -1 \N \N \N \N 0 \N 2 143 234 f -1 \N \N \N \N 0 \N 3 143 235 f -1 \N \N \N \N 0 \N 2 144 236 f -1 \N \N \N \N 0 \N 3 144 237 f -1 \N \N \N \N 0 \N 2 145 238 f -1 \N \N \N \N 0 \N 3 145 239 f -1 \N \N \N \N 0 \N 2 146 240 f -1 \N \N \N \N 0 \N 3 146 241 f -1 \N \N \N \N 0 \N 2 147 242 f -1 \N \N \N \N 0 \N 3 147 243 f -1 \N \N \N \N 0 \N 2 148 244 f -1 \N \N \N \N 0 \N 3 148 245 f -1 \N \N \N \N 0 \N 2 149 246 f -1 \N \N \N \N 0 \N 3 149 247 f -1 \N \N \N \N 0 \N 2 150 248 f -1 \N \N \N \N 0 \N 3 150 249 f -1 \N \N \N \N 0 \N 2 151 250 f -1 \N \N \N \N 0 \N 3 151 251 f -1 \N \N \N \N 0 \N 2 152 252 f -1 \N \N \N \N 0 \N 3 152 253 f -1 \N \N \N \N 0 \N 2 153 254 f -1 \N \N \N \N 0 \N 3 153 255 f -1 \N \N \N \N 0 \N 2 154 256 f -1 \N \N \N \N 0 \N 3 154 257 f -1 \N \N \N \N 0 \N 2 155 258 f -1 \N \N \N \N 0 \N 3 155 259 f -1 \N \N \N \N 0 \N 2 156 260 f -1 \N \N \N \N 0 \N 3 156 261 f -1 \N \N \N \N 0 \N 2 157 262 f -1 \N \N \N \N \N 2 158 263 f -1 \N \N \N \N 0 \N 2 159 264 f -1 \N \N \N \N 0 \N 2 160 265 f -1 \N \N \N \N 0 \N 3 160 266 f -1 \N \N \N \N 0 \N 2 161 267 f -1 \N \N \N \N 0 \N 3 161 268 f -1 \N \N \N \N 0 \N 2 162 269 f -1 \N \N \N \N 0 \N 3 162 270 f -1 \N \N \N \N 0 \N 2 163 271 f -1 \N \N \N \N \N 14 81 272 f -1 SYSTEM SYSTEM 2020-11-13 17:33:35.599271+00 2020-11-13 17:33:35.599271+00 0 false 17 51 178 t -1 \N \N \N \N 0 \N 16 49 194 t -1 \N \N \N \N 0 \N 16 52 195 t -1 \N \N \N \N 0 \N 16 53 196 t -1 \N \N \N \N 0 \N 17 49 199 t -1 \N \N \N \N 0 \N 17 52 200 t -1 \N \N \N \N 0 \N 17 53 201 t -1 \N \N \N \N 0 \N 15 49 205 t -1 \N \N \N \N 0 \N 15 52 206 t -1 \N \N \N \N 0 \N 15 53 207 t -1 \N \N \N \N 0 \N 17 81 275 t -1 SYSTEM SYSTEM 2020-11-13 17:33:35.599271+00 2020-11-13 17:33:35.599271+00 0 false 23 96 276 t 0 SYSTEM SYSTEM 2020-11-13 17:33:35.614756+00 2020-11-13 17:33:35.614756+00 0 \N 23 117 277 t -1 SYSTEM SYSTEM 2020-11-13 17:33:35.614756+00 2020-11-13 17:33:35.614756+00 0 \N 23 118 278 f -1 SYSTEM SYSTEM 2020-11-13 17:33:35.614756+00 2020-11-13 17:33:35.614756+00 0 \N 23 119 279 f -1 SYSTEM SYSTEM 2020-11-13 17:33:35.614756+00 2020-11-13 17:33:35.614756+00 0 \N 13 166 282 f -1 \N \N \N \N \N 13 167 283 f -1 \N \N \N \N \N 13 168 284 f -1 \N \N \N \N \N 13 169 285 f -1 \N \N \N \N \N 13 170 286 f -1 \N \N \N \N \N 13 171 287 f -1 \N \N \N \N \N 13 172 288 f -1 \N \N \N \N \N 13 173 289 f -1 \N \N \N \N \N 13 174 290 f -1 \N \N \N \N \N 13 175 291 f -1 \N \N \N \N \N 13 176 292 f -1 \N \N \N \N \N 13 177 293 f -1 \N \N \N \N \N 13 178 294 f -1 \N \N \N \N \N 13 179 295 f -1 \N \N \N \N \N 13 180 296 f -1 \N \N \N \N \N 3 181 297 f -1 \N \N \N \N \N 2 181 298 f -1 \N \N \N \N \N 3 182 299 f -1 \N \N \N \N \N 2 182 300 f -1 \N \N \N \N \N 3 183 301 f -1 \N \N \N \N \N 2 183 302 f -1 \N \N \N \N \N 2 184 303 f -1 \N \N \N \N \N 1 189 308 f -1 \N \N \N \N \N 1 190 309 f -1 \N \N \N \N \N 2 191 310 f -1 \N \N \N \N \N 3 192 311 f -1 \N \N \N \N \N 2 192 312 f -1 \N \N \N \N \N 1 192 313 f -1 \N \N \N \N \N 26 193 315 t -1 SYSTEM SYSTEM 2020-11-13 17:33:35.935822+00 2020-11-13 17:33:35.935822+00 0 27 194 316 t -1 SYSTEM SYSTEM 2020-11-13 17:33:35.935822+00 2020-11-13 17:33:35.935822+00 0 27 195 317 t -1 SYSTEM SYSTEM 2020-11-13 17:33:35.952572+00 2020-11-13 17:33:35.952572+00 0 25 164 314 t -1 SYSTEM SYSTEM 2020-11-13 17:33:35.917421+00 2020-11-13 17:33:35.917421+00 0 28 197 319 t 1 SYSTEM SYSTEM 2020-11-13 17:33:36.235635+00 2020-11-13 17:33:36.235635+00 0 MANAGED 13 206 330 f -1 \N \N \N \N \N \N 2 207 331 f -1 \N \N \N \N \N \N 3 207 332 f -1 \N \N \N \N \N \N 2 208 333 f -1 \N \N \N \N \N \N 3 208 334 f -1 \N \N \N \N \N \N 3 201 323 f -1 \N \N \N \N \N 0.01 2 201 324 f -1 \N \N \N \N \N 0.01 6 261 397 t -1 \N \N \N \N \N "" 29 262 398 f -1 \N \N \N \N \N \N 3 210 337 t 0 SYSTEM SYSTEM 2020-11-13 17:33:36.399442+00 2020-11-13 17:33:36.399442+00 0 MANAGED 28 196 318 t 0 SYSTEM SYSTEM 2020-11-13 17:33:36.235635+00 2020-11-13 17:33:36.235635+00 0 true 29 211 346 f -1 \N \N \N \N \N \N 29 212 347 f -1 \N \N \N \N \N \N 29 213 348 f -1 \N \N \N \N \N \N 29 214 349 f -1 \N \N \N \N \N \N 29 215 350 f -1 \N \N \N \N \N \N 29 216 351 f -1 \N \N \N \N \N \N 29 217 352 f -1 \N \N \N \N \N \N 29 218 353 f -1 \N \N \N \N \N \N 29 219 354 f -1 \N \N \N \N \N \N 29 220 355 f -1 \N \N \N \N \N \N 29 221 356 f -1 \N \N \N \N \N \N 29 222 357 f -1 \N \N \N \N \N \N 29 223 358 f -1 \N \N \N \N \N \N 29 224 359 f -1 \N \N \N \N \N \N 29 225 360 f -1 \N \N \N \N \N \N 29 226 361 f -1 \N \N \N \N \N \N 29 227 362 f -1 \N \N \N \N \N \N 29 228 363 f -1 \N \N \N \N \N \N 29 229 364 f -1 \N \N \N \N \N \N 29 230 365 f -1 \N \N \N \N \N \N 29 231 366 f -1 \N \N \N \N \N \N 29 232 367 f -1 \N \N \N \N \N \N 29 233 368 f -1 \N \N \N \N \N \N 29 234 369 f -1 \N \N \N \N \N \N 29 235 370 f -1 \N \N \N \N \N \N 29 236 371 f -1 \N \N \N \N \N \N 29 237 372 f -1 \N \N \N \N \N \N 29 238 373 f -1 \N \N \N \N \N \N 29 239 374 f -1 \N \N \N \N \N \N 29 240 375 f -1 \N \N \N \N \N \N 29 241 376 f -1 \N \N \N \N \N \N 29 242 377 f -1 \N \N \N \N \N \N 29 243 378 f -1 \N \N \N \N \N \N 29 244 379 f -1 \N \N \N \N \N \N 29 245 380 f -1 \N \N \N \N \N \N 29 246 381 f -1 \N \N \N \N \N \N 29 247 382 f -1 \N \N \N \N \N \N 30 248 383 t -1 \N \N \N \N \N \N 31 249 384 t -1 \N \N \N \N \N \N 31 250 385 t -1 \N \N \N \N \N \N 29 251 386 f -1 \N \N \N \N \N \N 29 252 387 f -1 \N \N \N \N \N \N 2 254 389 f -1 \N \N \N \N \N \N 6 256 391 t -1 \N \N \N \N \N " 6 257 392 t -1 \N \N \N \N \N "" 2 258 393 f -1 \N \N \N \N \N \N 2 259 394 f -1 \N \N \N \N \N \N 2 260 395 f -1 \N \N \N \N \N \N 1 263 399 t 0 SYSTEM SYSTEM 2020-11-13 17:33:38.587144+00 2020-11-13 17:33:38.587144+00 0 3 99 400 f -1 podium podium 2020-11-13 17:33:38.659213+00 2020-11-13 17:33:38.659213+00 0 \N 3 100 401 f -1 podium podium 2020-11-13 17:33:38.659213+00 2020-11-13 17:33:38.659213+00 0 \N 3 71 402 f -1 podium podium 2020-11-13 17:33:38.659213+00 2020-11-13 17:33:38.659213+00 0 \N 3 85 403 f -1 podium podium 2020-11-13 17:33:38.659213+00 2020-11-13 17:33:38.659213+00 0 \N 3 105 404 f -1 podium podium 2020-11-13 17:33:38.659213+00 2020-11-13 17:33:38.659213+00 0 \N 3 110 405 f -1 podium podium 2020-11-13 17:33:38.659213+00 2020-11-13 17:33:38.659213+00 0 \N 1 264 406 t 0 SYSTEM SYSTEM 2020-11-13 17:33:38.69034+00 2020-11-13 17:33:38.69034+00 0 13 265 407 f -1 \N \N \N \N \N \N 13 266 408 f -1 \N \N \N \N \N \N 2 267 409 t 0 SYSTEM SYSTEM 2020-11-13 17:33:38.883198+00 2020-11-13 17:33:38.883198+00 0 2 268 410 t 0 SYSTEM SYSTEM 2020-11-13 17:33:38.883198+00 2020-11-13 17:33:38.883198+00 0 1 269 411 t 0 SYSTEM SYSTEM 2020-11-13 17:33:38.883198+00 2020-11-13 17:33:38.883198+00 0 13 270 412 f -1 \N \N \N \N \N \N 13 271 413 f -1 \N \N \N \N \N \N 25 272 414 f -1 SYSTEM SYSTEM 2020-11-13 17:33:38.945482+00 2020-11-13 17:33:38.945482+00 0 \N 25 273 415 f -1 SYSTEM SYSTEM 2020-11-13 17:33:38.945482+00 2020-11-13 17:33:38.945482+00 0 \N 27 274 416 f -1 SYSTEM SYSTEM 2020-11-13 17:33:38.945482+00 2020-11-13 17:33:38.945482+00 0 \N 27 275 417 f -1 SYSTEM SYSTEM 2020-11-13 17:33:38.945482+00 2020-11-13 17:33:38.945482+00 0 \N 2 276 418 t 0 SYSTEM SYSTEM 2020-11-13 17:33:38.963047+00 2020-11-13 17:33:38.963047+00 0 32 277 419 t 0 SYSTEM SYSTEM 2020-11-13 17:33:38.963047+00 2020-11-13 17:33:38.963047+00 0 13 277 420 t 0 SYSTEM SYSTEM 2020-11-13 17:33:38.979484+00 2020-11-13 17:33:38.979484+00 0 24 277 421 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.067199+00 2020-11-13 17:33:39.067199+00 0 33 278 422 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.067199+00 2020-11-13 17:33:39.067199+00 0 33 279 423 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.067199+00 2020-11-13 17:33:39.067199+00 0 2 280 424 t -1 SYSTEM SYSTEM 2020-11-13 17:33:39.084994+00 2020-11-13 17:33:39.084994+00 0 2 281 425 t -1 SYSTEM SYSTEM 2020-11-13 17:33:39.084994+00 2020-11-13 17:33:39.084994+00 0 2 285 429 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:39.10244+00 0 2 286 430 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:39.10244+00 0 2 282 426 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:39.10244+00 0 \N 2 283 427 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:39.10244+00 0 \N 2 284 428 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:39.10244+00 0 \N 34 282 431 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.119879+00 2020-11-13 17:33:39.119879+00 0 \N 34 283 432 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.119879+00 2020-11-13 17:33:39.119879+00 0 \N 34 284 433 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.119879+00 2020-11-13 17:33:39.119879+00 0 \N 34 287 434 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.119879+00 2020-11-13 17:33:39.119879+00 0 \N 2 287 435 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.119879+00 2020-11-13 17:33:39.119879+00 0 \N 2 289 440 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.203237+00 2020-11-13 17:33:39.203237+00 0 2 290 441 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.248275+00 2020-11-13 17:33:39.248275+00 0 1 291 442 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.248275+00 2020-11-13 17:33:39.248275+00 0 2 292 443 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.289807+00 2020-11-13 17:33:39.289807+00 0 true 3 292 444 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.289807+00 2020-11-13 17:33:39.289807+00 0 true 2 288 436 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.137572+00 2020-11-13 17:33:39.137572+00 0 \N 18 288 437 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.137572+00 2020-11-13 17:33:39.137572+00 0 \N 3 288 438 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.137572+00 2020-11-13 17:33:39.137572+00 0 \N 4 288 439 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.137572+00 2020-11-13 17:33:39.137572+00 0 \N 2 293 445 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.495123+00 2020-11-13 17:33:39.495123+00 0 \N 18 293 446 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.495123+00 2020-11-13 17:33:39.495123+00 0 \N 3 293 447 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.495123+00 2020-11-13 17:33:39.495123+00 0 \N 4 293 448 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.495123+00 2020-11-13 17:33:39.495123+00 0 \N 13 294 449 f -1 \N \N \N \N \N \N 2 114 450 t -1 podium podium 2020-11-13 17:33:39.585082+00 2020-11-13 17:33:39.585082+00 0 \N 2 202 451 t -1 podium podium 2020-11-13 17:33:39.585082+00 2020-11-13 17:33:39.585082+00 0 \N 2 256 452 t -1 podium podium 2020-11-13 17:33:39.656927+00 2020-11-13 17:33:39.656927+00 0 \N 2 257 453 t -1 podium podium 2020-11-13 17:33:39.656927+00 2020-11-13 17:33:39.656927+00 0 \N 2 261 454 t -1 podium podium 2020-11-13 17:33:39.656927+00 2020-11-13 17:33:39.656927+00 0 \N 13 253 455 t 0 SYSTEM SYSTEM 2020-11-13 17:33:39.790173+00 2020-11-13 17:33:39.790173+00 0 36 52 456 t -1 SYSTEM SYSTEM 2020-11-13 17:33:39.807862+00 2020-11-13 17:33:39.807862+00 0 \N 36 51 457 t -1 SYSTEM SYSTEM 2020-11-13 17:33:39.807862+00 2020-11-13 17:33:39.807862+00 0 \N 36 53 458 t -1 SYSTEM SYSTEM 2020-11-13 17:33:39.807862+00 2020-11-13 17:33:39.807862+00 0 \N 36 50 461 t -1 SYSTEM SYSTEM 2020-11-13 17:33:39.807862+00 2020-11-13 17:33:39.807862+00 0 \N 36 49 462 t -1 SYSTEM SYSTEM 2020-11-13 17:33:39.807862+00 2020-11-13 17:33:39.807862+00 0 \N 36 44 463 t -1 SYSTEM SYSTEM 2020-11-13 17:33:39.807862+00 2020-11-13 17:33:39.807862+00 0 \N 36 45 464 t -1 SYSTEM SYSTEM 2020-11-13 17:33:39.807862+00 2020-11-13 17:33:39.807862+00 0 \N 36 134 465 f -1 SYSTEM SYSTEM 2020-11-13 17:33:39.807862+00 2020-11-13 17:33:39.807862+00 0 \N 36 81 466 t -1 SYSTEM SYSTEM 2020-11-13 17:33:39.807862+00 2020-11-13 17:33:39.807862+00 0 false 2 295 467 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.169589+00 2020-11-13 17:33:40.169589+00 0 3 295 468 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.169589+00 2020-11-13 17:33:40.169589+00 0 37 58 469 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 37 56 470 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 37 77 471 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 37 59 472 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 37 210 473 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 37 304 474 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 37 315 475 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 296 476 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 297 477 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 298 478 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 299 479 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 300 480 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 301 481 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 302 482 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 303 483 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 304 484 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 305 485 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 306 486 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 307 487 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 308 488 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 309 489 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 39 310 490 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 37 57 491 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 True 40 311 492 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 40 312 493 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 40 313 494 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 40 314 495 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 38 117 496 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 38 118 497 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 38 119 498 t 0 SYSTEM SYSTEM 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 \N 38 304 499 t 0 SYSTEM SYSTEM 2020-11-13 17:33:41.015751+00 2020-11-13 17:33:41.015751+00 0 \N 38 315 500 t 0 SYSTEM SYSTEM 2020-11-13 17:33:41.015751+00 2020-11-13 17:33:41.015751+00 0 \N 39 318 501 t 0 SYSTEM SYSTEM 2020-11-13 17:33:41.135692+00 2020-11-13 17:33:41.135692+00 0 \N 39 319 502 t 0 SYSTEM SYSTEM 2020-11-13 17:33:41.135692+00 2020-11-13 17:33:41.135692+00 0 \N 39 321 504 t 0 SYSTEM SYSTEM 2020-11-13 17:33:41.237203+00 2020-11-13 17:33:41.237203+00 0 \N 39 322 505 t 0 SYSTEM SYSTEM 2020-11-13 17:33:41.237203+00 2020-11-13 17:33:41.237203+00 0 \N 37 322 506 t 0 SYSTEM SYSTEM 2020-11-13 17:33:41.237203+00 2020-11-13 17:33:41.237203+00 0 \N 2 323 507 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.255846+00 2020-11-13 17:33:41.255846+00 0 \N 2 324 508 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.255846+00 2020-11-13 17:33:41.255846+00 0 \N 3 323 509 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.255846+00 2020-11-13 17:33:41.255846+00 0 \N 3 324 510 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.255846+00 2020-11-13 17:33:41.255846+00 0 \N 39 325 511 t 0 SYSTEM SYSTEM 2020-11-13 17:33:41.274618+00 2020-11-13 17:33:41.274618+00 0 \N 39 326 512 t 0 SYSTEM SYSTEM 2020-11-13 17:33:41.274618+00 2020-11-13 17:33:41.274618+00 0 \N 39 327 513 t 0 SYSTEM SYSTEM 2020-11-13 17:33:41.274618+00 2020-11-13 17:33:41.274618+00 0 \N 39 328 514 t 0 SYSTEM SYSTEM 2020-11-13 17:33:41.274618+00 2020-11-13 17:33:41.274618+00 0 \N 18 320 515 t -1 SYSTEM SYSTEM 2020-11-13 17:33:41.503372+00 2020-11-13 17:33:41.503372+00 0 0 2 329 516 f -1 \N \N \N \N \N \N 3 329 517 f -1 \N \N \N \N \N \N 2 330 518 f -1 \N \N \N \N \N \N 2 331 519 f -1 \N \N \N \N \N \N 41 332 520 t 0 SYSTEM SYSTEM 2020-11-13 17:33:41.664962+00 2020-11-13 17:33:41.664962+00 0 \N 29 333 521 f -1 SYSTEM SYSTEM 2020-11-13 17:33:41.713501+00 2020-11-13 17:33:41.713501+00 0 \N 29 334 522 f -1 SYSTEM SYSTEM 2020-11-13 17:33:41.713501+00 2020-11-13 17:33:41.713501+00 0 \N 18 142 523 f -1 SYSTEM SYSTEM 2020-11-13 17:33:41.757927+00 2020-11-13 17:33:41.757927+00 0 \N 18 147 524 f -1 SYSTEM SYSTEM 2020-11-13 17:33:41.757927+00 2020-11-13 17:33:41.757927+00 0 \N 18 148 525 f -1 SYSTEM SYSTEM 2020-11-13 17:33:41.757927+00 2020-11-13 17:33:41.757927+00 0 \N 1 335 526 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.791787+00 2020-11-13 17:33:41.791787+00 0 2 335 527 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.791787+00 2020-11-13 17:33:41.791787+00 0 3 335 528 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.791787+00 2020-11-13 17:33:41.791787+00 0 1 336 529 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 1 337 530 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 1 338 531 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 1 339 532 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 2 336 533 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 2 337 534 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 2 338 535 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 2 339 536 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 3 336 537 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 3 337 538 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 3 338 539 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 3 339 540 f 0 SYSTEM SYSTEM 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 29 340 541 f -1 SYSTEM SYSTEM 2020-11-13 17:33:41.879966+00 2020-11-13 17:33:41.879966+00 0 \N 37 341 542 t -1 SYSTEM SYSTEM 2020-11-13 17:33:41.94746+00 2020-11-13 17:33:41.94746+00 0 TEXT_TAB_DELIMITED 39 343 544 t 0 SYSTEM SYSTEM 2020-11-13 17:33:42.364914+00 2020-11-13 17:33:42.364914+00 0 \N 2 342 545 t 0 SYSTEM SYSTEM 2020-11-13 17:33:42.413778+00 2020-11-13 17:33:42.413778+00 0 \N 2 344 546 t 0 SYSTEM SYSTEM 2020-11-13 17:33:42.460028+00 2020-11-13 17:33:42.460028+00 0 \N 1 345 547 f 0 SYSTEM SYSTEM 2020-11-13 17:33:42.729602+00 2020-11-13 17:33:42.729602+00 0 UNKNOWN 28 346 548 t 0 SYSTEM SYSTEM 2020-11-13 17:33:42.782192+00 2020-11-13 17:33:42.782192+00 0 {} \. -- -- Data for Name: pd_prop_class_inherit; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prop_class_inherit (nid, class_name, inheritance_index, prop_def_nid, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 486 com.nvs.core.model.meta.DataEntity 0 347 2021-01-28 11:25:30.416+00 2021-01-28 11:25:30.416+00 0 podium podium 487 com.nvs.core.model.meta.DataEntity 0 348 2021-01-28 11:38:43.346+00 2021-01-28 11:38:43.346+00 0 podium podium 488 com.nvs.core.model.meta.DataSource 0 349 2021-01-28 11:41:08.426+00 2021-01-28 11:41:08.426+00 0 podium podium 489 com.nvs.core.model.meta.DataField 0 350 2021-01-28 11:42:12.33+00 2021-01-28 11:42:12.33+00 0 podium podium 490 com.nvs.core.model.meta.DataEntity 0 351 2021-01-28 11:46:11.028+00 2021-01-28 11:46:11.028+00 0 podium podium 1 com.nvs.core.model.meta.DataField 0 43 \N \N 0 \N \N 2 com.nvs.core.model.meta.DataField 0 44 \N \N 0 \N \N 3 com.nvs.core.model.meta.DataField 0 45 \N \N 0 \N \N 4 com.nvs.core.model.meta.DataField 0 46 \N \N 0 \N \N 5 com.nvs.core.model.meta.DataField 0 47 \N \N 0 \N \N 6 com.nvs.core.model.meta.DataField 0 48 \N \N 0 \N \N 7 com.nvs.core.model.meta.DataField 0 49 \N \N 0 \N \N 151 com.nvs.core.model.meta.DataSource 1 60 \N \N 0 \N \N 152 com.nvs.core.model.meta.DataSource 1 61 \N \N 0 \N \N 8 com.nvs.core.model.meta.DataField 0 50 \N \N 0 \N \N 9 com.nvs.core.model.meta.DataField 0 51 \N \N 0 \N \N 10 com.nvs.core.model.meta.DataField 0 52 \N \N 0 \N \N 11 com.nvs.core.model.meta.DataField 0 53 \N \N 0 \N \N 12 com.nvs.core.model.meta.DataField 0 54 \N \N 0 \N \N 13 com.nvs.core.model.meta.DataField 0 55 \N \N 0 \N \N 14 com.nvs.core.model.meta.DataField 0 56 \N \N 0 \N \N 15 com.nvs.core.model.meta.DataField 0 57 \N \N 0 \N \N 16 com.nvs.core.model.meta.DataField 0 58 \N \N 0 \N \N 17 com.nvs.core.model.meta.DataField 0 76 \N \N 0 \N \N 18 com.nvs.core.model.meta.DataField 0 78 \N \N 0 \N \N 19 com.nvs.core.model.meta.DataField 0 81 \N \N 0 \N \N 20 com.nvs.core.model.meta.DataField 0 83 \N \N 0 \N \N 21 com.nvs.core.model.meta.DataField 0 97 \N \N 0 \N \N 22 com.nvs.core.model.meta.DataField 0 102 \N \N 0 \N \N 23 com.nvs.core.model.meta.DataField 0 104 \N \N 0 \N \N 24 com.nvs.core.model.meta.DataField 0 106 \N \N 0 \N \N 25 com.nvs.core.model.meta.DataField 0 115 \N \N 0 \N \N 26 com.nvs.core.model.meta.DataEntity 0 5 \N \N 0 \N \N 27 com.nvs.core.model.meta.DataEntity 0 6 \N \N 0 \N \N 28 com.nvs.core.model.meta.DataEntity 0 7 \N \N 0 \N \N 29 com.nvs.core.model.meta.DataEntity 0 8 \N \N 0 \N \N 30 com.nvs.core.model.meta.DataEntity 0 9 \N \N 0 \N \N 31 com.nvs.core.model.meta.DataEntity 0 10 \N \N 0 \N \N 32 com.nvs.core.model.meta.DataEntity 0 11 \N \N 0 \N \N 33 com.nvs.core.model.meta.DataEntity 0 12 \N \N 0 \N \N 34 com.nvs.core.model.meta.DataEntity 0 13 \N \N 0 \N \N 35 com.nvs.core.model.meta.DataEntity 0 14 \N \N 0 \N \N 36 com.nvs.core.model.meta.DataEntity 0 15 \N \N 0 \N \N 37 com.nvs.core.model.meta.DataEntity 0 16 \N \N 0 \N \N 38 com.nvs.core.model.meta.DataEntity 0 17 \N \N 0 \N \N 39 com.nvs.core.model.meta.DataEntity 0 18 \N \N 0 \N \N 40 com.nvs.core.model.meta.DataEntity 0 19 \N \N 0 \N \N 41 com.nvs.core.model.meta.DataEntity 0 20 \N \N 0 \N \N 42 com.nvs.core.model.meta.DataEntity 0 21 \N \N 0 \N \N 43 com.nvs.core.model.meta.DataEntity 0 22 \N \N 0 \N \N 44 com.nvs.core.model.meta.DataEntity 0 23 \N \N 0 \N \N 45 com.nvs.core.model.meta.DataEntity 0 24 \N \N 0 \N \N 46 com.nvs.core.model.meta.DataEntity 0 25 \N \N 0 \N \N 47 com.nvs.core.model.meta.DataEntity 0 26 \N \N 0 \N \N 48 com.nvs.core.model.meta.DataEntity 0 27 \N \N 0 \N \N 49 com.nvs.core.model.meta.DataEntity 0 28 \N \N 0 \N \N 50 com.nvs.core.model.meta.DataEntity 0 29 \N \N 0 \N \N 51 com.nvs.core.model.meta.DataEntity 0 30 \N \N 0 \N \N 52 com.nvs.core.model.meta.DataEntity 0 31 \N \N 0 \N \N 53 com.nvs.core.model.meta.DataEntity 0 32 \N \N 0 \N \N 54 com.nvs.core.model.meta.DataEntity 0 33 \N \N 0 \N \N 55 com.nvs.core.model.meta.DataEntity 0 34 \N \N 0 \N \N 56 com.nvs.core.model.meta.DataEntity 0 35 \N \N 0 \N \N 57 com.nvs.core.model.meta.DataEntity 0 36 \N \N 0 \N \N 58 com.nvs.core.model.meta.DataEntity 0 37 \N \N 0 \N \N 59 com.nvs.core.model.meta.DataEntity 0 38 \N \N 0 \N \N 60 com.nvs.core.model.meta.DataEntity 0 39 \N \N 0 \N \N 61 com.nvs.core.model.meta.DataEntity 0 40 \N \N 0 \N \N 62 com.nvs.core.model.meta.DataEntity 0 41 \N \N 0 \N \N 63 com.nvs.core.model.meta.DataEntity 0 42 \N \N 0 \N \N 64 com.nvs.core.model.meta.DataEntity 1 43 \N \N 0 \N \N 65 com.nvs.core.model.meta.DataEntity 1 44 \N \N 0 \N \N 66 com.nvs.core.model.meta.DataEntity 1 45 \N \N 0 \N \N 67 com.nvs.core.model.meta.DataEntity 1 46 \N \N 0 \N \N 68 com.nvs.core.model.meta.DataEntity 1 47 \N \N 0 \N \N 69 com.nvs.core.model.meta.DataEntity 1 48 \N \N 0 \N \N 70 com.nvs.core.model.meta.DataEntity 1 49 \N \N 0 \N \N 71 com.nvs.core.model.meta.DataEntity 1 50 \N \N 0 \N \N 72 com.nvs.core.model.meta.DataEntity 1 51 \N \N 0 \N \N 73 com.nvs.core.model.meta.DataEntity 1 52 \N \N 0 \N \N 74 com.nvs.core.model.meta.DataEntity 1 53 \N \N 0 \N \N 75 com.nvs.core.model.meta.DataEntity 1 54 \N \N 0 \N \N 76 com.nvs.core.model.meta.DataEntity 1 55 \N \N 0 \N \N 77 com.nvs.core.model.meta.DataEntity 1 56 \N \N 0 \N \N 78 com.nvs.core.model.meta.DataEntity 1 57 \N \N 0 \N \N 79 com.nvs.core.model.meta.DataEntity 1 58 \N \N 0 \N \N 80 com.nvs.core.model.meta.DataEntity 0 59 \N \N 0 \N \N 81 com.nvs.core.model.meta.DataEntity 0 60 \N \N 0 \N \N 82 com.nvs.core.model.meta.DataEntity 0 61 \N \N 0 \N \N 83 com.nvs.core.model.meta.DataEntity 0 62 \N \N 0 \N \N 84 com.nvs.core.model.meta.DataEntity 0 63 \N \N 0 \N \N 85 com.nvs.core.model.meta.DataEntity 0 64 \N \N 0 \N \N 86 com.nvs.core.model.meta.DataEntity 0 65 \N \N 0 \N \N 87 com.nvs.core.model.meta.DataEntity 0 66 \N \N 0 \N \N 88 com.nvs.core.model.meta.DataEntity 0 67 \N \N 0 \N \N 89 com.nvs.core.model.meta.DataEntity 0 68 \N \N 0 \N \N 90 com.nvs.core.model.meta.DataEntity 0 69 \N \N 0 \N \N 91 com.nvs.core.model.meta.DataEntity 0 71 \N \N 0 \N \N 92 com.nvs.core.model.meta.DataEntity 0 72 \N \N 0 \N \N 93 com.nvs.core.model.meta.DataEntity 0 74 \N \N 0 \N \N 94 com.nvs.core.model.meta.DataEntity 0 75 \N \N 0 \N \N 95 com.nvs.core.model.meta.DataEntity 0 77 \N \N 0 \N \N 96 com.nvs.core.model.meta.DataEntity 0 79 \N \N 0 \N \N 97 com.nvs.core.model.meta.DataEntity 0 80 \N \N 0 \N \N 98 com.nvs.core.model.meta.DataEntity 0 82 \N \N 0 \N \N 99 com.nvs.core.model.meta.DataEntity 0 84 \N \N 0 \N \N 100 com.nvs.core.model.meta.DataEntity 0 85 \N \N 0 \N \N 101 com.nvs.core.model.meta.DataEntity 0 86 \N \N 0 \N \N 102 com.nvs.core.model.meta.DataEntity 0 87 \N \N 0 \N \N 103 com.nvs.core.model.meta.DataEntity 0 88 \N \N 0 \N \N 104 com.nvs.core.model.meta.DataEntity 0 89 \N \N 0 \N \N 105 com.nvs.core.model.meta.DataEntity 0 91 \N \N 0 \N \N 106 com.nvs.core.model.meta.DataEntity 0 92 \N \N 0 \N \N 107 com.nvs.core.model.meta.DataEntity 0 94 \N \N 0 \N \N 108 com.nvs.core.model.meta.DataEntity 0 95 \N \N 0 \N \N 109 com.nvs.core.model.meta.DataEntity 0 96 \N \N 0 \N \N 110 com.nvs.core.model.meta.DataEntity 1 97 \N \N 0 \N \N 111 com.nvs.core.model.meta.DataEntity 0 98 \N \N 0 \N \N 112 com.nvs.core.model.meta.DataEntity 0 99 \N \N 0 \N \N 113 com.nvs.core.model.meta.DataEntity 0 100 \N \N 0 \N \N 114 com.nvs.core.model.meta.DataEntity 0 101 \N \N 0 \N \N 115 com.nvs.core.model.meta.DataEntity 1 102 \N \N 0 \N \N 116 com.nvs.core.model.meta.DataEntity 1 104 \N \N 0 \N \N 117 com.nvs.core.model.meta.DataEntity 0 105 \N \N 0 \N \N 118 com.nvs.core.model.meta.DataEntity 0 107 \N \N 0 \N \N 119 com.nvs.core.model.meta.DataEntity 0 108 \N \N 0 \N \N 120 com.nvs.core.model.meta.DataEntity 0 109 \N \N 0 \N \N 121 com.nvs.core.model.meta.DataEntity 0 110 \N \N 0 \N \N 122 com.nvs.core.model.meta.DataEntity 0 111 \N \N 0 \N \N 123 com.nvs.core.model.meta.DataEntity 0 112 \N \N 0 \N \N 124 com.nvs.core.model.meta.DataEntity 0 114 \N \N 0 \N \N 125 com.nvs.core.model.meta.DataEntity 1 115 \N \N 0 \N \N 126 com.nvs.core.model.meta.DataEntity 0 116 \N \N 0 \N \N 127 com.nvs.core.model.meta.DataSource 0 1 \N \N 0 \N \N 128 com.nvs.core.model.meta.DataSource 0 2 \N \N 0 \N \N 129 com.nvs.core.model.meta.DataSource 0 3 \N \N 0 \N \N 130 com.nvs.core.model.meta.DataSource 0 4 \N \N 0 \N \N 131 com.nvs.core.model.meta.DataSource 1 39 \N \N 0 \N \N 132 com.nvs.core.model.meta.DataSource 1 40 \N \N 0 \N \N 133 com.nvs.core.model.meta.DataSource 1 41 \N \N 0 \N \N 134 com.nvs.core.model.meta.DataSource 2 43 \N \N 0 \N \N 135 com.nvs.core.model.meta.DataSource 2 44 \N \N 0 \N \N 136 com.nvs.core.model.meta.DataSource 2 45 \N \N 0 \N \N 137 com.nvs.core.model.meta.DataSource 2 46 \N \N 0 \N \N 138 com.nvs.core.model.meta.DataSource 2 47 \N \N 0 \N \N 139 com.nvs.core.model.meta.DataSource 2 48 \N \N 0 \N \N 140 com.nvs.core.model.meta.DataSource 2 49 \N \N 0 \N \N 141 com.nvs.core.model.meta.DataSource 2 50 \N \N 0 \N \N 142 com.nvs.core.model.meta.DataSource 2 51 \N \N 0 \N \N 143 com.nvs.core.model.meta.DataSource 2 52 \N \N 0 \N \N 144 com.nvs.core.model.meta.DataSource 2 53 \N \N 0 \N \N 145 com.nvs.core.model.meta.DataSource 2 54 \N \N 0 \N \N 146 com.nvs.core.model.meta.DataSource 2 55 \N \N 0 \N \N 147 com.nvs.core.model.meta.DataSource 2 56 \N \N 0 \N \N 148 com.nvs.core.model.meta.DataSource 2 57 \N \N 0 \N \N 149 com.nvs.core.model.meta.DataSource 2 58 \N \N 0 \N \N 150 com.nvs.core.model.meta.DataSource 1 59 \N \N 0 \N \N 153 com.nvs.core.model.meta.DataSource 1 62 \N \N 0 \N \N 154 com.nvs.core.model.meta.DataSource 1 63 \N \N 0 \N \N 155 com.nvs.core.model.meta.DataSource 1 64 \N \N 0 \N \N 156 com.nvs.core.model.meta.DataSource 1 65 \N \N 0 \N \N 157 com.nvs.core.model.meta.DataSource 1 66 \N \N 0 \N \N 158 com.nvs.core.model.meta.DataSource 1 67 \N \N 0 \N \N 159 com.nvs.core.model.meta.DataSource 1 68 \N \N 0 \N \N 160 com.nvs.core.model.meta.DataSource 1 69 \N \N 0 \N \N 161 com.nvs.core.model.meta.DataSource 0 70 \N \N 0 \N \N 162 com.nvs.core.model.meta.DataSource 1 71 \N \N 0 \N \N 163 com.nvs.core.model.meta.DataSource 1 72 \N \N 0 \N \N 164 com.nvs.core.model.meta.DataSource 0 73 \N \N 0 \N \N 165 com.nvs.core.model.meta.DataSource 1 74 \N \N 0 \N \N 166 com.nvs.core.model.meta.DataSource 1 75 \N \N 0 \N \N 167 com.nvs.core.model.meta.DataSource 1 77 \N \N 0 \N \N 168 com.nvs.core.model.meta.DataSource 1 80 \N \N 0 \N \N 169 com.nvs.core.model.meta.DataSource 1 84 \N \N 0 \N \N 170 com.nvs.core.model.meta.DataSource 1 85 \N \N 0 \N \N 171 com.nvs.core.model.meta.DataSource 1 86 \N \N 0 \N \N 172 com.nvs.core.model.meta.DataSource 1 87 \N \N 0 \N \N 173 com.nvs.core.model.meta.DataSource 1 89 \N \N 0 \N \N 174 com.nvs.core.model.meta.DataSource 0 90 \N \N 0 \N \N 175 com.nvs.core.model.meta.DataSource 1 92 \N \N 0 \N \N 176 com.nvs.core.model.meta.DataSource 0 93 \N \N 0 \N \N 177 com.nvs.core.model.meta.DataSource 2 97 \N \N 0 \N \N 178 com.nvs.core.model.meta.DataSource 1 99 \N \N 0 \N \N 179 com.nvs.core.model.meta.DataSource 1 100 \N \N 0 \N \N 180 com.nvs.core.model.meta.DataSource 2 102 \N \N 0 \N \N 181 com.nvs.core.model.meta.DataSource 0 103 \N \N 0 \N \N 182 com.nvs.core.model.meta.DataSource 2 104 \N \N 0 \N \N 183 com.nvs.core.model.meta.DataSource 1 105 \N \N 0 \N \N 184 com.nvs.core.model.meta.DataSource 1 107 \N \N 0 \N \N 185 com.nvs.core.model.meta.DataSource 1 109 \N \N 0 \N \N 186 com.nvs.core.model.meta.DataSource 1 110 \N \N 0 \N \N 187 com.nvs.core.model.meta.DataSource 0 113 \N \N 0 \N \N 188 com.nvs.core.model.meta.DataSource 2 115 \N \N 0 \N \N 189 com.podiumdata.propertysystem.model.PropertySetting$RootPropBean 3 56 \N \N 0 \N \N 190 com.podiumdata.propertysystem.model.PropertySetting$RootPropBean 3 57 \N \N 0 \N \N 191 com.podiumdata.propertysystem.model.PropertySetting$RootPropBean 3 58 \N \N 0 \N \N 192 com.nvs.core.model.meta.SourceConnection 0 117 2020-11-13 17:33:34.786712+00 2020-11-13 17:33:34.786712+00 0 SYSTEM SYSTEM 193 com.nvs.core.model.meta.SourceConnection 0 118 2020-11-13 17:33:34.786712+00 2020-11-13 17:33:34.786712+00 0 SYSTEM SYSTEM 194 com.nvs.core.model.meta.SourceConnection 0 119 2020-11-13 17:33:34.786712+00 2020-11-13 17:33:34.786712+00 0 SYSTEM SYSTEM 195 com.nvs.core.model.meta.SourceConnection 0 120 2020-11-13 17:33:34.786712+00 2020-11-13 17:33:34.786712+00 0 SYSTEM SYSTEM 196 com.nvs.core.model.meta.SourceConnection 0 121 2020-11-13 17:33:34.786712+00 2020-11-13 17:33:34.786712+00 0 SYSTEM SYSTEM 197 com.nvs.core.model.meta.SourceConnection 0 122 2020-11-13 17:33:34.786712+00 2020-11-13 17:33:34.786712+00 0 SYSTEM SYSTEM 198 com.nvs.core.model.meta.SourceConnection 0 123 2020-11-13 17:33:34.786712+00 2020-11-13 17:33:34.786712+00 0 SYSTEM SYSTEM 199 com.nvs.core.model.meta.SourceConnection 0 124 2020-11-13 17:33:34.786712+00 2020-11-13 17:33:34.786712+00 0 SYSTEM SYSTEM 200 com.nvs.core.model.meta.SourceConnection 0 125 2020-11-13 17:33:34.786712+00 2020-11-13 17:33:34.786712+00 0 SYSTEM SYSTEM 201 com.nvs.core.model.meta.SourceConnection 0 126 2020-11-13 17:33:34.859522+00 2020-11-13 17:33:34.859522+00 0 SYSTEM SYSTEM 202 com.nvs.core.model.PrepareExecutionWorkOrder 0 127 2020-11-13 17:33:34.935455+00 2020-11-13 17:33:34.935455+00 0 SYSTEM SYSTEM 203 com.nvs.core.model.PrepareExecutionWorkOrder 0 128 2020-11-13 17:33:34.935455+00 2020-11-13 17:33:34.935455+00 0 SYSTEM SYSTEM 204 com.nvs.core.model.PrepareExecutionWorkOrder 0 129 2020-11-13 17:33:34.935455+00 2020-11-13 17:33:34.935455+00 0 SYSTEM SYSTEM 205 com.nvs.core.model.PrepareExecutionWorkOrder 0 130 2020-11-13 17:33:34.935455+00 2020-11-13 17:33:34.935455+00 0 SYSTEM SYSTEM 491 com.nvs.core.model.meta.DataField 0 352 2021-01-28 11:50:29.249+00 2021-01-28 11:50:29.249+00 0 podium podium 209 com.nvs.core.model.meta.DataField 0 134 \N \N 0 \N \N 210 com.nvs.core.model.meta.SourceConnection 0 135 2020-11-13 17:33:35.096836+00 2020-11-13 17:33:35.096836+00 0 SYSTEM SYSTEM 211 com.nvs.core.model.meta.SourceConnection 0 136 2020-11-13 17:33:35.096836+00 2020-11-13 17:33:35.096836+00 0 SYSTEM SYSTEM 212 com.nvs.core.model.meta.SourceConnection 0 96 2020-11-13 17:33:35.14235+00 2020-11-13 17:33:35.14235+00 0 SYSTEM SYSTEM 213 com.nvs.core.model.meta.DataField 0 137 \N \N 0 \N \N 214 com.nvs.core.model.meta.DataEntity 0 153 \N \N 0 \N \N 215 com.nvs.core.model.meta.DataSource 1 145 \N \N 0 \N \N 216 com.nvs.core.model.meta.DataEntity 0 136 \N \N 0 \N \N 217 com.nvs.core.model.meta.DataSource 1 155 \N \N 0 \N \N 218 com.nvs.core.model.meta.DataEntity 0 141 \N \N 0 \N \N 219 com.nvs.core.model.meta.DataEntity 0 147 \N \N 0 \N \N 220 com.nvs.core.model.meta.DataSource 1 140 \N \N 0 \N \N 221 com.nvs.core.model.meta.DataSource 1 147 \N \N 0 \N \N 222 com.nvs.core.model.meta.DataSource 1 154 \N \N 0 \N \N 223 com.nvs.core.model.meta.DataSource 1 139 \N \N 0 \N \N 224 com.nvs.core.model.meta.DataEntity 0 155 \N \N 0 \N \N 225 com.nvs.core.model.meta.DataSource 1 144 \N \N 0 \N \N 226 com.nvs.core.model.meta.DataEntity 0 149 \N \N 0 \N \N 227 com.nvs.core.model.meta.DataEntity 0 135 \N \N 0 \N \N 228 com.nvs.core.model.meta.DataEntity 0 120 \N \N 0 \N \N 229 com.nvs.core.model.meta.DataSource 1 146 \N \N 0 \N \N 230 com.nvs.core.model.meta.DataEntity 0 142 \N \N 0 \N \N 231 com.nvs.core.model.meta.DataEntity 0 140 \N \N 0 \N \N 232 com.nvs.core.model.meta.DataEntity 0 152 \N \N 0 \N \N 233 com.nvs.core.model.meta.DataSource 1 151 \N \N 0 \N \N 234 com.nvs.core.model.meta.DataSource 1 148 \N \N 0 \N \N 235 com.nvs.core.model.meta.DataSource 1 153 \N \N 0 \N \N 236 com.nvs.core.model.meta.DataSource 1 142 \N \N 0 \N \N 237 com.nvs.core.model.meta.DataSource 1 141 \N \N 0 \N \N 238 com.nvs.core.model.meta.DataEntity 0 146 \N \N 0 \N \N 239 com.nvs.core.model.meta.DataEntity 0 139 \N \N 0 \N \N 240 com.nvs.core.model.meta.DataSource 1 156 \N \N 0 \N \N 241 com.nvs.core.model.meta.DataEntity 0 148 \N \N 0 \N \N 242 com.nvs.core.model.meta.DataSource 1 138 \N \N 0 \N \N 243 com.nvs.core.model.meta.DataEntity 0 144 \N \N 0 \N \N 244 com.nvs.core.model.meta.DataSource 1 152 \N \N 0 \N \N 245 com.nvs.core.model.meta.DataEntity 0 138 \N \N 0 \N \N 246 com.nvs.core.model.meta.DataEntity 0 156 \N \N 0 \N \N 247 com.nvs.core.model.meta.DataEntity 0 151 \N \N 0 \N \N 248 com.nvs.core.model.meta.DataSource 1 143 \N \N 0 \N \N 249 com.nvs.core.model.meta.DataSource 1 149 \N \N 0 \N \N 250 com.nvs.core.model.meta.DataEntity 0 145 \N \N 0 \N \N 251 com.nvs.core.model.meta.DataEntity 0 154 \N \N 0 \N \N 252 com.nvs.core.model.meta.DataEntity 0 143 \N \N 0 \N \N 253 com.nvs.core.model.meta.DataSource 1 150 \N \N 0 \N \N 254 com.nvs.core.model.meta.DataEntity 0 150 \N \N 0 \N \N 255 com.nvs.core.model.meta.DataEntity 0 157 \N \N 0 \N \N 256 com.nvs.core.model.meta.DataEntity 0 160 \N \N 0 \N \N 257 com.nvs.core.model.meta.DataSource 1 161 \N \N 0 \N \N 258 com.nvs.core.model.meta.DataSource 1 160 \N \N 0 \N \N 259 com.nvs.core.model.meta.DataSource 1 159 \N \N 0 \N \N 260 com.nvs.core.model.meta.DataEntity 0 162 \N \N 0 \N \N 261 com.nvs.core.model.meta.DataEntity 0 161 \N \N 0 \N \N 262 com.nvs.core.model.meta.DataEntity 0 158 \N \N 0 \N \N 263 com.nvs.core.model.meta.DataSource 1 158 \N \N 0 \N \N 264 com.nvs.core.model.meta.DataEntity 0 159 \N \N 0 \N \N 265 com.nvs.core.model.meta.DataSource 1 162 \N \N 0 \N \N 268 com.nvs.core.model.PrepareExecutionWorkOrder 0 166 \N \N 0 \N \N 269 com.nvs.core.model.PrepareExecutionWorkOrder 0 167 \N \N 0 \N \N 270 com.nvs.core.model.PrepareExecutionWorkOrder 0 168 \N \N 0 \N \N 271 com.nvs.core.model.PrepareExecutionWorkOrder 0 169 \N \N 0 \N \N 272 com.nvs.core.model.PrepareExecutionWorkOrder 0 170 \N \N 0 \N \N 273 com.nvs.core.model.PrepareExecutionWorkOrder 0 171 \N \N 0 \N \N 274 com.nvs.core.model.PrepareExecutionWorkOrder 0 172 \N \N 0 \N \N 275 com.nvs.core.model.PrepareExecutionWorkOrder 0 173 \N \N 0 \N \N 276 com.nvs.core.model.PrepareExecutionWorkOrder 0 174 \N \N 0 \N \N 277 com.nvs.core.model.PrepareExecutionWorkOrder 0 175 \N \N 0 \N \N 278 com.nvs.core.model.PrepareExecutionWorkOrder 0 176 \N \N 0 \N \N 279 com.nvs.core.model.PrepareExecutionWorkOrder 0 177 \N \N 0 \N \N 280 com.nvs.core.model.PrepareExecutionWorkOrder 0 178 \N \N 0 \N \N 281 com.nvs.core.model.PrepareExecutionWorkOrder 0 179 \N \N 0 \N \N 282 com.nvs.core.model.PrepareExecutionWorkOrder 0 180 \N \N 0 \N \N 266 com.nvs.core.model.Task 0 164 \N \N 0 \N \N 267 com.nvs.core.model.Task 0 165 \N \N 0 \N \N 283 com.nvs.core.model.meta.DataEntity 0 163 \N \N 0 \N \N 284 com.nvs.core.model.meta.DataEntity 0 181 \N \N 0 \N \N 285 com.nvs.core.model.meta.DataSource 1 181 \N \N 0 \N \N 286 com.nvs.core.model.meta.DataEntity 0 182 \N \N 0 \N \N 287 com.nvs.core.model.meta.DataSource 1 182 \N \N 0 \N \N 288 com.nvs.core.model.meta.DataEntity 0 183 \N \N 0 \N \N 289 com.nvs.core.model.meta.DataSource 1 183 \N \N 0 \N \N 290 com.nvs.core.model.meta.DataEntity 0 184 \N \N 0 \N \N 295 com.nvs.core.model.meta.DataField 0 189 \N \N 0 \N \N 296 com.nvs.core.model.meta.DataField 0 190 \N \N 0 \N \N 297 com.nvs.core.model.meta.DataEntity 0 191 \N \N 0 \N \N 298 com.podiumdata.propertysystem.model.PropertySetting$RootPropBean 3 192 \N \N 0 \N \N 299 com.nvs.core.model.meta.DataSource 2 192 \N \N 0 \N \N 300 com.nvs.core.model.meta.DataEntity 1 192 \N \N 0 \N \N 301 com.nvs.core.model.meta.DataField 0 192 \N \N 0 \N \N 302 com.nvs.core.model.Task 0 193 \N \N 0 \N \N 303 com.nvs.core.model.Task 0 194 \N \N 0 \N \N 304 com.nvs.core.model.Task 0 195 \N \N 0 \N \N 305 com.nvs.core.model.SystemSetting 0 196 2020-11-13 17:33:36.235635+00 2020-11-13 17:33:36.235635+00 0 SYSTEM SYSTEM 306 com.nvs.core.model.SystemSetting 0 197 2020-11-13 17:33:36.235635+00 2020-11-13 17:33:36.235635+00 0 SYSTEM SYSTEM 310 com.nvs.core.model.meta.DataEntity 0 201 \N \N 0 \N \N 311 com.nvs.core.model.meta.DataSource 1 201 \N \N 0 \N \N 312 com.nvs.core.model.meta.DataEntity 0 202 \N \N 0 \N \N 313 com.nvs.core.model.meta.DataSource 1 202 \N \N 0 \N \N 314 com.nvs.core.model.meta.SourceConnection 2 202 \N \N 0 \N \N 318 com.nvs.core.model.PrepareExecutionWorkOrder 0 206 \N \N 0 \N \N 319 com.nvs.core.model.meta.DataEntity 1 207 \N \N 0 \N \N 320 com.nvs.core.model.meta.DataSource 2 207 \N \N 0 \N \N 321 com.nvs.core.model.meta.DataEntity 1 208 \N \N 0 \N \N 322 com.nvs.core.model.meta.DataSource 2 208 \N \N 0 \N \N 324 com.nvs.core.model.meta.DataSource 0 210 2020-11-13 17:33:36.399442+00 2020-11-13 17:33:36.399442+00 0 SYSTEM SYSTEM 325 com.nvs.core.garbagecollector.bean.GCRegistry 0 211 \N \N 0 \N \N 326 com.nvs.core.garbagecollector.bean.GCRegistry 0 212 \N \N 0 \N \N 327 com.nvs.core.garbagecollector.bean.GCRegistry 0 213 \N \N 0 \N \N 328 com.nvs.core.garbagecollector.bean.GCRegistry 0 214 \N \N 0 \N \N 329 com.nvs.core.garbagecollector.bean.GCRegistry 0 215 \N \N 0 \N \N 330 com.nvs.core.garbagecollector.bean.GCRegistry 0 216 \N \N 0 \N \N 331 com.nvs.core.garbagecollector.bean.GCRegistry 0 217 \N \N 0 \N \N 332 com.nvs.core.garbagecollector.bean.GCRegistry 0 218 \N \N 0 \N \N 333 com.nvs.core.garbagecollector.bean.GCRegistry 0 223 \N \N 0 \N \N 334 com.nvs.core.garbagecollector.bean.GCRegistry 0 224 \N \N 0 \N \N 335 com.nvs.core.garbagecollector.bean.GCRegistry 0 225 \N \N 0 \N \N 336 com.nvs.core.garbagecollector.bean.GCRegistry 0 226 \N \N 0 \N \N 337 com.nvs.core.garbagecollector.bean.GCRegistry 0 219 \N \N 0 \N \N 338 com.nvs.core.garbagecollector.bean.GCRegistry 0 220 \N \N 0 \N \N 339 com.nvs.core.garbagecollector.bean.GCRegistry 0 221 \N \N 0 \N \N 340 com.nvs.core.garbagecollector.bean.GCRegistry 0 222 \N \N 0 \N \N 341 com.nvs.core.garbagecollector.bean.GCRegistry 0 227 \N \N 0 \N \N 342 com.nvs.core.garbagecollector.bean.GCRegistry 0 228 \N \N 0 \N \N 343 com.nvs.core.garbagecollector.bean.GCRegistry 0 229 \N \N 0 \N \N 344 com.nvs.core.garbagecollector.bean.GCRegistry 0 230 \N \N 0 \N \N 345 com.nvs.core.garbagecollector.bean.GCRegistry 0 232 \N \N 0 \N \N 346 com.nvs.core.garbagecollector.bean.GCRegistry 0 233 \N \N 0 \N \N 347 com.nvs.core.garbagecollector.bean.GCRegistry 0 234 \N \N 0 \N \N 348 com.nvs.core.garbagecollector.bean.GCRegistry 0 235 \N \N 0 \N \N 349 com.nvs.core.garbagecollector.bean.GCRegistry 0 236 \N \N 0 \N \N 350 com.nvs.core.garbagecollector.bean.GCRegistry 0 237 \N \N 0 \N \N 351 com.nvs.core.garbagecollector.bean.GCRegistry 0 238 \N \N 0 \N \N 352 com.nvs.core.garbagecollector.bean.GCRegistry 0 239 \N \N 0 \N \N 353 com.nvs.core.garbagecollector.bean.GCRegistry 0 240 \N \N 0 \N \N 354 com.nvs.core.garbagecollector.bean.GCRegistry 0 241 \N \N 0 \N \N 355 com.nvs.core.garbagecollector.bean.GCRegistry 0 242 \N \N 0 \N \N 356 com.nvs.core.garbagecollector.bean.GCRegistry 0 243 \N \N 0 \N \N 357 com.nvs.core.garbagecollector.bean.GCRegistry 0 244 \N \N 0 \N \N 358 com.nvs.core.garbagecollector.bean.GCRegistry 0 245 \N \N 0 \N \N 359 com.nvs.core.garbagecollector.bean.GCRegistry 0 246 \N \N 0 \N \N 360 com.nvs.core.garbagecollector.bean.GCRegistry 0 247 \N \N 0 \N \N 361 com.nvs.core.model.Task 0 248 \N \N 0 \N \N 362 com.nvs.core.model.Task 0 249 \N \N 0 \N \N 363 com.nvs.core.model.Task 0 250 \N \N 0 \N \N 364 com.nvs.core.garbagecollector.bean.GCRegistry 0 252 \N \N 0 \N \N 365 com.nvs.core.garbagecollector.bean.GCRegistry 0 251 \N \N 0 \N \N 366 com.nvs.core.model.PrepareExecutionWorkOrder 0 253 \N \N 0 \N \N 367 com.nvs.core.model.meta.DataEntity 0 254 \N \N 0 \N \N 369 com.nvs.core.model.meta.SourceConnection 0 256 \N \N 0 \N \N 370 com.nvs.core.model.meta.SourceConnection 0 257 \N \N 0 \N \N 371 com.nvs.core.model.meta.DataEntity 0 258 \N \N 0 \N \N 372 com.nvs.core.model.meta.DataEntity 0 259 \N \N 0 \N \N 373 com.nvs.core.model.meta.DataEntity 0 260 \N \N 0 \N \N 374 com.nvs.core.model.meta.SourceConnection 0 261 \N \N 0 \N \N 375 com.nvs.core.garbagecollector.bean.GCRegistry 0 262 \N \N 0 \N \N 376 com.nvs.core.model.meta.DataField 0 263 2020-11-13 17:33:38.587144+00 2020-11-13 17:33:38.587144+00 0 SYSTEM SYSTEM 377 com.nvs.core.model.meta.DataField 0 264 2020-11-13 17:33:38.69034+00 2020-11-13 17:33:38.69034+00 0 SYSTEM SYSTEM 378 com.nvs.core.model.PrepareExecutionWorkOrder 0 265 \N \N 0 \N \N 379 com.nvs.core.model.PrepareExecutionWorkOrder 0 266 \N \N 0 \N \N 380 com.nvs.core.model.meta.DataEntity 0 267 2020-11-13 17:33:38.883198+00 2020-11-13 17:33:38.883198+00 0 SYSTEM SYSTEM 381 com.nvs.core.model.meta.DataEntity 0 268 2020-11-13 17:33:38.883198+00 2020-11-13 17:33:38.883198+00 0 SYSTEM SYSTEM 382 com.nvs.core.model.meta.DataField 0 269 2020-11-13 17:33:38.883198+00 2020-11-13 17:33:38.883198+00 0 SYSTEM SYSTEM 383 com.nvs.core.model.PrepareExecutionWorkOrder 0 270 \N \N 0 \N \N 384 com.nvs.core.model.PrepareExecutionWorkOrder 0 271 \N \N 0 \N \N 385 com.nvs.core.model.Task 0 272 2020-11-13 17:33:38.945482+00 2020-11-13 17:33:38.945482+00 0 SYSTEM SYSTEM 386 com.nvs.core.model.Task 0 273 2020-11-13 17:33:38.945482+00 2020-11-13 17:33:38.945482+00 0 SYSTEM SYSTEM 387 com.nvs.core.model.Task 0 274 2020-11-13 17:33:38.945482+00 2020-11-13 17:33:38.945482+00 0 SYSTEM SYSTEM 388 com.nvs.core.model.Task 0 275 2020-11-13 17:33:38.945482+00 2020-11-13 17:33:38.945482+00 0 SYSTEM SYSTEM 389 com.nvs.core.model.meta.DataEntity 0 276 2020-11-13 17:33:38.963047+00 2020-11-13 17:33:38.963047+00 0 SYSTEM SYSTEM 390 com.nvs.core.model.prepare.Bundle 0 277 2020-11-13 17:33:38.963047+00 2020-11-13 17:33:38.963047+00 0 SYSTEM SYSTEM 391 com.nvs.core.model.PrepareExecutionWorkOrder 0 277 2020-11-13 17:33:38.979484+00 2020-11-13 17:33:38.979484+00 0 SYSTEM SYSTEM 392 com.nvs.core.model.Graph 0 277 2020-11-13 17:33:39.067199+00 2020-11-13 17:33:39.067199+00 0 SYSTEM SYSTEM 393 com.nvs.core.model.WorkflowExecutionWorkOrder 0 278 2020-11-13 17:33:39.067199+00 2020-11-13 17:33:39.067199+00 0 SYSTEM SYSTEM 394 com.nvs.core.model.WorkflowExecutionWorkOrder 0 279 2020-11-13 17:33:39.067199+00 2020-11-13 17:33:39.067199+00 0 SYSTEM SYSTEM 395 com.nvs.core.model.meta.DataEntity 0 280 2020-11-13 17:33:39.084994+00 2020-11-13 17:33:39.084994+00 0 SYSTEM SYSTEM 396 com.nvs.core.model.meta.DataEntity 0 281 2020-11-13 17:33:39.084994+00 2020-11-13 17:33:39.084994+00 0 SYSTEM SYSTEM 397 com.nvs.core.model.meta.DataEntity 0 282 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:39.10244+00 0 SYSTEM SYSTEM 398 com.nvs.core.model.meta.DataEntity 0 283 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:39.10244+00 0 SYSTEM SYSTEM 399 com.nvs.core.model.meta.DataEntity 0 284 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:39.10244+00 0 SYSTEM SYSTEM 400 com.nvs.core.model.meta.DataEntity 0 285 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:39.10244+00 0 SYSTEM SYSTEM 401 com.nvs.core.model.meta.DataEntity 0 286 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:39.10244+00 0 SYSTEM SYSTEM 402 com.nvs.core.model.meta.SourceConnection 0 282 2020-11-13 17:33:39.119879+00 2020-11-13 17:33:39.119879+00 0 SYSTEM SYSTEM 403 com.nvs.core.model.meta.SourceConnection 0 283 2020-11-13 17:33:39.119879+00 2020-11-13 17:33:39.119879+00 0 SYSTEM SYSTEM 404 com.nvs.core.model.meta.SourceConnection 0 284 2020-11-13 17:33:39.119879+00 2020-11-13 17:33:39.119879+00 0 SYSTEM SYSTEM 405 com.nvs.core.model.meta.SourceConnection 0 287 2020-11-13 17:33:39.119879+00 2020-11-13 17:33:39.119879+00 0 SYSTEM SYSTEM 406 com.nvs.core.model.meta.DataEntity 0 287 2020-11-13 17:33:39.119879+00 2020-11-13 17:33:39.119879+00 0 SYSTEM SYSTEM 407 com.nvs.core.model.meta.DataEntity 0 288 2020-11-13 17:33:39.137572+00 2020-11-13 17:33:39.137572+00 0 SYSTEM SYSTEM 408 com.nvs.core.model.meta.DataSource 1 288 2020-11-13 17:33:39.137572+00 2020-11-13 17:33:39.137572+00 0 SYSTEM SYSTEM 409 com.nvs.core.model.meta.DataEntity 0 289 2020-11-13 17:33:39.203237+00 2020-11-13 17:33:39.203237+00 0 SYSTEM SYSTEM 410 com.nvs.core.model.meta.DataEntity 0 290 2020-11-13 17:33:39.248275+00 2020-11-13 17:33:39.248275+00 0 SYSTEM SYSTEM 411 com.nvs.core.model.meta.DataField 0 291 2020-11-13 17:33:39.248275+00 2020-11-13 17:33:39.248275+00 0 SYSTEM SYSTEM 412 com.nvs.core.model.meta.DataEntity 0 292 2020-11-13 17:33:39.289807+00 2020-11-13 17:33:39.289807+00 0 SYSTEM SYSTEM 413 com.nvs.core.model.meta.DataSource 1 292 2020-11-13 17:33:39.289807+00 2020-11-13 17:33:39.289807+00 0 SYSTEM SYSTEM 414 com.nvs.core.model.meta.DataEntity 0 293 2020-11-13 17:33:39.495123+00 2020-11-13 17:33:39.495123+00 0 SYSTEM SYSTEM 415 com.nvs.core.model.meta.DataSource 1 293 2020-11-13 17:33:39.495123+00 2020-11-13 17:33:39.495123+00 0 SYSTEM SYSTEM 416 com.nvs.core.model.PrepareExecutionWorkOrder 0 294 \N \N 0 \N \N 417 com.nvs.core.model.meta.DataEntity 1 257 2020-11-13 17:33:39.671238+00 2020-11-13 17:33:39.671238+00 0 podium podium 418 com.nvs.core.model.meta.DataEntity 1 256 2020-11-13 17:33:39.685316+00 2020-11-13 17:33:39.685316+00 0 podium podium 419 com.nvs.core.model.meta.DataEntity 1 261 2020-11-13 17:33:39.685316+00 2020-11-13 17:33:39.685316+00 0 podium podium 420 com.nvs.core.model.PrepareExecutionWorkOrder 0 253 2020-11-13 17:33:39.790173+00 2020-11-13 17:33:39.790173+00 0 SYSTEM SYSTEM 421 com.nvs.core.model.meta.DataEntity 0 295 2020-11-13 17:33:40.169589+00 2020-11-13 17:33:40.169589+00 0 SYSTEM SYSTEM 422 com.nvs.core.model.meta.DataSource 1 295 2020-11-13 17:33:40.169589+00 2020-11-13 17:33:40.169589+00 0 SYSTEM SYSTEM 423 com.nvs.core.model.meta.DataField 0 311 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 424 com.nvs.core.model.meta.DataField 0 312 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 425 com.nvs.core.model.meta.DataField 0 313 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 426 com.nvs.core.model.meta.DataField 0 314 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 443 com.nvs.core.model.meta.DataSource 0 315 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 444 com.nvs.core.model.QSConnectorInfo 0 316 2020-11-13 17:33:41.015751+00 2020-11-13 17:33:41.015751+00 0 SYSTEM SYSTEM 445 com.nvs.core.model.meta.DataSource 0 317 2020-11-13 17:33:41.015751+00 2020-11-13 17:33:41.015751+00 0 SYSTEM SYSTEM 446 com.nvs.core.model.meta.DataEntity 0 320 2020-11-13 17:33:41.151001+00 2020-11-13 17:33:41.151001+00 0 SYSTEM SYSTEM 448 com.nvs.core.model.meta.DataEntity 0 322 2020-11-13 17:33:41.237203+00 2020-11-13 17:33:41.237203+00 0 SYSTEM SYSTEM 449 com.nvs.core.model.meta.DataSource 1 322 2020-11-13 17:33:41.237203+00 2020-11-13 17:33:41.237203+00 0 SYSTEM SYSTEM 450 com.nvs.core.model.meta.DataEntity 0 323 2020-11-13 17:33:41.255846+00 2020-11-13 17:33:41.255846+00 0 SYSTEM SYSTEM 451 com.nvs.core.model.meta.DataSource 1 323 2020-11-13 17:33:41.255846+00 2020-11-13 17:33:41.255846+00 0 SYSTEM SYSTEM 452 com.nvs.core.model.meta.DataEntity 0 324 2020-11-13 17:33:41.255846+00 2020-11-13 17:33:41.255846+00 0 SYSTEM SYSTEM 453 com.nvs.core.model.meta.DataSource 1 324 2020-11-13 17:33:41.255846+00 2020-11-13 17:33:41.255846+00 0 SYSTEM SYSTEM 427 com.nvs.core.model.meta.DataEntity 0 296 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 428 com.nvs.core.model.meta.DataEntity 0 297 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 429 com.nvs.core.model.meta.DataEntity 0 298 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 430 com.nvs.core.model.meta.DataEntity 0 299 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 431 com.nvs.core.model.meta.DataEntity 0 300 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 432 com.nvs.core.model.meta.DataEntity 0 301 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 433 com.nvs.core.model.meta.DataEntity 0 302 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 434 com.nvs.core.model.meta.DataEntity 0 303 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 435 com.nvs.core.model.meta.DataEntity 0 304 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 436 com.nvs.core.model.meta.DataEntity 0 305 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 437 com.nvs.core.model.meta.DataEntity 0 306 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 438 com.nvs.core.model.meta.DataEntity 0 307 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 439 com.nvs.core.model.meta.DataEntity 0 308 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 440 com.nvs.core.model.meta.DataEntity 0 309 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 441 com.nvs.core.model.meta.DataEntity 0 310 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 442 com.nvs.core.model.meta.DataEntity 0 304 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 447 com.nvs.core.model.meta.DataEntity 0 304 2020-11-13 17:33:41.205585+00 2020-11-13 17:33:41.306176+00 2 podium SYSTEM 454 com.nvs.core.model.meta.DataEntity 0 318 2020-11-13 17:33:41.306176+00 2020-11-13 17:33:41.306176+00 0 podium podium 455 com.nvs.core.model.meta.DataEntity 0 319 2020-11-13 17:33:41.306176+00 2020-11-13 17:33:41.306176+00 0 podium podium 456 com.nvs.core.model.meta.DataEntity 0 321 2020-11-13 17:33:41.306176+00 2020-11-13 17:33:41.306176+00 0 podium podium 457 com.nvs.core.model.meta.DataEntity 0 327 2020-11-13 17:33:41.306176+00 2020-11-13 17:33:41.306176+00 0 podium podium 458 com.nvs.core.model.meta.DataEntity 0 328 2020-11-13 17:33:41.306176+00 2020-11-13 17:33:41.306176+00 0 podium podium 459 com.nvs.core.model.meta.DataEntity 0 329 \N \N 0 \N \N 460 com.nvs.core.model.meta.DataSource 1 329 \N \N 0 \N \N 461 com.nvs.core.model.meta.DataEntity 0 330 \N \N 0 \N \N 462 com.nvs.core.model.meta.DataEntity 0 330 \N \N 0 \N \N 463 com.nvs.core.model.meta.DataEntity 0 331 \N \N 0 \N \N 464 com.nvs.core.model.meta.DataEntity 0 331 \N \N 0 \N \N 465 com.nvs.core.model.meta.SourceConnection 0 332 2020-11-13 17:33:41.664962+00 2020-11-13 17:33:41.664962+00 0 SYSTEM SYSTEM 466 com.nvs.core.model.meta.DataField 0 335 2020-11-13 17:33:41.791787+00 2020-11-13 17:33:41.791787+00 0 SYSTEM SYSTEM 467 com.nvs.core.model.meta.DataEntity 1 335 2020-11-13 17:33:41.791787+00 2020-11-13 17:33:41.791787+00 0 SYSTEM SYSTEM 468 com.nvs.core.model.meta.DataSource 2 335 2020-11-13 17:33:41.791787+00 2020-11-13 17:33:41.791787+00 0 SYSTEM SYSTEM 469 com.nvs.core.model.meta.DataField 0 336 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 470 com.nvs.core.model.meta.DataField 0 337 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 471 com.nvs.core.model.meta.DataField 0 338 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 472 com.nvs.core.model.meta.DataField 0 339 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 473 com.nvs.core.model.meta.DataEntity 1 336 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 474 com.nvs.core.model.meta.DataEntity 1 337 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 475 com.nvs.core.model.meta.DataEntity 1 338 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 476 com.nvs.core.model.meta.DataEntity 1 339 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 477 com.nvs.core.model.meta.DataSource 2 336 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 478 com.nvs.core.model.meta.DataSource 2 337 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 479 com.nvs.core.model.meta.DataSource 2 338 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 480 com.nvs.core.model.meta.DataSource 2 339 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 481 com.nvs.core.model.meta.DataEntity 0 342 2020-11-13 17:33:42.348709+00 2020-11-13 17:33:42.348709+00 0 SYSTEM SYSTEM 482 com.nvs.core.model.meta.DataEntity 0 343 2020-11-13 17:33:42.364914+00 2020-11-13 17:33:42.364914+00 0 SYSTEM SYSTEM 483 com.nvs.core.model.meta.DataEntity 0 344 2020-11-13 17:33:42.460028+00 2020-11-13 17:33:42.460028+00 0 SYSTEM SYSTEM 484 com.nvs.core.model.meta.DataField 0 345 2020-11-13 17:33:42.729602+00 2020-11-13 17:33:42.729602+00 0 SYSTEM SYSTEM 485 com.nvs.core.model.SystemSetting 0 346 2020-11-13 17:33:42.782192+00 2020-11-13 17:33:42.782192+00 0 SYSTEM SYSTEM \. -- -- Data for Name: pd_prop_definition; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prop_definition (nid, sname, description, display_name, default_value, property_dependency_nid, editable, created_ttz, modified_ttz, version, modifiedby, createdby, prop_type_nid, nullable) FROM stdin; 347 cpBSA Business Subject Area Business Subject Area \N t 2021-01-28 11:25:30.408+00 2021-01-28 11:25:30.408+00 0 podium podium 1 t 348 custom.entity.businessarea Business Subject Area Business Subject Area \N t 2021-01-28 11:38:43.335+00 2021-01-28 11:38:43.335+00 0 podium podium 1 t 349 custom.source.type Source Type Source Type \N t 2021-01-28 11:41:08.425+00 2021-01-28 11:41:08.425+00 0 podium podium 1 t 350 custom.field.acronym Field Acronym Field Acronym \N t 2021-01-28 11:42:12.328+00 2021-01-28 11:42:12.328+00 0 podium podium 1 t 351 demo.entity.businessarea Business Subject Area Business Subject Area \N t 2021-01-28 11:46:11.015+00 2021-01-28 11:46:11.015+00 0 podium podium 1 t 102 field.normalize.whitespace boolean flag to indicate that string field should be normalized; where leading and trailing whitespace is trimmed and any embedded sequences of embedded whitespace is converted to a single space character Field Normalize Whitespace false \N t \N 2020-11-13 17:33:41.774109+00 0 SYSTEM \N 4 t 12 header.byte.count optional integer that specifies the fixed number of bytes in the file header Header Byte Count 0 \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 1 src.sys.name unique internal business name for data source Src Sys Name \N \N t \N \N 0 \N \N \N t 2 src.comm.protocol communications protocol to be used to pull data from this data source Src Comm Protocol \N \N t \N \N 0 \N \N \N t 3 src.sys.type source system type Src Sys Type \N \N t \N \N 0 \N \N \N t 4 src.entity.name business name of entity/table Src Entity Name \N \N t \N \N 0 \N \N \N t 5 src.file.glob wild-card glob of data files for this source Src File Glob \N \N t \N \N 0 \N \N \N t 6 biz.date.def.java.class not currently used Biz Date Def Java Class \N \N t \N \N 0 \N \N \N t 7 validate.load.java.class not currently used Validate Load Java Class \N \N t \N \N 0 \N \N \N t 8 date.type.format not currently used Date Type Format \N \N t \N \N 0 \N \N \N t 11 header.charencoding NOT CURRENTLY USED Header Charencoding \N \N t \N \N 0 \N \N 14 t 96 entity.custom.script.args path to the script plus any arguments such as passwords/username and parameters Entity Custom Script Args \N \N t \N \N 0 \N \N \N f 98 xml.entity.namespaces list of XML namespaces described by the XSD Xml Entity Namespaces \N \N t \N \N 0 \N \N \N t 99 posix.file.permissions sets user/group permissions bit for files Posix File Permissions \N \N t \N \N 0 \N \N \N t 100 posix.file.group.identifier specifies group identifier to be set for files during ingestion of entity data Posix File Group Identifier \N \N t \N \N 0 \N \N \N t 101 field.fdl system-parsed field format information, not editable Field Fdl \N \N t \N \N 0 \N \N \N t 352 cpAcronym Field Acronym Field Acronym \N t 2021-01-28 11:50:29.238+00 2021-01-28 11:50:29.238+00 0 podium podium 1 t 15 header.record.count.regex optional regular expression with a capturing group for extracting the record count from the header Header Record Count Regex \N \N t \N \N 0 \N \N \N t 16 header.validation.regex DEPRECATED Header Validation Regex \N \N t \N \N 0 \N \N \N t 18 header.validation.pattern pattern for validating header ... either exact string match or regular expression Header Validation Pattern \N \N t \N \N 0 \N \N \N t 13 header.line.count optional integer that specifies a fixed number of lines in the file header ... where line is terminated by \\\\n or \\\\r\\\\n Header Line Count 0 \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 117 connection.string Connection string Connection String \N \N t 2020-11-13 17:33:34.752349+00 2020-11-13 17:33:34.752349+00 0 SYSTEM SYSTEM \N t 118 conn.user.name connection username User Name \N \N t 2020-11-13 17:33:34.752349+00 2020-11-13 17:33:34.752349+00 0 SYSTEM SYSTEM \N t 119 conn.user.password connection password Password \N \N t 2020-11-13 17:33:34.752349+00 2020-11-13 17:33:34.752349+00 0 SYSTEM SYSTEM \N t 114 entity.base.type indicates whether data loads as snapshot (full refresh) or incremental Entity Base Type Snapshot \N t \N \N 0 \N \N \N t 20 trailer.byte.count optional integer that specifies a fixed number of bytes in the file trailer Trailer Byte Count 0 \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 21 trailer.line.count optional integer that specifies a fixed number of lines in the file header ... where line is terminated by \\\\n or \\\\r\\\\n Trailer Line Count 0 \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 30 record.fixed.byte.count fixed record byte length for FIXED_LENGTH and FIXED_LENGTH_TERMINATED records Record Fixed Byte Count -1 \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 31 record.min.byte.count minimum valid record byte length Record Min Byte Count 1 \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 22 trailer.record.count.regex optional regular expression with a capturing group for extracting the record count from the trailer Trailer Record Count Regex \N \N t \N \N 0 \N \N \N t 23 trailer.validation.regex DEPRECATED Trailer Validation Regex \N \N t \N \N 0 \N \N \N t 25 trailer.validation.pattern pattern for validating trailer ... either exact string match or regular expression Trailer Validation Pattern \N \N t \N \N 0 \N \N \N t 28 record.charencoding.confidence confidence in the char encoding ... decimal in the range 0.0-1.0 Record Charencoding Confidence 0.0 \N t \N \N 0 \N \N \N t 52 field.min.legal.value minimum legal value for this specific field ... interpretation depends upon field type Field Min Legal Value \N \N t \N \N 0 \N \N \N t 71 posix.directory.acl specifies access control list permissions to be set for directories during ingestion of entity data Posix Directory Acl \N \N t \N \N 0 \N \N \N t 73 originalSourceName name of original external data source Originalsourcename \N \N t \N \N 0 \N \N \N t 74 dataset.date.pattern defines format the datetime takes so that it can be parsed correctly when datetime extraction method is active Dataset Date Pattern \N \N t \N \N 0 \N \N \N t 75 cobol.record.filter.string text field which contains a filter string conditional expression for distinguishing between record types in a COBOL heterogeneous dataset. Cobol Record Filter String \N \N t \N \N 0 \N \N \N t 76 numeric.precision.scale.rounding.mode specifies a numeric fixed point precision and scale. [ , , ] where roundingMode is optional Numeric Precision Scale Rounding Mode \N \N t \N \N 0 \N \N \N t 93 pwd password Pwd \N \N t \N \N 0 \N \N \N t 122 conn.hadooop.num.mappers Number of Mappers Number Of Mappers \N \N t 2020-11-13 17:33:34.752349+00 2020-11-13 17:33:41.774109+00 0 SYSTEM SYSTEM 2 t 123 conn.hadooop.separator Separator Separator \N \N t 2020-11-13 17:33:34.752349+00 2020-11-13 17:33:34.752349+00 0 SYSTEM SYSTEM \N t 124 conn.hadooop.uri Connection URI Uri \N \N t 2020-11-13 17:33:34.752349+00 2020-11-13 17:33:34.752349+00 0 SYSTEM SYSTEM \N t 125 conn.hadooop.lib.jars Lib Jars Lib Jars \N \N t 2020-11-13 17:33:34.752349+00 2020-11-13 17:33:34.752349+00 0 SYSTEM SYSTEM \N t 94 original.name holds original entity name. Entity names with special characters or spaces are sometimes changed to SQL-compatible names Original Name \N \N t \N \N 0 \N \N \N t 95 entity.fdl system-parsed entity format information, not editable Entity Fdl \N \N t \N \N 0 \N \N \N t 103 username username Username \N \N t \N \N 0 \N \N \N t 104 field.null.replacement will replace a null with an alternate value of specified datatype Field Null Replacement \N \N t \N \N 0 \N \N \N t 105 posix.file.acl specifies access control list permissions to be set for files during ingestion of entity data Posix File Acl \N \N t \N \N 0 \N \N \N t 106 xml.field.xsltExpr xpath of the field relative to the entity path Xml Field Xsltexpr \N \N t \N \N 0 \N \N \N t 107 dataset.manifest.file.glob location of Manifest File Glob when Record Count Extraction Method is MANIFEST_REGEX or MANIFEST_ENTIRELY Dataset Manifest File Glob \N \N t \N \N 0 \N \N \N t 108 xml.entity.xpath xpath to the XML element corresponding to this entity Xml Entity Xpath \N \N t \N \N 0 \N \N \N t 130 dataflow.pig.script dataflow pig script Connection String \N \N t 2020-11-13 17:33:34.935455+00 2020-11-13 17:33:34.935455+00 0 SYSTEM SYSTEM \N t 53 field.max.legal.value minimum legal value for this specific field ... interpretation depends upon field type Field Max Legal Value \N \N t \N \N 0 \N \N \N t 51 field.max.legal.char.length maximum number of chars allowed in this specific field Field Max Legal Char Length \N \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 141 authorization.policy.sync.status policy sync status Authorization Policy Sync Status NEVER_SYNCED \N t \N \N 0 \N \N 7 t 14 header.defines.field.names boolean which indicates whether or not the header specifies the field names Header Defines Field Names false \N t \N \N 0 \N \N 4 t 17 header.validation.pattern.is.regex boolean flag which controls whether or not header validation pattern is a regular expression Header Validation Pattern Is Regex false \N t \N \N 0 \N \N 4 t 58 enable.archiving whether or not inbound files should be archived Enable Archiving true \N t \N \N 0 \N \N 8 t 145 dataset.date.time.extraction.method specifies location/method of business load datetime Dataset Date Time Extraction Method \N \N t \N \N 0 \N \N 9 t 150 default.field.embedded.enclosure.scheme specifies how enclosed/quoted content within a field is to be handled: enum options are NONE or DOUBLE_EMBEDDED_ENCLOSURE Default Field Embedded Enclosure Scheme \N \N t \N \N 0 \N \N 11 t 9 unicode.byte.order.mark indicates the byte order mark that may be present in the file. Possible values: UTF_32LE_BOM, UTF_32BE_BOM, UTF_8_BOM, UTF_16LE_BOM, UTF_16BE_BOM Unicode Byte Order Mark OPTIONAL \N t \N \N 0 \N \N 15 t 10 unicode.byte.order.mark.incidence indicates whether the byte order mark should be present. Possible values: NEVER, OPTIONAL, ALWAYS Unicode Byte Order Mark Incidence \N \N t \N \N 0 \N \N 12 t 126 conn.jdbc.source.type JDBC Source Type Jdbc Source Type \N \N t 2020-11-13 17:33:34.859522+00 2020-11-13 17:33:34.859522+00 0 SYSTEM SYSTEM \N t 128 prepare.graph.loader prepare graph loader Prepare Graph Loader \N \N t 2020-11-13 17:33:34.935455+00 2020-11-13 17:33:34.935455+00 0 SYSTEM SYSTEM \N t 129 prepare.graph.store prepare graph store Connection String \N \N t 2020-11-13 17:33:34.935455+00 2020-11-13 17:33:34.935455+00 0 SYSTEM SYSTEM \N t 121 conn.sqoop.jdbc.driver.class.name JDBC Driver Class Name Jdbc Driver Class Name \N \N t 2020-11-13 17:33:34.752349+00 2020-11-13 17:33:34.752349+00 0 SYSTEM SYSTEM \N t 248 custom.task.script.path.string Custom Script path string to be run Custom Script \N t \N \N 0 \N \N \N f 206 dataflow.pig.stats This property will contain the job statistics returned from cluster for a prepare dataflow Dataflow Pig Stats \N t \N \N 0 \N \N \N t 249 terminator.file.location Flag file location. Flag File Location \N t \N \N 0 \N \N \N f 97 field.allow.denormalized.whitespace detects redundant space characters, can also detect presence of NUL bytes in a dataset Field Allow Denormalized Whitespace true \N t \N \N 0 \N \N 4 t 127 dataflow.pig.engine dataflow pig engine Workflow Pig Engine \N \N t 2020-11-13 17:33:34.935455+00 2020-11-13 17:33:34.935455+00 0 SYSTEM SYSTEM \N t 78 xml.field.isKey indicates whether field was marked as a key in XSD Xml Field Iskey \N \N t \N \N 0 \N \N 4 t 134 field.hive.ddl.data.type Hive data type for the column corresponding to this field Field Hive Ddl Data Type \N \N t \N \N 0 \N \N \N t 136 conn.sqoop.schema.name Schema Name For SQOOP Schema Name \N \N t 2020-11-13 17:33:35.096836+00 2020-11-13 17:33:35.096836+00 0 SYSTEM SYSTEM \N t 120 conn.sqoop.table.name Table name For Sqoop Table Name $EntityName \N t 2020-11-13 17:33:34.752349+00 2020-11-13 17:33:34.752349+00 0 SYSTEM SYSTEM \N f 137 field.obfuscation.rule Obfuscation rule for this field Field Obfuscation Rule \N t \N \N 0 \N \N \N t 211 jdbc.uri jdbc connection indicator Jdbc Uri \N t \N \N 0 \N \N \N t 135 conn.sqoop.mappers.count Number Of Mappers For SQOOP Number Of Mappers 4 \N t 2020-11-13 17:33:35.096836+00 2020-11-13 17:33:42.605919+00 0 SYSTEM SYSTEM 23 f 142 default.field.do.not.escape.harmless.control.chars flag to indicate that control characters other than \\t, \\r, and \\n should not be backslash escaped Default Field Do Not Escape Harmless Control Chars \N \N t \N 2020-11-13 17:33:41.742187+00 0 SYSTEM \N 8 t 139 numeric.rounding.mode numeric rounding mode Numeric Rounding Mode \N \N t \N \N 0 \N \N \N t 140 authorization.hive.policy.id Hive Policy Id Authorization Hive Policy Id \N \N t \N \N 0 \N \N \N t 143 default.field.nullif.pattern char sequence which represents the NULL value ... exact match or regular expression Default Field Nullif Pattern \N \N t \N \N 0 \N \N \N t 157 authorization.hdfs.policy.id HDFS Policy Id Authorization Hdfs Policy Id \N t \N \N 0 \N \N \N t 138 default.field.normalize.whitespace boolean flag to indicate that string fields should be normalized; where leading and trailing whitespace is trimmed and any embedded sequences of embedded whitespace is converted to a single space character Default Field Normalize Whitespace \N \N t \N 2020-11-13 17:33:41.774109+00 0 SYSTEM \N 8 t 19 trailer.charencoding CharEncoding for the trailer ... NOT CURRENTLY USED Trailer Charencoding \N \N t \N \N 0 \N \N 14 t 27 record.characterset US_ASCII, LATIN_1, UTF_8, UTF_16LE, UTF_16BE, UTF_32LE, UTF_32BE, US_EBCDIC Record Characterset \N \N t \N \N 0 \N \N 14 t 29 record.layout FIXED_LENGTH, FIXED_LENGTH_TERMINATED, VARIABLE_LENGTH_TERMINATED, MAINFRAME_VARIABLE_BLOCKED Record Layout \N \N t \N \N 0 \N \N 13 t 33 record.record.terminator record terminator char sequence for FIXED_LENGTH_TERMINATED and VARIABLE_LENGTH_TERMINATED Record Record Terminator \N \N t \N \N 0 \N \N 19 t 34 record.field.delimiter char sequence for delimiting fields for delimited record types Record Field Delimiter \N \N t \N \N 0 \N \N 17 t 38 record.close.quote char sequence used for closing an enclosed/quoted field Record Close Quote \N \N t \N \N 0 \N \N 16 t 37 record.open.quote char sequence used for opening an enclosed/quoted field Record Open Quote \N \N t \N \N 0 \N \N 18 t 24 trailer.validation.pattern.is.regex boolean flag which controls whether or not trailer validation pattern is a regular expression Trailer Validation Pattern Is Regex false \N t \N \N 0 \N \N 4 t 237 distribution.resources Property that will hold all the distribution resources i.e. comma separated table names. Distribution Resources" \N t \N \N 0 \N \N \N t 262 gc.cleanup.sanitycheck gc.cleanup.sanitycheck Component name specifying class used for sanity check GC_SANITY_CHECK_DEFAULT \N t \N \N 0 \N \N \N t 234 source.name source.name Source Name \N t \N \N 0 \N \N \N t 235 entity.name entity name Entity Name \N t \N \N 0 \N \N \N t 236 hive.delete.scripts hive.delete.scripts Hive Delete Scripts \N t \N \N 0 \N \N \N t 240 hive.user.name hive.user.name Hive User Name \N t \N \N 0 \N \N \N t 202 entity.level The level of entity (Managed, Registered or Addressed). Entity Level \N \N f \N 2020-11-13 17:33:36.276454+00 0 SYSTEM \N 20 f 196 system.lock.level.to.managed NOTE: By unlocking, Registered and Address levels for entities are possible. Please make sure you understand access rights and features as described in the documentation. Lock Level To Only Managed true \N t 2020-11-13 17:33:36.235635+00 2020-11-13 17:33:36.235635+00 0 SYSTEM SYSTEM 4 f 242 authorization.policy.id policy id on Ranger or Sentry Authorization Policy Id \N t \N \N 0 \N \N \N t 243 acl.workorder.id acl.workorder.id Authorization Policy Id \N t \N \N 0 \N \N \N t 245 acl.sync.time acl.sync.time Acl Sync Time \N t \N \N 0 \N \N \N t 246 acl.actor.name acl.actor.name Acl Actor Name \N t \N \N 0 \N \N \N t 247 acl.actor.id acl.actor.id Acl Actor Id \N t \N \N 0 \N \N \N t 250 terminator.file.text Flag file text. Flag File Text \N t \N \N 0 \N \N \N f 251 field.ids field.ids Field Ids To Be Cleaned Up \N t \N \N 0 \N \N \N t 252 entity.ids entity.ids Entity Ids To Be Cleaned Up \N t \N \N 0 \N \N \N t 253 validate.flag validate.flag Validate Dataflow Flag \N t \N \N 0 \N \N \N t 56 enable.profiling boolean controlling whether or not profiling should be performed on this source/entity/field Enable Profiling true \N t \N \N 0 \N \N 8 t 57 enable.validation boolean controlling whether or not field validation should be performed ... DANGEROUS Enable Validation true \N t \N \N 0 \N \N 8 t 256 sqoop.enclosed-by Tells Sqoop which character to use to enclose fields Used in sqoop command. The value is passed to the enclosed-by attribute of the sqoop command. \N t \N \N 0 \N \N \N t 191 hadoop.conf.mapreduce.job.queuename Assigns a job to particular queue Hadoop Conf Mapreduce Job \N t \N \N 0 \N \N \N t 257 sqoop.null-string Tells Sqoop which string to write out for a null value on a field that is of type String sqoop.null-string \N t \N \N 0 \N \N \N t 264 field.text.format Field format to save data in text format. Field Text Format \N \N t 2020-11-13 17:33:38.69034+00 2020-11-13 17:33:38.69034+00 0 SYSTEM SYSTEM 1 f 265 dataflow.package.stats This property will contain the package-level statistics returned from cluster for a prepare dataflow. dataflow.package.stats \N t \N \N 0 \N \N \N t 266 mapred.job.config This property will contain the cluster config used for a prepare dataflow. mapred.job.config \N t \N \N 0 \N \N \N t 77 mapred.job.arguments passes job configurations with arguments to mappers and reducers Mapred Job Arguments \N \N t \N \N 0 \N \N \N t 79 xml.entity.xmlRoot name of parent element to all other elements NOT USED Xml Entity Xmlroot \N \N t \N \N 0 \N \N \N t 80 cobol.record.layout.identifier text field specifies the record type (at 01 Level) extracted for this source Cobol Record Layout Identifier \N \N t \N \N 0 \N \N \N t 82 cart.source.entities entities used to create a cart entity Cart Source Entities \N \N t \N \N 0 \N \N \N t 83 store.binary.file.format.column.as.string boolean field-level property enables storage of external binary column as internal string Store Binary File Format Column As String \N \N t \N \N 0 \N \N \N t 84 dataset.expected.record.count.extraction.argument relevant argument for specified extraction method. For example, this value will be a regex expression if extraction method specified as regex. Dataset Expected Record Count Extraction Argument \N \N t \N \N 0 \N \N \N t 85 posix.directory.group.identifier specifies the group identifier that should be set for directories during ingestion of entity data Posix Directory Group Identifier \N \N t \N \N 0 \N \N \N t 87 dataset.date.extraction.method specifies location/method of business load datetime Dataset Date Extraction Method \N \N t \N \N 0 \N \N \N t 90 resource_uri URI for connection information Resource_Uri \N \N t \N \N 0 \N \N \N t 91 xml.entity.xsd contains specifications describing the elements in an XML document Xml Entity Xsd \N \N t \N \N 0 \N \N \N t 215 hdfs.archive.path hdfs archive filepath Hdfs Archive Path \N t \N \N 0 \N \N \N t 36 record.validation.regex optional regular expression used to validate a record Record Validation Regex \N \N t \N \N 0 \N \N \N t 39 default.date.format date format string in Java/JODA date format or vendor-specific date format Default Date Format \N \N t \N \N 0 \N \N \N t 40 default.min.legal.date minimum legal date as yyyy-MM-dd ISO 8601 date Default Min Legal Date \N \N t \N \N 0 \N \N \N t 41 default.max.legal.date maximum legal date as yyyy-MM-dd ISO 8601 date Default Max Legal Date \N \N t \N \N 0 \N \N \N t 42 hive.object.location location for hive database/table creation Hive Object Location \N \N t \N \N 0 \N \N \N t 43 field.info.file UNKNOWN? Field Info File \N \N t \N \N 0 \N \N \N t 54 field.encryption.type.tag optional tag to identify the type of animal that is being encrypted Field Encryption Type Tag \N \N t \N \N 0 \N \N \N t 55 field.date.format date format string in Java/JODA date format or vendor-specific date format for this specific field Field Date Format \N \N t \N \N 0 \N \N \N t 60 cobol.copybook the text of the copybook Cobol Copybook \N \N t \N \N 0 \N \N \N t 61 cobol.branch.wiring.instructions text field containing branch wiring instructions which provide conditional logic to control interpretation of REDEFINES unions. Cobol Branch Wiring Instructions \N \N t \N \N 0 \N \N \N t 70 src.connection.file path to a file containing source connection information Src Connection File \N \N t \N \N 0 \N \N \N t 88 field.oracle.ddl Field Oracle Ddl \N \N t \N \N 0 \N \N \N t 109 dataset.date.extraction.argument Argument passed to extraction method. May be a regex, a copybook field name, etc. Dataset Date Extraction Argument \N \N t \N \N 0 \N \N \N t 110 posix.directory.permissions sets user/group permissions bit for directories Posix Directory Permissions \N \N t \N \N 0 \N \N \N t 111 xml.entity.xslt contains XML style sheet for transforming XML into CSV file Xml Entity Xslt \N \N t \N \N 0 \N \N \N t 112 cart.entity.sql sql for a cart entity view Cart Entity Sql \N \N t \N \N 0 \N \N \N t 113 SourceDataBaseTypeName JDBC database type name registered with driver Sourcedatabasetypename \N \N t \N \N 0 \N \N \N t 160 default.field.null.replacement.double While ingesting data, this property will replace a null with an alternate value. Alternately this action can be done through Prepare. Default Field Null Replacement Double \N \N t \N \N 0 \N \N \N t 161 default.field.null.replacement.integer While ingesting data, this property will replace a null with an alternate value. Alternately this action can be done through Prepare. Default Field Null Replacement Integer \N \N t \N \N 0 \N \N \N t 165 dataload.task.timestamp Timestamp when the dataload is started Dataload Task Timestamp \N t \N \N 0 \N \N \N t 166 parquet.compression Parquet compression method. See Parquet documentation for details Parquet Compression \N t \N \N 0 \N \N \N t 167 parquet.block.size Parquet block size. See Parquet documentation for details Parquet Block Size \N t \N \N 0 \N \N \N t 168 parquet.page.size Parquet page size. See Parquet documentation for details Parquet Page Size \N t \N \N 0 \N \N \N t 169 parquet.write.support.class Parquet write support class. See Parquet documentation for details Parquet Write Support Class \N t \N \N 0 \N \N \N t 170 parquet.dictionary.page.size Parquet dictionary page size. See Parquet documentation for details Parquet Dictionary Page Size \N t \N \N 0 \N \N \N t 171 parquet.validation Parquet validation. See Parquet documentation for details Parquet Validation \N t \N \N 0 \N \N \N t 172 parquet.writer.version Parquet writer version. See Parquet documentation for details Parquet Writer Version \N t \N \N 0 \N \N \N t 173 parquet.memory.pool.ratio Parquet memory pool ratio. See Parquet documentation for details Parquet Memory Pool Ratio \N t \N \N 0 \N \N \N t 174 parquet.memory.min.chunk.size Parquet memory minimum chunk size. See Parquet documentation for details Parquet Memory Min Chunk Size \N t \N \N 0 \N \N \N t 175 hive.exec.orc.default.stripe.size ORC default stripe size. See ORC documentation for details Hive Exec Orc Default Stripe Size \N t \N \N 0 \N \N \N t 176 hive.exec.orc.default.row.index.stride ORC default row index stride. See ORC documentation for details Hive Exec Orc Default Row Index Stride \N t \N \N 0 \N \N \N t 177 hive.exec.orc.default.buffer.size ORC default buffer size. See ORC documentation for details Hive Exec Orc Default Buffer Size \N t \N \N 0 \N \N \N t 178 hive.exec.orc.default.block.padding ORC default block padding. See ORC documentation for details Hive Exec Orc Default Block Padding \N t \N \N 0 \N \N \N t 179 hive.exec.orc.default.compress ORC default compression method. See ORC documentation for details Hive Exec Orc Default Compress \N t \N \N 0 \N \N \N t 180 hive.exec.orc.write.format ORC write format. See ORC documentation for details Hive Exec Orc Write Format \N t \N \N 0 \N \N \N t 182 default.field.null.replacement.string While ingesting data, this property will replace a null with an alternate value. Alternately this action can be done through Prepare. Default Field Null Replacement String \N t \N \N 0 \N \N \N t 183 default.field.null.replacement.boolean While ingesting data, this property will replace a null with an alternate value. Alternately this action can be done through Prepare. Default Field Null Replacement Boolean \N t \N \N 0 \N \N \N t 184 field.embedded.enclosure.scheme specifies how enclosed/quoted content within a field is to be handled: enum options are NONE or DOUBLE_EMBEDDED_ENCLOSURE Field Embedded Enclosure Scheme \N t \N \N 0 \N \N \N t 32 record.max.byte.count maximum valid record byte length Record Max Byte Count 65536 \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 189 field.nullif.pattern Char sequence which represents the NULL value --exact match or regular expression Field Nullif Pattern \N t \N \N 0 \N \N \N t 164 dataload.task.entity.id Entity Identifier for which data is to be loaded Dataload Task Entity Ids \N t \N \N 0 \N \N \N t 193 datapublish.task.publish.job.id Publish job identifier Datapublish Task Publish Job Id \N t \N \N 0 \N \N \N t 194 prepare.task.dataflow.id Dataflow Identifier. Prepare Task Dataflow Id \N t \N \N 0 \N \N \N t 195 prepare.task.engine Dataflow execution engine. Prepare Task Engine \N t \N \N 0 \N \N \N t 26 trailer.control.z.at.eof.incidence incidence of ControlZ/0x1A MS-DOS end of text file indicator ... NEVER, OPTIONAL, ALWAYS Trailer Control Z At Eof Incidence OPTIONAL \N t \N \N 0 \N \N 12 t 49 field.enclosure.incidence incidence of enclosures for this specific field {NEVER|OPTIONAL|ALWAYS} Field Enclosure Incidence \N \N t \N \N 0 \N \N 12 t 144 dataset.date.time.extraction.argument relevant argument for specified extraction method. For example, this value will be a regex expression if extraction method specified as regex. Dataset Date Time Extraction Argument \N \N t \N \N 0 \N \N \N t 69 cobol.numproc.nopfd.enabled corresponds to Mainframe COBOL compiler/environment option NUMPROC(NOPFD). This controls whether or not non-preferred representations of sign nybbles are accepted in ZONED (USAGE DISPLAY) and PACKED (COMP-3) numeric items. Cobol Numproc Nopfd Enabled NONE \N t \N \N 0 \N \N 8 t 35 record.last.field.has.delimiter boolean indicating whether there is a final field delimiter in the record Record Last Field Has Delimiter false \N t \N \N 0 \N \N 4 t 46 field.allow.whitespace boolean controlling whether or not embedded whitespace is allowed in this specific field Field Allow Whitespace true \N t \N \N 0 \N \N 4 t 47 field.allow.control.chars boolean controlling whether or not ASCII/Latin-1/Unicode control codes 0x00-0x1F + 0x7F + 0x80-0x9F are allowed in fields Field Allow Control Chars false \N t \N \N 0 \N \N 4 t 48 field.allow.non.ascii.chars boolean controlling whether or not non 7-bit ASCII chars are allowed in this specific field Field Allow Non Ascii Chars true \N t \N \N 0 \N \N 4 t 59 use.single.receiving.mapper use a single receiving mapper instead of MapReduce in the cluster Use Single Receiving Mapper false \N t \N \N 0 \N \N 4 t 62 cobol.trunc.bin.enabled COBOL compiler/environment option TRUNC(BIN) for truncation of BINARY/COMP-1 numeric items Cobol Trunc Bin Enabled \N \N t \N \N 0 \N \N 4 t 63 cobol.supports.single.byte.binary whether or not COBOL compiler supports single byte BINARY/COMP numeric items ... non IBM mainframe Cobol Supports Single Byte Binary \N \N t \N \N 0 \N \N 4 t 64 cobol.sync.alignment.enabled COBOL compiler/environment option for SYNC word alignment Cobol Sync Alignment Enabled \N \N t \N \N 0 \N \N 4 t 65 cobol.unsigned.packed.decimal.uses.sign.nybble whether or not the sign nybble holds a digit for unsigned PACKED/COMP-3 ... non IBM mainframe Cobol Unsigned Packed Decimal Uses Sign Nybble \N \N t \N \N 0 \N \N 4 t 66 cobol.little.endian set to TRUE if the source COBOL machine architecture is little endian ... non IBM mainframe ... DEC and Intel processors Cobol Little Endian \N \N t \N \N 0 \N \N 4 t 67 cobol.allow.overflow.redefines set to TRUE to allow REDEFINES branches which are larger than the original byte length defined by the REDEFINES object. Cobol Allow Overflow Redefines \N \N t \N \N 0 \N \N 4 t 68 cobol.allow.underflow.redefines set to TRUE to allow REDEFINES branches which are smaller than the original byte length defined by the REDEFINES object. Cobol Allow Underflow Redefines \N \N t \N \N 0 \N \N 4 t 162 column.pad.short.records column pad short records Column Pad Short Records \N \N t \N \N 0 \N \N 4 t 44 field.trim.left boolean controlling whether or not whitespace should be trimmed from the left of this specific field Field Trim Left \N \N t \N \N 0 \N \N 4 t 45 field.trim.right boolean controlling whether or not whitespace should be trimmed from the right of this specific field Field Trim Right \N \N t \N \N 0 \N \N 4 t 181 default.field.allow.denormalized.whitespace Optional property detects redundant space characters, but it can also detect presence of NUL bytes in a dataset. Default Field Allow Denormalized Whitespace \N t \N \N 0 \N \N 4 t 190 field.nullif.pattern.is.regex Boolean flag which controls whether or not nullif pattern is a regular expression Field Nullif Pattern Is Regex \N t \N \N 0 \N \N 4 t 197 system.default.source.level Sets the default level for new sources Default Level For New Sources MANAGED \N t 2020-11-13 17:33:36.235635+00 2020-11-13 17:33:36.235635+00 0 SYSTEM SYSTEM 20 f 207 field.encryption.seed.reference This property will contain the reference (kms url or otherwise) for the encryption. Field Encryption Seed Reference \N t \N \N 0 \N \N \N t 208 field.encryption.cipher This property will contain the cipher algorithm used for field-level encryption. Field Encryption Cipher \N t \N \N 0 \N \N \N t 210 default.entity.level Sets the default level for new entities Default Level For New Entities \N \N t 2020-11-13 17:33:36.399442+00 2020-11-13 17:33:36.399442+00 0 SYSTEM SYSTEM 20 f 201 record.sampling.probability While ingesting data, this property will generate a random sample containing the specified percentage of records. Record Sampling Probability 0.01 \N t \N 2020-11-13 17:33:36.424264+00 0 podium \N 22 t 261 sqoop.null-non-string Tells Sqoop which string to write out for a null value on a field that is not of type String sqoop.null-non-string \N t \N \N 0 \N \N \N t 192 profile.string.sample.char.length.limit Controls upper limit of sample character length of STRING value fields Profile String Sample Char Length Limit \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 263 field.hive.expression Hive expression to use instead of field name when querying. Field Hive Expression \N \N t 2020-11-13 17:33:38.587144+00 2020-11-13 17:33:38.587144+00 0 SYSTEM SYSTEM 1 f 146 dataset.date.time.pattern defines format the datetime takes so that it can be parsed correctly when datetime extraction method is active Dataset Date Time Pattern \N \N t \N \N 0 \N \N \N t 151 default.field.enclosure.incidence incidence of enclosed fields {NEVER|OPTIONAL|ALWAYS} Default Field Enclosure Incidence \N \N t \N \N 0 \N \N 12 t 216 hdfs.base.archive.url hdfs archive directory locator Hdfs Archive Uri \N t \N \N 0 \N \N \N t 217 hdfs.archive.username hdfs archive url username to authenticate Hdfs Archive Username \N t \N \N 0 \N \N \N t 219 hdfs.shipping.path hdfs shipping filepath Hdfs Shipping Path \N t \N \N 0 \N \N \N t 72 dataset.expected.record.count.extraction.method specifies location/method of expected record count Dataset Expected Record Count Extraction Method \N \N t \N \N 0 \N \N 10 t 81 field.sensitive boolean property indicates if field is sensitive Field Sensitive false \N t \N \N 0 \N \N 4 t 86 dock.hand.always.copy.to.loading.dock indicates whether entity should always be copied to loading dock for preprocessing Dock Hand Always Copy To Loading Dock false \N t \N \N 0 \N \N 4 t 89 s3.read.by.data.nodes boolean used for AWS S3 processing to bypass loading dock S3 Read By Data Nodes false \N t \N \N 0 \N \N 4 t 116 cobol.allow.invalid.numeric.as.null Facilitates processing of COBOL data which has non-conforming values. When set to TRUE, invalid numeric values will silently map to NULL instead of flagging a BAD/UGLY record. Cobol Allow Invalid Numeric As Null \N \N t \N \N 0 \N \N 4 t 149 default.field.allow.whitespace boolean controlling whether or not embedded whitespace is allowed in fields Default Field Allow Whitespace \N \N t \N \N 0 \N \N 4 t 154 default.field.nullif.pattern.is.regex boolean flag which controls whether or not nullif pattern is a regular expression Default Field Nullif Pattern Is Regex \N \N t \N \N 0 \N \N 4 t 155 default.field.trim.left boolean controlling whether or not whitespace should be trimmed from left of fields Default Field Trim Left \N \N t \N \N 0 \N \N 4 t 156 default.field.trim.right boolean controlling whether or not whitespace should be trimmed from right of fields Default Field Trim Right \N \N t \N \N 0 \N \N 4 t 212 jdbc.username username to authenticate Jdbc Username \N t \N \N 0 \N \N \N t 213 jdbc.password password to authenticate Jdbc Password \N t \N \N 0 \N \N \N t 214 jdbc.driver jdbc driver class name Jdbc Driver \N t \N \N 0 \N \N \N t 218 hdfs.archive.password hdfs archive url password to authenticate Hdfs Archive Password \N t \N \N 0 \N \N \N t 220 hdfs.base.shipping.url hdfs shipping directory locator Hdfs Shipping Uri \N t \N \N 0 \N \N \N t 221 hdfs.shipping.username hdfs shipping url username to authenticate Hdfs Shipping Username \N t \N \N 0 \N \N \N t 222 hdfs.shipping.password hdfs shipping url password to authenticate Hdfs Shipping Password \N t \N \N 0 \N \N \N t 223 hdfs.receiving.path hdfs receiving filepath Hdfs Receiving Path \N t \N \N 0 \N \N \N t 224 hdfs.base.receiving.url hdfs receiving directory locator Hdfs Receiving Uri \N t \N \N 0 \N \N \N t 225 hdfs.receiving.username hdfs receiving url username to authenticate Hdfs Receiving Username \N t \N \N 0 \N \N \N t 226 hdfs.receiving.password hdfs receiving url password to authenticate Hdfs Receiving Password \N t \N \N 0 \N \N \N t 227 hdfs.loading.path hdfs loadingdock filepath Hdfs Loading Path \N t \N \N 0 \N \N \N t 228 hdfs.base.loading.url hdfs loadingdock directory locator Hdfs Loading Uri \N t \N \N 0 \N \N \N t 229 hdfs.loading.username hdfs loadingdock url username to authenticatee Hdfs Loading Username \N t \N \N 0 \N \N \N t 230 hdfs.loading.password hdfs loadingdock url password to authenticate Hdfs Loading Password \N t \N \N 0 \N \N \N t 231 hive.uri hive distribution directory indicator Hive Uri \N t \N \N 0 \N \N \N t 232 hive.username hive distribution uri username to authenticate Hive Username \N t \N \N 0 \N \N \N t 233 hive.password hive distribution uri password to authenticate Hive Password \N t \N \N 0 \N \N \N t 238 ranger.hdfs.policy ranger hdfs policy identifier Ranger Hdfs Resources \N t \N \N 0 \N \N \N t 239 ranger.hive.policy ranger hive policy identifier Ranger Hive Resources \N t \N \N 0 \N \N \N t 241 sentinel.policy.name sentinel policy name Sentinel Policy Name \N t \N \N 0 \N \N \N t 244 entity.id entity id Entity Id \N t \N \N 0 \N \N \N t 267 entity.hive.alterTableToCorrectType Alter Hive tables to correct type after ingestion. Hive Alter Table to Correct Type \N \N t 2020-11-13 17:33:38.883198+00 2020-11-13 17:33:38.883198+00 0 SYSTEM SYSTEM 4 f 268 entity.hive.trigger.script Hive script to trigger after ingestion. Hive Trigger Script \N \N t 2020-11-13 17:33:38.883198+00 2020-11-13 17:33:38.883198+00 0 SYSTEM SYSTEM 1 f 269 field.hive.index Name of the Hive index on this field if any. Field Hive Index \N \N t 2020-11-13 17:33:38.883198+00 2020-11-13 17:33:38.883198+00 0 SYSTEM SYSTEM 1 f 163 entity.override.local.mode Switch between local and mapreduce mode Entity Override Local Mode \N t \N \N 0 \N \N 4 t 152 default.field.max.legal.char.length maximum number of chars allowed in a field Default Field Max Legal Char Length \N \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 153 default.field.min.legal.char.length minimum number of chars allowed in a field Default Field Min Legal Char Length \N \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 270 dataflow.pig.parameters This property will contain the global parameters a prepare dataflow. dataflow.pig.parameters \N t \N \N 0 \N \N \N t 271 workorder.parent.id This property will contain parent work order of a child work order. workorder.parent.id \N t \N \N 0 \N \N \N t 272 dataload.task.loadDate This property will contain an existing partition as milliseconds for append or merge. dataload.task.loadDate \N \N t 2020-11-13 17:33:38.945482+00 2020-11-13 17:33:38.945482+00 0 SYSTEM SYSTEM 1 t 273 dataload.task.loadType This property will contain load type for an existing partition. dataload.task.loadType \N \N t 2020-11-13 17:33:38.945482+00 2020-11-13 17:33:38.945482+00 0 SYSTEM SYSTEM 1 t 274 prepare.task.loadDate This property will contain an existing partition as milliseconds for append or merge. prepare.task.loadDate \N \N t 2020-11-13 17:33:38.945482+00 2020-11-13 17:33:38.945482+00 0 SYSTEM SYSTEM 1 t 275 prepare.task.loadType This property will contain load type for an existing partition. prepare.task.loadType \N \N t 2020-11-13 17:33:38.945482+00 2020-11-13 17:33:38.945482+00 0 SYSTEM SYSTEM 1 t 276 entity.level.memento This property is stored for a non-managed entity when it's promoted to run a Podium job such as prepare, publish or scheduler. Once the process completes, the value of this property is used to reset the entity back to its original level. Original level of entity \N \N t 2020-11-13 17:33:38.963047+00 2020-11-13 17:33:38.963047+00 0 SYSTEM SYSTEM 1 f 277 reset.entity.level This property is stored with prepare or publish metadata. It provides a way to know if the entity getting promoted to run a job need to reverted ti its original level. Property to know if auto-reset is required. \N \N t 2020-11-13 17:33:38.963047+00 2020-11-13 17:33:38.963047+00 0 SYSTEM SYSTEM 1 f 278 workflow.publish.jobs This property is used to keep track of all publish jobs used by the workflow for the current execution This property is deleted right after the workflow finishes. This property is used internally. Original level of entity \N \N t 2020-11-13 17:33:39.067199+00 2020-11-13 17:33:39.067199+00 0 SYSTEM SYSTEM 1 f 279 workflow.prepare.jobs This property is used to keep track of all prepare jobs used by the workflow for the current execution This property is deleted right after the workflow finishes. This property is used internally. Original level of entity \N \N t 2020-11-13 17:33:39.067199+00 2020-11-13 17:33:39.067199+00 0 SYSTEM SYSTEM 1 f 280 hadoop.conf.mapreduce.map.memory.mb The amount of memory to request from the scheduler for each map task. Paired with property hadoop.conf.mapreduce.map.java.opts Map task memory, in MB \N \N t 2020-11-13 17:33:39.084994+00 2020-11-13 17:33:39.084994+00 0 SYSTEM SYSTEM 1 f 281 hadoop.conf.mapreduce.map.java.opts JVM options for each map task. When paired with property hadoop.conf.mapreduce.map.memory.mb, the -Xmx option should be set to 80% of hadoop.conf.mapreduce.map.memory.mb. For example, if hadoop.conf.mapreduce.map.memory.mb is 30720, then hadoop.conf.mapreduce.map.java.opts should be -Xmx24576m Map task JVM options \N \N t 2020-11-13 17:33:39.084994+00 2020-11-13 17:33:39.084994+00 0 SYSTEM SYSTEM 1 f 285 inputstream.transformer.class Name of the class that will transform the data fed into the receiving step InputStream Transformer Class \N \N t 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:39.10244+00 0 SYSTEM SYSTEM 1 f 286 transformer.script.command Script command that will be run by the OpenConnectorInputStreamTransformer Transformer Script Command \N \N t 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:39.10244+00 0 SYSTEM SYSTEM 1 f 288 enable.distribution boolean controlling whether or not distribution should be performed on this source/entity. Enable Distribution \N \N t 2020-11-13 17:33:39.137572+00 2020-11-13 17:33:39.137572+00 0 SYSTEM SYSTEM 8 t 289 entity.postprocessing.rules (Beta) Custom rules executed after data is loaded for the entity. Drools Rules Script \N \N t 2020-11-13 17:33:39.203237+00 2020-11-13 17:33:39.203237+00 0 SYSTEM SYSTEM 1 f 290 json.hen Hierarchical Extraction Normalization file content for JSON JSON HEN \N \N t 2020-11-13 17:33:39.248275+00 2020-11-13 17:33:39.248275+00 0 SYSTEM SYSTEM 1 f 291 json.path JSON Path expression for this field JSON Path \N \N t 2020-11-13 17:33:39.248275+00 2020-11-13 17:33:39.248275+00 0 SYSTEM SYSTEM 1 f 293 distribution.excludes comma-separated string for fine-grained disablement of entity distribution tables Distribution Excludes \N \N t 2020-11-13 17:33:39.495123+00 2020-11-13 17:33:39.495123+00 0 SYSTEM SYSTEM 1 t 294 prepare.target.counts This property will contain the record counts for all target entities. prepare.target.counts \N t \N \N 0 \N \N \N t 295 enable.relationInference Enable relationship inference for this entity. Enable relationship inference \N \N t 2020-11-13 17:33:40.169589+00 2020-11-13 17:33:40.185546+00 0 podium SYSTEM 8 t 296 qvd.header This property is QVD header backup QVD Header \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 297 qvd.header.entity.QvBuildNo This property 'QvBuildNo' is obtained from QVD header for a QVD type entity when it's created QVD Build number \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 298 qvd.header.entity.CreatorDoc This property 'CreatorDoc' is obtained from QVD header for a QVD type entity when it's created QVD Creator application reference \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 299 qvd.header.entity.CreateUtcTime This property 'CreateUtcTime' is obtained from QVD header for a QVD type entity when it's created QVD Creation Time on QS \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 300 qvd.header.entity.Tags This property 'Tags' is obtained from QVD header for a QVD type entity when it's created QVD Tags \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 301 qvd.header.entity.TableName This property 'TableName' is obtained from QVD header for a QVD type entity when it's created QVD TableName \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 292 enable.kpi Enable KPI computation for this entity. Enable KPI \N \N t 2020-11-13 17:33:39.289807+00 2020-11-13 17:33:41.774109+00 0 SYSTEM SYSTEM 8 f 287 kafka.record.buffer.size Size, in records, of the buffer while pulling data from Kafka Kafka Record Buffer Size 1000 \N t 2020-11-13 17:33:39.119879+00 2020-11-13 17:33:42.605919+00 0 SYSTEM SYSTEM 23 f 302 qvd.header.entity.NoOfRecords This property 'NoOfRecords' is obtained from QVD header for a QVD type entity when it's created QVD NoOfRecords \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 2 f 303 qvd.header.entity.Comment This property 'Comment' is obtained from QVD header for a QVD type entity when it's created QVD Comment \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 304 qvd.qs.install.guid This property 'install.guid' is obtained from QS install when it's created. It is used to identify QVD's specific to a QS instance. QS Install GUID \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 305 qvd.file.linux.path This property 'linux.path' is obtained from QS install's linux mount point and QVD folder path. It is used to identify unique folder path to one or more QVD's. QVD linux.path \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 306 qvd.file.entity.original.name This property 'name' is obtained from QVD File name. QVD file original name \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 307 qvd.file.entity.filesize This property 'FileSize' is obtained from File Scanner and QVD File size. QVD file size \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 309 qvd.file.entity.owner This property 'owner' is obtained from File Scanner and QVD File owner. Owner means the owner app. QVD file owner \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 310 qvd.file.entity.creator This property 'creator' is obtained from File Scanner and QVD File creator. QVD file creator \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 311 qvd.header.field.Name This property 'Name' is obtained from QVD header for a QVD type entity - field when it's created QVD Field Name \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 312 qvd.header.field.NoOfSymbols This property 'NoOfSymbols' is obtained from QVD header for a QVD type entity - field when it's created. It is related to the Cardinality. QVD Field NoOfSymbols \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 2 f 313 qvd.header.field.Comment This property 'Comment' is obtained from QVD header for a QVD type entity - field when it's created. Users might have valuable data about the QVD or Field in comments. QVD Field Comment \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 1 f 315 qs.connectorInfo.nid This property 'nid' is obtained from QS Connector Info Metadata. QS connectorInfo nid \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:40.827172+00 0 SYSTEM SYSTEM 2 f 316 qs.srcConnection.nid This property is unique identifier for associated source connection with QS install Associated Source Connection Id \N \N f 2020-11-13 17:33:41.015751+00 2020-11-13 17:33:41.015751+00 0 SYSTEM SYSTEM 2 f 317 internal.source.nid This property 'nid' is unique identifier for the internal source of the external source this property is tied to. Internal Source Id \N \N f 2020-11-13 17:33:41.015751+00 2020-11-13 17:33:41.015751+00 0 SYSTEM SYSTEM 2 f 314 qvd.header.field.Tags This property 'Tags' is obtained from QVD header for a QVD type entity - field when it's created. QVD Field Tags \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.120087+00 2 podium SYSTEM 1 f 308 qvd.file.entity.createtime This property 'DateTime' is obtained from File Scanner and QVD File modified time. QVD file datetime \N \N f 2020-11-13 17:33:40.827172+00 2020-11-13 17:33:41.135692+00 2 podium SYSTEM 1 f 318 qvd.file.entity.updatetime This property is obtained from File Scanner and QVD File modified time. QVD file update time \N \N f 2020-11-13 17:33:41.135692+00 2020-11-13 17:33:41.135692+00 0 SYSTEM SYSTEM 2 f 319 qvd.file.entity.numupdates This property is obtained from File Scanner and QVD File updates. QVD file number of updates \N \N f 2020-11-13 17:33:41.135692+00 2020-11-13 17:33:41.135692+00 0 SYSTEM SYSTEM 2 f 321 qvd.file.linux.folder This property is obtained from File Scanner. QVD file parent directory \N \N f 2020-11-13 17:33:41.237203+00 2020-11-13 17:33:41.237203+00 0 SYSTEM SYSTEM 1 f 322 qvd.file.linux.tempdir This property is the temporary directory for QVD processing. QVD processing temporary directory \N \N f 2020-11-13 17:33:41.237203+00 2020-11-13 17:33:41.237203+00 0 SYSTEM SYSTEM 1 f 323 posix.directory.user.identifier specifies the user identifier that should be set for directories during ingestion of entity data Directory User \N \N t 2020-11-13 17:33:41.255846+00 2020-11-13 17:33:41.255846+00 0 SYSTEM SYSTEM 1 t 324 posix.file.user.identifier specifies the user identifier that should be set for files during ingestion of entity data File User \N \N t 2020-11-13 17:33:41.255846+00 2020-11-13 17:33:41.255846+00 0 SYSTEM SYSTEM 1 t 327 qvd.file.windows.relative.path QVD file windows relative path. QVD file windows relative path \N \N f 2020-11-13 17:33:41.274618+00 2020-11-13 17:33:41.274618+00 0 SYSTEM SYSTEM 1 f 328 qvd.file.windows.full.path QVD file windows full path QVD file windows full path. \N \N f 2020-11-13 17:33:41.274618+00 2020-11-13 17:33:41.274618+00 0 SYSTEM SYSTEM 1 f 326 qvd.qs.connection.names QVD QlikSense connection name. QVD QlikSense connection name \N \N f 2020-11-13 17:33:41.274618+00 2020-11-13 17:33:41.290471+00 2 podium SYSTEM 1 f 325 qvd.qs.install.connection.guids QVD QlikSense connection GUID. QVD QlikSense connection GUID \N \N f 2020-11-13 17:33:41.274618+00 2020-11-13 17:33:41.290471+00 2 podium SYSTEM 1 f 320 qs.publish.count Holds the count, an entity has been published to Qlik QS Publish Count 0 \N f 2020-11-13 17:33:41.151001+00 2020-11-13 17:33:41.151001+00 0 SYSTEM SYSTEM 2 f 329 podium.qlik.dataconnection.name Property to specify the connection name to be used for publish to qlik podium.qlik.dataconnection.name \N t \N \N 0 \N \N \N t 330 podium.qlik.select.statement Property to specify the select script to be used for publish to qlik podium.qlik.select.statement \N t \N \N 0 \N \N \N t 331 podium.qlik.script Property to specify the publish script to be used for publish to qlik podium.qlik.script \N t \N \N 0 \N \N \N t 332 fs.adl.oauth2.refresh.url OAUTH 2.0 token endpoint used to retrieve token given client id and secret OAUTH 2.0 token endpoint \N \N t 2020-11-13 17:33:41.664962+00 2020-11-13 17:33:41.664962+00 0 SYSTEM SYSTEM 1 f 333 group.names Group names Group names \N \N t 2020-11-13 17:33:41.713501+00 2020-11-13 17:33:41.713501+00 0 SYSTEM SYSTEM 1 t 334 external.entity.id External entity id External Entity Id \N \N t 2020-11-13 17:33:41.713501+00 2020-11-13 17:33:41.713501+00 0 SYSTEM SYSTEM 2 t 147 default.field.allow.control.chars boolean controlling whether or not ASCII/Latin-1/Unicode control codes 0x00-0x1F + 0x7F + 0x80-0x9F are allowed in fields Default Field Allow Control Chars \N \N t \N 2020-11-13 17:33:41.742187+00 0 SYSTEM \N 8 t 148 default.field.allow.non.ascii.chars boolean controlling whether or not non 7-bit ASCII chars are allowed in fields. Default Field Allow Non Ascii Chars \N \N t \N 2020-11-13 17:33:41.742187+00 0 SYSTEM \N 8 t 260 dataset.expected.record.count.excludes.chaff allows exclusion of chaff/filtered record count during reconciliation Exclude chaff record count from Reconciliation \N t \N 2020-11-13 17:33:41.774109+00 0 SYSTEM \N 8 t 115 field.do.not.escape.harmless.control.chars flag to indicate that control characters other than \\t, \\r, and \\n should not be backslash escaped Field Do Not Escape Harmless Control Chars false \N t \N 2020-11-13 17:33:41.774109+00 0 SYSTEM \N 4 t 335 field.number.format Number format (java.text.DecimalFormat) to parse numeric data. Field Number Format \N \N t 2020-11-13 17:33:41.791787+00 2020-11-13 17:33:41.791787+00 0 SYSTEM SYSTEM 1 t 254 cobol.allow.mismatched.record.byte.length set to TRUE to allow records shorter than specified copybook layout. This only applies to RECFM==VB datasets. Allow Mismatched Record Byte Length For Copybook \N t \N 2020-11-13 17:33:41.8084+00 0 SYSTEM \N 8 t 336 field.number.decimalSeparator Decimal separator for numeric data. Field Decimal Separator \N \N t 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 1 t 337 field.number.thousandSeparator Thousand separator for numeric data. Field Thousand Separator \N \N t 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 1 t 338 field.number.currencySymbol Currency symbol for numeric data. Field Currency Symbol \N \N t 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 1 t 339 field.number.minusSymbol Minus symbol for numeric data. Field Minus Symbol \N \N t 2020-11-13 17:33:41.836708+00 2020-11-13 17:33:41.836708+00 0 SYSTEM SYSTEM 1 t 340 target.class This holds the full class name on which operation was triggered. Target Class \N \N t 2020-11-13 17:33:41.879966+00 2020-11-13 17:33:41.879966+00 0 SYSTEM SYSTEM 1 t 341 stored.file.format This holds the stored file format. Stored File Format TEXT_TAB_DELIMITED \N f 2020-11-13 17:33:41.94746+00 2020-11-13 17:33:41.94746+00 0 SYSTEM SYSTEM 1 f 342 qvd.qlikcore.script The QlikCore script to convert QVD file to tab-delimited text. QVD QlikCore Script \N \N f 2020-11-13 17:33:42.348709+00 2020-11-13 17:33:42.348709+00 0 SYSTEM SYSTEM 1 f 343 qvd.qlikcore.script.generated The QlikCore script to convert QVD file to tab-delimited text. QVD QlikCore Script \N \N f 2020-11-13 17:33:42.364914+00 2020-11-13 17:33:42.364914+00 0 SYSTEM SYSTEM 1 f 344 src.xml.temp.path The temporary path where a source XML file is stored. XML Temporary Source Path \N \N f 2020-11-13 17:33:42.460028+00 2020-11-13 17:33:42.460028+00 0 SYSTEM SYSTEM 1 f 282 kafka.max.total.records Maximum number of records to consume from Kafka in one load. Kafka Maximum Total Records Per Run 1000 \N t 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:42.605919+00 0 SYSTEM SYSTEM 23 f 284 kafka.poll.timeout.ms Timeout for one poll of the Kafka queue. This each poll tries to consume up to 100 records. Several polls may be made per load. Kafka Poll Timeout 10000 \N t 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:42.605919+00 0 SYSTEM SYSTEM 23 f 92 dataset.expected.record.count.adjustment This value will be subtracted from the expected record count before reconciliation with the actual record count. Dataset Expected Record Count Adjustment 0 \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 158 profile.integer.census.cardinality.limit profile integer census cardinality limit Profile Integer Census Cardinality Limit \N \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 159 profile.string.sample.cardinality.limit profile string sample cardinality limit Profile String Sample Cardinality Limit \N \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 50 field.min.legal.char.length minimum number of chars allowed in this specific field Field Min Legal Char Length \N \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 258 header.record.count accounts for RDW on header record for MAINFRAME_VARIABLE_RDW_ONLY Header record count \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 259 trailer.record.count accounts for RDW on trailer record for MAINFRAME_VARIABLE_RDW_ONLY Trailer record count \N t \N 2020-11-13 17:33:42.605919+00 0 SYSTEM \N 23 t 283 kafka.start.offset Starting position for the next Kafka load. Can be one of: END, BEGINNING, Kafka Start Offset END \N t 2020-11-13 17:33:39.10244+00 2020-11-13 17:33:42.605919+00 0 SYSTEM SYSTEM 24 f 345 original.ugly.type Original type that was converted to STRING due to too many Ugly records Original Ugly Type UNKNOWN \N f 2020-11-13 17:33:42.729602+00 2020-11-13 17:33:42.729602+00 0 SYSTEM SYSTEM 1 f 346 powerbi.config.json JSON for PowerBI configuration object. Holds at-least the client id, secret and tenant id. POWER BI Config {} \N t 2020-11-13 17:33:42.782192+00 2020-11-13 17:33:42.782192+00 0 SYSTEM SYSTEM 1 f \. -- -- Data for Name: pd_prop_definition2; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prop_definition2 (sname, description, display_name, data_type, field, entity, source, root, default_value) FROM stdin; src.sys.name src.sys.name java.lang.String f f t f \N src.comm.protocol src.comm.protocol java.lang.String f f t f \N src.sys.type src.sys.type java.lang.String f f t f \N src.entity.name src.entity.name java.lang.String f f t f \N src.file.glob src.file.glob java.lang.String f t f f \N biz.date.def.java.class biz.date.def.java.class java.lang.String f t f f \N validate.load.java.class validate.load.java.class java.lang.String f t f f \N date.type.format date.type.format java.lang.String f t f f \N unicode.byte.order.mark unicode.byte.order.mark java.lang.String f t f f OPTIONAL unicode.byte.order.mark.incidence unicode.byte.order.mark.incidence java.lang.String f t f f \N header.charencoding header.charencoding java.lang.String f t f f \N header.byte.count header.byte.count java.lang.String f t f f 0 header.line.count header.line.count java.lang.String f t f f 0 header.defines.field.names header.defines.field.names java.lang.String f t f f false header.record.count.regex header.record.count.regex java.lang.String f t f f \N header.validation.regex header.validation.regex java.lang.String f t f f \N header.validation.pattern.is.regex header.validation.pattern.is.regex java.lang.String f t f f false header.validation.pattern header.validation.pattern java.lang.String f t f f \N trailer.charencoding trailer.charencoding java.lang.String f t f f \N trailer.byte.count trailer.byte.count java.lang.String f t f f 0 trailer.line.count trailer.line.count java.lang.String f t f f 0 trailer.record.count.regex trailer.record.count.regex java.lang.String f t f f \N trailer.validation.regex trailer.validation.regex java.lang.String f t f f \N trailer.validation.pattern.is.regex trailer.validation.pattern.is.regex java.lang.String f t f f false trailer.validation.pattern trailer.validation.pattern java.lang.String f t f f \N trailer.control.z.at.eof.incidence trailer.control.z.at.eof.incidence java.lang.String f t f f OPTIONAL dataset.expected.record.count.extraction.method dataset.expected.record.count.extraction.method java.lang.String f t t f \N dataset.expected.record.count.extraction.argument dataset.expected.record.count.extraction.argument java.lang.String f t t f \N dataset.expected.record.count.adjustment dataset.expected.record.count.adjustment java.lang.String f t t f 0 dataset.date.extraction.method dataset.date.extraction.method java.lang.String f t t f \N dataset.date.extraction.argument dataset.date.extraction.argument java.lang.String f t t f \N dataset.date.pattern dataset.date.pattern java.lang.String f t t f \N dataset.manifest.file.glob dataset.manifest.file.glob java.lang.String f t t f \N record.characterset record.characterset java.lang.String f t f f \N record.charencoding.confidence record.charencoding.confidence java.lang.String f t f f 0.0 record.layout record.layout java.lang.String f t f f \N record.fixed.byte.count record.fixed.byte.count java.lang.String f t f f -1 record.min.byte.count record.min.byte.count java.lang.String f t f f 1 record.max.byte.count record.max.byte.count java.lang.String f t f f 65536 record.record.terminator record.record.terminator java.lang.String f t f f \N record.field.delimiter record.field.delimiter java.lang.String f t f f \N record.last.field.has.delimiter record.last.field.has.delimiter java.lang.String f t f f false record.validation.regex record.validation.regex java.lang.String f t f f \N record.open.quote record.open.quote java.lang.String f t f f \N record.close.quote record.close.quote java.lang.String f t f f \N default.date.format default.date.format java.lang.String f t t f \N default.min.legal.date default.min.legal.date java.lang.String f t t f \N default.max.legal.date default.max.legal.date java.lang.String f t t f \N field.info.file field.info.file java.lang.String t t t f \N field.null.replacement field.null.replacement java.lang.String t t t f \N field.trim.left field.trim.left java.lang.String t t t f true field.trim.right field.trim.right java.lang.String t t t f true field.normalize.whitespace field.normalize.whitespace java.lang.String t t t f false field.allow.whitespace field.allow.whitespace java.lang.String t t t f true field.allow.denormalized.whitespace field.allow.denormalized.whitespace java.lang.String t t t f true field.allow.control.chars field.allow.control.chars java.lang.String t t t f false field.do.not.escape.harmless.control.chars field.do.not.escape.harmless.control.chars java.lang.String t t t f false field.allow.non.ascii.chars field.allow.non.ascii.chars java.lang.String t t t f true field.enclosure.incidence field.enclosure.incidence java.lang.String t t t f \N field.min.legal.char.length field.min.legal.char.length java.lang.String t t t f 0 field.max.legal.char.length field.max.legal.char.length java.lang.String t t t f 250 field.min.legal.value field.min.legal.value java.lang.String t t t f \N field.max.legal.value field.max.legal.value java.lang.String t t t f \N field.encryption.type.tag field.encryption.type.tag java.lang.String t t t f \N field.date.format field.date.format java.lang.String t t t f \N enable.profiling enable.profiling java.lang.String t t t t true enable.validation enable.validation java.lang.String t t t t true enable.archiving enable.archiving java.lang.String t t t t true use.single.receiving.mapper use.single.receiving.mapper java.lang.String f t t f false dock.hand.always.copy.to.loading.dock dock.hand.always.copy.to.loading.dock java.lang.String f t t f false s3.read.by.data.nodes s3.read.by.data.nodes java.lang.String f t t f false cobol.copybook cobol.copybook java.lang.String f t t f \N cobol.record.layout.identifier cobol.record.layout.identifier java.lang.String f t t f \N cobol.branch.wiring.instructions cobol.branch.wiring.instructions java.lang.String f t t f \N cobol.record.filter.string cobol.record.filter.string java.lang.String f t t f \N cobol.trunc.bin.enabled cobol.trunc.bin.enabled java.lang.String f t t f \N cobol.supports.single.byte.binary cobol.supports.single.byte.binary java.lang.String f t t f \N cobol.sync.alignment.enabled cobol.sync.alignment.enabled java.lang.String f t t f \N cobol.unsigned.packed.decimal.uses.sign.nybble cobol.unsigned.packed.decimal.uses.sign.nybble java.lang.String f t t f \N cobol.little.endian cobol.little.endian java.lang.String f t t f \N cobol.allow.overflow.redefines cobol.allow.overflow.redefines java.lang.String f t t f \N cobol.allow.underflow.redefines cobol.allow.underflow.redefines java.lang.String f t t f \N cobol.numproc.nopfd.enabled cobol.numproc.nopfd.enabled java.lang.String f t t f \N cobol.allow.invalid.numeric.as.null cobol.allow.invalid.numeric.as.null java.lang.String f t f f \N hive.object.location hive.object.location java.lang.String f t f f \N entity.fdl entity.fdl java.lang.String f t f f \N xml.entity.xsd xml.entity.xsd java.lang.String f t f f \N xml.entity.xslt xml.entity.xslt java.lang.String f t f f \N xml.entity.namespaces xml.entity.namespaces java.lang.String f t f f \N xml.entity.xpath xml.entity.xpath java.lang.String f t f f \N xml.field.xsltExpr xml.field.xsltExpr java.lang.String t f f f \N xml.field.isKey xml.field.isKey java.lang.String t f f f \N xml.entity.xmlRoot xml.entity.xmlRoot java.lang.String f t f f \N field.fdl field.fdl java.lang.String f t f f \N field.oracle.ddl field.oracle.ddl java.lang.String f t f f \N src.connection.file src.connection.file java.lang.String f f t f \N entity.custom.script.args entity.custom.script.args java.lang.String f t f f \N field.sensitive field.sensitive java.lang.String t f f f false entity.base.type entity.base.type java.lang.String f t f f \N mapred.job.arguments mapred.job.arguments java.lang.String f t t f \N posix.directory.group.identifier posix.directory.group.identifier java.lang.String f t t f \N posix.directory.permissions posix.directory.permissions java.lang.String f t t f \N posix.directory.acl posix.directory.acl java.lang.String f t t f \N posix.file.group.identifier posix.file.group.identifier java.lang.String f t t f \N posix.file.permissions posix.file.permissions java.lang.String f t t f \N posix.file.acl posix.file.acl java.lang.String f t t f \N numeric.precision.scale.rounding.mode numeric.precision.scale.rounding.mode java.lang.String t f f f \N cart.source.entities cart.source.entities java.lang.String f t f f \N cart.entity.sql cart.entity.sql java.lang.String f t f f \N original.name original.name java.lang.String f t f f \N resource_uri resource_uri java.lang.String f f t f \N username username java.lang.String f f t f \N pwd pwd java.lang.String f f t f \N originalSourceName originalSourceName java.lang.String f f t f \N SourceDataBaseTypeName SourceDataBaseTypeName java.lang.String f f t f \N store.binary.file.format.column.as.string store.binary.file.format.column.as.string java.lang.String t f f f \N \. -- -- Data for Name: pd_prop_dependency; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prop_dependency (nid, prop_def_nid, boolean_expression, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_prop_depends_prop; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prop_depends_prop (dependency_nid, property_nid) FROM stdin; \. -- -- Data for Name: pd_prop_setting; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prop_setting (nid, prop_def_nid, prop_value, parent_class, parent_nid, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 1 117 jdbc:postgresql://localhost:5432/podium_dist com.nvs.core.model.meta.SourceConnection 1 \N \N 0 \N \N 2 118 podium_dist com.nvs.core.model.meta.SourceConnection 1 \N \N 0 \N \N 3 119 #0{SI+N1xR0xF2wqNPsHxih6w==} com.nvs.core.model.meta.SourceConnection 1 \N \N 0 \N \N 4 126 HIVE com.nvs.core.model.meta.SourceConnection 1 \N \N 0 \N \N 5 117 jdbc:postgresql://localhost:5432/podium_md com.nvs.core.model.meta.SourceConnection 2 \N \N 0 \N \N 6 118 podium_md com.nvs.core.model.meta.SourceConnection 2 \N \N 0 \N \N 7 119 #0{SI+N1xR0xF2wqNPsHxih6w==} com.nvs.core.model.meta.SourceConnection 2 \N \N 0 \N \N 8 126 POSTGRESQL com.nvs.core.model.meta.SourceConnection 2 \N \N 0 \N \N 9 117 file:/ com.nvs.core.model.meta.SourceConnection 4 \N \N 0 \N \N 10 117 file:/ com.nvs.core.model.meta.SourceConnection 5 \N \N 0 \N \N 11 119 #0{poirSryuYZZfbLCCpaewJw==} com.nvs.core.model.meta.SourceConnection 3 \N \N 0 \N \N 12 118 com.nvs.core.model.meta.SourceConnection 5 \N \N 0 \N \N 13 118 com.nvs.core.model.meta.SourceConnection 3 \N \N 0 \N \N 14 119 #0{poirSryuYZZfbLCCpaewJw==} com.nvs.core.model.meta.SourceConnection 4 \N \N 0 \N \N 15 118 com.nvs.core.model.meta.SourceConnection 4 \N \N 0 \N \N 16 119 #0{poirSryuYZZfbLCCpaewJw==} com.nvs.core.model.meta.SourceConnection 5 \N \N 0 \N \N 17 117 file:/ com.nvs.core.model.meta.SourceConnection 3 \N \N 0 \N \N 18 197 MANAGED com.nvs.core.model.SystemSetting 1 2020-11-13 17:33:36.385045+00 2020-11-13 17:33:36.385045+00 0 SYSTEM SYSTEM 3190 288 \N com.nvs.core.model.meta.DataSource 8 2021-01-26 10:04:59.244+00 2021-01-26 10:04:59.244+00 0 podium podium 3191 210 MANAGED com.nvs.core.model.meta.DataSource 8 2021-01-26 10:04:59.245+00 2021-01-26 10:04:59.245+00 0 podium podium 3192 293 \N com.nvs.core.model.meta.DataSource 8 2021-01-26 10:04:59.246+00 2021-01-26 10:04:59.246+00 0 podium podium 3193 73 sales-errors com.nvs.core.model.meta.DataSource 8 2021-01-26 10:04:59.246+00 2021-01-26 10:04:59.246+00 0 podium podium 3194 77 \N com.nvs.core.model.meta.DataSource 8 2021-01-26 10:04:59.247+00 2021-01-26 10:04:59.247+00 0 podium podium 6486 277 true com.nvs.core.model.prepare.Bundle 3006 2021-01-27 08:21:27.866+00 2021-01-27 08:21:27.866+00 0 podium podium 6731 294 {"79":{"bad":0,"expected":0,"ugly":0,"chaffed":0,"good":2473,"sample":35}} com.nvs.core.model.PrepareExecutionWorkOrder 8 2021-01-27 11:18:35.425+00 2021-01-27 11:18:35.425+00 0 ANONYMOUS ANONYMOUS 7033 18 "officeCode","city","phone","addressLine1","addressLine2","state","country","postalCode","territory","officeLocation"\\r\\n com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.354+00 2021-01-28 10:28:37.354+00 0 podium podium 20 196 true com.nvs.core.model.SystemSetting 1 2020-11-13 17:33:36.385045+00 2020-11-13 17:33:36.385045+00 0 SYSTEM SYSTEM 28 210 \N com.nvs.core.model.meta.DataSource \N 2020-11-13 17:33:38.382086+00 2020-11-13 17:33:38.382086+00 0 SYSTEM SYSTEM 29 117 jdbc:postgresql://localhost:5432/podium_md com.nvs.core.model.meta.SourceConnection 6 2020-11-13 17:33:39.266895+00 2020-11-13 17:33:39.266895+00 0 SYSTEM SYSTEM 30 118 podium_md com.nvs.core.model.meta.SourceConnection 6 2020-11-13 17:33:39.266895+00 2020-11-13 17:33:39.266895+00 0 SYSTEM SYSTEM 31 119 #0{SI+N1xR0xF2wqNPsHxih6w==} com.nvs.core.model.meta.SourceConnection 6 2020-11-13 17:33:39.266895+00 2020-11-13 17:33:39.266895+00 0 SYSTEM SYSTEM 32 126 POSTGRESQL com.nvs.core.model.meta.SourceConnection 6 2020-11-13 17:33:39.266895+00 2020-11-13 17:33:39.266895+00 0 SYSTEM SYSTEM 33 117 file:/ com.nvs.core.model.meta.SourceConnection 7 2020-11-13 17:33:39.699724+00 2020-11-13 17:33:39.699724+00 0 SYSTEM SYSTEM 34 118 com.nvs.core.model.meta.SourceConnection 7 2020-11-13 17:33:39.699724+00 2020-11-13 17:33:39.699724+00 0 SYSTEM SYSTEM 35 119 #0{poirSryuYZZfbLCCpaewJw==} com.nvs.core.model.meta.SourceConnection 7 2020-11-13 17:33:39.699724+00 2020-11-13 17:33:39.699724+00 0 SYSTEM SYSTEM 36 346 {} com.nvs.core.model.SystemSetting 1 2020-11-13 17:33:42.782192+00 2020-11-13 17:33:42.782192+00 0 SYSTEM SYSTEM 37 210 MANAGED com.nvs.core.model.meta.DataSource 1 2020-11-13 17:34:09.293+00 2020-11-13 17:34:09.293+00 0 ANONYMOUS ANONYMOUS 38 119 #0{YgsA5LUpyE6jGeMWFD2qRA==} com.nvs.core.model.meta.SourceConnection 8 2021-01-26 09:51:44.666+00 2021-01-26 09:51:44.666+00 0 podium podium 39 117 jdbc:mysql://localhost:3306/classic-models com.nvs.core.model.meta.SourceConnection 8 2021-01-26 09:51:44.687+00 2021-01-26 09:51:44.687+00 0 podium podium 40 118 demo com.nvs.core.model.meta.SourceConnection 8 2021-01-26 09:51:44.696+00 2021-01-26 09:51:44.696+00 0 podium podium 41 126 MYSQL com.nvs.core.model.meta.SourceConnection 8 2021-01-26 09:51:44.704+00 2021-01-26 09:51:44.704+00 0 podium podium 42 126 MYSQL com.nvs.core.model.meta.SourceConnection 9 2021-01-26 09:54:14.8+00 2021-01-26 09:54:14.8+00 0 podium podium 43 119 #0{YgsA5LUpyE6jGeMWFD2qRA==} com.nvs.core.model.meta.SourceConnection 9 2021-01-26 09:54:14.806+00 2021-01-26 09:54:14.806+00 0 podium podium 44 118 demo com.nvs.core.model.meta.SourceConnection 9 2021-01-26 09:54:14.812+00 2021-01-26 09:54:14.812+00 0 podium podium 45 117 jdbc:mysql://localhost:3306/classic-models-errors com.nvs.core.model.meta.SourceConnection 9 2021-01-26 09:54:14.819+00 2021-01-26 09:54:14.819+00 0 podium podium 46 119 #0{YgsA5LUpyE6jGeMWFD2qRA==} com.nvs.core.model.meta.SourceConnection 10 2021-01-26 09:54:48.884+00 2021-01-26 09:54:48.884+00 0 podium podium 47 117 jdbc:mysql://localhost:3306/sales com.nvs.core.model.meta.SourceConnection 10 2021-01-26 09:54:48.894+00 2021-01-26 09:54:48.894+00 0 podium podium 48 118 demo com.nvs.core.model.meta.SourceConnection 10 2021-01-26 09:54:48.904+00 2021-01-26 09:54:48.904+00 0 podium podium 49 126 MYSQL com.nvs.core.model.meta.SourceConnection 10 2021-01-26 09:54:48.912+00 2021-01-26 09:54:48.912+00 0 podium podium 50 117 jdbc:mysql://localhost:3306/sales-errors com.nvs.core.model.meta.SourceConnection 11 2021-01-26 09:55:23.231+00 2021-01-26 09:55:23.231+00 0 podium podium 51 118 demo com.nvs.core.model.meta.SourceConnection 11 2021-01-26 09:55:23.236+00 2021-01-26 09:55:23.236+00 0 podium podium 52 119 #0{YgsA5LUpyE6jGeMWFD2qRA==} com.nvs.core.model.meta.SourceConnection 11 2021-01-26 09:55:23.242+00 2021-01-26 09:55:23.242+00 0 podium podium 53 126 MYSQL com.nvs.core.model.meta.SourceConnection 11 2021-01-26 09:55:23.248+00 2021-01-26 09:55:23.248+00 0 podium podium 7034 153 0 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.354+00 2021-01-28 10:28:37.354+00 0 podium podium 7035 155 true com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.355+00 2021-01-28 10:28:37.355+00 0 podium podium 7036 32 262144 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.534+00 2021-01-28 10:28:37.534+00 0 podium podium 7037 92 0 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.535+00 2021-01-28 10:28:37.535+00 0 podium podium 7038 34 , com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.536+00 2021-01-28 10:28:37.536+00 0 podium podium 7039 20 0 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.536+00 2021-01-28 10:28:37.536+00 0 podium podium 7040 5 SELECT `customerNumber`,`customerName`,`contactLastName`,`contactFirstName`,`phone`,`addressLine1`,`addressLine2`,`city`,`state`,`postalCode`,`country`,`salesRepEmployeeNumber`,`creditLimit`,`customerLocation` FROM `classic-models-errors`.`customers` com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.537+00 2021-01-28 10:28:37.537+00 0 podium podium 7041 24 false com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.537+00 2021-01-28 10:28:37.537+00 0 podium podium 7042 13 1 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.538+00 2021-01-28 10:28:37.538+00 0 podium podium 7043 320 0 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.538+00 2021-01-28 10:28:37.538+00 0 podium podium 7044 94 customers com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.539+00 2021-01-28 10:28:37.539+00 0 podium podium 7045 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.539+00 2021-01-28 10:28:37.539+00 0 podium podium 7046 17 false com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.54+00 2021-01-28 10:28:37.54+00 0 podium podium 7047 153 0 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.54+00 2021-01-28 10:28:37.54+00 0 podium podium 7048 147 true com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.541+00 2021-01-28 10:28:37.541+00 0 podium podium 7049 114 Snapshot com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.541+00 2021-01-28 10:28:37.541+00 0 podium podium 7050 148 true com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.542+00 2021-01-28 10:28:37.542+00 0 podium podium 4282 156 true com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.011+00 2021-01-26 10:14:47.011+00 0 podium podium 4283 38 " com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.012+00 2021-01-26 10:14:47.012+00 0 podium podium 4284 320 0 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.012+00 2021-01-26 10:14:47.012+00 0 podium podium 4285 5 SELECT `ShipperID`,`CompanyName`,`Phone` FROM `sales-errors`.`shippers` com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.013+00 2021-01-26 10:14:47.013+00 0 podium podium 4286 288 \N com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.013+00 2021-01-26 10:14:47.013+00 0 podium podium 4287 202 MANAGED com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.014+00 2021-01-26 10:14:47.014+00 0 podium podium 4288 32 262144 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.014+00 2021-01-26 10:14:47.014+00 0 podium podium 6504 127 LOCAL com.nvs.core.model.PrepareExecutionWorkOrder 2 2021-01-27 10:15:33.691+00 2021-01-27 10:15:33.691+00 0 podium podium 6505 253 false com.nvs.core.model.PrepareExecutionWorkOrder 2 2021-01-27 10:15:33.696+00 2021-01-27 10:15:33.696+00 0 podium podium 6506 277 true com.nvs.core.model.PrepareExecutionWorkOrder 2 2021-01-27 10:15:33.7+00 2021-01-27 10:15:33.7+00 0 podium podium 6783 277 true com.nvs.core.model.prepare.Bundle 3032 2021-01-27 13:19:01.522+00 2021-01-27 13:19:01.522+00 0 podium podium 6793 114 Snapshot com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.488+00 2021-01-27 13:21:53.488+00 0 podium podium 6794 202 MANAGED com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.488+00 2021-01-27 13:21:53.488+00 0 podium podium 6795 34 \\t com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.489+00 2021-01-27 13:21:53.489+00 0 podium podium 6796 31 1 com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.49+00 2021-01-27 13:21:53.49+00 0 podium podium 6797 33 \\n com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.49+00 2021-01-27 13:21:53.49+00 0 podium podium 6798 27 UTF_8 com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.491+00 2021-01-27 13:21:53.491+00 0 podium podium 6799 35 false com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.492+00 2021-01-27 13:21:53.492+00 0 podium podium 6800 32 262144 com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.492+00 2021-01-27 13:21:53.492+00 0 podium podium 6801 57 true com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.493+00 2021-01-27 13:21:53.493+00 0 podium podium 6802 37 " com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.494+00 2021-01-27 13:21:53.494+00 0 podium podium 6803 288 com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.494+00 2021-01-27 13:21:53.494+00 0 podium podium 6804 56 true com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.495+00 2021-01-27 13:21:53.495+00 0 podium podium 6805 42 com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.496+00 2021-01-27 13:21:53.496+00 0 podium podium 6806 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.496+00 2021-01-27 13:21:53.496+00 0 podium podium 6807 38 " com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.497+00 2021-01-27 13:21:53.497+00 0 podium podium 6808 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.498+00 2021-01-27 13:21:53.498+00 0 podium podium 4918 134 VARCHAR(100) com.nvs.core.model.meta.DataField 139 2021-01-26 10:23:13.458+00 2021-01-26 10:23:13.458+00 0 podium podium 4919 51 100 com.nvs.core.model.meta.DataField 139 2021-01-26 10:23:13.459+00 2021-01-26 10:23:13.459+00 0 podium podium 4920 52 \N com.nvs.core.model.meta.DataField 139 2021-01-26 10:23:13.459+00 2021-01-26 10:23:13.459+00 0 podium podium 4921 45 \N com.nvs.core.model.meta.DataField 139 2021-01-26 10:23:13.46+00 2021-01-26 10:23:13.46+00 0 podium podium 4922 53 \N com.nvs.core.model.meta.DataField 139 2021-01-26 10:23:13.46+00 2021-01-26 10:23:13.46+00 0 podium podium 4923 44 \N com.nvs.core.model.meta.DataField 139 2021-01-26 10:23:13.461+00 2021-01-26 10:23:13.461+00 0 podium podium 4924 137 com.nvs.core.model.meta.DataField 139 2021-01-26 10:23:13.461+00 2021-01-26 10:23:13.461+00 0 podium podium 4925 81 false com.nvs.core.model.meta.DataField 139 2021-01-26 10:23:13.461+00 2021-01-26 10:23:13.461+00 0 podium podium 4926 49 \N com.nvs.core.model.meta.DataField 139 2021-01-26 10:23:13.462+00 2021-01-26 10:23:13.462+00 0 podium podium 4927 50 \N com.nvs.core.model.meta.DataField 139 2021-01-26 10:23:13.462+00 2021-01-26 10:23:13.462+00 0 podium podium 4928 137 com.nvs.core.model.meta.DataField 135 2021-01-26 10:26:21.886+00 2021-01-26 10:26:21.886+00 0 podium podium 4929 51 50 com.nvs.core.model.meta.DataField 135 2021-01-26 10:26:21.886+00 2021-01-26 10:26:21.886+00 0 podium podium 4930 45 \N com.nvs.core.model.meta.DataField 135 2021-01-26 10:26:21.887+00 2021-01-26 10:26:21.887+00 0 podium podium 4931 50 \N com.nvs.core.model.meta.DataField 135 2021-01-26 10:26:21.887+00 2021-01-26 10:26:21.887+00 0 podium podium 4932 134 VARCHAR(50) com.nvs.core.model.meta.DataField 135 2021-01-26 10:26:21.888+00 2021-01-26 10:26:21.888+00 0 podium podium 4933 44 \N com.nvs.core.model.meta.DataField 135 2021-01-26 10:26:21.888+00 2021-01-26 10:26:21.888+00 0 podium podium 4934 53 \N com.nvs.core.model.meta.DataField 135 2021-01-26 10:26:21.888+00 2021-01-26 10:26:21.888+00 0 podium podium 4935 49 \N com.nvs.core.model.meta.DataField 135 2021-01-26 10:26:21.889+00 2021-01-26 10:26:21.889+00 0 podium podium 4936 52 \N com.nvs.core.model.meta.DataField 135 2021-01-26 10:26:21.889+00 2021-01-26 10:26:21.889+00 0 podium podium 4937 81 false com.nvs.core.model.meta.DataField 135 2021-01-26 10:26:21.89+00 2021-01-26 10:26:21.89+00 0 podium podium 5003 210 MANAGED com.nvs.core.model.meta.DataSource 10 2021-01-26 10:32:10.68+00 2021-01-26 10:32:10.68+00 0 podium podium 7311 37 " com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.611+00 2021-01-28 10:28:39.611+00 0 podium podium 7312 153 0 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.612+00 2021-01-28 10:28:39.612+00 0 podium podium 7313 258 0 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.612+00 2021-01-28 10:28:39.612+00 0 podium podium 7314 18 "customerNumber","customerName","contactLastName","contactFirstName","phone","addressLine1","addressLine2","city","state","postalCode","country","salesRepEmployeeNumber","creditLimit","customerLocation"\\r\\n com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.613+00 2021-01-28 10:28:39.613+00 0 podium podium 7315 13 1 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.613+00 2021-01-28 10:28:39.613+00 0 podium podium 7316 14 false com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.613+00 2021-01-28 10:28:39.613+00 0 podium podium 7317 35 false com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.614+00 2021-01-28 10:28:39.614+00 0 podium podium 7318 147 true com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.614+00 2021-01-28 10:28:39.614+00 0 podium podium 7319 148 true com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.615+00 2021-01-28 10:28:39.615+00 0 podium podium 7320 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.615+00 2021-01-28 10:28:39.615+00 0 podium podium 7321 77 \N com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.616+00 2021-01-28 10:28:39.616+00 0 podium podium 7322 152 0 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.616+00 2021-01-28 10:28:39.616+00 0 podium podium 7323 28 0.00 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.617+00 2021-01-28 10:28:39.617+00 0 podium podium 7324 34 , com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.617+00 2021-01-28 10:28:39.617+00 0 podium podium 7325 202 MANAGED com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.617+00 2021-01-28 10:28:39.617+00 0 podium podium 7326 114 Snapshot com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.618+00 2021-01-28 10:28:39.618+00 0 podium podium 6507 128 69 com.nvs.core.model.PrepareExecutionWorkOrder 2 2021-01-27 10:16:04.749+00 2021-01-27 10:16:04.749+00 0 ANONYMOUS ANONYMOUS 6508 166 UNCOMPRESSED com.nvs.core.model.PrepareExecutionWorkOrder 2 2021-01-27 10:16:04.813+00 2021-01-27 10:16:04.813+00 0 ANONYMOUS ANONYMOUS 6509 129 76 com.nvs.core.model.PrepareExecutionWorkOrder 2 2021-01-27 10:16:04.904+00 2021-01-27 10:16:04.904+00 0 ANONYMOUS ANONYMOUS 6510 266 {"mapreduce.jobtracker.address":"local","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","ipc.client.connection.maxidletime":"10000","mapreduce.cluster.acls.enabled":"false","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","mapreduce.job.ubertask.maxmaps":"9","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","yarn.nodemanager.container-manager.thread-count":"20","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","fs.s3a.metadatastore.authoritative":"false","mapreduce.app-submission.cross-platform":"false","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.markreset.buffer.percent":"0.0","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","mapreduce.job.ubertask.enable":"false","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.am.max-attempts":"2","mapreduce.jobtracker.heartbeats.in.second":"100","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.security.instrumentation.requires.admin":"false","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.registry.zk.retry.ceiling.ms":"60000","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","yarn.app.mapreduce.client.job.max-retries":"3","mapreduce.jobhistory.cleaner.enable":"true","fs.s3a.s3guard.ddb.table.capacity.write":"100","ha.failover-controller.graceful-fence.connection.retries":"1","mapreduce.tasktracker.http.address":"0.0.0.0:50060","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","fs.s3a.max.total.tasks":"5","mapreduce.reduce.maxattempts":"4","mapreduce.client.submit.file.replication":"10","mapreduce.shuffle.port":"13562","yarn.resourcemanager.resource-tracker.client.thread-count":"50","yarn.fail-fast":"false","yarn.nodemanager.delete.thread-count":"4","fs.hdfs.impl.disable.cache":"true","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","s3native.client-write-packet-size":"65536","file.bytes-per-checksum":"512","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","mapreduce.jobtracker.taskcache.levels":"2","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.job.jvm.numtasks":"1","mapreduce.jobtracker.tasktracker.maxblacklists":"4","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.security.group.mapping.ldap.search.attr.member":"member","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","hadoop.security.credential.clear-text-fallback":"true","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","ha.failover-controller.new-active.rpc-timeout.ms":"60000","mapreduce.map.memory.mb":"-1","hadoop.ssl.hostname.verifier":"DEFAULT","mapreduce.tasktracker.healthchecker.interval":"60000","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","s3native.blocksize":"67108864","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","hadoop.registry.zk.retry.times":"5","mapreduce.job.running.reduce.limit":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.task.io.sort.factor":"10","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.s3a.paging.maximum":"5000","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","hadoop.shell.missing.defaultFs.warning":"true","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","fs.s3a.s3guard.ddb.background.sleep":"25","mapreduce.tasktracker.http.threads":"40","mapreduce.tasktracker.dns.nameserver":"default","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.job.maxtaskfailures.per.tracker":"3","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","mapreduce.shuffle.max.connections":"0","mapreduce.jobhistory.loadedjobs.cache.size":"5","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","mapreduce.client.output.filter":"FAILED","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","mapreduce.jobtracker.persist.jobstatus.hours":"1","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","mapreduce.job.speculative.retry-after-no-speculate":"1000","fs.s3a.attempts.maximum":"20","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","mapreduce.task.io.sort.mb":"100","yarn.app.mapreduce.client-am.ipc.max-retries":"3","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","adl.http.timeout":"5000","mapreduce.job.speculative.retry-after-speculate":"15000","mapreduce.jobtracker.restart.recover":"false","ipc.client.connect.max.retries":"10","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.security.kms.client.timeout":"60","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","yarn.resourcemanager.ha.automatic-failover.embedded":"true","hadoop.security.kms.client.failover.sleep.base.millis":"100","mapreduce.job.heap.memory-mb.ratio":"0.8","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","mapreduce.task.exit.timeout.check-interval-ms":"20000","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","yarn.resourcemanager.keytab":"/etc/krb5.keytab","mapreduce.map.log.level":"INFO","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","mapreduce.tasktracker.local.dir.minspacestart":"0","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","ha.health-monitor.check-interval.ms":"1000","mapreduce.reduce.shuffle.merge.percent":"0.66","ipc.client.connect.timeout":"20000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","yarn.nodemanager.recovery.enabled":"false","io.native.lib.available":"true","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","mapreduce.job.running.map.limit":"0","mapreduce.reduce.input.buffer.percent":"0.0","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","yarn.app.attempt.diagnostics.limit.kc":"64","hadoop.security.group.mapping.ldap.ssl":"false","fs.defaultFS":"file:///","fs.s3a.multipart.size":"64M","yarn.app.mapreduce.am.job.committer.commit-window":"10000","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.ifile.readahead":"true","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","s3native.replication":"3","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","fs.s3a.s3guard.ddb.table.create":"false","yarn.nodemanager.health-checker.interval-ms":"600000","s3.stream-buffer-size":"4096","ftp.client-write-packet-size":"65536","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","yarn.timeline-service.keytab":"/etc/krb5.keytab","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","ha.zookeeper.session-timeout.ms":"5000","fs.s3a.connection.ssl.enabled":"true","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","ipc.server.max.connections":"0","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.app.mapreduce.am.resource.mb":"1536","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","hadoop.security.groups.cache.secs":"300","mapreduce.job.speculative.minimum-allowed-tasks":"10","yarn.nodemanager.container-monitor.interval-ms":"3000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","s3.client-write-packet-size":"65536","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","mapreduce.job.reduces":"1","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","mapreduce.job.acl-modify-job":" ","hadoop.registry.zk.session.timeout.ms":"60000","fs.automatic.close":"true","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","fs.s3.block.size":"67108864","hadoop.http.authentication.token.validity":"36000","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.tasktracker.local.dir.minspacekill":"0","mapreduce.jobhistory.cleaner.interval-ms":"86400000","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","mapreduce.jobtracker.http.address":"0.0.0.0:50030","yarn.nodemanager.recovery.compaction-interval-secs":"3600","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","mapreduce.tasktracker.report.address":"127.0.0.1:0","hadoop.kerberos.kinit.command":"kinit","yarn.timeline-service.http-authentication.type":"simple","yarn.log-aggregation.retain-seconds":"-1","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","ipc.client.connect.max.retries.on.timeouts":"45","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","io.file.buffer.size":"4096","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","io.mapfile.bloom.size":"1048576","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","ipc.client.connect.retry.interval":"1000","hadoop.security.kms.client.authentication.retry-count":"1","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","yarn.app.mapreduce.shuffle.log.backups":"0","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","ftp.blocksize":"67108864","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","yarn.resourcemanager.scheduler.monitor.enable":"false","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","hadoop.http.authentication.simple.anonymous.allowed":"true","yarn.client.nodemanager-connect.retry-interval-ms":"10000","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","mapreduce.task.files.preserve.failedtasks":"false","mapreduce.job.reduce.slowstart.completedmaps":"0.05","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.jobhistory.minicluster.fixed.ports":"false","file.replication":"1","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","io.mapfile.bloom.error.rate":"0.005","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","mapreduce.map.cpu.vcores":"1","yarn.resourcemanager.zk-retry-interval-ms":"1000","ftp.bytes-per-checksum":"512","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.pmem-check-enabled":"true","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","fs.s3a.s3guard.cli.prune.age":"86400000","hadoop.registry.zk.root":"/registry","hadoop.jetty.logs.serve.aliases":"true","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","mapreduce.reduce.merge.inmem.threshold":"1000","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","mapreduce.job.token.tracking.ids.enabled":"false","yarn.nodemanager.localizer.client.thread-count":"5","hadoop.security.kms.client.failover.sleep.max.millis":"2000","mapreduce.jobhistory.move.thread-count":"3","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","rpc.metrics.quantile.enable":"false","mapreduce.jobtracker.expire.trackers.interval":"600000","io.bytes.per.checksum":"512","mapreduce.jobhistory.loadedjob.tasks.max":"-1","mapreduce.task.timeout":"600000","yarn.app.mapreduce.client.max-retries":"3","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","mapreduce.framework.name":"local","mapreduce.fileoutputcommitter.algorithm.version":"1","yarn.resourcemanager.connect.max-wait.ms":"900000","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","ipc.client.ping":"true","mapreduce.input.lineinputformat.linespermap":"1","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","hadoop.security.uid.cache.secs":"14400","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","mapreduce.tasktracker.dns.interface":"default","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","yarn.resourcemanager.ha.enabled":"false","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","fs.s3a.multipart.threshold":"128M","io.map.index.skip":"0","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","mapreduce.job.hdfs-servers":"${fs.defaultFS}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","mapreduce.task.merge.progress.records":"10000","map.sort.class":"org.apache.hadoop.util.QuickSort","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","fs.s3a.socket.send.buffer":"8192","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","hadoop.registry.zk.quorum":"localhost:2181","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","fs.s3a.fast.upload.active.blocks":"4","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","mapreduce.reduce.memory.mb":"-1","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","yarn.client.failover-retries-on-socket-timeouts":"0","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","hadoop.treat.subject.external":"false","mapreduce.client.completion.pollinterval":"5000","ipc.server.log.slow.rpc":"false","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10","yarn.nodemanager.vmem-pmem-ratio":"2.1"} com.nvs.core.model.PrepareExecutionWorkOrder 2 2021-01-27 10:16:10.039+00 2021-01-27 10:16:10.039+00 0 ANONYMOUS ANONYMOUS 6511 130 -- podium data script generator prologue\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3013) \n\npdpg_24 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/customers/20210126010000/good' AS (customerNumber:long,customerName:chararray,contactLastName:chararray,contactFirstName:chararray,phone:chararray,addressLine1:chararray,addressLine2:chararray,city:chararray,state:chararray,postalCode:chararray,country:chararray,salesRepEmployeeNumber:long,creditLimit:double,customerLocation:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3013) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3014) \n\npdpg_25 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/salesorders/20210126010000/good' AS (orderNumber:long,orderDate:chararray,requiredDate:chararray,shippedDate:chararray,status:chararray,customerNumber:long,orderLineNumber:long,priceEach:double,quantityOrdered:long,productCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3014) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3015) \n\npdpg_26 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/employees/20210126010000/good' AS (employeeNumber:long,lastName:chararray,firstName:chararray,extension:chararray,email:chararray,reportsTo:long,jobTitle:chararray,officeCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3015) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3016) \n\npdpg_27 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/products_full/20210125230000/good' AS (productCode:chararray,productName:chararray,productScale:chararray,productVendor:chararray,productDescription:chararray,quantityInStock:long,buyPrice:double,MSRP:double,productLine:chararray,textDescription:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3016) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3010) \n\npdpg_17_temp = JOIN pdpg_25 BY productCode, pdpg_27 BY productCode ;\npdpg_17 = FOREACH pdpg_17_temp GENERATE pdpg_25::orderNumber AS orderNumber, pdpg_25::orderDate AS orderDate, pdpg_25::requiredDate AS requiredDate, pdpg_25::shippedDate AS shippedDate, pdpg_25::status AS status, pdpg_25::customerNumber AS customerNumber, pdpg_25::orderLineNumber AS orderLineNumber, pdpg_25::priceEach AS priceEach, pdpg_25::quantityOrdered AS quantityOrdered, pdpg_25::productCode AS productCode, pdpg_27::productName AS productName, pdpg_27::productScale AS productScale, pdpg_27::productVendor AS productVendor, pdpg_27::productDescription AS productDescription, pdpg_27::quantityInStock AS quantityInStock, pdpg_27::buyPrice AS buyPrice, pdpg_27::MSRP AS MSRP, pdpg_27::productLine AS productLine, pdpg_27::textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3010) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3007) \n\npdpg_10 = FOREACH pdpg_17 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3007) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3011) \n\npdpg_20_temp = JOIN pdpg_10 BY customerNumber, pdpg_24 BY customerNumber ;\npdpg_20 = FOREACH pdpg_20_temp GENERATE pdpg_10::orderNumber AS orderNumber, pdpg_10::orderDate AS orderDate, pdpg_10::requiredDate AS requiredDate, pdpg_10::shippedDate AS shippedDate, pdpg_10::status AS status, pdpg_10::customerNumber AS customerNumber, pdpg_10::orderLineNumber AS orderLineNumber, pdpg_10::priceEach AS priceEach, pdpg_10::quantityOrdered AS quantityOrdered, pdpg_10::productCode AS productCode, pdpg_10::productName AS productName, pdpg_10::productScale AS productScale, pdpg_10::productVendor AS productVendor, pdpg_10::productDescription AS productDescription, pdpg_10::quantityInStock AS quantityInStock, pdpg_10::buyPrice AS buyPrice, pdpg_10::MSRP AS MSRP, pdpg_10::productLine AS productLine, pdpg_10::textDescription AS textDescription, pdpg_24::customerName AS customerName, pdpg_24::contactLastName AS contactLastName, pdpg_24::contactFirstName AS contactFirstName, pdpg_24::phone AS phone, pdpg_24::addressLine1 AS addressLine1, pdpg_24::addressLine2 AS addressLine2, pdpg_24::city AS city, pdpg_24::state AS state, pdpg_24::postalCode AS postalCode, pdpg_24::country AS country, pdpg_24::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_24::creditLimit AS creditLimit, pdpg_24::customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3011) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3008) \n\npdpg_12 = FOREACH pdpg_20 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(double) creditLimit AS creditLimit,(chararray) customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3008) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3012) \n\npdpg_23_temp = JOIN pdpg_12 BY salesRepEmployeeNumber, pdpg_26 BY employeeNumber ;\npdpg_23 = FOREACH pdpg_23_temp GENERATE pdpg_12::orderNumber AS orderNumber, pdpg_12::orderDate AS orderDate, pdpg_12::requiredDate AS requiredDate, pdpg_12::shippedDate AS shippedDate, pdpg_12::status AS status, pdpg_12::customerNumber AS customerNumber, pdpg_12::orderLineNumber AS orderLineNumber, pdpg_12::priceEach AS priceEach, pdpg_12::quantityOrdered AS quantityOrdered, pdpg_12::productCode AS productCode, pdpg_12::productName AS productName, pdpg_12::productScale AS productScale, pdpg_12::productVendor AS productVendor, pdpg_12::productDescription AS productDescription, pdpg_12::quantityInStock AS quantityInStock, pdpg_12::buyPrice AS buyPrice, pdpg_12::MSRP AS MSRP, pdpg_12::productLine AS productLine, pdpg_12::textDescription AS textDescription, pdpg_12::customerName AS customerName, pdpg_12::contactLastName AS contactLastName, pdpg_12::contactFirstName AS contactFirstName, pdpg_12::phone AS phone, pdpg_12::addressLine1 AS addressLine1, pdpg_12::addressLine2 AS addressLine2, pdpg_12::city AS city, pdpg_12::state AS state, pdpg_12::postalCode AS postalCode, pdpg_12::country AS country, pdpg_12::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_12::creditLimit AS creditLimit, pdpg_12::customerLocation AS customerLocation, pdpg_26::lastName AS lastName, pdpg_26::firstName AS firstName, pdpg_26::extension AS extension, pdpg_26::email AS email, pdpg_26::reportsTo AS reportsTo, pdpg_26::jobTitle AS jobTitle, pdpg_26::officeCode AS officeCode;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3012) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3009) \n\npdpg_14 = FOREACH pdpg_23 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(double) creditLimit AS creditLimit,(chararray) customerLocation AS customerLocation,(chararray) lastName AS lastName,(chararray) firstName AS firstName,(chararray) extension AS extension,(chararray) email AS email,(long) reportsTo AS reportsTo,(chararray) jobTitle AS jobTitle,(chararray) officeCode AS officeCode,(bigdecimal) (com.podiumdata.pigudf.number.TO_DECIMAL(priceEach * quantityOrdered)) AS orderTotal;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3009) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Store (id:3017) \n\nSTORE pdpg_14 INTO 'file:///usr/local/qdc/data/loadingdock/classic_models/salesorders_full/20210127090000' ;\n\n-- end script for com.nvs.core.model.prepare.pkg.Store (id:3017) \n\n-- podium data script generator epilogue\n com.nvs.core.model.PrepareExecutionWorkOrder 2 2021-01-27 10:16:10.059+00 2021-01-27 10:16:10.059+00 0 ANONYMOUS ANONYMOUS 6784 253 false com.nvs.core.model.PrepareExecutionWorkOrder 9 2021-01-27 13:19:07.647+00 2021-01-27 13:19:07.647+00 0 podium podium 6785 127 LOCAL com.nvs.core.model.PrepareExecutionWorkOrder 9 2021-01-27 13:19:07.652+00 2021-01-27 13:19:07.652+00 0 podium podium 6786 277 true com.nvs.core.model.PrepareExecutionWorkOrder 9 2021-01-27 13:19:07.658+00 2021-01-27 13:19:07.658+00 0 podium podium 4975 137 Digest SHA256 Lower com.nvs.core.model.meta.DataField 173 2021-01-26 10:28:46.602+00 2021-01-26 10:28:46.602+00 0 podium podium 4976 44 \N com.nvs.core.model.meta.DataField 173 2021-01-26 10:28:46.603+00 2021-01-26 10:28:46.603+00 0 podium podium 4977 53 \N com.nvs.core.model.meta.DataField 173 2021-01-26 10:28:46.603+00 2021-01-26 10:28:46.603+00 0 podium podium 4978 52 \N com.nvs.core.model.meta.DataField 173 2021-01-26 10:28:46.604+00 2021-01-26 10:28:46.604+00 0 podium podium 4979 134 VARCHAR(50) com.nvs.core.model.meta.DataField 173 2021-01-26 10:28:46.604+00 2021-01-26 10:28:46.604+00 0 podium podium 4980 50 \N com.nvs.core.model.meta.DataField 173 2021-01-26 10:28:46.605+00 2021-01-26 10:28:46.605+00 0 podium podium 4981 51 50 com.nvs.core.model.meta.DataField 173 2021-01-26 10:28:46.606+00 2021-01-26 10:28:46.606+00 0 podium podium 4982 49 \N com.nvs.core.model.meta.DataField 173 2021-01-26 10:28:46.606+00 2021-01-26 10:28:46.606+00 0 podium podium 4983 81 true com.nvs.core.model.meta.DataField 173 2021-01-26 10:28:46.607+00 2021-01-26 10:28:46.607+00 0 podium podium 4984 45 \N com.nvs.core.model.meta.DataField 173 2021-01-26 10:28:46.607+00 2021-01-26 10:28:46.607+00 0 podium podium 6512 294 {"76":{"bad":2473,"expected":0,"ugly":0,"chaffed":0,"good":2473,"sample":0}} com.nvs.core.model.PrepareExecutionWorkOrder 2 2021-01-27 10:16:31.653+00 2021-01-27 10:16:31.653+00 0 ANONYMOUS ANONYMOUS 6787 128 22 com.nvs.core.model.PrepareExecutionWorkOrder 9 2021-01-27 13:19:38.655+00 2021-01-27 13:19:38.655+00 0 ANONYMOUS ANONYMOUS 6788 129 80 com.nvs.core.model.PrepareExecutionWorkOrder 9 2021-01-27 13:19:38.717+00 2021-01-27 13:19:38.717+00 0 ANONYMOUS ANONYMOUS 6789 166 UNCOMPRESSED com.nvs.core.model.PrepareExecutionWorkOrder 9 2021-01-27 13:19:38.777+00 2021-01-27 13:19:38.777+00 0 ANONYMOUS ANONYMOUS 6790 130 -- podium data script generator prologue\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3034) \n\npdpg_53 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models_errors/employees/20210126000000/ugly' AS (employeeNumber:chararray,lastName:chararray,firstName:chararray,extension:chararray,email:chararray,reportsTo:chararray,jobTitle:chararray,officeCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3034) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3033) \n\npdpg_52 = FOREACH pdpg_53 GENERATE (chararray) employeeNumber AS employeeNumber,(chararray) lastName AS lastName,(chararray) firstName AS firstName,(chararray) extension AS extension,(chararray) email AS email,(chararray) reportsTo AS reportsTo,(chararray) jobTitle AS jobTitle,(chararray) officeCode AS officeCode,(chararray) 'Wrong email, please verify and fix' AS systemComment;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3033) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Store (id:3035) \n\nSTORE pdpg_52 INTO 'file:///usr/local/qdc/data/loadingdock/classic_models_errors/employees_ugly/20210127130000' ;\n\n-- end script for com.nvs.core.model.prepare.pkg.Store (id:3035) \n\n-- podium data script generator epilogue\n com.nvs.core.model.PrepareExecutionWorkOrder 9 2021-01-27 13:19:43.868+00 2021-01-27 13:19:43.868+00 0 ANONYMOUS ANONYMOUS 6791 266 {"mapreduce.jobtracker.address":"local","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","ipc.client.connection.maxidletime":"10000","mapreduce.cluster.acls.enabled":"false","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","mapreduce.job.ubertask.maxmaps":"9","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","yarn.nodemanager.container-manager.thread-count":"20","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","fs.s3a.metadatastore.authoritative":"false","mapreduce.app-submission.cross-platform":"false","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.markreset.buffer.percent":"0.0","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","mapreduce.job.ubertask.enable":"false","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.am.max-attempts":"2","mapreduce.jobtracker.heartbeats.in.second":"100","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.security.instrumentation.requires.admin":"false","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.registry.zk.retry.ceiling.ms":"60000","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","yarn.app.mapreduce.client.job.max-retries":"3","mapreduce.jobhistory.cleaner.enable":"true","fs.s3a.s3guard.ddb.table.capacity.write":"100","ha.failover-controller.graceful-fence.connection.retries":"1","mapreduce.tasktracker.http.address":"0.0.0.0:50060","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","fs.s3a.max.total.tasks":"5","mapreduce.reduce.maxattempts":"4","mapreduce.client.submit.file.replication":"10","mapreduce.shuffle.port":"13562","yarn.resourcemanager.resource-tracker.client.thread-count":"50","yarn.fail-fast":"false","yarn.nodemanager.delete.thread-count":"4","fs.hdfs.impl.disable.cache":"true","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","s3native.client-write-packet-size":"65536","file.bytes-per-checksum":"512","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","mapreduce.jobtracker.taskcache.levels":"2","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.job.jvm.numtasks":"1","mapreduce.jobtracker.tasktracker.maxblacklists":"4","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.security.group.mapping.ldap.search.attr.member":"member","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","hadoop.security.credential.clear-text-fallback":"true","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","ha.failover-controller.new-active.rpc-timeout.ms":"60000","mapreduce.map.memory.mb":"-1","hadoop.ssl.hostname.verifier":"DEFAULT","mapreduce.tasktracker.healthchecker.interval":"60000","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","s3native.blocksize":"67108864","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","hadoop.registry.zk.retry.times":"5","mapreduce.job.running.reduce.limit":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.task.io.sort.factor":"10","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.s3a.paging.maximum":"5000","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","hadoop.shell.missing.defaultFs.warning":"true","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","fs.s3a.s3guard.ddb.background.sleep":"25","mapreduce.tasktracker.http.threads":"40","mapreduce.tasktracker.dns.nameserver":"default","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.job.maxtaskfailures.per.tracker":"3","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","mapreduce.shuffle.max.connections":"0","mapreduce.jobhistory.loadedjobs.cache.size":"5","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","mapreduce.client.output.filter":"FAILED","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","mapreduce.jobtracker.persist.jobstatus.hours":"1","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","mapreduce.job.speculative.retry-after-no-speculate":"1000","fs.s3a.attempts.maximum":"20","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","mapreduce.task.io.sort.mb":"100","yarn.app.mapreduce.client-am.ipc.max-retries":"3","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","adl.http.timeout":"5000","mapreduce.job.speculative.retry-after-speculate":"15000","mapreduce.jobtracker.restart.recover":"false","ipc.client.connect.max.retries":"10","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.security.kms.client.timeout":"60","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","yarn.resourcemanager.ha.automatic-failover.embedded":"true","hadoop.security.kms.client.failover.sleep.base.millis":"100","mapreduce.job.heap.memory-mb.ratio":"0.8","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","mapreduce.task.exit.timeout.check-interval-ms":"20000","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","yarn.resourcemanager.keytab":"/etc/krb5.keytab","mapreduce.map.log.level":"INFO","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","mapreduce.tasktracker.local.dir.minspacestart":"0","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","ha.health-monitor.check-interval.ms":"1000","mapreduce.reduce.shuffle.merge.percent":"0.66","ipc.client.connect.timeout":"20000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","yarn.nodemanager.recovery.enabled":"false","io.native.lib.available":"true","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","mapreduce.job.running.map.limit":"0","mapreduce.reduce.input.buffer.percent":"0.0","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","yarn.app.attempt.diagnostics.limit.kc":"64","hadoop.security.group.mapping.ldap.ssl":"false","fs.defaultFS":"file:///","fs.s3a.multipart.size":"64M","yarn.app.mapreduce.am.job.committer.commit-window":"10000","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.ifile.readahead":"true","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","s3native.replication":"3","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","fs.s3a.s3guard.ddb.table.create":"false","yarn.nodemanager.health-checker.interval-ms":"600000","s3.stream-buffer-size":"4096","ftp.client-write-packet-size":"65536","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","yarn.timeline-service.keytab":"/etc/krb5.keytab","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","ha.zookeeper.session-timeout.ms":"5000","fs.s3a.connection.ssl.enabled":"true","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","ipc.server.max.connections":"0","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.app.mapreduce.am.resource.mb":"1536","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","hadoop.security.groups.cache.secs":"300","mapreduce.job.speculative.minimum-allowed-tasks":"10","yarn.nodemanager.container-monitor.interval-ms":"3000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","s3.client-write-packet-size":"65536","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","mapreduce.job.reduces":"1","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","mapreduce.job.acl-modify-job":" ","hadoop.registry.zk.session.timeout.ms":"60000","fs.automatic.close":"true","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","fs.s3.block.size":"67108864","hadoop.http.authentication.token.validity":"36000","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.tasktracker.local.dir.minspacekill":"0","mapreduce.jobhistory.cleaner.interval-ms":"86400000","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","mapreduce.jobtracker.http.address":"0.0.0.0:50030","yarn.nodemanager.recovery.compaction-interval-secs":"3600","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","mapreduce.tasktracker.report.address":"127.0.0.1:0","hadoop.kerberos.kinit.command":"kinit","yarn.timeline-service.http-authentication.type":"simple","yarn.log-aggregation.retain-seconds":"-1","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","ipc.client.connect.max.retries.on.timeouts":"45","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","io.file.buffer.size":"4096","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","io.mapfile.bloom.size":"1048576","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","ipc.client.connect.retry.interval":"1000","hadoop.security.kms.client.authentication.retry-count":"1","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","yarn.app.mapreduce.shuffle.log.backups":"0","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","ftp.blocksize":"67108864","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","yarn.resourcemanager.scheduler.monitor.enable":"false","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","hadoop.http.authentication.simple.anonymous.allowed":"true","yarn.client.nodemanager-connect.retry-interval-ms":"10000","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","mapreduce.task.files.preserve.failedtasks":"false","mapreduce.job.reduce.slowstart.completedmaps":"0.05","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.jobhistory.minicluster.fixed.ports":"false","file.replication":"1","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","io.mapfile.bloom.error.rate":"0.005","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","mapreduce.map.cpu.vcores":"1","yarn.resourcemanager.zk-retry-interval-ms":"1000","ftp.bytes-per-checksum":"512","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.pmem-check-enabled":"true","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","fs.s3a.s3guard.cli.prune.age":"86400000","hadoop.registry.zk.root":"/registry","hadoop.jetty.logs.serve.aliases":"true","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","mapreduce.reduce.merge.inmem.threshold":"1000","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","mapreduce.job.token.tracking.ids.enabled":"false","yarn.nodemanager.localizer.client.thread-count":"5","hadoop.security.kms.client.failover.sleep.max.millis":"2000","mapreduce.jobhistory.move.thread-count":"3","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","rpc.metrics.quantile.enable":"false","mapreduce.jobtracker.expire.trackers.interval":"600000","io.bytes.per.checksum":"512","mapreduce.jobhistory.loadedjob.tasks.max":"-1","mapreduce.task.timeout":"600000","yarn.app.mapreduce.client.max-retries":"3","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","mapreduce.framework.name":"local","mapreduce.fileoutputcommitter.algorithm.version":"1","yarn.resourcemanager.connect.max-wait.ms":"900000","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","ipc.client.ping":"true","mapreduce.input.lineinputformat.linespermap":"1","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","hadoop.security.uid.cache.secs":"14400","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","mapreduce.tasktracker.dns.interface":"default","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","yarn.resourcemanager.ha.enabled":"false","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","fs.s3a.multipart.threshold":"128M","io.map.index.skip":"0","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","mapreduce.job.hdfs-servers":"${fs.defaultFS}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","mapreduce.task.merge.progress.records":"10000","map.sort.class":"org.apache.hadoop.util.QuickSort","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","fs.s3a.socket.send.buffer":"8192","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","hadoop.registry.zk.quorum":"localhost:2181","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","fs.s3a.fast.upload.active.blocks":"4","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","mapreduce.reduce.memory.mb":"-1","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","yarn.client.failover-retries-on-socket-timeouts":"0","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","hadoop.treat.subject.external":"false","mapreduce.client.completion.pollinterval":"5000","ipc.server.log.slow.rpc":"false","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10","yarn.nodemanager.vmem-pmem-ratio":"2.1"} com.nvs.core.model.PrepareExecutionWorkOrder 9 2021-01-27 13:19:43.886+00 2021-01-27 13:19:43.886+00 0 ANONYMOUS ANONYMOUS 7051 18 "customerNumber","customerName","contactLastName","contactFirstName","phone","addressLine1","addressLine2","city","state","postalCode","country","salesRepEmployeeNumber","creditLimit","customerLocation"\\r\\n com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.542+00 2021-01-28 10:28:37.542+00 0 podium podium 7052 258 0 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.543+00 2021-01-28 10:28:37.543+00 0 podium podium 7053 14 false com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.543+00 2021-01-28 10:28:37.543+00 0 podium podium 4994 137 com.nvs.core.model.meta.DataField 150 2021-01-26 10:30:53.508+00 2021-01-26 10:30:53.508+00 0 podium podium 4995 52 \N com.nvs.core.model.meta.DataField 150 2021-01-26 10:30:53.509+00 2021-01-26 10:30:53.509+00 0 podium podium 4996 50 \N com.nvs.core.model.meta.DataField 150 2021-01-26 10:30:53.51+00 2021-01-26 10:30:53.51+00 0 podium podium 4997 51 \N com.nvs.core.model.meta.DataField 150 2021-01-26 10:30:53.511+00 2021-01-26 10:30:53.511+00 0 podium podium 4998 45 \N com.nvs.core.model.meta.DataField 150 2021-01-26 10:30:53.513+00 2021-01-26 10:30:53.513+00 0 podium podium 4999 81 false com.nvs.core.model.meta.DataField 150 2021-01-26 10:30:53.513+00 2021-01-26 10:30:53.513+00 0 podium podium 5000 49 \N com.nvs.core.model.meta.DataField 150 2021-01-26 10:30:53.514+00 2021-01-26 10:30:53.514+00 0 podium podium 5001 44 \N com.nvs.core.model.meta.DataField 150 2021-01-26 10:30:53.514+00 2021-01-26 10:30:53.514+00 0 podium podium 5002 53 \N com.nvs.core.model.meta.DataField 150 2021-01-26 10:30:53.515+00 2021-01-26 10:30:53.515+00 0 podium podium 5004 293 \N com.nvs.core.model.meta.DataSource 10 2021-01-26 10:32:10.68+00 2021-01-26 10:32:10.68+00 0 podium podium 5005 288 \N com.nvs.core.model.meta.DataSource 10 2021-01-26 10:32:10.681+00 2021-01-26 10:32:10.681+00 0 podium podium 5006 77 \N com.nvs.core.model.meta.DataSource 10 2021-01-26 10:32:10.682+00 2021-01-26 10:32:10.682+00 0 podium podium 5007 73 classic-models com.nvs.core.model.meta.DataSource 10 2021-01-26 10:32:10.682+00 2021-01-26 10:32:10.682+00 0 podium podium 6513 277 true com.nvs.core.model.PrepareExecutionWorkOrder 3 2021-01-27 10:20:45.015+00 2021-01-27 10:20:45.015+00 0 podium podium 6514 127 LOCAL com.nvs.core.model.PrepareExecutionWorkOrder 3 2021-01-27 10:20:45.02+00 2021-01-27 10:20:45.02+00 0 podium podium 6515 271 2 com.nvs.core.model.PrepareExecutionWorkOrder 3 2021-01-27 10:20:45.026+00 2021-01-27 10:20:45.026+00 0 podium podium 6516 253 false com.nvs.core.model.PrepareExecutionWorkOrder 3 2021-01-27 10:20:45.031+00 2021-01-27 10:20:45.031+00 0 podium podium 6792 294 {"80":{"bad":0,"expected":0,"ugly":0,"chaffed":0,"good":3,"sample":3}} com.nvs.core.model.PrepareExecutionWorkOrder 9 2021-01-27 13:19:50.823+00 2021-01-27 13:19:50.823+00 0 ANONYMOUS ANONYMOUS 7054 28 0.00 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.544+00 2021-01-28 10:28:37.544+00 0 podium podium 7055 259 0 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.544+00 2021-01-28 10:28:37.544+00 0 podium podium 7056 12 0 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.545+00 2021-01-28 10:28:37.545+00 0 podium podium 7057 155 true com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.545+00 2021-01-28 10:28:37.545+00 0 podium podium 7058 77 \N com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.546+00 2021-01-28 10:28:37.546+00 0 podium podium 7059 152 0 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.547+00 2021-01-28 10:28:37.547+00 0 podium podium 7060 293 \N com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.547+00 2021-01-28 10:28:37.547+00 0 podium podium 7061 37 " com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.548+00 2021-01-28 10:28:37.548+00 0 podium podium 7062 21 0 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.548+00 2021-01-28 10:28:37.548+00 0 podium podium 7063 38 " com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.549+00 2021-01-28 10:28:37.549+00 0 podium podium 7064 156 true com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.549+00 2021-01-28 10:28:37.549+00 0 podium podium 7065 288 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.55+00 2021-01-28 10:28:37.55+00 0 podium podium 7066 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.55+00 2021-01-28 10:28:37.55+00 0 podium podium 7067 35 false com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.551+00 2021-01-28 10:28:37.551+00 0 podium podium 7068 202 MANAGED com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.551+00 2021-01-28 10:28:37.551+00 0 podium podium 7069 31 1 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.552+00 2021-01-28 10:28:37.552+00 0 podium podium 7070 27 UTF_8 com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.552+00 2021-01-28 10:28:37.552+00 0 podium podium 7071 33 \\r\\n com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.553+00 2021-01-28 10:28:37.553+00 0 podium podium 7072 154 false com.nvs.core.model.meta.DataEntity 21 2021-01-28 10:28:37.554+00 2021-01-28 10:28:37.554+00 0 podium podium 7073 152 0 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.773+00 2021-01-28 10:28:37.773+00 0 podium podium 7074 94 productlines com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.774+00 2021-01-28 10:28:37.774+00 0 podium podium 7075 33 \\r\\n com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.774+00 2021-01-28 10:28:37.774+00 0 podium podium 7076 38 " com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.775+00 2021-01-28 10:28:37.775+00 0 podium podium 7077 114 Snapshot com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.775+00 2021-01-28 10:28:37.775+00 0 podium podium 7078 12 0 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.776+00 2021-01-28 10:28:37.776+00 0 podium podium 7079 18 "productLine","textDescription","htmlDescription"\\r\\n com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.777+00 2021-01-28 10:28:37.777+00 0 podium podium 7080 156 true com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.777+00 2021-01-28 10:28:37.777+00 0 podium podium 7081 27 UTF_8 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.778+00 2021-01-28 10:28:37.778+00 0 podium podium 7082 202 MANAGED com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.778+00 2021-01-28 10:28:37.778+00 0 podium podium 7083 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.779+00 2021-01-28 10:28:37.779+00 0 podium podium 7084 155 true com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.78+00 2021-01-28 10:28:37.78+00 0 podium podium 7085 20 0 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.78+00 2021-01-28 10:28:37.78+00 0 podium podium 7086 153 0 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.781+00 2021-01-28 10:28:37.781+00 0 podium podium 7087 13 1 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.781+00 2021-01-28 10:28:37.781+00 0 podium podium 7088 288 \N com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.781+00 2021-01-28 10:28:37.781+00 0 podium podium 7089 37 " com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.782+00 2021-01-28 10:28:37.782+00 0 podium podium 7090 258 0 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.782+00 2021-01-28 10:28:37.782+00 0 podium podium 7091 34 , com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.783+00 2021-01-28 10:28:37.783+00 0 podium podium 7092 14 false com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.783+00 2021-01-28 10:28:37.783+00 0 podium podium 7093 259 0 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.784+00 2021-01-28 10:28:37.784+00 0 podium podium 7094 24 false com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.784+00 2021-01-28 10:28:37.784+00 0 podium podium 7095 32 262144 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.785+00 2021-01-28 10:28:37.785+00 0 podium podium 7096 154 false com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.785+00 2021-01-28 10:28:37.785+00 0 podium podium 7097 92 0 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.785+00 2021-01-28 10:28:37.785+00 0 podium podium 7098 77 \N com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.786+00 2021-01-28 10:28:37.786+00 0 podium podium 7099 17 false com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.786+00 2021-01-28 10:28:37.786+00 0 podium podium 7100 293 \N com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.787+00 2021-01-28 10:28:37.787+00 0 podium podium 7101 5 SELECT `productLine`,`textDescription`,`htmlDescription` FROM `classic-models-errors`.`productlines` com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.787+00 2021-01-28 10:28:37.787+00 0 podium podium 6517 129 76 com.nvs.core.model.PrepareExecutionWorkOrder 3 2021-01-27 10:21:16.228+00 2021-01-27 10:21:16.228+00 0 ANONYMOUS ANONYMOUS 6518 166 UNCOMPRESSED com.nvs.core.model.PrepareExecutionWorkOrder 3 2021-01-27 10:21:16.283+00 2021-01-27 10:21:16.283+00 0 ANONYMOUS ANONYMOUS 6519 128 69 com.nvs.core.model.PrepareExecutionWorkOrder 3 2021-01-27 10:21:16.345+00 2021-01-27 10:21:16.345+00 0 ANONYMOUS ANONYMOUS 6520 266 {"mapreduce.jobtracker.address":"local","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","ipc.client.connection.maxidletime":"10000","mapreduce.cluster.acls.enabled":"false","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","mapreduce.job.ubertask.maxmaps":"9","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","yarn.nodemanager.container-manager.thread-count":"20","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","fs.s3a.metadatastore.authoritative":"false","mapreduce.app-submission.cross-platform":"false","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.markreset.buffer.percent":"0.0","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","mapreduce.job.ubertask.enable":"false","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.am.max-attempts":"2","mapreduce.jobtracker.heartbeats.in.second":"100","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.security.instrumentation.requires.admin":"false","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.registry.zk.retry.ceiling.ms":"60000","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","yarn.app.mapreduce.client.job.max-retries":"3","mapreduce.jobhistory.cleaner.enable":"true","fs.s3a.s3guard.ddb.table.capacity.write":"100","ha.failover-controller.graceful-fence.connection.retries":"1","mapreduce.tasktracker.http.address":"0.0.0.0:50060","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","fs.s3a.max.total.tasks":"5","mapreduce.reduce.maxattempts":"4","mapreduce.client.submit.file.replication":"10","mapreduce.shuffle.port":"13562","yarn.resourcemanager.resource-tracker.client.thread-count":"50","yarn.fail-fast":"false","yarn.nodemanager.delete.thread-count":"4","fs.hdfs.impl.disable.cache":"true","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","s3native.client-write-packet-size":"65536","file.bytes-per-checksum":"512","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","mapreduce.jobtracker.taskcache.levels":"2","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.job.jvm.numtasks":"1","mapreduce.jobtracker.tasktracker.maxblacklists":"4","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.security.group.mapping.ldap.search.attr.member":"member","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","hadoop.security.credential.clear-text-fallback":"true","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","ha.failover-controller.new-active.rpc-timeout.ms":"60000","mapreduce.map.memory.mb":"-1","hadoop.ssl.hostname.verifier":"DEFAULT","mapreduce.tasktracker.healthchecker.interval":"60000","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","s3native.blocksize":"67108864","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","hadoop.registry.zk.retry.times":"5","mapreduce.job.running.reduce.limit":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.task.io.sort.factor":"10","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.s3a.paging.maximum":"5000","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","hadoop.shell.missing.defaultFs.warning":"true","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","fs.s3a.s3guard.ddb.background.sleep":"25","mapreduce.tasktracker.http.threads":"40","mapreduce.tasktracker.dns.nameserver":"default","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.job.maxtaskfailures.per.tracker":"3","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","mapreduce.shuffle.max.connections":"0","mapreduce.jobhistory.loadedjobs.cache.size":"5","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","mapreduce.client.output.filter":"FAILED","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","mapreduce.jobtracker.persist.jobstatus.hours":"1","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","mapreduce.job.speculative.retry-after-no-speculate":"1000","fs.s3a.attempts.maximum":"20","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","mapreduce.task.io.sort.mb":"100","yarn.app.mapreduce.client-am.ipc.max-retries":"3","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","adl.http.timeout":"5000","mapreduce.job.speculative.retry-after-speculate":"15000","mapreduce.jobtracker.restart.recover":"false","ipc.client.connect.max.retries":"10","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.security.kms.client.timeout":"60","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","yarn.resourcemanager.ha.automatic-failover.embedded":"true","hadoop.security.kms.client.failover.sleep.base.millis":"100","mapreduce.job.heap.memory-mb.ratio":"0.8","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","mapreduce.task.exit.timeout.check-interval-ms":"20000","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","yarn.resourcemanager.keytab":"/etc/krb5.keytab","mapreduce.map.log.level":"INFO","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","mapreduce.tasktracker.local.dir.minspacestart":"0","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","ha.health-monitor.check-interval.ms":"1000","mapreduce.reduce.shuffle.merge.percent":"0.66","ipc.client.connect.timeout":"20000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","yarn.nodemanager.recovery.enabled":"false","io.native.lib.available":"true","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","mapreduce.job.running.map.limit":"0","mapreduce.reduce.input.buffer.percent":"0.0","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","yarn.app.attempt.diagnostics.limit.kc":"64","hadoop.security.group.mapping.ldap.ssl":"false","fs.defaultFS":"file:///","fs.s3a.multipart.size":"64M","yarn.app.mapreduce.am.job.committer.commit-window":"10000","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.ifile.readahead":"true","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","s3native.replication":"3","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","fs.s3a.s3guard.ddb.table.create":"false","yarn.nodemanager.health-checker.interval-ms":"600000","s3.stream-buffer-size":"4096","ftp.client-write-packet-size":"65536","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","yarn.timeline-service.keytab":"/etc/krb5.keytab","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","ha.zookeeper.session-timeout.ms":"5000","fs.s3a.connection.ssl.enabled":"true","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","ipc.server.max.connections":"0","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.app.mapreduce.am.resource.mb":"1536","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","hadoop.security.groups.cache.secs":"300","mapreduce.job.speculative.minimum-allowed-tasks":"10","yarn.nodemanager.container-monitor.interval-ms":"3000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","s3.client-write-packet-size":"65536","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","mapreduce.job.reduces":"1","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","mapreduce.job.acl-modify-job":" ","hadoop.registry.zk.session.timeout.ms":"60000","fs.automatic.close":"true","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","fs.s3.block.size":"67108864","hadoop.http.authentication.token.validity":"36000","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.tasktracker.local.dir.minspacekill":"0","mapreduce.jobhistory.cleaner.interval-ms":"86400000","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","mapreduce.jobtracker.http.address":"0.0.0.0:50030","yarn.nodemanager.recovery.compaction-interval-secs":"3600","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","mapreduce.tasktracker.report.address":"127.0.0.1:0","hadoop.kerberos.kinit.command":"kinit","yarn.timeline-service.http-authentication.type":"simple","yarn.log-aggregation.retain-seconds":"-1","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","ipc.client.connect.max.retries.on.timeouts":"45","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","io.file.buffer.size":"4096","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","io.mapfile.bloom.size":"1048576","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","ipc.client.connect.retry.interval":"1000","hadoop.security.kms.client.authentication.retry-count":"1","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","yarn.app.mapreduce.shuffle.log.backups":"0","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","ftp.blocksize":"67108864","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","yarn.resourcemanager.scheduler.monitor.enable":"false","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","hadoop.http.authentication.simple.anonymous.allowed":"true","yarn.client.nodemanager-connect.retry-interval-ms":"10000","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","mapreduce.task.files.preserve.failedtasks":"false","mapreduce.job.reduce.slowstart.completedmaps":"0.05","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.jobhistory.minicluster.fixed.ports":"false","file.replication":"1","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","io.mapfile.bloom.error.rate":"0.005","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","mapreduce.map.cpu.vcores":"1","yarn.resourcemanager.zk-retry-interval-ms":"1000","ftp.bytes-per-checksum":"512","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.pmem-check-enabled":"true","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","fs.s3a.s3guard.cli.prune.age":"86400000","hadoop.registry.zk.root":"/registry","hadoop.jetty.logs.serve.aliases":"true","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","mapreduce.reduce.merge.inmem.threshold":"1000","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","mapreduce.job.token.tracking.ids.enabled":"false","yarn.nodemanager.localizer.client.thread-count":"5","hadoop.security.kms.client.failover.sleep.max.millis":"2000","mapreduce.jobhistory.move.thread-count":"3","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","rpc.metrics.quantile.enable":"false","mapreduce.jobtracker.expire.trackers.interval":"600000","io.bytes.per.checksum":"512","mapreduce.jobhistory.loadedjob.tasks.max":"-1","mapreduce.task.timeout":"600000","yarn.app.mapreduce.client.max-retries":"3","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","mapreduce.framework.name":"local","mapreduce.fileoutputcommitter.algorithm.version":"1","yarn.resourcemanager.connect.max-wait.ms":"900000","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","ipc.client.ping":"true","mapreduce.input.lineinputformat.linespermap":"1","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","hadoop.security.uid.cache.secs":"14400","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","mapreduce.tasktracker.dns.interface":"default","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","yarn.resourcemanager.ha.enabled":"false","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","fs.s3a.multipart.threshold":"128M","io.map.index.skip":"0","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","mapreduce.job.hdfs-servers":"${fs.defaultFS}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","mapreduce.task.merge.progress.records":"10000","map.sort.class":"org.apache.hadoop.util.QuickSort","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","fs.s3a.socket.send.buffer":"8192","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","hadoop.registry.zk.quorum":"localhost:2181","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","fs.s3a.fast.upload.active.blocks":"4","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","mapreduce.reduce.memory.mb":"-1","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","yarn.client.failover-retries-on-socket-timeouts":"0","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","hadoop.treat.subject.external":"false","mapreduce.client.completion.pollinterval":"5000","ipc.server.log.slow.rpc":"false","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10","yarn.nodemanager.vmem-pmem-ratio":"2.1"} com.nvs.core.model.PrepareExecutionWorkOrder 3 2021-01-27 10:21:21.431+00 2021-01-27 10:21:21.431+00 0 ANONYMOUS ANONYMOUS 6521 130 -- podium data script generator prologue\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3013) \n\npdpg_24 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/customers/20210126010000/good' AS (customerNumber:long,customerName:chararray,contactLastName:chararray,contactFirstName:chararray,phone:chararray,addressLine1:chararray,addressLine2:chararray,city:chararray,state:chararray,postalCode:chararray,country:chararray,salesRepEmployeeNumber:long,creditLimit:double,customerLocation:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3013) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3014) \n\npdpg_25 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/salesorders/20210126010000/good' AS (orderNumber:long,orderDate:chararray,requiredDate:chararray,shippedDate:chararray,status:chararray,customerNumber:long,orderLineNumber:long,priceEach:double,quantityOrdered:long,productCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3014) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3015) \n\npdpg_26 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/employees/20210126010000/good' AS (employeeNumber:long,lastName:chararray,firstName:chararray,extension:chararray,email:chararray,reportsTo:long,jobTitle:chararray,officeCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3015) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3016) \n\npdpg_27 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/products_full/20210125230000/good' AS (productCode:chararray,productName:chararray,productScale:chararray,productVendor:chararray,productDescription:chararray,quantityInStock:long,buyPrice:double,MSRP:double,productLine:chararray,textDescription:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3016) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3010) \n\npdpg_17_temp = JOIN pdpg_25 BY productCode, pdpg_27 BY productCode ;\npdpg_17 = FOREACH pdpg_17_temp GENERATE pdpg_25::orderNumber AS orderNumber, pdpg_25::orderDate AS orderDate, pdpg_25::requiredDate AS requiredDate, pdpg_25::shippedDate AS shippedDate, pdpg_25::status AS status, pdpg_25::customerNumber AS customerNumber, pdpg_25::orderLineNumber AS orderLineNumber, pdpg_25::priceEach AS priceEach, pdpg_25::quantityOrdered AS quantityOrdered, pdpg_25::productCode AS productCode, pdpg_27::productName AS productName, pdpg_27::productScale AS productScale, pdpg_27::productVendor AS productVendor, pdpg_27::productDescription AS productDescription, pdpg_27::quantityInStock AS quantityInStock, pdpg_27::buyPrice AS buyPrice, pdpg_27::MSRP AS MSRP, pdpg_27::productLine AS productLine, pdpg_27::textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3010) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3007) \n\npdpg_10 = FOREACH pdpg_17 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3007) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3011) \n\npdpg_20_temp = JOIN pdpg_10 BY customerNumber, pdpg_24 BY customerNumber ;\npdpg_20 = FOREACH pdpg_20_temp GENERATE pdpg_10::orderNumber AS orderNumber, pdpg_10::orderDate AS orderDate, pdpg_10::requiredDate AS requiredDate, pdpg_10::shippedDate AS shippedDate, pdpg_10::status AS status, pdpg_10::customerNumber AS customerNumber, pdpg_10::orderLineNumber AS orderLineNumber, pdpg_10::priceEach AS priceEach, pdpg_10::quantityOrdered AS quantityOrdered, pdpg_10::productCode AS productCode, pdpg_10::productName AS productName, pdpg_10::productScale AS productScale, pdpg_10::productVendor AS productVendor, pdpg_10::productDescription AS productDescription, pdpg_10::quantityInStock AS quantityInStock, pdpg_10::buyPrice AS buyPrice, pdpg_10::MSRP AS MSRP, pdpg_10::productLine AS productLine, pdpg_10::textDescription AS textDescription, pdpg_24::customerName AS customerName, pdpg_24::contactLastName AS contactLastName, pdpg_24::contactFirstName AS contactFirstName, pdpg_24::phone AS phone, pdpg_24::addressLine1 AS addressLine1, pdpg_24::addressLine2 AS addressLine2, pdpg_24::city AS city, pdpg_24::state AS state, pdpg_24::postalCode AS postalCode, pdpg_24::country AS country, pdpg_24::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_24::creditLimit AS creditLimit, pdpg_24::customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3011) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3008) \n\npdpg_12 = FOREACH pdpg_20 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(double) creditLimit AS creditLimit,(chararray) customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3008) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3012) \n\npdpg_23_temp = JOIN pdpg_12 BY salesRepEmployeeNumber, pdpg_26 BY employeeNumber ;\npdpg_23 = FOREACH pdpg_23_temp GENERATE pdpg_12::orderNumber AS orderNumber, pdpg_12::orderDate AS orderDate, pdpg_12::requiredDate AS requiredDate, pdpg_12::shippedDate AS shippedDate, pdpg_12::status AS status, pdpg_12::customerNumber AS customerNumber, pdpg_12::orderLineNumber AS orderLineNumber, pdpg_12::priceEach AS priceEach, pdpg_12::quantityOrdered AS quantityOrdered, pdpg_12::productCode AS productCode, pdpg_12::productName AS productName, pdpg_12::productScale AS productScale, pdpg_12::productVendor AS productVendor, pdpg_12::productDescription AS productDescription, pdpg_12::quantityInStock AS quantityInStock, pdpg_12::buyPrice AS buyPrice, pdpg_12::MSRP AS MSRP, pdpg_12::productLine AS productLine, pdpg_12::textDescription AS textDescription, pdpg_12::customerName AS customerName, pdpg_12::contactLastName AS contactLastName, pdpg_12::contactFirstName AS contactFirstName, pdpg_12::phone AS phone, pdpg_12::addressLine1 AS addressLine1, pdpg_12::addressLine2 AS addressLine2, pdpg_12::city AS city, pdpg_12::state AS state, pdpg_12::postalCode AS postalCode, pdpg_12::country AS country, pdpg_12::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_12::creditLimit AS creditLimit, pdpg_12::customerLocation AS customerLocation, pdpg_26::lastName AS lastName, pdpg_26::firstName AS firstName, pdpg_26::extension AS extension, pdpg_26::email AS email, pdpg_26::reportsTo AS reportsTo, pdpg_26::jobTitle AS jobTitle, pdpg_26::officeCode AS officeCode;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3012) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3009) \n\npdpg_14 = FOREACH pdpg_23 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(double) creditLimit AS creditLimit,(chararray) customerLocation AS customerLocation,(chararray) lastName AS lastName,(chararray) firstName AS firstName,(chararray) extension AS extension,(chararray) email AS email,(long) reportsTo AS reportsTo,(chararray) jobTitle AS jobTitle,(chararray) officeCode AS officeCode,(bigdecimal) (com.podiumdata.pigudf.number.TO_DECIMAL(priceEach * quantityOrdered)) AS orderTotal;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3009) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Store (id:3017) \n\nSTORE pdpg_14 INTO 'file:///usr/local/qdc/data/loadingdock/classic_models/salesorders_full/20210127102045' ;\n\n-- end script for com.nvs.core.model.prepare.pkg.Store (id:3017) \n\n-- podium data script generator epilogue\n com.nvs.core.model.PrepareExecutionWorkOrder 3 2021-01-27 10:21:21.445+00 2021-01-27 10:21:21.445+00 0 ANONYMOUS ANONYMOUS 6809 293 \N com.nvs.core.model.meta.DataEntity 80 2021-01-27 13:21:53.498+00 2021-01-27 13:21:53.498+00 0 podium podium 6828 127 LOCAL com.nvs.core.model.PrepareExecutionWorkOrder 10 2021-01-27 13:28:29.619+00 2021-01-27 13:28:29.619+00 0 podium podium 6829 253 false com.nvs.core.model.PrepareExecutionWorkOrder 10 2021-01-27 13:28:29.624+00 2021-01-27 13:28:29.624+00 0 podium podium 6830 277 true com.nvs.core.model.PrepareExecutionWorkOrder 10 2021-01-27 13:28:29.63+00 2021-01-27 13:28:29.63+00 0 podium podium 7102 35 false com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.787+00 2021-01-28 10:28:37.787+00 0 podium podium 7103 28 0.00 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.788+00 2021-01-28 10:28:37.788+00 0 podium podium 7104 21 0 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.789+00 2021-01-28 10:28:37.789+00 0 podium podium 7105 31 1 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.789+00 2021-01-28 10:28:37.789+00 0 podium podium 7106 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.789+00 2021-01-28 10:28:37.789+00 0 podium podium 7107 320 0 com.nvs.core.model.meta.DataEntity 20 2021-01-28 10:28:37.79+00 2021-01-28 10:28:37.79+00 0 podium podium 7108 94 employees com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.857+00 2021-01-28 10:28:37.857+00 0 podium podium 7109 32 262144 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.858+00 2021-01-28 10:28:37.858+00 0 podium podium 7110 13 1 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.858+00 2021-01-28 10:28:37.858+00 0 podium podium 7111 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.859+00 2021-01-28 10:28:37.859+00 0 podium podium 7112 35 false com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.859+00 2021-01-28 10:28:37.859+00 0 podium podium 7113 21 0 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.86+00 2021-01-28 10:28:37.86+00 0 podium podium 7114 153 0 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.86+00 2021-01-28 10:28:37.86+00 0 podium podium 7115 12 0 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.861+00 2021-01-28 10:28:37.861+00 0 podium podium 7116 114 Snapshot com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.862+00 2021-01-28 10:28:37.862+00 0 podium podium 7117 14 false com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.862+00 2021-01-28 10:28:37.862+00 0 podium podium 7118 27 UTF_8 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.863+00 2021-01-28 10:28:37.863+00 0 podium podium 7119 5 SELECT `employeeNumber`,`lastName`,`firstName`,`extension`,`email`,`reportsTo`,`jobTitle`,`officeCode` FROM `classic-models-errors`.`employees` com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.863+00 2021-01-28 10:28:37.863+00 0 podium podium 7120 37 " com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.864+00 2021-01-28 10:28:37.864+00 0 podium podium 7121 33 \\r\\n com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.864+00 2021-01-28 10:28:37.864+00 0 podium podium 7122 148 true com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.865+00 2021-01-28 10:28:37.865+00 0 podium podium 7123 34 , com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.865+00 2021-01-28 10:28:37.865+00 0 podium podium 7124 31 1 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.866+00 2021-01-28 10:28:37.866+00 0 podium podium 7125 18 "employeeNumber","lastName","firstName","extension","email","reportsTo","jobTitle","officeCode"\\r\\n com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.866+00 2021-01-28 10:28:37.866+00 0 podium podium 7126 92 0 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.867+00 2021-01-28 10:28:37.867+00 0 podium podium 7127 259 0 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.867+00 2021-01-28 10:28:37.867+00 0 podium podium 7128 258 0 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.867+00 2021-01-28 10:28:37.867+00 0 podium podium 7129 20 0 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.868+00 2021-01-28 10:28:37.868+00 0 podium podium 7130 155 true com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.868+00 2021-01-28 10:28:37.868+00 0 podium podium 7131 320 0 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.869+00 2021-01-28 10:28:37.869+00 0 podium podium 7132 156 true com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.869+00 2021-01-28 10:28:37.869+00 0 podium podium 7133 147 true com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.87+00 2021-01-28 10:28:37.87+00 0 podium podium 7134 77 \N com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.87+00 2021-01-28 10:28:37.87+00 0 podium podium 7135 293 \N com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.87+00 2021-01-28 10:28:37.87+00 0 podium podium 7136 17 false com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.871+00 2021-01-28 10:28:37.871+00 0 podium podium 7137 154 false com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.871+00 2021-01-28 10:28:37.871+00 0 podium podium 7138 152 0 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.872+00 2021-01-28 10:28:37.872+00 0 podium podium 7139 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.872+00 2021-01-28 10:28:37.872+00 0 podium podium 7140 24 false com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.873+00 2021-01-28 10:28:37.873+00 0 podium podium 7141 202 MANAGED com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.873+00 2021-01-28 10:28:37.873+00 0 podium podium 7142 38 " com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.874+00 2021-01-28 10:28:37.874+00 0 podium podium 7143 28 0.00 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.874+00 2021-01-28 10:28:37.874+00 0 podium podium 7144 288 com.nvs.core.model.meta.DataEntity 19 2021-01-28 10:28:37.874+00 2021-01-28 10:28:37.874+00 0 podium podium 7145 17 false com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.012+00 2021-01-28 10:28:38.012+00 0 podium podium 7146 155 true com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.012+00 2021-01-28 10:28:38.012+00 0 podium podium 7147 38 " com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.013+00 2021-01-28 10:28:38.013+00 0 podium podium 7148 20 0 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.013+00 2021-01-28 10:28:38.013+00 0 podium podium 7149 12 0 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.014+00 2021-01-28 10:28:38.014+00 0 podium podium 6522 294 {"76":{"bad":2473,"expected":0,"ugly":0,"chaffed":0,"good":2473,"sample":0}} com.nvs.core.model.PrepareExecutionWorkOrder 3 2021-01-27 10:21:42.79+00 2021-01-27 10:21:42.79+00 0 ANONYMOUS ANONYMOUS 6827 277 true com.nvs.core.model.prepare.Bundle 3036 2021-01-27 13:28:22.599+00 2021-01-27 13:28:22.599+00 0 podium podium 6837 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:54.999+00 2021-01-27 13:29:54.999+00 0 podium podium 6838 114 Snapshot com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55+00 2021-01-27 13:29:55+00 0 podium podium 6839 31 1 com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.001+00 2021-01-27 13:29:55.001+00 0 podium podium 6840 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.001+00 2021-01-27 13:29:55.001+00 0 podium podium 6841 293 \N com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.002+00 2021-01-27 13:29:55.002+00 0 podium podium 6842 202 MANAGED com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.002+00 2021-01-27 13:29:55.002+00 0 podium podium 6843 37 " com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.003+00 2021-01-27 13:29:55.003+00 0 podium podium 6844 33 \\n com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.003+00 2021-01-27 13:29:55.003+00 0 podium podium 6845 34 \\t com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.003+00 2021-01-27 13:29:55.003+00 0 podium podium 6846 288 com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.004+00 2021-01-27 13:29:55.004+00 0 podium podium 6847 32 262144 com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.004+00 2021-01-27 13:29:55.004+00 0 podium podium 6848 42 com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.005+00 2021-01-27 13:29:55.005+00 0 podium podium 6849 38 " com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.005+00 2021-01-27 13:29:55.005+00 0 podium podium 6850 35 false com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.006+00 2021-01-27 13:29:55.006+00 0 podium podium 6851 27 UTF_8 com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.006+00 2021-01-27 13:29:55.006+00 0 podium podium 6852 56 true com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.007+00 2021-01-27 13:29:55.007+00 0 podium podium 6853 57 true com.nvs.core.model.meta.DataEntity 81 2021-01-27 13:29:55.007+00 2021-01-27 13:29:55.007+00 0 podium podium 7150 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.014+00 2021-01-28 10:28:38.014+00 0 podium podium 7151 288 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.014+00 2021-01-28 10:28:38.014+00 0 podium podium 7152 35 false com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.015+00 2021-01-28 10:28:38.015+00 0 podium podium 7153 92 0 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.015+00 2021-01-28 10:28:38.015+00 0 podium podium 7154 147 true com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.016+00 2021-01-28 10:28:38.016+00 0 podium podium 7155 31 1 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.016+00 2021-01-28 10:28:38.016+00 0 podium podium 7156 13 1 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.017+00 2021-01-28 10:28:38.017+00 0 podium podium 7157 154 false com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.017+00 2021-01-28 10:28:38.017+00 0 podium podium 7158 293 \N com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.018+00 2021-01-28 10:28:38.018+00 0 podium podium 7159 114 Snapshot com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.018+00 2021-01-28 10:28:38.018+00 0 podium podium 7160 21 0 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.019+00 2021-01-28 10:28:38.019+00 0 podium podium 7161 18 "productCode","productName","productScale","productVendor","productDescription","quantityInStock","buyPrice","MSRP","productLine"\\r\\n com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.02+00 2021-01-28 10:28:38.02+00 0 podium podium 7162 33 \\r\\n com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.02+00 2021-01-28 10:28:38.02+00 0 podium podium 7163 320 0 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.021+00 2021-01-28 10:28:38.021+00 0 podium podium 7164 77 \N com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.022+00 2021-01-28 10:28:38.022+00 0 podium podium 7165 5 SELECT `productCode`,`productName`,`productScale`,`productVendor`,`productDescription`,`quantityInStock`,`buyPrice`,`MSRP`,`productLine` FROM `classic-models-errors`.`products` com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.023+00 2021-01-28 10:28:38.023+00 0 podium podium 7166 24 false com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.024+00 2021-01-28 10:28:38.024+00 0 podium podium 7167 37 " com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.024+00 2021-01-28 10:28:38.024+00 0 podium podium 7168 94 products com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.025+00 2021-01-28 10:28:38.025+00 0 podium podium 7169 34 , com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.027+00 2021-01-28 10:28:38.027+00 0 podium podium 7170 27 UTF_8 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.027+00 2021-01-28 10:28:38.027+00 0 podium podium 6550 277 true com.nvs.core.model.PrepareExecutionWorkOrder 4 2021-01-27 10:46:45.225+00 2021-01-27 10:46:45.225+00 0 podium podium 6551 127 LOCAL com.nvs.core.model.PrepareExecutionWorkOrder 4 2021-01-27 10:46:45.234+00 2021-01-27 10:46:45.234+00 0 podium podium 6552 271 2 com.nvs.core.model.PrepareExecutionWorkOrder 4 2021-01-27 10:46:45.243+00 2021-01-27 10:46:45.243+00 0 podium podium 6553 253 false com.nvs.core.model.PrepareExecutionWorkOrder 4 2021-01-27 10:46:45.25+00 2021-01-27 10:46:45.25+00 0 podium podium 6831 166 UNCOMPRESSED com.nvs.core.model.PrepareExecutionWorkOrder 10 2021-01-27 13:29:00.469+00 2021-01-27 13:29:00.469+00 0 ANONYMOUS ANONYMOUS 6832 128 77 com.nvs.core.model.PrepareExecutionWorkOrder 10 2021-01-27 13:29:00.509+00 2021-01-27 13:29:00.509+00 0 ANONYMOUS ANONYMOUS 6833 129 81 com.nvs.core.model.PrepareExecutionWorkOrder 10 2021-01-27 13:29:00.588+00 2021-01-27 13:29:00.588+00 0 ANONYMOUS ANONYMOUS 6834 266 {"mapreduce.jobtracker.address":"local","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","ipc.client.connection.maxidletime":"10000","mapreduce.cluster.acls.enabled":"false","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","mapreduce.job.ubertask.maxmaps":"9","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","yarn.nodemanager.container-manager.thread-count":"20","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","fs.s3a.metadatastore.authoritative":"false","mapreduce.app-submission.cross-platform":"false","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.markreset.buffer.percent":"0.0","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","mapreduce.job.ubertask.enable":"false","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.am.max-attempts":"2","mapreduce.jobtracker.heartbeats.in.second":"100","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.security.instrumentation.requires.admin":"false","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.registry.zk.retry.ceiling.ms":"60000","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","yarn.app.mapreduce.client.job.max-retries":"3","mapreduce.jobhistory.cleaner.enable":"true","fs.s3a.s3guard.ddb.table.capacity.write":"100","ha.failover-controller.graceful-fence.connection.retries":"1","mapreduce.tasktracker.http.address":"0.0.0.0:50060","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","fs.s3a.max.total.tasks":"5","mapreduce.reduce.maxattempts":"4","mapreduce.client.submit.file.replication":"10","mapreduce.shuffle.port":"13562","yarn.resourcemanager.resource-tracker.client.thread-count":"50","yarn.fail-fast":"false","yarn.nodemanager.delete.thread-count":"4","fs.hdfs.impl.disable.cache":"true","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","s3native.client-write-packet-size":"65536","file.bytes-per-checksum":"512","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","mapreduce.jobtracker.taskcache.levels":"2","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.job.jvm.numtasks":"1","mapreduce.jobtracker.tasktracker.maxblacklists":"4","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.security.group.mapping.ldap.search.attr.member":"member","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","hadoop.security.credential.clear-text-fallback":"true","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","ha.failover-controller.new-active.rpc-timeout.ms":"60000","mapreduce.map.memory.mb":"-1","hadoop.ssl.hostname.verifier":"DEFAULT","mapreduce.tasktracker.healthchecker.interval":"60000","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","s3native.blocksize":"67108864","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","hadoop.registry.zk.retry.times":"5","mapreduce.job.running.reduce.limit":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.task.io.sort.factor":"10","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.s3a.paging.maximum":"5000","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","hadoop.shell.missing.defaultFs.warning":"true","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","fs.s3a.s3guard.ddb.background.sleep":"25","mapreduce.tasktracker.http.threads":"40","mapreduce.tasktracker.dns.nameserver":"default","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.job.maxtaskfailures.per.tracker":"3","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","mapreduce.shuffle.max.connections":"0","mapreduce.jobhistory.loadedjobs.cache.size":"5","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","mapreduce.client.output.filter":"FAILED","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","mapreduce.jobtracker.persist.jobstatus.hours":"1","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","mapreduce.job.speculative.retry-after-no-speculate":"1000","fs.s3a.attempts.maximum":"20","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","mapreduce.task.io.sort.mb":"100","yarn.app.mapreduce.client-am.ipc.max-retries":"3","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","adl.http.timeout":"5000","mapreduce.job.speculative.retry-after-speculate":"15000","mapreduce.jobtracker.restart.recover":"false","ipc.client.connect.max.retries":"10","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.security.kms.client.timeout":"60","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","yarn.resourcemanager.ha.automatic-failover.embedded":"true","hadoop.security.kms.client.failover.sleep.base.millis":"100","mapreduce.job.heap.memory-mb.ratio":"0.8","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","mapreduce.task.exit.timeout.check-interval-ms":"20000","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","yarn.resourcemanager.keytab":"/etc/krb5.keytab","mapreduce.map.log.level":"INFO","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","mapreduce.tasktracker.local.dir.minspacestart":"0","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","ha.health-monitor.check-interval.ms":"1000","mapreduce.reduce.shuffle.merge.percent":"0.66","ipc.client.connect.timeout":"20000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","yarn.nodemanager.recovery.enabled":"false","io.native.lib.available":"true","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","mapreduce.job.running.map.limit":"0","mapreduce.reduce.input.buffer.percent":"0.0","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","yarn.app.attempt.diagnostics.limit.kc":"64","hadoop.security.group.mapping.ldap.ssl":"false","fs.defaultFS":"file:///","fs.s3a.multipart.size":"64M","yarn.app.mapreduce.am.job.committer.commit-window":"10000","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.ifile.readahead":"true","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","s3native.replication":"3","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","fs.s3a.s3guard.ddb.table.create":"false","yarn.nodemanager.health-checker.interval-ms":"600000","s3.stream-buffer-size":"4096","ftp.client-write-packet-size":"65536","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","yarn.timeline-service.keytab":"/etc/krb5.keytab","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","ha.zookeeper.session-timeout.ms":"5000","fs.s3a.connection.ssl.enabled":"true","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","ipc.server.max.connections":"0","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.app.mapreduce.am.resource.mb":"1536","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","hadoop.security.groups.cache.secs":"300","mapreduce.job.speculative.minimum-allowed-tasks":"10","yarn.nodemanager.container-monitor.interval-ms":"3000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","s3.client-write-packet-size":"65536","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","mapreduce.job.reduces":"1","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","mapreduce.job.acl-modify-job":" ","hadoop.registry.zk.session.timeout.ms":"60000","fs.automatic.close":"true","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","fs.s3.block.size":"67108864","hadoop.http.authentication.token.validity":"36000","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.tasktracker.local.dir.minspacekill":"0","mapreduce.jobhistory.cleaner.interval-ms":"86400000","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","mapreduce.jobtracker.http.address":"0.0.0.0:50030","yarn.nodemanager.recovery.compaction-interval-secs":"3600","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","mapreduce.tasktracker.report.address":"127.0.0.1:0","hadoop.kerberos.kinit.command":"kinit","yarn.timeline-service.http-authentication.type":"simple","yarn.log-aggregation.retain-seconds":"-1","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","ipc.client.connect.max.retries.on.timeouts":"45","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","io.file.buffer.size":"4096","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","io.mapfile.bloom.size":"1048576","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","ipc.client.connect.retry.interval":"1000","hadoop.security.kms.client.authentication.retry-count":"1","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","yarn.app.mapreduce.shuffle.log.backups":"0","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","ftp.blocksize":"67108864","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","yarn.resourcemanager.scheduler.monitor.enable":"false","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","hadoop.http.authentication.simple.anonymous.allowed":"true","yarn.client.nodemanager-connect.retry-interval-ms":"10000","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","mapreduce.task.files.preserve.failedtasks":"false","mapreduce.job.reduce.slowstart.completedmaps":"0.05","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.jobhistory.minicluster.fixed.ports":"false","file.replication":"1","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","io.mapfile.bloom.error.rate":"0.005","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","mapreduce.map.cpu.vcores":"1","yarn.resourcemanager.zk-retry-interval-ms":"1000","ftp.bytes-per-checksum":"512","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.pmem-check-enabled":"true","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","fs.s3a.s3guard.cli.prune.age":"86400000","hadoop.registry.zk.root":"/registry","hadoop.jetty.logs.serve.aliases":"true","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","mapreduce.reduce.merge.inmem.threshold":"1000","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","mapreduce.job.token.tracking.ids.enabled":"false","yarn.nodemanager.localizer.client.thread-count":"5","hadoop.security.kms.client.failover.sleep.max.millis":"2000","mapreduce.jobhistory.move.thread-count":"3","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","rpc.metrics.quantile.enable":"false","mapreduce.jobtracker.expire.trackers.interval":"600000","io.bytes.per.checksum":"512","mapreduce.jobhistory.loadedjob.tasks.max":"-1","mapreduce.task.timeout":"600000","yarn.app.mapreduce.client.max-retries":"3","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","mapreduce.framework.name":"local","mapreduce.fileoutputcommitter.algorithm.version":"1","yarn.resourcemanager.connect.max-wait.ms":"900000","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","ipc.client.ping":"true","mapreduce.input.lineinputformat.linespermap":"1","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","hadoop.security.uid.cache.secs":"14400","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","mapreduce.tasktracker.dns.interface":"default","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","yarn.resourcemanager.ha.enabled":"false","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","fs.s3a.multipart.threshold":"128M","io.map.index.skip":"0","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","mapreduce.job.hdfs-servers":"${fs.defaultFS}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","mapreduce.task.merge.progress.records":"10000","map.sort.class":"org.apache.hadoop.util.QuickSort","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","fs.s3a.socket.send.buffer":"8192","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","hadoop.registry.zk.quorum":"localhost:2181","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","fs.s3a.fast.upload.active.blocks":"4","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","mapreduce.reduce.memory.mb":"-1","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","yarn.client.failover-retries-on-socket-timeouts":"0","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","hadoop.treat.subject.external":"false","mapreduce.client.completion.pollinterval":"5000","ipc.server.log.slow.rpc":"false","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10","yarn.nodemanager.vmem-pmem-ratio":"2.1"} com.nvs.core.model.PrepareExecutionWorkOrder 10 2021-01-27 13:29:05.707+00 2021-01-27 13:29:05.707+00 0 ANONYMOUS ANONYMOUS 6835 130 -- podium data script generator prologue\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3039) \n\npdpg_59 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/salesorders_full/20210127090000/good' AS (orderNumber:long,orderDate:chararray,requiredDate:chararray,shippedDate:chararray,status:chararray,customerNumber:long,orderLineNumber:long,priceEach:double,quantityOrdered:long,productCode:chararray,productName:chararray,productScale:chararray,productVendor:chararray,productDescription:chararray,quantityInStock:long,buyPrice:double,MSRP:double,productLine:chararray,textDescription:chararray,customerName:chararray,contactLastName:chararray,contactFirstName:chararray,phone:chararray,addressLine1:chararray,addressLine2:chararray,city:chararray,state:chararray,postalCode:chararray,country:chararray,salesRepEmployeeNumber:long,creditLimit:double,customerLocation:chararray,lastName:chararray,firstName:chararray,extension:chararray,email:chararray,reportsTo:long,jobTitle:chararray,officeCode:chararray,orderTotal:bigdecimal);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3039) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Aggregator (id:3038) \n\npdpg_58_temp = GROUP pdpg_59 BY (customerNumber, productScale) ;\npdpg_58 = FOREACH pdpg_58_temp GENERATE group.customerNumber AS customerNumber, group.productScale AS productScale, SUM(pdpg_59.orderTotal) AS orderTotal;\n\n-- end script for com.nvs.core.model.prepare.pkg.Aggregator (id:3038) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3037) \n\npdpg_56 = FOREACH pdpg_58 GENERATE (long) customerNumber AS customerNumber,(chararray) productScale AS productScale,(bigdecimal) orderTotal AS orderTotal;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3037) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Store (id:3040) \n\nSTORE pdpg_56 INTO 'file:///usr/local/qdc/data/loadingdock/classic_models/salesorder_by_customer_productscale/20210127130000' ;\n\n-- end script for com.nvs.core.model.prepare.pkg.Store (id:3040) \n\n-- podium data script generator epilogue\n com.nvs.core.model.PrepareExecutionWorkOrder 10 2021-01-27 13:29:05.729+00 2021-01-27 13:29:05.729+00 0 ANONYMOUS ANONYMOUS 7171 14 false com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.028+00 2021-01-28 10:28:38.028+00 0 podium podium 7172 202 MANAGED com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.028+00 2021-01-28 10:28:38.028+00 0 podium podium 7173 153 0 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.029+00 2021-01-28 10:28:38.029+00 0 podium podium 7174 152 0 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.03+00 2021-01-28 10:28:38.03+00 0 podium podium 7175 156 true com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.03+00 2021-01-28 10:28:38.03+00 0 podium podium 7176 259 0 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.031+00 2021-01-28 10:28:38.031+00 0 podium podium 7177 32 262144 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.031+00 2021-01-28 10:28:38.031+00 0 podium podium 7178 258 0 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.032+00 2021-01-28 10:28:38.032+00 0 podium podium 7179 28 0.00 com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.032+00 2021-01-28 10:28:38.032+00 0 podium podium 7180 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 16 2021-01-28 10:28:38.033+00 2021-01-28 10:28:38.033+00 0 podium podium 5253 50 \N com.nvs.core.model.meta.DataField 567 2021-01-26 10:32:10.851+00 2021-01-26 10:32:10.851+00 0 podium podium 5254 49 \N com.nvs.core.model.meta.DataField 571 2021-01-26 10:32:10.851+00 2021-01-26 10:32:10.851+00 0 podium podium 5255 52 \N com.nvs.core.model.meta.DataField 566 2021-01-26 10:32:10.852+00 2021-01-26 10:32:10.852+00 0 podium podium 5256 51 100 com.nvs.core.model.meta.DataField 591 2021-01-26 10:32:10.852+00 2021-01-26 10:32:10.852+00 0 podium podium 5257 81 false com.nvs.core.model.meta.DataField 589 2021-01-26 10:32:10.853+00 2021-01-26 10:32:10.853+00 0 podium podium 5258 81 false com.nvs.core.model.meta.DataField 574 2021-01-26 10:32:10.853+00 2021-01-26 10:32:10.853+00 0 podium podium 5259 49 \N com.nvs.core.model.meta.DataField 589 2021-01-26 10:32:10.854+00 2021-01-26 10:32:10.854+00 0 podium podium 5260 49 \N com.nvs.core.model.meta.DataField 567 2021-01-26 10:32:10.854+00 2021-01-26 10:32:10.854+00 0 podium podium 5261 52 \N com.nvs.core.model.meta.DataField 603 2021-01-26 10:32:10.855+00 2021-01-26 10:32:10.855+00 0 podium podium 5262 45 \N com.nvs.core.model.meta.DataField 586 2021-01-26 10:32:10.855+00 2021-01-26 10:32:10.855+00 0 podium podium 5263 50 \N com.nvs.core.model.meta.DataField 570 2021-01-26 10:32:10.856+00 2021-01-26 10:32:10.856+00 0 podium podium 5264 53 \N com.nvs.core.model.meta.DataField 586 2021-01-26 10:32:10.856+00 2021-01-26 10:32:10.856+00 0 podium podium 5265 44 \N com.nvs.core.model.meta.DataField 581 2021-01-26 10:32:10.857+00 2021-01-26 10:32:10.857+00 0 podium podium 5266 81 false com.nvs.core.model.meta.DataField 560 2021-01-26 10:32:10.857+00 2021-01-26 10:32:10.857+00 0 podium podium 5267 81 false com.nvs.core.model.meta.DataField 570 2021-01-26 10:32:10.858+00 2021-01-26 10:32:10.858+00 0 podium podium 5268 49 \N com.nvs.core.model.meta.DataField 576 2021-01-26 10:32:10.858+00 2021-01-26 10:32:10.858+00 0 podium podium 5269 52 \N com.nvs.core.model.meta.DataField 576 2021-01-26 10:32:10.859+00 2021-01-26 10:32:10.859+00 0 podium podium 5270 51 50 com.nvs.core.model.meta.DataField 577 2021-01-26 10:32:10.859+00 2021-01-26 10:32:10.859+00 0 podium podium 5271 50 \N com.nvs.core.model.meta.DataField 574 2021-01-26 10:32:10.86+00 2021-01-26 10:32:10.86+00 0 podium podium 5272 52 \N com.nvs.core.model.meta.DataField 569 2021-01-26 10:32:10.86+00 2021-01-26 10:32:10.86+00 0 podium podium 5273 52 \N com.nvs.core.model.meta.DataField 567 2021-01-26 10:32:10.86+00 2021-01-26 10:32:10.86+00 0 podium podium 5274 52 \N com.nvs.core.model.meta.DataField 574 2021-01-26 10:32:10.861+00 2021-01-26 10:32:10.861+00 0 podium podium 5275 49 \N com.nvs.core.model.meta.DataField 603 2021-01-26 10:32:10.861+00 2021-01-26 10:32:10.861+00 0 podium podium 5276 52 \N com.nvs.core.model.meta.DataField 549 2021-01-26 10:32:10.862+00 2021-01-26 10:32:10.862+00 0 podium podium 5277 44 \N com.nvs.core.model.meta.DataField 603 2021-01-26 10:32:10.862+00 2021-01-26 10:32:10.862+00 0 podium podium 5278 52 \N com.nvs.core.model.meta.DataField 592 2021-01-26 10:32:10.863+00 2021-01-26 10:32:10.863+00 0 podium podium 5279 53 \N com.nvs.core.model.meta.DataField 559 2021-01-26 10:32:10.863+00 2021-01-26 10:32:10.863+00 0 podium podium 5281 134 VARCHAR(50) com.nvs.core.model.meta.DataField 604 2021-01-26 10:32:10.864+00 2021-01-26 10:32:10.864+00 0 podium podium 5282 50 \N com.nvs.core.model.meta.DataField 590 2021-01-26 10:32:10.865+00 2021-01-26 10:32:10.865+00 0 podium podium 5283 45 \N com.nvs.core.model.meta.DataField 552 2021-01-26 10:32:10.866+00 2021-01-26 10:32:10.866+00 0 podium podium 5284 51 10 com.nvs.core.model.meta.DataField 566 2021-01-26 10:32:10.866+00 2021-01-26 10:32:10.866+00 0 podium podium 5285 53 \N com.nvs.core.model.meta.DataField 600 2021-01-26 10:32:10.867+00 2021-01-26 10:32:10.867+00 0 podium podium 5286 134 VARCHAR(50) com.nvs.core.model.meta.DataField 597 2021-01-26 10:32:10.867+00 2021-01-26 10:32:10.867+00 0 podium podium 5287 45 \N com.nvs.core.model.meta.DataField 570 2021-01-26 10:32:10.868+00 2021-01-26 10:32:10.868+00 0 podium podium 5288 50 \N com.nvs.core.model.meta.DataField 595 2021-01-26 10:32:10.868+00 2021-01-26 10:32:10.868+00 0 podium podium 5289 45 \N com.nvs.core.model.meta.DataField 585 2021-01-26 10:32:10.869+00 2021-01-26 10:32:10.869+00 0 podium podium 5290 51 \N com.nvs.core.model.meta.DataField 551 2021-01-26 10:32:10.869+00 2021-01-26 10:32:10.869+00 0 podium podium 5291 49 \N com.nvs.core.model.meta.DataField 565 2021-01-26 10:32:10.87+00 2021-01-26 10:32:10.87+00 0 podium podium 5292 44 \N com.nvs.core.model.meta.DataField 568 2021-01-26 10:32:10.87+00 2021-01-26 10:32:10.87+00 0 podium podium 5293 52 \N com.nvs.core.model.meta.DataField 594 2021-01-26 10:32:10.871+00 2021-01-26 10:32:10.871+00 0 podium podium 5294 45 \N com.nvs.core.model.meta.DataField 560 2021-01-26 10:32:10.871+00 2021-01-26 10:32:10.871+00 0 podium podium 5295 44 \N com.nvs.core.model.meta.DataField 549 2021-01-26 10:32:10.871+00 2021-01-26 10:32:10.871+00 0 podium podium 5296 49 \N com.nvs.core.model.meta.DataField 593 2021-01-26 10:32:10.872+00 2021-01-26 10:32:10.872+00 0 podium podium 5297 50 \N com.nvs.core.model.meta.DataField 551 2021-01-26 10:32:10.872+00 2021-01-26 10:32:10.872+00 0 podium podium 5298 51 4000 com.nvs.core.model.meta.DataField 600 2021-01-26 10:32:10.873+00 2021-01-26 10:32:10.873+00 0 podium podium 5299 53 \N com.nvs.core.model.meta.DataField 561 2021-01-26 10:32:10.873+00 2021-01-26 10:32:10.873+00 0 podium podium 5300 44 \N com.nvs.core.model.meta.DataField 592 2021-01-26 10:32:10.874+00 2021-01-26 10:32:10.874+00 0 podium podium 5302 53 \N com.nvs.core.model.meta.DataField 584 2021-01-26 10:32:10.875+00 2021-01-26 10:32:10.875+00 0 podium podium 5303 44 \N com.nvs.core.model.meta.DataField 577 2021-01-26 10:32:10.875+00 2021-01-26 10:32:10.875+00 0 podium podium 5304 44 \N com.nvs.core.model.meta.DataField 584 2021-01-26 10:32:10.876+00 2021-01-26 10:32:10.876+00 0 podium podium 5305 53 \N com.nvs.core.model.meta.DataField 590 2021-01-26 10:32:10.876+00 2021-01-26 10:32:10.876+00 0 podium podium 5306 45 \N com.nvs.core.model.meta.DataField 588 2021-01-26 10:32:10.877+00 2021-01-26 10:32:10.877+00 0 podium podium 5307 49 \N com.nvs.core.model.meta.DataField 549 2021-01-26 10:32:10.877+00 2021-01-26 10:32:10.877+00 0 podium podium 5308 53 \N com.nvs.core.model.meta.DataField 580 2021-01-26 10:32:10.878+00 2021-01-26 10:32:10.878+00 0 podium podium 5309 81 false com.nvs.core.model.meta.DataField 606 2021-01-26 10:32:10.878+00 2021-01-26 10:32:10.878+00 0 podium podium 5310 81 false com.nvs.core.model.meta.DataField 579 2021-01-26 10:32:10.878+00 2021-01-26 10:32:10.878+00 0 podium podium 5311 45 \N com.nvs.core.model.meta.DataField 572 2021-01-26 10:32:10.879+00 2021-01-26 10:32:10.879+00 0 podium podium 5312 50 \N com.nvs.core.model.meta.DataField 555 2021-01-26 10:32:10.879+00 2021-01-26 10:32:10.879+00 0 podium podium 5313 44 \N com.nvs.core.model.meta.DataField 599 2021-01-26 10:32:10.88+00 2021-01-26 10:32:10.88+00 0 podium podium 5314 44 \N com.nvs.core.model.meta.DataField 555 2021-01-26 10:32:10.88+00 2021-01-26 10:32:10.88+00 0 podium podium 5315 50 \N com.nvs.core.model.meta.DataField 599 2021-01-26 10:32:10.881+00 2021-01-26 10:32:10.881+00 0 podium podium 5316 50 \N com.nvs.core.model.meta.DataField 562 2021-01-26 10:32:10.881+00 2021-01-26 10:32:10.881+00 0 podium podium 5317 51 10 com.nvs.core.model.meta.DataField 550 2021-01-26 10:32:10.882+00 2021-01-26 10:32:10.882+00 0 podium podium 5318 45 \N com.nvs.core.model.meta.DataField 556 2021-01-26 10:32:10.882+00 2021-01-26 10:32:10.882+00 0 podium podium 5319 53 \N com.nvs.core.model.meta.DataField 594 2021-01-26 10:32:10.883+00 2021-01-26 10:32:10.883+00 0 podium podium 5320 134 VARCHAR(50) com.nvs.core.model.meta.DataField 581 2021-01-26 10:32:10.883+00 2021-01-26 10:32:10.883+00 0 podium podium 5321 49 \N com.nvs.core.model.meta.DataField 585 2021-01-26 10:32:10.884+00 2021-01-26 10:32:10.884+00 0 podium podium 5322 81 false com.nvs.core.model.meta.DataField 563 2021-01-26 10:32:10.884+00 2021-01-26 10:32:10.884+00 0 podium podium 5323 49 \N com.nvs.core.model.meta.DataField 563 2021-01-26 10:32:10.885+00 2021-01-26 10:32:10.885+00 0 podium podium 5324 45 \N com.nvs.core.model.meta.DataField 602 2021-01-26 10:32:10.885+00 2021-01-26 10:32:10.885+00 0 podium podium 5325 45 \N com.nvs.core.model.meta.DataField 557 2021-01-26 10:32:10.886+00 2021-01-26 10:32:10.886+00 0 podium podium 5326 53 \N com.nvs.core.model.meta.DataField 575 2021-01-26 10:32:10.886+00 2021-01-26 10:32:10.886+00 0 podium podium 5327 49 \N com.nvs.core.model.meta.DataField 583 2021-01-26 10:32:10.887+00 2021-01-26 10:32:10.887+00 0 podium podium 5328 44 \N com.nvs.core.model.meta.DataField 575 2021-01-26 10:32:10.887+00 2021-01-26 10:32:10.887+00 0 podium podium 5329 45 \N com.nvs.core.model.meta.DataField 549 2021-01-26 10:32:10.888+00 2021-01-26 10:32:10.888+00 0 podium podium 5330 52 \N com.nvs.core.model.meta.DataField 590 2021-01-26 10:32:10.888+00 2021-01-26 10:32:10.888+00 0 podium podium 5331 50 \N com.nvs.core.model.meta.DataField 549 2021-01-26 10:32:10.889+00 2021-01-26 10:32:10.889+00 0 podium podium 5332 50 \N com.nvs.core.model.meta.DataField 597 2021-01-26 10:32:10.889+00 2021-01-26 10:32:10.889+00 0 podium podium 5333 81 false com.nvs.core.model.meta.DataField 601 2021-01-26 10:32:10.89+00 2021-01-26 10:32:10.89+00 0 podium podium 5334 134 VARCHAR(50) com.nvs.core.model.meta.DataField 555 2021-01-26 10:32:10.89+00 2021-01-26 10:32:10.89+00 0 podium podium 5335 44 \N com.nvs.core.model.meta.DataField 559 2021-01-26 10:32:10.891+00 2021-01-26 10:32:10.891+00 0 podium podium 5336 53 \N com.nvs.core.model.meta.DataField 599 2021-01-26 10:32:10.891+00 2021-01-26 10:32:10.891+00 0 podium podium 5337 50 \N com.nvs.core.model.meta.DataField 565 2021-01-26 10:32:10.892+00 2021-01-26 10:32:10.892+00 0 podium podium 5338 49 \N com.nvs.core.model.meta.DataField 600 2021-01-26 10:32:10.892+00 2021-01-26 10:32:10.892+00 0 podium podium 5339 53 \N com.nvs.core.model.meta.DataField 568 2021-01-26 10:32:10.892+00 2021-01-26 10:32:10.892+00 0 podium podium 5340 52 \N com.nvs.core.model.meta.DataField 565 2021-01-26 10:32:10.893+00 2021-01-26 10:32:10.893+00 0 podium podium 5342 51 10 com.nvs.core.model.meta.DataField 601 2021-01-26 10:32:10.894+00 2021-01-26 10:32:10.894+00 0 podium podium 5343 52 \N com.nvs.core.model.meta.DataField 550 2021-01-26 10:32:10.894+00 2021-01-26 10:32:10.894+00 0 podium podium 5344 51 \N com.nvs.core.model.meta.DataField 606 2021-01-26 10:32:10.895+00 2021-01-26 10:32:10.895+00 0 podium podium 5345 51 50 com.nvs.core.model.meta.DataField 605 2021-01-26 10:32:10.896+00 2021-01-26 10:32:10.896+00 0 podium podium 5346 45 \N com.nvs.core.model.meta.DataField 603 2021-01-26 10:32:10.896+00 2021-01-26 10:32:10.896+00 0 podium podium 5347 134 VARCHAR(50) com.nvs.core.model.meta.DataField 570 2021-01-26 10:32:10.896+00 2021-01-26 10:32:10.896+00 0 podium podium 5348 50 \N com.nvs.core.model.meta.DataField 571 2021-01-26 10:32:10.897+00 2021-01-26 10:32:10.897+00 0 podium podium 5349 52 \N com.nvs.core.model.meta.DataField 582 2021-01-26 10:32:10.897+00 2021-01-26 10:32:10.897+00 0 podium podium 5350 81 false com.nvs.core.model.meta.DataField 581 2021-01-26 10:32:10.898+00 2021-01-26 10:32:10.898+00 0 podium podium 5351 44 \N com.nvs.core.model.meta.DataField 589 2021-01-26 10:32:10.898+00 2021-01-26 10:32:10.898+00 0 podium podium 5352 50 \N com.nvs.core.model.meta.DataField 586 2021-01-26 10:32:10.899+00 2021-01-26 10:32:10.899+00 0 podium podium 5353 81 false com.nvs.core.model.meta.DataField 571 2021-01-26 10:32:10.899+00 2021-01-26 10:32:10.899+00 0 podium podium 5354 51 \N com.nvs.core.model.meta.DataField 554 2021-01-26 10:32:10.9+00 2021-01-26 10:32:10.9+00 0 podium podium 5355 45 \N com.nvs.core.model.meta.DataField 589 2021-01-26 10:32:10.9+00 2021-01-26 10:32:10.9+00 0 podium podium 5356 45 \N com.nvs.core.model.meta.DataField 582 2021-01-26 10:32:10.901+00 2021-01-26 10:32:10.901+00 0 podium podium 5357 52 \N com.nvs.core.model.meta.DataField 562 2021-01-26 10:32:10.901+00 2021-01-26 10:32:10.901+00 0 podium podium 5358 134 VARCHAR(50) com.nvs.core.model.meta.DataField 563 2021-01-26 10:32:10.902+00 2021-01-26 10:32:10.902+00 0 podium podium 5359 81 false com.nvs.core.model.meta.DataField 556 2021-01-26 10:32:10.902+00 2021-01-26 10:32:10.902+00 0 podium podium 5360 52 \N com.nvs.core.model.meta.DataField 553 2021-01-26 10:32:10.903+00 2021-01-26 10:32:10.903+00 0 podium podium 5361 45 \N com.nvs.core.model.meta.DataField 573 2021-01-26 10:32:10.903+00 2021-01-26 10:32:10.903+00 0 podium podium 5362 50 \N com.nvs.core.model.meta.DataField 592 2021-01-26 10:32:10.903+00 2021-01-26 10:32:10.903+00 0 podium podium 5363 50 \N com.nvs.core.model.meta.DataField 605 2021-01-26 10:32:10.904+00 2021-01-26 10:32:10.904+00 0 podium podium 5364 45 \N com.nvs.core.model.meta.DataField 554 2021-01-26 10:32:10.904+00 2021-01-26 10:32:10.904+00 0 podium podium 5365 51 50 com.nvs.core.model.meta.DataField 564 2021-01-26 10:32:10.905+00 2021-01-26 10:32:10.905+00 0 podium podium 5366 44 \N com.nvs.core.model.meta.DataField 571 2021-01-26 10:32:10.905+00 2021-01-26 10:32:10.905+00 0 podium podium 5367 52 \N com.nvs.core.model.meta.DataField 572 2021-01-26 10:32:10.906+00 2021-01-26 10:32:10.906+00 0 podium podium 5368 134 VARCHAR(50) com.nvs.core.model.meta.DataField 602 2021-01-26 10:32:10.906+00 2021-01-26 10:32:10.906+00 0 podium podium 5369 44 \N com.nvs.core.model.meta.DataField 570 2021-01-26 10:32:10.907+00 2021-01-26 10:32:10.907+00 0 podium podium 5370 45 \N com.nvs.core.model.meta.DataField 605 2021-01-26 10:32:10.907+00 2021-01-26 10:32:10.907+00 0 podium podium 5371 81 false com.nvs.core.model.meta.DataField 586 2021-01-26 10:32:10.908+00 2021-01-26 10:32:10.908+00 0 podium podium 5372 81 false com.nvs.core.model.meta.DataField 598 2021-01-26 10:32:10.908+00 2021-01-26 10:32:10.908+00 0 podium podium 5373 53 \N com.nvs.core.model.meta.DataField 574 2021-01-26 10:32:10.909+00 2021-01-26 10:32:10.909+00 0 podium podium 5374 49 \N com.nvs.core.model.meta.DataField 577 2021-01-26 10:32:10.909+00 2021-01-26 10:32:10.909+00 0 podium podium 5375 45 \N com.nvs.core.model.meta.DataField 583 2021-01-26 10:32:10.91+00 2021-01-26 10:32:10.91+00 0 podium podium 5376 134 VARCHAR(50) com.nvs.core.model.meta.DataField 557 2021-01-26 10:32:10.91+00 2021-01-26 10:32:10.91+00 0 podium podium 5377 44 \N com.nvs.core.model.meta.DataField 556 2021-01-26 10:32:10.911+00 2021-01-26 10:32:10.911+00 0 podium podium 5378 51 50 com.nvs.core.model.meta.DataField 597 2021-01-26 10:32:10.911+00 2021-01-26 10:32:10.911+00 0 podium podium 5379 134 VARCHAR(50) com.nvs.core.model.meta.DataField 549 2021-01-26 10:32:10.912+00 2021-01-26 10:32:10.912+00 0 podium podium 5380 51 15 com.nvs.core.model.meta.DataField 565 2021-01-26 10:32:10.912+00 2021-01-26 10:32:10.912+00 0 podium podium 5381 50 \N com.nvs.core.model.meta.DataField 584 2021-01-26 10:32:10.913+00 2021-01-26 10:32:10.913+00 0 podium podium 5382 134 VARCHAR(10) com.nvs.core.model.meta.DataField 566 2021-01-26 10:32:10.913+00 2021-01-26 10:32:10.913+00 0 podium podium 5383 81 false com.nvs.core.model.meta.DataField 592 2021-01-26 10:32:10.913+00 2021-01-26 10:32:10.913+00 0 podium podium 5384 45 \N com.nvs.core.model.meta.DataField 550 2021-01-26 10:32:10.914+00 2021-01-26 10:32:10.914+00 0 podium podium 5385 134 VARCHAR(50) com.nvs.core.model.meta.DataField 568 2021-01-26 10:32:10.914+00 2021-01-26 10:32:10.914+00 0 podium podium 5386 44 \N com.nvs.core.model.meta.DataField 580 2021-01-26 10:32:10.915+00 2021-01-26 10:32:10.915+00 0 podium podium 5387 81 false com.nvs.core.model.meta.DataField 585 2021-01-26 10:32:10.915+00 2021-01-26 10:32:10.915+00 0 podium podium 5388 51 \N com.nvs.core.model.meta.DataField 572 2021-01-26 10:32:10.916+00 2021-01-26 10:32:10.916+00 0 podium podium 5389 49 \N com.nvs.core.model.meta.DataField 582 2021-01-26 10:32:10.916+00 2021-01-26 10:32:10.916+00 0 podium podium 5390 51 \N com.nvs.core.model.meta.DataField 560 2021-01-26 10:32:10.917+00 2021-01-26 10:32:10.917+00 0 podium podium 5391 49 \N com.nvs.core.model.meta.DataField 574 2021-01-26 10:32:10.917+00 2021-01-26 10:32:10.917+00 0 podium podium 5392 49 \N com.nvs.core.model.meta.DataField 559 2021-01-26 10:32:10.918+00 2021-01-26 10:32:10.918+00 0 podium podium 5393 45 \N com.nvs.core.model.meta.DataField 599 2021-01-26 10:32:10.918+00 2021-01-26 10:32:10.918+00 0 podium podium 5394 51 21845 com.nvs.core.model.meta.DataField 595 2021-01-26 10:32:10.919+00 2021-01-26 10:32:10.919+00 0 podium podium 5395 53 \N com.nvs.core.model.meta.DataField 572 2021-01-26 10:32:10.919+00 2021-01-26 10:32:10.919+00 0 podium podium 5396 52 \N com.nvs.core.model.meta.DataField 563 2021-01-26 10:32:10.92+00 2021-01-26 10:32:10.92+00 0 podium podium 5397 49 \N com.nvs.core.model.meta.DataField 564 2021-01-26 10:32:10.92+00 2021-01-26 10:32:10.92+00 0 podium podium 5398 44 \N com.nvs.core.model.meta.DataField 602 2021-01-26 10:32:10.921+00 2021-01-26 10:32:10.921+00 0 podium podium 5399 51 50 com.nvs.core.model.meta.DataField 586 2021-01-26 10:32:10.921+00 2021-01-26 10:32:10.921+00 0 podium podium 5400 50 \N com.nvs.core.model.meta.DataField 596 2021-01-26 10:32:10.921+00 2021-01-26 10:32:10.921+00 0 podium podium 5401 45 \N com.nvs.core.model.meta.DataField 594 2021-01-26 10:32:10.922+00 2021-01-26 10:32:10.922+00 0 podium podium 5402 49 \N com.nvs.core.model.meta.DataField 597 2021-01-26 10:32:10.922+00 2021-01-26 10:32:10.922+00 0 podium podium 5403 52 \N com.nvs.core.model.meta.DataField 601 2021-01-26 10:32:10.923+00 2021-01-26 10:32:10.923+00 0 podium podium 5404 49 \N com.nvs.core.model.meta.DataField 579 2021-01-26 10:32:10.923+00 2021-01-26 10:32:10.923+00 0 podium podium 5405 52 \N com.nvs.core.model.meta.DataField 597 2021-01-26 10:32:10.924+00 2021-01-26 10:32:10.924+00 0 podium podium 5406 44 \N com.nvs.core.model.meta.DataField 554 2021-01-26 10:32:10.924+00 2021-01-26 10:32:10.924+00 0 podium podium 5407 50 \N com.nvs.core.model.meta.DataField 559 2021-01-26 10:32:10.925+00 2021-01-26 10:32:10.925+00 0 podium podium 5408 52 \N com.nvs.core.model.meta.DataField 579 2021-01-26 10:32:10.925+00 2021-01-26 10:32:10.925+00 0 podium podium 5409 51 \N com.nvs.core.model.meta.DataField 556 2021-01-26 10:32:10.926+00 2021-01-26 10:32:10.926+00 0 podium podium 5410 52 \N com.nvs.core.model.meta.DataField 577 2021-01-26 10:32:10.926+00 2021-01-26 10:32:10.926+00 0 podium podium 5411 52 \N com.nvs.core.model.meta.DataField 584 2021-01-26 10:32:10.927+00 2021-01-26 10:32:10.927+00 0 podium podium 5412 51 50 com.nvs.core.model.meta.DataField 575 2021-01-26 10:32:10.927+00 2021-01-26 10:32:10.927+00 0 podium podium 5413 134 VARCHAR(4000) com.nvs.core.model.meta.DataField 600 2021-01-26 10:32:10.928+00 2021-01-26 10:32:10.928+00 0 podium podium 5414 51 5592405 com.nvs.core.model.meta.DataField 592 2021-01-26 10:32:10.928+00 2021-01-26 10:32:10.928+00 0 podium podium 5415 49 \N com.nvs.core.model.meta.DataField 572 2021-01-26 10:32:10.929+00 2021-01-26 10:32:10.929+00 0 podium podium 5416 45 \N com.nvs.core.model.meta.DataField 601 2021-01-26 10:32:10.929+00 2021-01-26 10:32:10.929+00 0 podium podium 5417 45 \N com.nvs.core.model.meta.DataField 569 2021-01-26 10:32:10.929+00 2021-01-26 10:32:10.929+00 0 podium podium 5418 81 false com.nvs.core.model.meta.DataField 562 2021-01-26 10:32:10.93+00 2021-01-26 10:32:10.93+00 0 podium podium 5419 81 false com.nvs.core.model.meta.DataField 596 2021-01-26 10:32:10.93+00 2021-01-26 10:32:10.93+00 0 podium podium 5420 50 \N com.nvs.core.model.meta.DataField 576 2021-01-26 10:32:10.931+00 2021-01-26 10:32:10.931+00 0 podium podium 5421 134 VARCHAR(100) com.nvs.core.model.meta.DataField 591 2021-01-26 10:32:10.931+00 2021-01-26 10:32:10.931+00 0 podium podium 5422 45 \N com.nvs.core.model.meta.DataField 600 2021-01-26 10:32:10.932+00 2021-01-26 10:32:10.932+00 0 podium podium 5423 53 \N com.nvs.core.model.meta.DataField 556 2021-01-26 10:32:10.932+00 2021-01-26 10:32:10.932+00 0 podium podium 5424 51 \N com.nvs.core.model.meta.DataField 571 2021-01-26 10:32:10.933+00 2021-01-26 10:32:10.933+00 0 podium podium 5425 52 \N com.nvs.core.model.meta.DataField 571 2021-01-26 10:32:10.933+00 2021-01-26 10:32:10.933+00 0 podium podium 5426 51 50 com.nvs.core.model.meta.DataField 555 2021-01-26 10:32:10.934+00 2021-01-26 10:32:10.934+00 0 podium podium 5427 134 VARCHAR(50) com.nvs.core.model.meta.DataField 586 2021-01-26 10:32:10.934+00 2021-01-26 10:32:10.934+00 0 podium podium 5428 45 \N com.nvs.core.model.meta.DataField 577 2021-01-26 10:32:10.935+00 2021-01-26 10:32:10.935+00 0 podium podium 5429 81 false com.nvs.core.model.meta.DataField 605 2021-01-26 10:32:10.935+00 2021-01-26 10:32:10.935+00 0 podium podium 5430 45 \N com.nvs.core.model.meta.DataField 571 2021-01-26 10:32:10.935+00 2021-01-26 10:32:10.935+00 0 podium podium 5431 51 \N com.nvs.core.model.meta.DataField 580 2021-01-26 10:32:10.936+00 2021-01-26 10:32:10.936+00 0 podium podium 5432 52 \N com.nvs.core.model.meta.DataField 599 2021-01-26 10:32:10.936+00 2021-01-26 10:32:10.936+00 0 podium podium 5433 45 \N com.nvs.core.model.meta.DataField 558 2021-01-26 10:32:10.937+00 2021-01-26 10:32:10.937+00 0 podium podium 5434 44 \N com.nvs.core.model.meta.DataField 596 2021-01-26 10:32:10.937+00 2021-01-26 10:32:10.937+00 0 podium podium 5435 51 15 com.nvs.core.model.meta.DataField 585 2021-01-26 10:32:10.938+00 2021-01-26 10:32:10.938+00 0 podium podium 5436 51 70 com.nvs.core.model.meta.DataField 593 2021-01-26 10:32:10.938+00 2021-01-26 10:32:10.938+00 0 podium podium 5437 44 \N com.nvs.core.model.meta.DataField 560 2021-01-26 10:32:10.939+00 2021-01-26 10:32:10.939+00 0 podium podium 5438 53 \N com.nvs.core.model.meta.DataField 588 2021-01-26 10:32:10.939+00 2021-01-26 10:32:10.939+00 0 podium podium 5439 81 false com.nvs.core.model.meta.DataField 552 2021-01-26 10:32:10.94+00 2021-01-26 10:32:10.94+00 0 podium podium 5440 53 \N com.nvs.core.model.meta.DataField 551 2021-01-26 10:32:10.94+00 2021-01-26 10:32:10.94+00 0 podium podium 5441 81 false com.nvs.core.model.meta.DataField 593 2021-01-26 10:32:10.941+00 2021-01-26 10:32:10.941+00 0 podium podium 5442 134 VARCHAR(15) com.nvs.core.model.meta.DataField 565 2021-01-26 10:32:10.941+00 2021-01-26 10:32:10.941+00 0 podium podium 5443 49 \N com.nvs.core.model.meta.DataField 573 2021-01-26 10:32:10.942+00 2021-01-26 10:32:10.942+00 0 podium podium 5444 52 \N com.nvs.core.model.meta.DataField 580 2021-01-26 10:32:10.942+00 2021-01-26 10:32:10.942+00 0 podium podium 5445 44 \N com.nvs.core.model.meta.DataField 563 2021-01-26 10:32:10.943+00 2021-01-26 10:32:10.943+00 0 podium podium 5446 44 \N com.nvs.core.model.meta.DataField 588 2021-01-26 10:32:10.943+00 2021-01-26 10:32:10.943+00 0 podium podium 5447 45 \N com.nvs.core.model.meta.DataField 565 2021-01-26 10:32:10.944+00 2021-01-26 10:32:10.944+00 0 podium podium 5448 50 \N com.nvs.core.model.meta.DataField 603 2021-01-26 10:32:10.944+00 2021-01-26 10:32:10.944+00 0 podium podium 5449 49 \N com.nvs.core.model.meta.DataField 586 2021-01-26 10:32:10.945+00 2021-01-26 10:32:10.945+00 0 podium podium 5450 49 \N com.nvs.core.model.meta.DataField 569 2021-01-26 10:32:10.945+00 2021-01-26 10:32:10.945+00 0 podium podium 5451 53 \N com.nvs.core.model.meta.DataField 564 2021-01-26 10:32:10.946+00 2021-01-26 10:32:10.946+00 0 podium podium 5452 50 \N com.nvs.core.model.meta.DataField 588 2021-01-26 10:32:10.946+00 2021-01-26 10:32:10.946+00 0 podium podium 5453 49 \N com.nvs.core.model.meta.DataField 596 2021-01-26 10:32:10.946+00 2021-01-26 10:32:10.946+00 0 podium podium 5455 52 \N com.nvs.core.model.meta.DataField 558 2021-01-26 10:32:10.947+00 2021-01-26 10:32:10.947+00 0 podium podium 5456 53 \N com.nvs.core.model.meta.DataField 592 2021-01-26 10:32:10.948+00 2021-01-26 10:32:10.948+00 0 podium podium 5457 134 VARCHAR(10) com.nvs.core.model.meta.DataField 601 2021-01-26 10:32:10.948+00 2021-01-26 10:32:10.948+00 0 podium podium 5458 50 \N com.nvs.core.model.meta.DataField 598 2021-01-26 10:32:10.949+00 2021-01-26 10:32:10.949+00 0 podium podium 5459 51 50 com.nvs.core.model.meta.DataField 557 2021-01-26 10:32:10.949+00 2021-01-26 10:32:10.949+00 0 podium podium 5460 52 \N com.nvs.core.model.meta.DataField 561 2021-01-26 10:32:10.95+00 2021-01-26 10:32:10.95+00 0 podium podium 5462 81 false com.nvs.core.model.meta.DataField 572 2021-01-26 10:32:10.951+00 2021-01-26 10:32:10.951+00 0 podium podium 5463 44 \N com.nvs.core.model.meta.DataField 594 2021-01-26 10:32:10.951+00 2021-01-26 10:32:10.951+00 0 podium podium 5464 49 \N com.nvs.core.model.meta.DataField 554 2021-01-26 10:32:10.952+00 2021-01-26 10:32:10.952+00 0 podium podium 5465 51 50 com.nvs.core.model.meta.DataField 559 2021-01-26 10:32:10.952+00 2021-01-26 10:32:10.952+00 0 podium podium 5466 52 \N com.nvs.core.model.meta.DataField 575 2021-01-26 10:32:10.953+00 2021-01-26 10:32:10.953+00 0 podium podium 5467 45 \N com.nvs.core.model.meta.DataField 597 2021-01-26 10:32:10.953+00 2021-01-26 10:32:10.953+00 0 podium podium 5468 53 \N com.nvs.core.model.meta.DataField 579 2021-01-26 10:32:10.954+00 2021-01-26 10:32:10.954+00 0 podium podium 5469 50 \N com.nvs.core.model.meta.DataField 591 2021-01-26 10:32:10.954+00 2021-01-26 10:32:10.954+00 0 podium podium 5470 49 \N com.nvs.core.model.meta.DataField 566 2021-01-26 10:32:10.954+00 2021-01-26 10:32:10.954+00 0 podium podium 5471 134 VARCHAR(10) com.nvs.core.model.meta.DataField 590 2021-01-26 10:32:10.955+00 2021-01-26 10:32:10.955+00 0 podium podium 5472 134 VARCHAR(15) com.nvs.core.model.meta.DataField 569 2021-01-26 10:32:10.955+00 2021-01-26 10:32:10.955+00 0 podium podium 5473 81 false com.nvs.core.model.meta.DataField 549 2021-01-26 10:32:10.956+00 2021-01-26 10:32:10.956+00 0 podium podium 5474 53 \N com.nvs.core.model.meta.DataField 557 2021-01-26 10:32:10.957+00 2021-01-26 10:32:10.957+00 0 podium podium 5475 53 \N com.nvs.core.model.meta.DataField 550 2021-01-26 10:32:10.957+00 2021-01-26 10:32:10.957+00 0 podium podium 5476 45 \N com.nvs.core.model.meta.DataField 604 2021-01-26 10:32:10.957+00 2021-01-26 10:32:10.957+00 0 podium podium 5477 52 \N com.nvs.core.model.meta.DataField 552 2021-01-26 10:32:10.958+00 2021-01-26 10:32:10.958+00 0 podium podium 5478 81 false com.nvs.core.model.meta.DataField 568 2021-01-26 10:32:10.958+00 2021-01-26 10:32:10.958+00 0 podium podium 5479 81 false com.nvs.core.model.meta.DataField 551 2021-01-26 10:32:10.959+00 2021-01-26 10:32:10.959+00 0 podium podium 5480 53 \N com.nvs.core.model.meta.DataField 558 2021-01-26 10:32:10.959+00 2021-01-26 10:32:10.959+00 0 podium podium 5481 81 false com.nvs.core.model.meta.DataField 599 2021-01-26 10:32:10.96+00 2021-01-26 10:32:10.96+00 0 podium podium 5482 49 \N com.nvs.core.model.meta.DataField 590 2021-01-26 10:32:10.96+00 2021-01-26 10:32:10.96+00 0 podium podium 5483 53 \N com.nvs.core.model.meta.DataField 553 2021-01-26 10:32:10.961+00 2021-01-26 10:32:10.961+00 0 podium podium 5484 49 \N com.nvs.core.model.meta.DataField 584 2021-01-26 10:32:10.961+00 2021-01-26 10:32:10.961+00 0 podium podium 5486 51 50 com.nvs.core.model.meta.DataField 568 2021-01-26 10:32:10.962+00 2021-01-26 10:32:10.962+00 0 podium podium 5487 81 false com.nvs.core.model.meta.DataField 588 2021-01-26 10:32:10.963+00 2021-01-26 10:32:10.963+00 0 podium podium 5488 81 false com.nvs.core.model.meta.DataField 583 2021-01-26 10:32:10.963+00 2021-01-26 10:32:10.963+00 0 podium podium 5489 45 \N com.nvs.core.model.meta.DataField 596 2021-01-26 10:32:10.964+00 2021-01-26 10:32:10.964+00 0 podium podium 5490 51 \N com.nvs.core.model.meta.DataField 594 2021-01-26 10:32:10.964+00 2021-01-26 10:32:10.964+00 0 podium podium 5491 50 \N com.nvs.core.model.meta.DataField 568 2021-01-26 10:32:10.965+00 2021-01-26 10:32:10.965+00 0 podium podium 5492 51 \N com.nvs.core.model.meta.DataField 599 2021-01-26 10:32:10.965+00 2021-01-26 10:32:10.965+00 0 podium podium 5493 81 false com.nvs.core.model.meta.DataField 603 2021-01-26 10:32:10.966+00 2021-01-26 10:32:10.966+00 0 podium podium 5494 52 \N com.nvs.core.model.meta.DataField 554 2021-01-26 10:32:10.966+00 2021-01-26 10:32:10.966+00 0 podium podium 5495 51 \N com.nvs.core.model.meta.DataField 584 2021-01-26 10:32:10.967+00 2021-01-26 10:32:10.967+00 0 podium podium 5496 45 \N com.nvs.core.model.meta.DataField 563 2021-01-26 10:32:10.968+00 2021-01-26 10:32:10.968+00 0 podium podium 5497 53 \N com.nvs.core.model.meta.DataField 576 2021-01-26 10:32:10.969+00 2021-01-26 10:32:10.969+00 0 podium podium 5498 50 \N com.nvs.core.model.meta.DataField 600 2021-01-26 10:32:10.969+00 2021-01-26 10:32:10.969+00 0 podium podium 5499 49 \N com.nvs.core.model.meta.DataField 605 2021-01-26 10:32:10.97+00 2021-01-26 10:32:10.97+00 0 podium podium 5500 53 \N com.nvs.core.model.meta.DataField 554 2021-01-26 10:32:10.971+00 2021-01-26 10:32:10.971+00 0 podium podium 5501 52 \N com.nvs.core.model.meta.DataField 606 2021-01-26 10:32:10.971+00 2021-01-26 10:32:10.971+00 0 podium podium 5502 134 VARCHAR(70) com.nvs.core.model.meta.DataField 593 2021-01-26 10:32:10.972+00 2021-01-26 10:32:10.972+00 0 podium podium 5503 49 \N com.nvs.core.model.meta.DataField 591 2021-01-26 10:32:10.973+00 2021-01-26 10:32:10.973+00 0 podium podium 5504 81 false com.nvs.core.model.meta.DataField 569 2021-01-26 10:32:10.973+00 2021-01-26 10:32:10.973+00 0 podium podium 5505 49 \N com.nvs.core.model.meta.DataField 551 2021-01-26 10:32:10.974+00 2021-01-26 10:32:10.974+00 0 podium podium 5506 52 \N com.nvs.core.model.meta.DataField 568 2021-01-26 10:32:10.975+00 2021-01-26 10:32:10.975+00 0 podium podium 5507 52 \N com.nvs.core.model.meta.DataField 560 2021-01-26 10:32:10.975+00 2021-01-26 10:32:10.975+00 0 podium podium 5508 45 \N com.nvs.core.model.meta.DataField 575 2021-01-26 10:32:10.976+00 2021-01-26 10:32:10.976+00 0 podium podium 5509 50 \N com.nvs.core.model.meta.DataField 552 2021-01-26 10:32:10.977+00 2021-01-26 10:32:10.977+00 0 podium podium 5510 81 false com.nvs.core.model.meta.DataField 557 2021-01-26 10:32:10.977+00 2021-01-26 10:32:10.977+00 0 podium podium 5511 81 false com.nvs.core.model.meta.DataField 604 2021-01-26 10:32:10.978+00 2021-01-26 10:32:10.978+00 0 podium podium 5512 49 \N com.nvs.core.model.meta.DataField 581 2021-01-26 10:32:10.979+00 2021-01-26 10:32:10.979+00 0 podium podium 5513 53 \N com.nvs.core.model.meta.DataField 569 2021-01-26 10:32:10.979+00 2021-01-26 10:32:10.979+00 0 podium podium 5514 51 50 com.nvs.core.model.meta.DataField 604 2021-01-26 10:32:10.98+00 2021-01-26 10:32:10.98+00 0 podium podium 5515 49 \N com.nvs.core.model.meta.DataField 602 2021-01-26 10:32:10.981+00 2021-01-26 10:32:10.981+00 0 podium podium 5516 49 \N com.nvs.core.model.meta.DataField 555 2021-01-26 10:32:10.981+00 2021-01-26 10:32:10.981+00 0 podium podium 5517 81 false com.nvs.core.model.meta.DataField 564 2021-01-26 10:32:10.982+00 2021-01-26 10:32:10.982+00 0 podium podium 5518 81 false com.nvs.core.model.meta.DataField 573 2021-01-26 10:32:10.983+00 2021-01-26 10:32:10.983+00 0 podium podium 5519 81 false com.nvs.core.model.meta.DataField 600 2021-01-26 10:32:10.983+00 2021-01-26 10:32:10.983+00 0 podium podium 5520 44 \N com.nvs.core.model.meta.DataField 590 2021-01-26 10:32:10.984+00 2021-01-26 10:32:10.984+00 0 podium podium 5521 44 \N com.nvs.core.model.meta.DataField 586 2021-01-26 10:32:10.984+00 2021-01-26 10:32:10.984+00 0 podium podium 5522 44 \N com.nvs.core.model.meta.DataField 593 2021-01-26 10:32:10.985+00 2021-01-26 10:32:10.985+00 0 podium podium 5523 45 \N com.nvs.core.model.meta.DataField 555 2021-01-26 10:32:10.986+00 2021-01-26 10:32:10.986+00 0 podium podium 5524 134 VARCHAR(15) com.nvs.core.model.meta.DataField 589 2021-01-26 10:32:10.986+00 2021-01-26 10:32:10.986+00 0 podium podium 5525 50 \N com.nvs.core.model.meta.DataField 560 2021-01-26 10:32:10.987+00 2021-01-26 10:32:10.987+00 0 podium podium 5526 50 \N com.nvs.core.model.meta.DataField 553 2021-01-26 10:32:10.987+00 2021-01-26 10:32:10.987+00 0 podium podium 5527 53 \N com.nvs.core.model.meta.DataField 562 2021-01-26 10:32:10.988+00 2021-01-26 10:32:10.988+00 0 podium podium 5528 81 false com.nvs.core.model.meta.DataField 597 2021-01-26 10:32:10.989+00 2021-01-26 10:32:10.989+00 0 podium podium 5529 44 \N com.nvs.core.model.meta.DataField 606 2021-01-26 10:32:10.989+00 2021-01-26 10:32:10.989+00 0 podium podium 5530 134 VARCHAR(15) com.nvs.core.model.meta.DataField 567 2021-01-26 10:32:10.99+00 2021-01-26 10:32:10.99+00 0 podium podium 5531 50 \N com.nvs.core.model.meta.DataField 573 2021-01-26 10:32:10.99+00 2021-01-26 10:32:10.99+00 0 podium podium 5532 50 \N com.nvs.core.model.meta.DataField 593 2021-01-26 10:32:10.991+00 2021-01-26 10:32:10.991+00 0 podium podium 5533 44 \N com.nvs.core.model.meta.DataField 576 2021-01-26 10:32:10.992+00 2021-01-26 10:32:10.992+00 0 podium podium 5534 53 \N com.nvs.core.model.meta.DataField 585 2021-01-26 10:32:10.992+00 2021-01-26 10:32:10.992+00 0 podium podium 5535 49 \N com.nvs.core.model.meta.DataField 556 2021-01-26 10:32:10.993+00 2021-01-26 10:32:10.993+00 0 podium podium 5536 81 false com.nvs.core.model.meta.DataField 590 2021-01-26 10:32:10.993+00 2021-01-26 10:32:10.993+00 0 podium podium 5537 44 \N com.nvs.core.model.meta.DataField 579 2021-01-26 10:32:10.994+00 2021-01-26 10:32:10.994+00 0 podium podium 5538 53 \N com.nvs.core.model.meta.DataField 605 2021-01-26 10:32:10.995+00 2021-01-26 10:32:10.995+00 0 podium podium 5539 53 \N com.nvs.core.model.meta.DataField 549 2021-01-26 10:32:10.995+00 2021-01-26 10:32:10.995+00 0 podium podium 5540 45 \N com.nvs.core.model.meta.DataField 567 2021-01-26 10:32:10.996+00 2021-01-26 10:32:10.996+00 0 podium podium 5541 51 50 com.nvs.core.model.meta.DataField 598 2021-01-26 10:32:10.996+00 2021-01-26 10:32:10.996+00 0 podium podium 5542 44 \N com.nvs.core.model.meta.DataField 552 2021-01-26 10:32:10.997+00 2021-01-26 10:32:10.997+00 0 podium podium 5543 51 \N com.nvs.core.model.meta.DataField 562 2021-01-26 10:32:10.997+00 2021-01-26 10:32:10.997+00 0 podium podium 5544 45 \N com.nvs.core.model.meta.DataField 584 2021-01-26 10:32:10.998+00 2021-01-26 10:32:10.998+00 0 podium podium 5545 134 VARCHAR(50) com.nvs.core.model.meta.DataField 553 2021-01-26 10:32:10.998+00 2021-01-26 10:32:10.998+00 0 podium podium 5547 53 \N com.nvs.core.model.meta.DataField 563 2021-01-26 10:32:11+00 2021-01-26 10:32:11+00 0 podium podium 5548 53 \N com.nvs.core.model.meta.DataField 583 2021-01-26 10:32:11+00 2021-01-26 10:32:11+00 0 podium podium 5549 81 false com.nvs.core.model.meta.DataField 566 2021-01-26 10:32:11.001+00 2021-01-26 10:32:11.001+00 0 podium podium 5550 49 \N com.nvs.core.model.meta.DataField 604 2021-01-26 10:32:11.001+00 2021-01-26 10:32:11.001+00 0 podium podium 5551 45 \N com.nvs.core.model.meta.DataField 559 2021-01-26 10:32:11.002+00 2021-01-26 10:32:11.002+00 0 podium podium 5552 49 \N com.nvs.core.model.meta.DataField 550 2021-01-26 10:32:11.002+00 2021-01-26 10:32:11.002+00 0 podium podium 5554 134 VARCHAR(50) com.nvs.core.model.meta.DataField 577 2021-01-26 10:32:11.004+00 2021-01-26 10:32:11.004+00 0 podium podium 5555 44 \N com.nvs.core.model.meta.DataField 591 2021-01-26 10:32:11.004+00 2021-01-26 10:32:11.004+00 0 podium podium 5556 81 false com.nvs.core.model.meta.DataField 602 2021-01-26 10:32:11.005+00 2021-01-26 10:32:11.005+00 0 podium podium 5557 49 \N com.nvs.core.model.meta.DataField 553 2021-01-26 10:32:11.005+00 2021-01-26 10:32:11.005+00 0 podium podium 5558 51 \N com.nvs.core.model.meta.DataField 583 2021-01-26 10:32:11.006+00 2021-01-26 10:32:11.006+00 0 podium podium 5559 51 \N com.nvs.core.model.meta.DataField 588 2021-01-26 10:32:11.006+00 2021-01-26 10:32:11.006+00 0 podium podium 5560 53 \N com.nvs.core.model.meta.DataField 571 2021-01-26 10:32:11.007+00 2021-01-26 10:32:11.007+00 0 podium podium 5561 50 \N com.nvs.core.model.meta.DataField 602 2021-01-26 10:32:11.008+00 2021-01-26 10:32:11.008+00 0 podium podium 5562 45 \N com.nvs.core.model.meta.DataField 574 2021-01-26 10:32:11.008+00 2021-01-26 10:32:11.008+00 0 podium podium 5563 52 \N com.nvs.core.model.meta.DataField 573 2021-01-26 10:32:11.009+00 2021-01-26 10:32:11.009+00 0 podium podium 5564 50 \N com.nvs.core.model.meta.DataField 556 2021-01-26 10:32:11.01+00 2021-01-26 10:32:11.01+00 0 podium podium 5565 45 \N com.nvs.core.model.meta.DataField 581 2021-01-26 10:32:11.01+00 2021-01-26 10:32:11.01+00 0 podium podium 5566 81 false com.nvs.core.model.meta.DataField 550 2021-01-26 10:32:11.011+00 2021-01-26 10:32:11.011+00 0 podium podium 5567 52 \N com.nvs.core.model.meta.DataField 596 2021-01-26 10:32:11.011+00 2021-01-26 10:32:11.011+00 0 podium podium 5568 52 \N com.nvs.core.model.meta.DataField 593 2021-01-26 10:32:11.012+00 2021-01-26 10:32:11.012+00 0 podium podium 865 73 classic-models-errors com.nvs.core.model.meta.DataSource 4 2021-01-26 10:03:15.383+00 2021-01-26 10:03:15.383+00 0 podium podium 866 210 MANAGED com.nvs.core.model.meta.DataSource 4 2021-01-26 10:03:15.384+00 2021-01-26 10:03:15.384+00 0 podium podium 867 77 \N com.nvs.core.model.meta.DataSource 4 2021-01-26 10:03:15.384+00 2021-01-26 10:03:15.384+00 0 podium podium 868 293 \N com.nvs.core.model.meta.DataSource 4 2021-01-26 10:03:15.385+00 2021-01-26 10:03:15.385+00 0 podium podium 869 288 \N com.nvs.core.model.meta.DataSource 4 2021-01-26 10:03:15.386+00 2021-01-26 10:03:15.386+00 0 podium podium 5569 53 \N com.nvs.core.model.meta.DataField 565 2021-01-26 10:32:11.012+00 2021-01-26 10:32:11.012+00 0 podium podium 5570 51 50 com.nvs.core.model.meta.DataField 576 2021-01-26 10:32:11.013+00 2021-01-26 10:32:11.013+00 0 podium podium 5571 50 \N com.nvs.core.model.meta.DataField 550 2021-01-26 10:32:11.013+00 2021-01-26 10:32:11.013+00 0 podium podium 5572 52 \N com.nvs.core.model.meta.DataField 583 2021-01-26 10:32:11.014+00 2021-01-26 10:32:11.014+00 0 podium podium 5573 49 \N com.nvs.core.model.meta.DataField 595 2021-01-26 10:32:11.014+00 2021-01-26 10:32:11.014+00 0 podium podium 5574 134 VARCHAR(50) com.nvs.core.model.meta.DataField 573 2021-01-26 10:32:11.015+00 2021-01-26 10:32:11.015+00 0 podium podium 5575 51 \N com.nvs.core.model.meta.DataField 561 2021-01-26 10:32:11.015+00 2021-01-26 10:32:11.015+00 0 podium podium 5576 44 \N com.nvs.core.model.meta.DataField 573 2021-01-26 10:32:11.016+00 2021-01-26 10:32:11.016+00 0 podium podium 5577 51 15 com.nvs.core.model.meta.DataField 589 2021-01-26 10:32:11.016+00 2021-01-26 10:32:11.016+00 0 podium podium 5578 49 \N com.nvs.core.model.meta.DataField 552 2021-01-26 10:32:11.017+00 2021-01-26 10:32:11.017+00 0 podium podium 5579 45 \N com.nvs.core.model.meta.DataField 576 2021-01-26 10:32:11.017+00 2021-01-26 10:32:11.017+00 0 podium podium 5580 52 \N com.nvs.core.model.meta.DataField 600 2021-01-26 10:32:11.018+00 2021-01-26 10:32:11.018+00 0 podium podium 5581 81 false com.nvs.core.model.meta.DataField 595 2021-01-26 10:32:11.018+00 2021-01-26 10:32:11.018+00 0 podium podium 5582 45 \N com.nvs.core.model.meta.DataField 579 2021-01-26 10:32:11.019+00 2021-01-26 10:32:11.019+00 0 podium podium 5583 53 \N com.nvs.core.model.meta.DataField 552 2021-01-26 10:32:11.019+00 2021-01-26 10:32:11.019+00 0 podium podium 5584 81 false com.nvs.core.model.meta.DataField 591 2021-01-26 10:32:11.02+00 2021-01-26 10:32:11.02+00 0 podium podium 5585 51 50 com.nvs.core.model.meta.DataField 574 2021-01-26 10:32:11.02+00 2021-01-26 10:32:11.02+00 0 podium podium 5587 53 \N com.nvs.core.model.meta.DataField 566 2021-01-26 10:32:11.021+00 2021-01-26 10:32:11.021+00 0 podium podium 5588 134 VARCHAR(50) com.nvs.core.model.meta.DataField 605 2021-01-26 10:32:11.021+00 2021-01-26 10:32:11.021+00 0 podium podium 5589 44 \N com.nvs.core.model.meta.DataField 557 2021-01-26 10:32:11.022+00 2021-01-26 10:32:11.022+00 0 podium podium 5591 44 \N com.nvs.core.model.meta.DataField 598 2021-01-26 10:32:11.023+00 2021-01-26 10:32:11.023+00 0 podium podium 5592 134 VARCHAR(50) com.nvs.core.model.meta.DataField 564 2021-01-26 10:32:11.024+00 2021-01-26 10:32:11.024+00 0 podium podium 5593 44 \N com.nvs.core.model.meta.DataField 566 2021-01-26 10:32:11.024+00 2021-01-26 10:32:11.024+00 0 podium podium 5594 50 \N com.nvs.core.model.meta.DataField 577 2021-01-26 10:32:11.025+00 2021-01-26 10:32:11.025+00 0 podium podium 5595 50 \N com.nvs.core.model.meta.DataField 579 2021-01-26 10:32:11.025+00 2021-01-26 10:32:11.025+00 0 podium podium 5596 81 false com.nvs.core.model.meta.DataField 558 2021-01-26 10:32:11.026+00 2021-01-26 10:32:11.026+00 0 podium podium 5597 53 \N com.nvs.core.model.meta.DataField 604 2021-01-26 10:32:11.027+00 2021-01-26 10:32:11.027+00 0 podium podium 3475 52 \N com.nvs.core.model.meta.DataField 442 2021-01-26 10:04:59.473+00 2021-01-26 10:04:59.473+00 0 podium podium 3476 81 false com.nvs.core.model.meta.DataField 408 2021-01-26 10:04:59.474+00 2021-01-26 10:04:59.474+00 0 podium podium 3477 49 \N com.nvs.core.model.meta.DataField 427 2021-01-26 10:04:59.474+00 2021-01-26 10:04:59.474+00 0 podium podium 3478 50 \N com.nvs.core.model.meta.DataField 462 2021-01-26 10:04:59.475+00 2021-01-26 10:04:59.475+00 0 podium podium 3479 45 \N com.nvs.core.model.meta.DataField 396 2021-01-26 10:04:59.475+00 2021-01-26 10:04:59.475+00 0 podium podium 3480 50 \N com.nvs.core.model.meta.DataField 414 2021-01-26 10:04:59.476+00 2021-01-26 10:04:59.476+00 0 podium podium 3481 45 \N com.nvs.core.model.meta.DataField 442 2021-01-26 10:04:59.477+00 2021-01-26 10:04:59.477+00 0 podium podium 3482 81 false com.nvs.core.model.meta.DataField 459 2021-01-26 10:04:59.477+00 2021-01-26 10:04:59.477+00 0 podium podium 3483 134 VARCHAR(30) com.nvs.core.model.meta.DataField 450 2021-01-26 10:04:59.478+00 2021-01-26 10:04:59.478+00 0 podium podium 3484 45 \N com.nvs.core.model.meta.DataField 431 2021-01-26 10:04:59.478+00 2021-01-26 10:04:59.478+00 0 podium podium 3485 49 \N com.nvs.core.model.meta.DataField 399 2021-01-26 10:04:59.479+00 2021-01-26 10:04:59.479+00 0 podium podium 3486 44 \N com.nvs.core.model.meta.DataField 444 2021-01-26 10:04:59.479+00 2021-01-26 10:04:59.479+00 0 podium podium 3487 45 \N com.nvs.core.model.meta.DataField 457 2021-01-26 10:04:59.48+00 2021-01-26 10:04:59.48+00 0 podium podium 3488 45 \N com.nvs.core.model.meta.DataField 465 2021-01-26 10:04:59.48+00 2021-01-26 10:04:59.48+00 0 podium podium 3489 45 \N com.nvs.core.model.meta.DataField 404 2021-01-26 10:04:59.481+00 2021-01-26 10:04:59.481+00 0 podium podium 3490 50 \N com.nvs.core.model.meta.DataField 458 2021-01-26 10:04:59.481+00 2021-01-26 10:04:59.481+00 0 podium podium 3491 52 \N com.nvs.core.model.meta.DataField 463 2021-01-26 10:04:59.482+00 2021-01-26 10:04:59.482+00 0 podium podium 3492 44 \N com.nvs.core.model.meta.DataField 410 2021-01-26 10:04:59.483+00 2021-01-26 10:04:59.483+00 0 podium podium 3493 50 \N com.nvs.core.model.meta.DataField 409 2021-01-26 10:04:59.483+00 2021-01-26 10:04:59.483+00 0 podium podium 3494 52 \N com.nvs.core.model.meta.DataField 407 2021-01-26 10:04:59.484+00 2021-01-26 10:04:59.484+00 0 podium podium 3495 53 \N com.nvs.core.model.meta.DataField 457 2021-01-26 10:04:59.484+00 2021-01-26 10:04:59.484+00 0 podium podium 3496 51 15 com.nvs.core.model.meta.DataField 424 2021-01-26 10:04:59.485+00 2021-01-26 10:04:59.485+00 0 podium podium 3497 44 \N com.nvs.core.model.meta.DataField 435 2021-01-26 10:04:59.485+00 2021-01-26 10:04:59.485+00 0 podium podium 3498 81 false com.nvs.core.model.meta.DataField 432 2021-01-26 10:04:59.486+00 2021-01-26 10:04:59.486+00 0 podium podium 3499 81 false com.nvs.core.model.meta.DataField 456 2021-01-26 10:04:59.486+00 2021-01-26 10:04:59.486+00 0 podium podium 3500 53 \N com.nvs.core.model.meta.DataField 399 2021-01-26 10:04:59.487+00 2021-01-26 10:04:59.487+00 0 podium podium 3501 50 \N com.nvs.core.model.meta.DataField 443 2021-01-26 10:04:59.487+00 2021-01-26 10:04:59.487+00 0 podium podium 3502 52 \N com.nvs.core.model.meta.DataField 404 2021-01-26 10:04:59.488+00 2021-01-26 10:04:59.488+00 0 podium podium 3503 45 \N com.nvs.core.model.meta.DataField 417 2021-01-26 10:04:59.488+00 2021-01-26 10:04:59.488+00 0 podium podium 5598 44 \N com.nvs.core.model.meta.DataField 605 2021-01-26 10:32:11.027+00 2021-01-26 10:32:11.027+00 0 podium podium 5599 51 15 com.nvs.core.model.meta.DataField 567 2021-01-26 10:32:11.028+00 2021-01-26 10:32:11.028+00 0 podium podium 5600 134 VARCHAR(10) com.nvs.core.model.meta.DataField 550 2021-01-26 10:32:11.029+00 2021-01-26 10:32:11.029+00 0 podium podium 3504 53 \N com.nvs.core.model.meta.DataField 396 2021-01-26 10:04:59.489+00 2021-01-26 10:04:59.489+00 0 podium podium 3505 53 \N com.nvs.core.model.meta.DataField 406 2021-01-26 10:04:59.49+00 2021-01-26 10:04:59.49+00 0 podium podium 3506 134 VARCHAR(50) com.nvs.core.model.meta.DataField 404 2021-01-26 10:04:59.49+00 2021-01-26 10:04:59.49+00 0 podium podium 3507 81 false com.nvs.core.model.meta.DataField 425 2021-01-26 10:04:59.491+00 2021-01-26 10:04:59.491+00 0 podium podium 3508 53 \N com.nvs.core.model.meta.DataField 466 2021-01-26 10:04:59.492+00 2021-01-26 10:04:59.492+00 0 podium podium 3509 134 VARCHAR(30) com.nvs.core.model.meta.DataField 437 2021-01-26 10:04:59.492+00 2021-01-26 10:04:59.492+00 0 podium podium 3510 49 \N com.nvs.core.model.meta.DataField 428 2021-01-26 10:04:59.493+00 2021-01-26 10:04:59.493+00 0 podium podium 3511 50 \N com.nvs.core.model.meta.DataField 431 2021-01-26 10:04:59.493+00 2021-01-26 10:04:59.493+00 0 podium podium 3512 134 VARCHAR(5) com.nvs.core.model.meta.DataField 455 2021-01-26 10:04:59.494+00 2021-01-26 10:04:59.494+00 0 podium podium 3513 44 \N com.nvs.core.model.meta.DataField 395 2021-01-26 10:04:59.494+00 2021-01-26 10:04:59.494+00 0 podium podium 3514 81 false com.nvs.core.model.meta.DataField 402 2021-01-26 10:04:59.495+00 2021-01-26 10:04:59.495+00 0 podium podium 3515 81 false com.nvs.core.model.meta.DataField 399 2021-01-26 10:04:59.495+00 2021-01-26 10:04:59.495+00 0 podium podium 3516 51 10 com.nvs.core.model.meta.DataField 460 2021-01-26 10:04:59.496+00 2021-01-26 10:04:59.496+00 0 podium podium 3517 52 \N com.nvs.core.model.meta.DataField 414 2021-01-26 10:04:59.496+00 2021-01-26 10:04:59.496+00 0 podium podium 3518 81 false com.nvs.core.model.meta.DataField 405 2021-01-26 10:04:59.497+00 2021-01-26 10:04:59.497+00 0 podium podium 3519 81 false com.nvs.core.model.meta.DataField 468 2021-01-26 10:04:59.498+00 2021-01-26 10:04:59.498+00 0 podium podium 3520 50 \N com.nvs.core.model.meta.DataField 416 2021-01-26 10:04:59.498+00 2021-01-26 10:04:59.498+00 0 podium podium 3521 134 VARCHAR(50) com.nvs.core.model.meta.DataField 392 2021-01-26 10:04:59.499+00 2021-01-26 10:04:59.499+00 0 podium podium 3522 134 VARCHAR(10) com.nvs.core.model.meta.DataField 466 2021-01-26 10:04:59.5+00 2021-01-26 10:04:59.5+00 0 podium podium 3523 52 \N com.nvs.core.model.meta.DataField 395 2021-01-26 10:04:59.5+00 2021-01-26 10:04:59.5+00 0 podium podium 3524 51 30 com.nvs.core.model.meta.DataField 432 2021-01-26 10:04:59.501+00 2021-01-26 10:04:59.501+00 0 podium podium 3525 81 false com.nvs.core.model.meta.DataField 409 2021-01-26 10:04:59.502+00 2021-01-26 10:04:59.502+00 0 podium podium 3526 81 false com.nvs.core.model.meta.DataField 434 2021-01-26 10:04:59.502+00 2021-01-26 10:04:59.502+00 0 podium podium 3527 45 \N com.nvs.core.model.meta.DataField 401 2021-01-26 10:04:59.503+00 2021-01-26 10:04:59.503+00 0 podium podium 3528 81 false com.nvs.core.model.meta.DataField 403 2021-01-26 10:04:59.504+00 2021-01-26 10:04:59.504+00 0 podium podium 3529 44 \N com.nvs.core.model.meta.DataField 439 2021-01-26 10:04:59.504+00 2021-01-26 10:04:59.504+00 0 podium podium 3530 81 false com.nvs.core.model.meta.DataField 413 2021-01-26 10:04:59.505+00 2021-01-26 10:04:59.505+00 0 podium podium 3531 49 \N com.nvs.core.model.meta.DataField 461 2021-01-26 10:04:59.505+00 2021-01-26 10:04:59.505+00 0 podium podium 3532 53 \N com.nvs.core.model.meta.DataField 409 2021-01-26 10:04:59.506+00 2021-01-26 10:04:59.506+00 0 podium podium 3533 81 false com.nvs.core.model.meta.DataField 400 2021-01-26 10:04:59.507+00 2021-01-26 10:04:59.507+00 0 podium podium 3534 44 \N com.nvs.core.model.meta.DataField 445 2021-01-26 10:04:59.507+00 2021-01-26 10:04:59.507+00 0 podium podium 3535 50 \N com.nvs.core.model.meta.DataField 454 2021-01-26 10:04:59.508+00 2021-01-26 10:04:59.508+00 0 podium podium 3536 44 \N com.nvs.core.model.meta.DataField 424 2021-01-26 10:04:59.509+00 2021-01-26 10:04:59.509+00 0 podium podium 3537 134 VARCHAR(5) com.nvs.core.model.meta.DataField 434 2021-01-26 10:04:59.51+00 2021-01-26 10:04:59.51+00 0 podium podium 3538 51 50 com.nvs.core.model.meta.DataField 440 2021-01-26 10:04:59.51+00 2021-01-26 10:04:59.51+00 0 podium podium 3539 45 \N com.nvs.core.model.meta.DataField 393 2021-01-26 10:04:59.511+00 2021-01-26 10:04:59.511+00 0 podium podium 3540 52 \N com.nvs.core.model.meta.DataField 409 2021-01-26 10:04:59.512+00 2021-01-26 10:04:59.512+00 0 podium podium 3541 134 VARCHAR(15) com.nvs.core.model.meta.DataField 424 2021-01-26 10:04:59.512+00 2021-01-26 10:04:59.512+00 0 podium podium 3542 81 false com.nvs.core.model.meta.DataField 455 2021-01-26 10:04:59.513+00 2021-01-26 10:04:59.513+00 0 podium podium 3543 51 \N com.nvs.core.model.meta.DataField 403 2021-01-26 10:04:59.514+00 2021-01-26 10:04:59.514+00 0 podium podium 3544 52 \N com.nvs.core.model.meta.DataField 410 2021-01-26 10:04:59.515+00 2021-01-26 10:04:59.515+00 0 podium podium 3545 134 VARCHAR(5) com.nvs.core.model.meta.DataField 406 2021-01-26 10:04:59.515+00 2021-01-26 10:04:59.515+00 0 podium podium 3546 52 \N com.nvs.core.model.meta.DataField 461 2021-01-26 10:04:59.516+00 2021-01-26 10:04:59.516+00 0 podium podium 3547 134 VARCHAR(15) com.nvs.core.model.meta.DataField 448 2021-01-26 10:04:59.517+00 2021-01-26 10:04:59.517+00 0 podium podium 3548 81 false com.nvs.core.model.meta.DataField 426 2021-01-26 10:04:59.517+00 2021-01-26 10:04:59.517+00 0 podium podium 3549 50 \N com.nvs.core.model.meta.DataField 437 2021-01-26 10:04:59.518+00 2021-01-26 10:04:59.518+00 0 podium podium 3550 44 \N com.nvs.core.model.meta.DataField 393 2021-01-26 10:04:59.519+00 2021-01-26 10:04:59.519+00 0 podium podium 3551 52 \N com.nvs.core.model.meta.DataField 397 2021-01-26 10:04:59.519+00 2021-01-26 10:04:59.519+00 0 podium podium 3552 49 \N com.nvs.core.model.meta.DataField 436 2021-01-26 10:04:59.52+00 2021-01-26 10:04:59.52+00 0 podium podium 3553 50 \N com.nvs.core.model.meta.DataField 432 2021-01-26 10:04:59.521+00 2021-01-26 10:04:59.521+00 0 podium podium 3554 44 \N com.nvs.core.model.meta.DataField 413 2021-01-26 10:04:59.521+00 2021-01-26 10:04:59.521+00 0 podium podium 3555 50 \N com.nvs.core.model.meta.DataField 433 2021-01-26 10:04:59.522+00 2021-01-26 10:04:59.522+00 0 podium podium 3556 44 \N com.nvs.core.model.meta.DataField 450 2021-01-26 10:04:59.523+00 2021-01-26 10:04:59.523+00 0 podium podium 3557 51 40 com.nvs.core.model.meta.DataField 436 2021-01-26 10:04:59.523+00 2021-01-26 10:04:59.523+00 0 podium podium 3558 52 \N com.nvs.core.model.meta.DataField 466 2021-01-26 10:04:59.524+00 2021-01-26 10:04:59.524+00 0 podium podium 3559 134 VARCHAR(50) com.nvs.core.model.meta.DataField 416 2021-01-26 10:04:59.525+00 2021-01-26 10:04:59.525+00 0 podium podium 3560 52 \N com.nvs.core.model.meta.DataField 444 2021-01-26 10:04:59.525+00 2021-01-26 10:04:59.525+00 0 podium podium 3561 53 \N com.nvs.core.model.meta.DataField 416 2021-01-26 10:04:59.526+00 2021-01-26 10:04:59.526+00 0 podium podium 3562 49 \N com.nvs.core.model.meta.DataField 452 2021-01-26 10:04:59.527+00 2021-01-26 10:04:59.527+00 0 podium podium 3563 53 \N com.nvs.core.model.meta.DataField 422 2021-01-26 10:04:59.527+00 2021-01-26 10:04:59.527+00 0 podium podium 3564 134 VARCHAR(15) com.nvs.core.model.meta.DataField 456 2021-01-26 10:04:59.528+00 2021-01-26 10:04:59.528+00 0 podium podium 3565 49 \N com.nvs.core.model.meta.DataField 404 2021-01-26 10:04:59.529+00 2021-01-26 10:04:59.529+00 0 podium podium 3566 44 \N com.nvs.core.model.meta.DataField 427 2021-01-26 10:04:59.53+00 2021-01-26 10:04:59.53+00 0 podium podium 3567 81 false com.nvs.core.model.meta.DataField 444 2021-01-26 10:04:59.53+00 2021-01-26 10:04:59.53+00 0 podium podium 3568 134 VARCHAR(15) com.nvs.core.model.meta.DataField 428 2021-01-26 10:04:59.531+00 2021-01-26 10:04:59.531+00 0 podium podium 3569 50 \N com.nvs.core.model.meta.DataField 464 2021-01-26 10:04:59.532+00 2021-01-26 10:04:59.532+00 0 podium podium 3570 52 \N com.nvs.core.model.meta.DataField 425 2021-01-26 10:04:59.532+00 2021-01-26 10:04:59.532+00 0 podium podium 3571 51 50 com.nvs.core.model.meta.DataField 395 2021-01-26 10:04:59.533+00 2021-01-26 10:04:59.533+00 0 podium podium 3572 50 \N com.nvs.core.model.meta.DataField 420 2021-01-26 10:04:59.534+00 2021-01-26 10:04:59.534+00 0 podium podium 3573 44 \N com.nvs.core.model.meta.DataField 430 2021-01-26 10:04:59.534+00 2021-01-26 10:04:59.534+00 0 podium podium 3574 81 false com.nvs.core.model.meta.DataField 443 2021-01-26 10:04:59.535+00 2021-01-26 10:04:59.535+00 0 podium podium 3575 49 \N com.nvs.core.model.meta.DataField 460 2021-01-26 10:04:59.536+00 2021-01-26 10:04:59.536+00 0 podium podium 3576 49 \N com.nvs.core.model.meta.DataField 418 2021-01-26 10:04:59.536+00 2021-01-26 10:04:59.536+00 0 podium podium 3577 50 \N com.nvs.core.model.meta.DataField 457 2021-01-26 10:04:59.537+00 2021-01-26 10:04:59.537+00 0 podium podium 3578 50 \N com.nvs.core.model.meta.DataField 434 2021-01-26 10:04:59.537+00 2021-01-26 10:04:59.537+00 0 podium podium 3579 45 \N com.nvs.core.model.meta.DataField 469 2021-01-26 10:04:59.538+00 2021-01-26 10:04:59.538+00 0 podium podium 3580 81 false com.nvs.core.model.meta.DataField 467 2021-01-26 10:04:59.539+00 2021-01-26 10:04:59.539+00 0 podium podium 3581 44 \N com.nvs.core.model.meta.DataField 451 2021-01-26 10:04:59.54+00 2021-01-26 10:04:59.54+00 0 podium podium 3582 52 \N com.nvs.core.model.meta.DataField 445 2021-01-26 10:04:59.54+00 2021-01-26 10:04:59.54+00 0 podium podium 3583 52 \N com.nvs.core.model.meta.DataField 460 2021-01-26 10:04:59.541+00 2021-01-26 10:04:59.541+00 0 podium podium 3584 81 false com.nvs.core.model.meta.DataField 393 2021-01-26 10:04:59.542+00 2021-01-26 10:04:59.542+00 0 podium podium 3585 52 \N com.nvs.core.model.meta.DataField 416 2021-01-26 10:04:59.542+00 2021-01-26 10:04:59.542+00 0 podium podium 3586 50 \N com.nvs.core.model.meta.DataField 465 2021-01-26 10:04:59.543+00 2021-01-26 10:04:59.543+00 0 podium podium 3587 50 \N com.nvs.core.model.meta.DataField 402 2021-01-26 10:04:59.544+00 2021-01-26 10:04:59.544+00 0 podium podium 3588 51 5 com.nvs.core.model.meta.DataField 425 2021-01-26 10:04:59.544+00 2021-01-26 10:04:59.544+00 0 podium podium 3589 52 \N com.nvs.core.model.meta.DataField 428 2021-01-26 10:04:59.545+00 2021-01-26 10:04:59.545+00 0 podium podium 3590 52 \N com.nvs.core.model.meta.DataField 413 2021-01-26 10:04:59.546+00 2021-01-26 10:04:59.546+00 0 podium podium 3591 51 60 com.nvs.core.model.meta.DataField 463 2021-01-26 10:04:59.546+00 2021-01-26 10:04:59.546+00 0 podium podium 3592 81 false com.nvs.core.model.meta.DataField 418 2021-01-26 10:04:59.547+00 2021-01-26 10:04:59.547+00 0 podium podium 3593 51 \N com.nvs.core.model.meta.DataField 442 2021-01-26 10:04:59.548+00 2021-01-26 10:04:59.548+00 0 podium podium 3594 51 4 com.nvs.core.model.meta.DataField 408 2021-01-26 10:04:59.548+00 2021-01-26 10:04:59.548+00 0 podium podium 3595 53 \N com.nvs.core.model.meta.DataField 417 2021-01-26 10:04:59.549+00 2021-01-26 10:04:59.549+00 0 podium podium 3596 51 \N com.nvs.core.model.meta.DataField 431 2021-01-26 10:04:59.55+00 2021-01-26 10:04:59.55+00 0 podium podium 3597 45 \N com.nvs.core.model.meta.DataField 461 2021-01-26 10:04:59.551+00 2021-01-26 10:04:59.551+00 0 podium podium 3598 81 false com.nvs.core.model.meta.DataField 429 2021-01-26 10:04:59.551+00 2021-01-26 10:04:59.551+00 0 podium podium 3599 51 15 com.nvs.core.model.meta.DataField 456 2021-01-26 10:04:59.552+00 2021-01-26 10:04:59.552+00 0 podium podium 3600 52 \N com.nvs.core.model.meta.DataField 399 2021-01-26 10:04:59.552+00 2021-01-26 10:04:59.552+00 0 podium podium 3601 49 \N com.nvs.core.model.meta.DataField 435 2021-01-26 10:04:59.553+00 2021-01-26 10:04:59.553+00 0 podium podium 3602 52 \N com.nvs.core.model.meta.DataField 455 2021-01-26 10:04:59.554+00 2021-01-26 10:04:59.554+00 0 podium podium 3603 52 \N com.nvs.core.model.meta.DataField 424 2021-01-26 10:04:59.554+00 2021-01-26 10:04:59.554+00 0 podium podium 3604 45 \N com.nvs.core.model.meta.DataField 436 2021-01-26 10:04:59.555+00 2021-01-26 10:04:59.555+00 0 podium podium 3605 50 \N com.nvs.core.model.meta.DataField 393 2021-01-26 10:04:59.555+00 2021-01-26 10:04:59.555+00 0 podium podium 3606 52 \N com.nvs.core.model.meta.DataField 439 2021-01-26 10:04:59.556+00 2021-01-26 10:04:59.556+00 0 podium podium 3607 49 \N com.nvs.core.model.meta.DataField 426 2021-01-26 10:04:59.556+00 2021-01-26 10:04:59.556+00 0 podium podium 3608 45 \N com.nvs.core.model.meta.DataField 409 2021-01-26 10:04:59.557+00 2021-01-26 10:04:59.557+00 0 podium podium 3609 52 \N com.nvs.core.model.meta.DataField 394 2021-01-26 10:04:59.557+00 2021-01-26 10:04:59.557+00 0 podium podium 3610 81 false com.nvs.core.model.meta.DataField 442 2021-01-26 10:04:59.558+00 2021-01-26 10:04:59.558+00 0 podium podium 3611 50 \N com.nvs.core.model.meta.DataField 436 2021-01-26 10:04:59.558+00 2021-01-26 10:04:59.558+00 0 podium podium 3612 44 \N com.nvs.core.model.meta.DataField 423 2021-01-26 10:04:59.559+00 2021-01-26 10:04:59.559+00 0 podium podium 3613 53 \N com.nvs.core.model.meta.DataField 439 2021-01-26 10:04:59.559+00 2021-01-26 10:04:59.559+00 0 podium podium 3614 45 \N com.nvs.core.model.meta.DataField 407 2021-01-26 10:04:59.56+00 2021-01-26 10:04:59.56+00 0 podium podium 3615 44 \N com.nvs.core.model.meta.DataField 422 2021-01-26 10:04:59.56+00 2021-01-26 10:04:59.56+00 0 podium podium 3616 81 false com.nvs.core.model.meta.DataField 448 2021-01-26 10:04:59.561+00 2021-01-26 10:04:59.561+00 0 podium podium 3617 53 \N com.nvs.core.model.meta.DataField 462 2021-01-26 10:04:59.562+00 2021-01-26 10:04:59.562+00 0 podium podium 3618 51 50 com.nvs.core.model.meta.DataField 392 2021-01-26 10:04:59.562+00 2021-01-26 10:04:59.562+00 0 podium podium 3619 44 \N com.nvs.core.model.meta.DataField 434 2021-01-26 10:04:59.563+00 2021-01-26 10:04:59.563+00 0 podium podium 3620 51 \N com.nvs.core.model.meta.DataField 398 2021-01-26 10:04:59.565+00 2021-01-26 10:04:59.565+00 0 podium podium 3621 45 \N com.nvs.core.model.meta.DataField 427 2021-01-26 10:04:59.566+00 2021-01-26 10:04:59.566+00 0 podium podium 3622 49 \N com.nvs.core.model.meta.DataField 413 2021-01-26 10:04:59.567+00 2021-01-26 10:04:59.567+00 0 podium podium 3623 51 15 com.nvs.core.model.meta.DataField 400 2021-01-26 10:04:59.567+00 2021-01-26 10:04:59.567+00 0 podium podium 3624 53 \N com.nvs.core.model.meta.DataField 451 2021-01-26 10:04:59.568+00 2021-01-26 10:04:59.568+00 0 podium podium 3625 81 false com.nvs.core.model.meta.DataField 407 2021-01-26 10:04:59.569+00 2021-01-26 10:04:59.569+00 0 podium podium 3626 50 \N com.nvs.core.model.meta.DataField 415 2021-01-26 10:04:59.569+00 2021-01-26 10:04:59.569+00 0 podium podium 3627 49 \N com.nvs.core.model.meta.DataField 419 2021-01-26 10:04:59.57+00 2021-01-26 10:04:59.57+00 0 podium podium 3628 49 \N com.nvs.core.model.meta.DataField 394 2021-01-26 10:04:59.57+00 2021-01-26 10:04:59.57+00 0 podium podium 3629 50 \N com.nvs.core.model.meta.DataField 391 2021-01-26 10:04:59.571+00 2021-01-26 10:04:59.571+00 0 podium podium 3630 45 \N com.nvs.core.model.meta.DataField 446 2021-01-26 10:04:59.572+00 2021-01-26 10:04:59.572+00 0 podium podium 3631 45 \N com.nvs.core.model.meta.DataField 397 2021-01-26 10:04:59.572+00 2021-01-26 10:04:59.572+00 0 podium podium 3632 49 \N com.nvs.core.model.meta.DataField 458 2021-01-26 10:04:59.573+00 2021-01-26 10:04:59.573+00 0 podium podium 3633 81 false com.nvs.core.model.meta.DataField 406 2021-01-26 10:04:59.573+00 2021-01-26 10:04:59.573+00 0 podium podium 3634 52 \N com.nvs.core.model.meta.DataField 392 2021-01-26 10:04:59.574+00 2021-01-26 10:04:59.574+00 0 podium podium 3635 50 \N com.nvs.core.model.meta.DataField 459 2021-01-26 10:04:59.575+00 2021-01-26 10:04:59.575+00 0 podium podium 3636 81 false com.nvs.core.model.meta.DataField 430 2021-01-26 10:04:59.575+00 2021-01-26 10:04:59.575+00 0 podium podium 3637 51 50 com.nvs.core.model.meta.DataField 413 2021-01-26 10:04:59.576+00 2021-01-26 10:04:59.576+00 0 podium podium 3638 44 \N com.nvs.core.model.meta.DataField 465 2021-01-26 10:04:59.576+00 2021-01-26 10:04:59.576+00 0 podium podium 3639 45 \N com.nvs.core.model.meta.DataField 459 2021-01-26 10:04:59.577+00 2021-01-26 10:04:59.577+00 0 podium podium 3640 50 \N com.nvs.core.model.meta.DataField 421 2021-01-26 10:04:59.578+00 2021-01-26 10:04:59.578+00 0 podium podium 3641 53 \N com.nvs.core.model.meta.DataField 459 2021-01-26 10:04:59.578+00 2021-01-26 10:04:59.578+00 0 podium podium 3642 45 \N com.nvs.core.model.meta.DataField 468 2021-01-26 10:04:59.579+00 2021-01-26 10:04:59.579+00 0 podium podium 3643 49 \N com.nvs.core.model.meta.DataField 463 2021-01-26 10:04:59.58+00 2021-01-26 10:04:59.58+00 0 podium podium 3644 52 \N com.nvs.core.model.meta.DataField 454 2021-01-26 10:04:59.581+00 2021-01-26 10:04:59.581+00 0 podium podium 3645 44 \N com.nvs.core.model.meta.DataField 458 2021-01-26 10:04:59.581+00 2021-01-26 10:04:59.581+00 0 podium podium 3646 51 \N com.nvs.core.model.meta.DataField 451 2021-01-26 10:04:59.582+00 2021-01-26 10:04:59.582+00 0 podium podium 3647 45 \N com.nvs.core.model.meta.DataField 416 2021-01-26 10:04:59.583+00 2021-01-26 10:04:59.583+00 0 podium podium 3648 52 \N com.nvs.core.model.meta.DataField 467 2021-01-26 10:04:59.583+00 2021-01-26 10:04:59.583+00 0 podium podium 3649 52 \N com.nvs.core.model.meta.DataField 468 2021-01-26 10:04:59.584+00 2021-01-26 10:04:59.584+00 0 podium podium 3650 53 \N com.nvs.core.model.meta.DataField 429 2021-01-26 10:04:59.585+00 2021-01-26 10:04:59.585+00 0 podium podium 3651 44 \N com.nvs.core.model.meta.DataField 406 2021-01-26 10:04:59.585+00 2021-01-26 10:04:59.585+00 0 podium podium 3652 51 5 com.nvs.core.model.meta.DataField 406 2021-01-26 10:04:59.586+00 2021-01-26 10:04:59.586+00 0 podium podium 3653 50 \N com.nvs.core.model.meta.DataField 399 2021-01-26 10:04:59.586+00 2021-01-26 10:04:59.586+00 0 podium podium 3654 49 \N com.nvs.core.model.meta.DataField 443 2021-01-26 10:04:59.587+00 2021-01-26 10:04:59.587+00 0 podium podium 3655 52 \N com.nvs.core.model.meta.DataField 436 2021-01-26 10:04:59.588+00 2021-01-26 10:04:59.588+00 0 podium podium 3656 134 VARCHAR(40) com.nvs.core.model.meta.DataField 459 2021-01-26 10:04:59.588+00 2021-01-26 10:04:59.588+00 0 podium podium 3657 50 \N com.nvs.core.model.meta.DataField 466 2021-01-26 10:04:59.589+00 2021-01-26 10:04:59.589+00 0 podium podium 3658 52 \N com.nvs.core.model.meta.DataField 465 2021-01-26 10:04:59.59+00 2021-01-26 10:04:59.59+00 0 podium podium 3659 45 \N com.nvs.core.model.meta.DataField 403 2021-01-26 10:04:59.59+00 2021-01-26 10:04:59.59+00 0 podium podium 3660 52 \N com.nvs.core.model.meta.DataField 446 2021-01-26 10:04:59.591+00 2021-01-26 10:04:59.591+00 0 podium podium 3661 81 false com.nvs.core.model.meta.DataField 420 2021-01-26 10:04:59.592+00 2021-01-26 10:04:59.592+00 0 podium podium 3662 44 \N com.nvs.core.model.meta.DataField 441 2021-01-26 10:04:59.592+00 2021-01-26 10:04:59.592+00 0 podium podium 3663 81 false com.nvs.core.model.meta.DataField 463 2021-01-26 10:04:59.593+00 2021-01-26 10:04:59.593+00 0 podium podium 3664 44 \N com.nvs.core.model.meta.DataField 417 2021-01-26 10:04:59.593+00 2021-01-26 10:04:59.593+00 0 podium podium 3665 53 \N com.nvs.core.model.meta.DataField 438 2021-01-26 10:04:59.594+00 2021-01-26 10:04:59.594+00 0 podium podium 3666 45 \N com.nvs.core.model.meta.DataField 458 2021-01-26 10:04:59.595+00 2021-01-26 10:04:59.595+00 0 podium podium 3667 134 VARCHAR(24) com.nvs.core.model.meta.DataField 402 2021-01-26 10:04:59.595+00 2021-01-26 10:04:59.595+00 0 podium podium 3668 49 \N com.nvs.core.model.meta.DataField 406 2021-01-26 10:04:59.596+00 2021-01-26 10:04:59.596+00 0 podium podium 3669 44 \N com.nvs.core.model.meta.DataField 407 2021-01-26 10:04:59.596+00 2021-01-26 10:04:59.596+00 0 podium podium 3670 81 false com.nvs.core.model.meta.DataField 396 2021-01-26 10:04:59.597+00 2021-01-26 10:04:59.597+00 0 podium podium 3671 51 50 com.nvs.core.model.meta.DataField 405 2021-01-26 10:04:59.597+00 2021-01-26 10:04:59.597+00 0 podium podium 3672 51 24 com.nvs.core.model.meta.DataField 464 2021-01-26 10:04:59.597+00 2021-01-26 10:04:59.597+00 0 podium podium 3673 49 \N com.nvs.core.model.meta.DataField 416 2021-01-26 10:04:59.598+00 2021-01-26 10:04:59.598+00 0 podium podium 3674 53 \N com.nvs.core.model.meta.DataField 395 2021-01-26 10:04:59.598+00 2021-01-26 10:04:59.598+00 0 podium podium 3675 50 \N com.nvs.core.model.meta.DataField 452 2021-01-26 10:04:59.599+00 2021-01-26 10:04:59.599+00 0 podium podium 3676 44 \N com.nvs.core.model.meta.DataField 461 2021-01-26 10:04:59.599+00 2021-01-26 10:04:59.599+00 0 podium podium 3677 53 \N com.nvs.core.model.meta.DataField 449 2021-01-26 10:04:59.6+00 2021-01-26 10:04:59.6+00 0 podium podium 3678 81 false com.nvs.core.model.meta.DataField 398 2021-01-26 10:04:59.6+00 2021-01-26 10:04:59.6+00 0 podium podium 3679 45 \N com.nvs.core.model.meta.DataField 449 2021-01-26 10:04:59.601+00 2021-01-26 10:04:59.601+00 0 podium podium 3680 45 \N com.nvs.core.model.meta.DataField 394 2021-01-26 10:04:59.602+00 2021-01-26 10:04:59.602+00 0 podium podium 3681 44 \N com.nvs.core.model.meta.DataField 454 2021-01-26 10:04:59.602+00 2021-01-26 10:04:59.602+00 0 podium podium 3682 53 \N com.nvs.core.model.meta.DataField 410 2021-01-26 10:04:59.603+00 2021-01-26 10:04:59.603+00 0 podium podium 3683 50 \N com.nvs.core.model.meta.DataField 417 2021-01-26 10:04:59.603+00 2021-01-26 10:04:59.603+00 0 podium podium 3684 53 \N com.nvs.core.model.meta.DataField 400 2021-01-26 10:04:59.604+00 2021-01-26 10:04:59.604+00 0 podium podium 3685 81 false com.nvs.core.model.meta.DataField 394 2021-01-26 10:04:59.604+00 2021-01-26 10:04:59.604+00 0 podium podium 3686 53 \N com.nvs.core.model.meta.DataField 435 2021-01-26 10:04:59.605+00 2021-01-26 10:04:59.605+00 0 podium podium 3687 51 \N com.nvs.core.model.meta.DataField 465 2021-01-26 10:04:59.605+00 2021-01-26 10:04:59.605+00 0 podium podium 3688 134 VARCHAR(10) com.nvs.core.model.meta.DataField 393 2021-01-26 10:04:59.606+00 2021-01-26 10:04:59.606+00 0 podium podium 3689 45 \N com.nvs.core.model.meta.DataField 406 2021-01-26 10:04:59.607+00 2021-01-26 10:04:59.607+00 0 podium podium 3690 52 \N com.nvs.core.model.meta.DataField 443 2021-01-26 10:04:59.607+00 2021-01-26 10:04:59.607+00 0 podium podium 3691 81 false com.nvs.core.model.meta.DataField 404 2021-01-26 10:04:59.608+00 2021-01-26 10:04:59.608+00 0 podium podium 3692 44 \N com.nvs.core.model.meta.DataField 421 2021-01-26 10:04:59.608+00 2021-01-26 10:04:59.608+00 0 podium podium 3693 52 \N com.nvs.core.model.meta.DataField 456 2021-01-26 10:04:59.609+00 2021-01-26 10:04:59.609+00 0 podium podium 3694 44 \N com.nvs.core.model.meta.DataField 443 2021-01-26 10:04:59.609+00 2021-01-26 10:04:59.609+00 0 podium podium 3695 134 VARCHAR(24) com.nvs.core.model.meta.DataField 439 2021-01-26 10:04:59.61+00 2021-01-26 10:04:59.61+00 0 podium podium 3696 51 5 com.nvs.core.model.meta.DataField 434 2021-01-26 10:04:59.61+00 2021-01-26 10:04:59.61+00 0 podium podium 3697 50 \N com.nvs.core.model.meta.DataField 407 2021-01-26 10:04:59.611+00 2021-01-26 10:04:59.611+00 0 podium podium 1115 53 \N com.nvs.core.model.meta.DataField 147 2021-01-26 10:03:15.623+00 2021-01-26 10:03:15.623+00 0 podium podium 1116 44 \N com.nvs.core.model.meta.DataField 146 2021-01-26 10:03:15.624+00 2021-01-26 10:03:15.624+00 0 podium podium 1117 44 \N com.nvs.core.model.meta.DataField 157 2021-01-26 10:03:15.624+00 2021-01-26 10:03:15.624+00 0 podium podium 6554 166 UNCOMPRESSED com.nvs.core.model.PrepareExecutionWorkOrder 4 2021-01-27 10:47:11.441+00 2021-01-27 10:47:11.441+00 0 ANONYMOUS ANONYMOUS 1119 44 \N com.nvs.core.model.meta.DataField 154 2021-01-26 10:03:15.626+00 2021-01-26 10:03:15.626+00 0 podium podium 1120 81 false com.nvs.core.model.meta.DataField 144 2021-01-26 10:03:15.626+00 2021-01-26 10:03:15.626+00 0 podium podium 1121 53 \N com.nvs.core.model.meta.DataField 153 2021-01-26 10:03:15.627+00 2021-01-26 10:03:15.627+00 0 podium podium 1122 53 \N com.nvs.core.model.meta.DataField 166 2021-01-26 10:03:15.628+00 2021-01-26 10:03:15.628+00 0 podium podium 1123 51 \N com.nvs.core.model.meta.DataField 140 2021-01-26 10:03:15.629+00 2021-01-26 10:03:15.629+00 0 podium podium 1124 134 VARCHAR(15) com.nvs.core.model.meta.DataField 138 2021-01-26 10:03:15.629+00 2021-01-26 10:03:15.629+00 0 podium podium 1125 50 \N com.nvs.core.model.meta.DataField 144 2021-01-26 10:03:15.63+00 2021-01-26 10:03:15.63+00 0 podium podium 1126 45 \N com.nvs.core.model.meta.DataField 174 2021-01-26 10:03:15.631+00 2021-01-26 10:03:15.631+00 0 podium podium 1127 81 false com.nvs.core.model.meta.DataField 165 2021-01-26 10:03:15.632+00 2021-01-26 10:03:15.632+00 0 podium podium 6555 128 69 com.nvs.core.model.PrepareExecutionWorkOrder 4 2021-01-27 10:47:11.535+00 2021-01-27 10:47:11.535+00 0 ANONYMOUS ANONYMOUS 1129 51 50 com.nvs.core.model.meta.DataField 147 2021-01-26 10:03:15.633+00 2021-01-26 10:03:15.633+00 0 podium podium 1130 45 \N com.nvs.core.model.meta.DataField 166 2021-01-26 10:03:15.634+00 2021-01-26 10:03:15.634+00 0 podium podium 1131 44 \N com.nvs.core.model.meta.DataField 152 2021-01-26 10:03:15.635+00 2021-01-26 10:03:15.635+00 0 podium podium 1132 51 50 com.nvs.core.model.meta.DataField 126 2021-01-26 10:03:15.636+00 2021-01-26 10:03:15.636+00 0 podium podium 1133 81 false com.nvs.core.model.meta.DataField 122 2021-01-26 10:03:15.636+00 2021-01-26 10:03:15.636+00 0 podium podium 1134 44 \N com.nvs.core.model.meta.DataField 134 2021-01-26 10:03:15.637+00 2021-01-26 10:03:15.637+00 0 podium podium 6556 129 77 com.nvs.core.model.PrepareExecutionWorkOrder 4 2021-01-27 10:47:11.663+00 2021-01-27 10:47:11.663+00 0 ANONYMOUS ANONYMOUS 1136 134 VARCHAR(21845) com.nvs.core.model.meta.DataField 172 2021-01-26 10:03:15.638+00 2021-01-26 10:03:15.638+00 0 podium podium 1137 81 false com.nvs.core.model.meta.DataField 124 2021-01-26 10:03:15.639+00 2021-01-26 10:03:15.639+00 0 podium podium 1138 51 10 com.nvs.core.model.meta.DataField 162 2021-01-26 10:03:15.64+00 2021-01-26 10:03:15.64+00 0 podium podium 1139 49 \N com.nvs.core.model.meta.DataField 163 2021-01-26 10:03:15.641+00 2021-01-26 10:03:15.641+00 0 podium podium 1140 51 50 com.nvs.core.model.meta.DataField 159 2021-01-26 10:03:15.641+00 2021-01-26 10:03:15.641+00 0 podium podium 1141 51 5592405 com.nvs.core.model.meta.DataField 142 2021-01-26 10:03:15.642+00 2021-01-26 10:03:15.642+00 0 podium podium 1142 45 \N com.nvs.core.model.meta.DataField 169 2021-01-26 10:03:15.643+00 2021-01-26 10:03:15.643+00 0 podium podium 1143 44 \N com.nvs.core.model.meta.DataField 170 2021-01-26 10:03:15.644+00 2021-01-26 10:03:15.644+00 0 podium podium 6557 130 -- podium data script generator prologue\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3013) \n\npdpg_24 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/customers/20210126010000/good' AS (customerNumber:long,customerName:chararray,contactLastName:chararray,contactFirstName:chararray,phone:chararray,addressLine1:chararray,addressLine2:chararray,city:chararray,state:chararray,postalCode:chararray,country:chararray,salesRepEmployeeNumber:long,creditLimit:double,customerLocation:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3013) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3014) \n\npdpg_25 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/salesorders/20210126010000/good' AS (orderNumber:long,orderDate:chararray,requiredDate:chararray,shippedDate:chararray,status:chararray,customerNumber:long,orderLineNumber:long,priceEach:double,quantityOrdered:long,productCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3014) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3015) \n\npdpg_26 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/employees/20210126010000/good' AS (employeeNumber:long,lastName:chararray,firstName:chararray,extension:chararray,email:chararray,reportsTo:long,jobTitle:chararray,officeCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3015) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3016) \n\npdpg_27 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/products_full/20210125230000/good' AS (productCode:chararray,productName:chararray,productScale:chararray,productVendor:chararray,productDescription:chararray,quantityInStock:long,buyPrice:double,MSRP:double,productLine:chararray,textDescription:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3016) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3010) \n\npdpg_17_temp = JOIN pdpg_25 BY productCode, pdpg_27 BY productCode ;\npdpg_17 = FOREACH pdpg_17_temp GENERATE pdpg_25::orderNumber AS orderNumber, pdpg_25::orderDate AS orderDate, pdpg_25::requiredDate AS requiredDate, pdpg_25::shippedDate AS shippedDate, pdpg_25::status AS status, pdpg_25::customerNumber AS customerNumber, pdpg_25::orderLineNumber AS orderLineNumber, pdpg_25::priceEach AS priceEach, pdpg_25::quantityOrdered AS quantityOrdered, pdpg_25::productCode AS productCode, pdpg_27::productName AS productName, pdpg_27::productScale AS productScale, pdpg_27::productVendor AS productVendor, pdpg_27::productDescription AS productDescription, pdpg_27::quantityInStock AS quantityInStock, pdpg_27::buyPrice AS buyPrice, pdpg_27::MSRP AS MSRP, pdpg_27::productLine AS productLine, pdpg_27::textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3010) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3007) \n\npdpg_10 = FOREACH pdpg_17 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3007) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3011) \n\npdpg_20_temp = JOIN pdpg_10 BY customerNumber, pdpg_24 BY customerNumber ;\npdpg_20 = FOREACH pdpg_20_temp GENERATE pdpg_10::orderNumber AS orderNumber, pdpg_10::orderDate AS orderDate, pdpg_10::requiredDate AS requiredDate, pdpg_10::shippedDate AS shippedDate, pdpg_10::status AS status, pdpg_10::customerNumber AS customerNumber, pdpg_10::orderLineNumber AS orderLineNumber, pdpg_10::priceEach AS priceEach, pdpg_10::quantityOrdered AS quantityOrdered, pdpg_10::productCode AS productCode, pdpg_10::productName AS productName, pdpg_10::productScale AS productScale, pdpg_10::productVendor AS productVendor, pdpg_10::productDescription AS productDescription, pdpg_10::quantityInStock AS quantityInStock, pdpg_10::buyPrice AS buyPrice, pdpg_10::MSRP AS MSRP, pdpg_10::productLine AS productLine, pdpg_10::textDescription AS textDescription, pdpg_24::customerName AS customerName, pdpg_24::contactLastName AS contactLastName, pdpg_24::contactFirstName AS contactFirstName, pdpg_24::phone AS phone, pdpg_24::addressLine1 AS addressLine1, pdpg_24::addressLine2 AS addressLine2, pdpg_24::city AS city, pdpg_24::state AS state, pdpg_24::postalCode AS postalCode, pdpg_24::country AS country, pdpg_24::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_24::creditLimit AS creditLimit, pdpg_24::customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3011) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3008) \n\npdpg_12 = FOREACH pdpg_20 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(double) creditLimit AS creditLimit,(chararray) customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3008) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3012) \n\npdpg_23_temp = JOIN pdpg_12 BY salesRepEmployeeNumber, pdpg_26 BY employeeNumber ;\npdpg_23 = FOREACH pdpg_23_temp GENERATE pdpg_12::orderNumber AS orderNumber, pdpg_12::orderDate AS orderDate, pdpg_12::requiredDate AS requiredDate, pdpg_12::shippedDate AS shippedDate, pdpg_12::status AS status, pdpg_12::customerNumber AS customerNumber, pdpg_12::orderLineNumber AS orderLineNumber, pdpg_12::priceEach AS priceEach, pdpg_12::quantityOrdered AS quantityOrdered, pdpg_12::productCode AS productCode, pdpg_12::productName AS productName, pdpg_12::productScale AS productScale, pdpg_12::productVendor AS productVendor, pdpg_12::productDescription AS productDescription, pdpg_12::quantityInStock AS quantityInStock, pdpg_12::buyPrice AS buyPrice, pdpg_12::MSRP AS MSRP, pdpg_12::productLine AS productLine, pdpg_12::textDescription AS textDescription, pdpg_12::customerName AS customerName, pdpg_12::contactLastName AS contactLastName, pdpg_12::contactFirstName AS contactFirstName, pdpg_12::phone AS phone, pdpg_12::addressLine1 AS addressLine1, pdpg_12::addressLine2 AS addressLine2, pdpg_12::city AS city, pdpg_12::state AS state, pdpg_12::postalCode AS postalCode, pdpg_12::country AS country, pdpg_12::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_12::creditLimit AS creditLimit, pdpg_12::customerLocation AS customerLocation, pdpg_26::lastName AS lastName, pdpg_26::firstName AS firstName, pdpg_26::extension AS extension, pdpg_26::email AS email, pdpg_26::reportsTo AS reportsTo, pdpg_26::jobTitle AS jobTitle, pdpg_26::officeCode AS officeCode;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3012) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3009) \n\npdpg_14 = FOREACH pdpg_23 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(double) creditLimit AS creditLimit,(chararray) customerLocation AS customerLocation,(chararray) lastName AS lastName,(chararray) firstName AS firstName,(chararray) extension AS extension,(chararray) email AS email,(long) reportsTo AS reportsTo,(chararray) jobTitle AS jobTitle,(chararray) officeCode AS officeCode,(bigdecimal) (com.podiumdata.pigudf.number.TO_DECIMAL(priceEach * quantityOrdered)) AS orderTotal;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3009) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Store (id:3018) \n\nSTORE pdpg_14 INTO 'file:///usr/local/qdc/data/loadingdock/classic_models/salesorders_full/20210127104645' ;\n\n-- end script for com.nvs.core.model.prepare.pkg.Store (id:3018) \n\n-- podium data script generator epilogue\n com.nvs.core.model.PrepareExecutionWorkOrder 4 2021-01-27 10:47:16.727+00 2021-01-27 10:47:16.727+00 0 ANONYMOUS ANONYMOUS 1145 44 \N com.nvs.core.model.meta.DataField 130 2021-01-26 10:03:15.646+00 2021-01-26 10:03:15.646+00 0 podium podium 1146 44 \N com.nvs.core.model.meta.DataField 151 2021-01-26 10:03:15.647+00 2021-01-26 10:03:15.647+00 0 podium podium 1147 50 \N com.nvs.core.model.meta.DataField 117 2021-01-26 10:03:15.648+00 2021-01-26 10:03:15.648+00 0 podium podium 1148 52 \N com.nvs.core.model.meta.DataField 134 2021-01-26 10:03:15.649+00 2021-01-26 10:03:15.649+00 0 podium podium 1150 51 \N com.nvs.core.model.meta.DataField 161 2021-01-26 10:03:15.65+00 2021-01-26 10:03:15.65+00 0 podium podium 1151 52 \N com.nvs.core.model.meta.DataField 143 2021-01-26 10:03:15.651+00 2021-01-26 10:03:15.651+00 0 podium podium 1152 134 VARCHAR(15) com.nvs.core.model.meta.DataField 128 2021-01-26 10:03:15.652+00 2021-01-26 10:03:15.652+00 0 podium podium 1153 45 \N com.nvs.core.model.meta.DataField 146 2021-01-26 10:03:15.652+00 2021-01-26 10:03:15.652+00 0 podium podium 1154 81 false com.nvs.core.model.meta.DataField 137 2021-01-26 10:03:15.653+00 2021-01-26 10:03:15.653+00 0 podium podium 3698 51 30 com.nvs.core.model.meta.DataField 450 2021-01-26 10:04:59.611+00 2021-01-26 10:04:59.611+00 0 podium podium 3699 53 \N com.nvs.core.model.meta.DataField 434 2021-01-26 10:04:59.612+00 2021-01-26 10:04:59.612+00 0 podium podium 1155 81 false com.nvs.core.model.meta.DataField 160 2021-01-26 10:03:15.654+00 2021-01-26 10:03:15.654+00 0 podium podium 6558 266 {"mapreduce.jobtracker.address":"local","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","ipc.client.connection.maxidletime":"10000","mapreduce.cluster.acls.enabled":"false","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","mapreduce.job.ubertask.maxmaps":"9","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","yarn.nodemanager.container-manager.thread-count":"20","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","fs.s3a.metadatastore.authoritative":"false","mapreduce.app-submission.cross-platform":"false","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.markreset.buffer.percent":"0.0","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","mapreduce.job.ubertask.enable":"false","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.am.max-attempts":"2","mapreduce.jobtracker.heartbeats.in.second":"100","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.security.instrumentation.requires.admin":"false","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.registry.zk.retry.ceiling.ms":"60000","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","yarn.app.mapreduce.client.job.max-retries":"3","mapreduce.jobhistory.cleaner.enable":"true","fs.s3a.s3guard.ddb.table.capacity.write":"100","ha.failover-controller.graceful-fence.connection.retries":"1","mapreduce.tasktracker.http.address":"0.0.0.0:50060","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","fs.s3a.max.total.tasks":"5","mapreduce.reduce.maxattempts":"4","mapreduce.client.submit.file.replication":"10","mapreduce.shuffle.port":"13562","yarn.resourcemanager.resource-tracker.client.thread-count":"50","yarn.fail-fast":"false","yarn.nodemanager.delete.thread-count":"4","fs.hdfs.impl.disable.cache":"true","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","s3native.client-write-packet-size":"65536","file.bytes-per-checksum":"512","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","mapreduce.jobtracker.taskcache.levels":"2","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.job.jvm.numtasks":"1","mapreduce.jobtracker.tasktracker.maxblacklists":"4","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.security.group.mapping.ldap.search.attr.member":"member","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","hadoop.security.credential.clear-text-fallback":"true","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","ha.failover-controller.new-active.rpc-timeout.ms":"60000","mapreduce.map.memory.mb":"-1","hadoop.ssl.hostname.verifier":"DEFAULT","mapreduce.tasktracker.healthchecker.interval":"60000","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","s3native.blocksize":"67108864","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","hadoop.registry.zk.retry.times":"5","mapreduce.job.running.reduce.limit":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.task.io.sort.factor":"10","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.s3a.paging.maximum":"5000","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","hadoop.shell.missing.defaultFs.warning":"true","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","fs.s3a.s3guard.ddb.background.sleep":"25","mapreduce.tasktracker.http.threads":"40","mapreduce.tasktracker.dns.nameserver":"default","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.job.maxtaskfailures.per.tracker":"3","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","mapreduce.shuffle.max.connections":"0","mapreduce.jobhistory.loadedjobs.cache.size":"5","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","mapreduce.client.output.filter":"FAILED","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","mapreduce.jobtracker.persist.jobstatus.hours":"1","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","mapreduce.job.speculative.retry-after-no-speculate":"1000","fs.s3a.attempts.maximum":"20","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","mapreduce.task.io.sort.mb":"100","yarn.app.mapreduce.client-am.ipc.max-retries":"3","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","adl.http.timeout":"5000","mapreduce.job.speculative.retry-after-speculate":"15000","mapreduce.jobtracker.restart.recover":"false","ipc.client.connect.max.retries":"10","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.security.kms.client.timeout":"60","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","yarn.resourcemanager.ha.automatic-failover.embedded":"true","hadoop.security.kms.client.failover.sleep.base.millis":"100","mapreduce.job.heap.memory-mb.ratio":"0.8","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","mapreduce.task.exit.timeout.check-interval-ms":"20000","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","yarn.resourcemanager.keytab":"/etc/krb5.keytab","mapreduce.map.log.level":"INFO","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","mapreduce.tasktracker.local.dir.minspacestart":"0","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","ha.health-monitor.check-interval.ms":"1000","mapreduce.reduce.shuffle.merge.percent":"0.66","ipc.client.connect.timeout":"20000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","yarn.nodemanager.recovery.enabled":"false","io.native.lib.available":"true","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","mapreduce.job.running.map.limit":"0","mapreduce.reduce.input.buffer.percent":"0.0","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","yarn.app.attempt.diagnostics.limit.kc":"64","hadoop.security.group.mapping.ldap.ssl":"false","fs.defaultFS":"file:///","fs.s3a.multipart.size":"64M","yarn.app.mapreduce.am.job.committer.commit-window":"10000","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.ifile.readahead":"true","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","s3native.replication":"3","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","fs.s3a.s3guard.ddb.table.create":"false","yarn.nodemanager.health-checker.interval-ms":"600000","s3.stream-buffer-size":"4096","ftp.client-write-packet-size":"65536","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","yarn.timeline-service.keytab":"/etc/krb5.keytab","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","ha.zookeeper.session-timeout.ms":"5000","fs.s3a.connection.ssl.enabled":"true","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","ipc.server.max.connections":"0","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.app.mapreduce.am.resource.mb":"1536","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","hadoop.security.groups.cache.secs":"300","mapreduce.job.speculative.minimum-allowed-tasks":"10","yarn.nodemanager.container-monitor.interval-ms":"3000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","s3.client-write-packet-size":"65536","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","mapreduce.job.reduces":"1","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","mapreduce.job.acl-modify-job":" ","hadoop.registry.zk.session.timeout.ms":"60000","fs.automatic.close":"true","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","fs.s3.block.size":"67108864","hadoop.http.authentication.token.validity":"36000","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.tasktracker.local.dir.minspacekill":"0","mapreduce.jobhistory.cleaner.interval-ms":"86400000","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","mapreduce.jobtracker.http.address":"0.0.0.0:50030","yarn.nodemanager.recovery.compaction-interval-secs":"3600","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","mapreduce.tasktracker.report.address":"127.0.0.1:0","hadoop.kerberos.kinit.command":"kinit","yarn.timeline-service.http-authentication.type":"simple","yarn.log-aggregation.retain-seconds":"-1","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","ipc.client.connect.max.retries.on.timeouts":"45","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","io.file.buffer.size":"4096","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","io.mapfile.bloom.size":"1048576","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","ipc.client.connect.retry.interval":"1000","hadoop.security.kms.client.authentication.retry-count":"1","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","yarn.app.mapreduce.shuffle.log.backups":"0","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","ftp.blocksize":"67108864","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","yarn.resourcemanager.scheduler.monitor.enable":"false","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","hadoop.http.authentication.simple.anonymous.allowed":"true","yarn.client.nodemanager-connect.retry-interval-ms":"10000","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","mapreduce.task.files.preserve.failedtasks":"false","mapreduce.job.reduce.slowstart.completedmaps":"0.05","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.jobhistory.minicluster.fixed.ports":"false","file.replication":"1","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","io.mapfile.bloom.error.rate":"0.005","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","mapreduce.map.cpu.vcores":"1","yarn.resourcemanager.zk-retry-interval-ms":"1000","ftp.bytes-per-checksum":"512","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.pmem-check-enabled":"true","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","fs.s3a.s3guard.cli.prune.age":"86400000","hadoop.registry.zk.root":"/registry","hadoop.jetty.logs.serve.aliases":"true","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","mapreduce.reduce.merge.inmem.threshold":"1000","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","mapreduce.job.token.tracking.ids.enabled":"false","yarn.nodemanager.localizer.client.thread-count":"5","hadoop.security.kms.client.failover.sleep.max.millis":"2000","mapreduce.jobhistory.move.thread-count":"3","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","rpc.metrics.quantile.enable":"false","mapreduce.jobtracker.expire.trackers.interval":"600000","io.bytes.per.checksum":"512","mapreduce.jobhistory.loadedjob.tasks.max":"-1","mapreduce.task.timeout":"600000","yarn.app.mapreduce.client.max-retries":"3","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","mapreduce.framework.name":"local","mapreduce.fileoutputcommitter.algorithm.version":"1","yarn.resourcemanager.connect.max-wait.ms":"900000","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","ipc.client.ping":"true","mapreduce.input.lineinputformat.linespermap":"1","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","hadoop.security.uid.cache.secs":"14400","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","mapreduce.tasktracker.dns.interface":"default","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","yarn.resourcemanager.ha.enabled":"false","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","fs.s3a.multipart.threshold":"128M","io.map.index.skip":"0","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","mapreduce.job.hdfs-servers":"${fs.defaultFS}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","mapreduce.task.merge.progress.records":"10000","map.sort.class":"org.apache.hadoop.util.QuickSort","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","fs.s3a.socket.send.buffer":"8192","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","hadoop.registry.zk.quorum":"localhost:2181","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","fs.s3a.fast.upload.active.blocks":"4","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","mapreduce.reduce.memory.mb":"-1","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","yarn.client.failover-retries-on-socket-timeouts":"0","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","hadoop.treat.subject.external":"false","mapreduce.client.completion.pollinterval":"5000","ipc.server.log.slow.rpc":"false","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10","yarn.nodemanager.vmem-pmem-ratio":"2.1"} com.nvs.core.model.PrepareExecutionWorkOrder 4 2021-01-27 10:47:16.739+00 2021-01-27 10:47:16.739+00 0 ANONYMOUS ANONYMOUS 1157 49 \N com.nvs.core.model.meta.DataField 136 2021-01-26 10:03:15.656+00 2021-01-26 10:03:15.656+00 0 podium podium 1158 53 \N com.nvs.core.model.meta.DataField 142 2021-01-26 10:03:15.656+00 2021-01-26 10:03:15.656+00 0 podium podium 1159 134 VARCHAR(15) com.nvs.core.model.meta.DataField 132 2021-01-26 10:03:15.657+00 2021-01-26 10:03:15.657+00 0 podium podium 1160 49 \N com.nvs.core.model.meta.DataField 148 2021-01-26 10:03:15.658+00 2021-01-26 10:03:15.658+00 0 podium podium 1161 81 false com.nvs.core.model.meta.DataField 118 2021-01-26 10:03:15.659+00 2021-01-26 10:03:15.659+00 0 podium podium 1162 81 false com.nvs.core.model.meta.DataField 134 2021-01-26 10:03:15.659+00 2021-01-26 10:03:15.659+00 0 podium podium 1163 51 15 com.nvs.core.model.meta.DataField 133 2021-01-26 10:03:15.66+00 2021-01-26 10:03:15.66+00 0 podium podium 1164 50 \N com.nvs.core.model.meta.DataField 166 2021-01-26 10:03:15.661+00 2021-01-26 10:03:15.661+00 0 podium podium 1165 50 \N com.nvs.core.model.meta.DataField 162 2021-01-26 10:03:15.662+00 2021-01-26 10:03:15.662+00 0 podium podium 1166 49 \N com.nvs.core.model.meta.DataField 172 2021-01-26 10:03:15.662+00 2021-01-26 10:03:15.662+00 0 podium podium 1167 51 15 com.nvs.core.model.meta.DataField 132 2021-01-26 10:03:15.663+00 2021-01-26 10:03:15.663+00 0 podium podium 1168 44 \N com.nvs.core.model.meta.DataField 132 2021-01-26 10:03:15.664+00 2021-01-26 10:03:15.664+00 0 podium podium 1169 53 \N com.nvs.core.model.meta.DataField 132 2021-01-26 10:03:15.665+00 2021-01-26 10:03:15.665+00 0 podium podium 6836 294 {"81":{"bad":0,"expected":0,"ugly":0,"chaffed":0,"good":556,"sample":13}} com.nvs.core.model.PrepareExecutionWorkOrder 10 2021-01-27 13:29:12.799+00 2021-01-27 13:29:12.799+00 0 ANONYMOUS ANONYMOUS 1171 45 \N com.nvs.core.model.meta.DataField 131 2021-01-26 10:03:15.666+00 2021-01-26 10:03:15.666+00 0 podium podium 1172 134 VARCHAR(70) com.nvs.core.model.meta.DataField 122 2021-01-26 10:03:15.667+00 2021-01-26 10:03:15.667+00 0 podium podium 1173 45 \N com.nvs.core.model.meta.DataField 168 2021-01-26 10:03:15.668+00 2021-01-26 10:03:15.668+00 0 podium podium 1174 45 \N com.nvs.core.model.meta.DataField 119 2021-01-26 10:03:15.669+00 2021-01-26 10:03:15.669+00 0 podium podium 1175 50 \N com.nvs.core.model.meta.DataField 132 2021-01-26 10:03:15.67+00 2021-01-26 10:03:15.67+00 0 podium podium 1176 81 false com.nvs.core.model.meta.DataField 166 2021-01-26 10:03:15.67+00 2021-01-26 10:03:15.67+00 0 podium podium 1177 45 \N com.nvs.core.model.meta.DataField 125 2021-01-26 10:03:15.671+00 2021-01-26 10:03:15.671+00 0 podium podium 1178 45 \N com.nvs.core.model.meta.DataField 117 2021-01-26 10:03:15.672+00 2021-01-26 10:03:15.672+00 0 podium podium 1179 44 \N com.nvs.core.model.meta.DataField 172 2021-01-26 10:03:15.673+00 2021-01-26 10:03:15.673+00 0 podium podium 7181 94 salesorders com.nvs.core.model.meta.DataEntity 26 2021-01-28 10:28:38.168+00 2021-01-28 10:28:38.168+00 0 podium podium 1181 45 \N com.nvs.core.model.meta.DataField 155 2021-01-26 10:03:15.674+00 2021-01-26 10:03:15.674+00 0 podium podium 1182 50 \N com.nvs.core.model.meta.DataField 168 2021-01-26 10:03:15.675+00 2021-01-26 10:03:15.675+00 0 podium podium 1183 53 \N com.nvs.core.model.meta.DataField 130 2021-01-26 10:03:15.676+00 2021-01-26 10:03:15.676+00 0 podium podium 7182 202 MANAGED com.nvs.core.model.meta.DataEntity 26 2021-01-28 10:28:38.169+00 2021-01-28 10:28:38.169+00 0 podium podium 1185 51 10 com.nvs.core.model.meta.DataField 174 2021-01-26 10:03:15.677+00 2021-01-26 10:03:15.677+00 0 podium podium 1186 50 \N com.nvs.core.model.meta.DataField 172 2021-01-26 10:03:15.678+00 2021-01-26 10:03:15.678+00 0 podium podium 1187 81 false com.nvs.core.model.meta.DataField 123 2021-01-26 10:03:15.679+00 2021-01-26 10:03:15.679+00 0 podium podium 7183 94 payments com.nvs.core.model.meta.DataEntity 28 2021-01-28 10:28:38.327+00 2021-01-28 10:28:38.327+00 0 podium podium 1189 81 false com.nvs.core.model.meta.DataField 131 2021-01-26 10:03:15.68+00 2021-01-26 10:03:15.68+00 0 podium podium 1190 81 false com.nvs.core.model.meta.DataField 169 2021-01-26 10:03:15.681+00 2021-01-26 10:03:15.681+00 0 podium podium 1191 52 \N com.nvs.core.model.meta.DataField 152 2021-01-26 10:03:15.682+00 2021-01-26 10:03:15.682+00 0 podium podium 1192 49 \N com.nvs.core.model.meta.DataField 161 2021-01-26 10:03:15.682+00 2021-01-26 10:03:15.682+00 0 podium podium 1193 52 \N com.nvs.core.model.meta.DataField 144 2021-01-26 10:03:15.683+00 2021-01-26 10:03:15.683+00 0 podium podium 1194 51 15 com.nvs.core.model.meta.DataField 168 2021-01-26 10:03:15.684+00 2021-01-26 10:03:15.684+00 0 podium podium 1195 53 \N com.nvs.core.model.meta.DataField 128 2021-01-26 10:03:15.685+00 2021-01-26 10:03:15.685+00 0 podium podium 7184 202 MANAGED com.nvs.core.model.meta.DataEntity 28 2021-01-28 10:28:38.327+00 2021-01-28 10:28:38.327+00 0 podium podium 1197 134 VARCHAR(10) com.nvs.core.model.meta.DataField 123 2021-01-26 10:03:15.686+00 2021-01-26 10:03:15.686+00 0 podium podium 7185 94 offices com.nvs.core.model.meta.DataEntity 23 2021-01-28 10:28:38.395+00 2021-01-28 10:28:38.395+00 0 podium podium 1199 51 50 com.nvs.core.model.meta.DataField 156 2021-01-26 10:03:15.688+00 2021-01-26 10:03:15.688+00 0 podium podium 1200 45 \N com.nvs.core.model.meta.DataField 159 2021-01-26 10:03:15.688+00 2021-01-26 10:03:15.688+00 0 podium podium 1201 50 \N com.nvs.core.model.meta.DataField 121 2021-01-26 10:03:15.689+00 2021-01-26 10:03:15.689+00 0 podium podium 1202 50 \N com.nvs.core.model.meta.DataField 149 2021-01-26 10:03:15.69+00 2021-01-26 10:03:15.69+00 0 podium podium 1204 52 \N com.nvs.core.model.meta.DataField 151 2021-01-26 10:03:15.691+00 2021-01-26 10:03:15.691+00 0 podium podium 1205 45 \N com.nvs.core.model.meta.DataField 140 2021-01-26 10:03:15.692+00 2021-01-26 10:03:15.692+00 0 podium podium 1206 134 VARCHAR(50) com.nvs.core.model.meta.DataField 121 2021-01-26 10:03:15.693+00 2021-01-26 10:03:15.693+00 0 podium podium 1207 50 \N com.nvs.core.model.meta.DataField 167 2021-01-26 10:03:15.694+00 2021-01-26 10:03:15.694+00 0 podium podium 1208 51 \N com.nvs.core.model.meta.DataField 167 2021-01-26 10:03:15.695+00 2021-01-26 10:03:15.695+00 0 podium podium 1209 134 VARCHAR(4000) com.nvs.core.model.meta.DataField 117 2021-01-26 10:03:15.695+00 2021-01-26 10:03:15.695+00 0 podium podium 1210 44 \N com.nvs.core.model.meta.DataField 160 2021-01-26 10:03:15.696+00 2021-01-26 10:03:15.696+00 0 podium podium 1211 51 15 com.nvs.core.model.meta.DataField 128 2021-01-26 10:03:15.697+00 2021-01-26 10:03:15.697+00 0 podium podium 1212 50 \N com.nvs.core.model.meta.DataField 171 2021-01-26 10:03:15.698+00 2021-01-26 10:03:15.698+00 0 podium podium 1213 53 \N com.nvs.core.model.meta.DataField 140 2021-01-26 10:03:15.698+00 2021-01-26 10:03:15.698+00 0 podium podium 1214 50 \N com.nvs.core.model.meta.DataField 130 2021-01-26 10:03:15.699+00 2021-01-26 10:03:15.699+00 0 podium podium 1215 81 false com.nvs.core.model.meta.DataField 153 2021-01-26 10:03:15.7+00 2021-01-26 10:03:15.7+00 0 podium podium 1216 50 \N com.nvs.core.model.meta.DataField 174 2021-01-26 10:03:15.701+00 2021-01-26 10:03:15.701+00 0 podium podium 1217 45 \N com.nvs.core.model.meta.DataField 141 2021-01-26 10:03:15.701+00 2021-01-26 10:03:15.701+00 0 podium podium 1218 81 false com.nvs.core.model.meta.DataField 155 2021-01-26 10:03:15.702+00 2021-01-26 10:03:15.702+00 0 podium podium 6559 294 {"77":{"bad":0,"expected":0,"ugly":0,"chaffed":0,"good":2473,"sample":37}} com.nvs.core.model.PrepareExecutionWorkOrder 4 2021-01-27 10:47:38.307+00 2021-01-27 10:47:38.307+00 0 ANONYMOUS ANONYMOUS 1220 51 50 com.nvs.core.model.meta.DataField 148 2021-01-26 10:03:15.704+00 2021-01-26 10:03:15.704+00 0 podium podium 6854 202 MANAGED com.nvs.core.model.meta.DataEntity 58 2021-01-28 08:20:55.977+00 2021-01-28 08:20:55.977+00 0 podium podium 6855 94 suppliers com.nvs.core.model.meta.DataEntity 58 2021-01-28 08:20:55.978+00 2021-01-28 08:20:55.978+00 0 podium podium 6856 202 MANAGED com.nvs.core.model.meta.DataEntity 57 2021-01-28 08:20:56.002+00 2021-01-28 08:20:56.002+00 0 podium podium 1224 49 \N com.nvs.core.model.meta.DataField 146 2021-01-26 10:03:15.707+00 2021-01-26 10:03:15.707+00 0 podium podium 1225 45 \N com.nvs.core.model.meta.DataField 157 2021-01-26 10:03:15.707+00 2021-01-26 10:03:15.707+00 0 podium podium 1226 53 \N com.nvs.core.model.meta.DataField 162 2021-01-26 10:03:15.708+00 2021-01-26 10:03:15.708+00 0 podium podium 1227 52 \N com.nvs.core.model.meta.DataField 148 2021-01-26 10:03:15.709+00 2021-01-26 10:03:15.709+00 0 podium podium 1228 81 false com.nvs.core.model.meta.DataField 120 2021-01-26 10:03:15.71+00 2021-01-26 10:03:15.71+00 0 podium podium 1229 50 \N com.nvs.core.model.meta.DataField 141 2021-01-26 10:03:15.71+00 2021-01-26 10:03:15.71+00 0 podium podium 1230 52 \N com.nvs.core.model.meta.DataField 141 2021-01-26 10:03:15.711+00 2021-01-26 10:03:15.711+00 0 podium podium 6857 94 shippers com.nvs.core.model.meta.DataEntity 57 2021-01-28 08:20:56.002+00 2021-01-28 08:20:56.002+00 0 podium podium 1232 49 \N com.nvs.core.model.meta.DataField 169 2021-01-26 10:03:15.712+00 2021-01-26 10:03:15.712+00 0 podium podium 1233 50 \N com.nvs.core.model.meta.DataField 125 2021-01-26 10:03:15.713+00 2021-01-26 10:03:15.713+00 0 podium podium 1234 81 false com.nvs.core.model.meta.DataField 138 2021-01-26 10:03:15.714+00 2021-01-26 10:03:15.714+00 0 podium podium 1235 44 \N com.nvs.core.model.meta.DataField 144 2021-01-26 10:03:15.715+00 2021-01-26 10:03:15.715+00 0 podium podium 1236 44 \N com.nvs.core.model.meta.DataField 127 2021-01-26 10:03:15.716+00 2021-01-26 10:03:15.716+00 0 podium podium 1237 49 \N com.nvs.core.model.meta.DataField 153 2021-01-26 10:03:15.716+00 2021-01-26 10:03:15.716+00 0 podium podium 1238 49 \N com.nvs.core.model.meta.DataField 149 2021-01-26 10:03:15.717+00 2021-01-26 10:03:15.717+00 0 podium podium 1239 52 \N com.nvs.core.model.meta.DataField 130 2021-01-26 10:03:15.718+00 2021-01-26 10:03:15.718+00 0 podium podium 1240 44 \N com.nvs.core.model.meta.DataField 129 2021-01-26 10:03:15.719+00 2021-01-26 10:03:15.719+00 0 podium podium 1241 81 false com.nvs.core.model.meta.DataField 162 2021-01-26 10:03:15.719+00 2021-01-26 10:03:15.719+00 0 podium podium 1242 53 \N com.nvs.core.model.meta.DataField 159 2021-01-26 10:03:15.72+00 2021-01-26 10:03:15.72+00 0 podium podium 1243 44 \N com.nvs.core.model.meta.DataField 153 2021-01-26 10:03:15.72+00 2021-01-26 10:03:15.72+00 0 podium podium 6858 202 MANAGED com.nvs.core.model.meta.DataEntity 56 2021-01-28 08:20:56.019+00 2021-01-28 08:20:56.019+00 0 podium podium 1245 53 \N com.nvs.core.model.meta.DataField 168 2021-01-26 10:03:15.751+00 2021-01-26 10:03:15.751+00 0 podium podium 1246 45 \N com.nvs.core.model.meta.DataField 128 2021-01-26 10:03:15.754+00 2021-01-26 10:03:15.754+00 0 podium podium 1247 53 \N com.nvs.core.model.meta.DataField 163 2021-01-26 10:03:15.755+00 2021-01-26 10:03:15.755+00 0 podium podium 1248 51 \N com.nvs.core.model.meta.DataField 149 2021-01-26 10:03:15.756+00 2021-01-26 10:03:15.756+00 0 podium podium 1249 53 \N com.nvs.core.model.meta.DataField 133 2021-01-26 10:03:15.756+00 2021-01-26 10:03:15.756+00 0 podium podium 1250 44 \N com.nvs.core.model.meta.DataField 120 2021-01-26 10:03:15.757+00 2021-01-26 10:03:15.757+00 0 podium podium 1251 53 \N com.nvs.core.model.meta.DataField 124 2021-01-26 10:03:15.758+00 2021-01-26 10:03:15.758+00 0 podium podium 1252 45 \N com.nvs.core.model.meta.DataField 152 2021-01-26 10:03:15.759+00 2021-01-26 10:03:15.759+00 0 podium podium 1253 49 \N com.nvs.core.model.meta.DataField 156 2021-01-26 10:03:15.759+00 2021-01-26 10:03:15.759+00 0 podium podium 1254 81 false com.nvs.core.model.meta.DataField 163 2021-01-26 10:03:15.76+00 2021-01-26 10:03:15.76+00 0 podium podium 1255 52 \N com.nvs.core.model.meta.DataField 160 2021-01-26 10:03:15.761+00 2021-01-26 10:03:15.761+00 0 podium podium 1256 51 50 com.nvs.core.model.meta.DataField 155 2021-01-26 10:03:15.762+00 2021-01-26 10:03:15.762+00 0 podium podium 1257 45 \N com.nvs.core.model.meta.DataField 171 2021-01-26 10:03:15.763+00 2021-01-26 10:03:15.763+00 0 podium podium 1258 52 \N com.nvs.core.model.meta.DataField 156 2021-01-26 10:03:15.763+00 2021-01-26 10:03:15.763+00 0 podium podium 1260 44 \N com.nvs.core.model.meta.DataField 131 2021-01-26 10:03:15.765+00 2021-01-26 10:03:15.765+00 0 podium podium 1261 53 \N com.nvs.core.model.meta.DataField 172 2021-01-26 10:03:15.766+00 2021-01-26 10:03:15.766+00 0 podium podium 1262 53 \N com.nvs.core.model.meta.DataField 125 2021-01-26 10:03:15.766+00 2021-01-26 10:03:15.766+00 0 podium podium 1263 81 false com.nvs.core.model.meta.DataField 156 2021-01-26 10:03:15.767+00 2021-01-26 10:03:15.767+00 0 podium podium 1264 45 \N com.nvs.core.model.meta.DataField 137 2021-01-26 10:03:15.768+00 2021-01-26 10:03:15.768+00 0 podium podium 1265 49 \N com.nvs.core.model.meta.DataField 166 2021-01-26 10:03:15.769+00 2021-01-26 10:03:15.769+00 0 podium podium 1266 45 \N com.nvs.core.model.meta.DataField 160 2021-01-26 10:03:15.77+00 2021-01-26 10:03:15.77+00 0 podium podium 1267 81 false com.nvs.core.model.meta.DataField 164 2021-01-26 10:03:15.771+00 2021-01-26 10:03:15.771+00 0 podium podium 1268 134 VARCHAR(50) com.nvs.core.model.meta.DataField 159 2021-01-26 10:03:15.771+00 2021-01-26 10:03:15.771+00 0 podium podium 1269 51 10 com.nvs.core.model.meta.DataField 144 2021-01-26 10:03:15.772+00 2021-01-26 10:03:15.772+00 0 podium podium 1270 44 \N com.nvs.core.model.meta.DataField 158 2021-01-26 10:03:15.773+00 2021-01-26 10:03:15.773+00 0 podium podium 1271 52 \N com.nvs.core.model.meta.DataField 123 2021-01-26 10:03:15.774+00 2021-01-26 10:03:15.774+00 0 podium podium 1272 52 \N com.nvs.core.model.meta.DataField 172 2021-01-26 10:03:15.775+00 2021-01-26 10:03:15.775+00 0 podium podium 1273 81 false com.nvs.core.model.meta.DataField 143 2021-01-26 10:03:15.775+00 2021-01-26 10:03:15.775+00 0 podium podium 1274 51 50 com.nvs.core.model.meta.DataField 146 2021-01-26 10:03:15.776+00 2021-01-26 10:03:15.776+00 0 podium podium 1275 52 \N com.nvs.core.model.meta.DataField 171 2021-01-26 10:03:15.777+00 2021-01-26 10:03:15.777+00 0 podium podium 1276 51 \N com.nvs.core.model.meta.DataField 118 2021-01-26 10:03:15.778+00 2021-01-26 10:03:15.778+00 0 podium podium 1277 50 \N com.nvs.core.model.meta.DataField 118 2021-01-26 10:03:15.779+00 2021-01-26 10:03:15.779+00 0 podium podium 1278 44 \N com.nvs.core.model.meta.DataField 136 2021-01-26 10:03:15.779+00 2021-01-26 10:03:15.779+00 0 podium podium 1279 50 \N com.nvs.core.model.meta.DataField 131 2021-01-26 10:03:15.78+00 2021-01-26 10:03:15.78+00 0 podium podium 1280 44 \N com.nvs.core.model.meta.DataField 133 2021-01-26 10:03:15.781+00 2021-01-26 10:03:15.781+00 0 podium podium 1281 52 \N com.nvs.core.model.meta.DataField 125 2021-01-26 10:03:15.782+00 2021-01-26 10:03:15.782+00 0 podium podium 1282 49 \N com.nvs.core.model.meta.DataField 140 2021-01-26 10:03:15.782+00 2021-01-26 10:03:15.782+00 0 podium podium 1283 51 50 com.nvs.core.model.meta.DataField 121 2021-01-26 10:03:15.783+00 2021-01-26 10:03:15.783+00 0 podium podium 1284 81 false com.nvs.core.model.meta.DataField 129 2021-01-26 10:03:15.784+00 2021-01-26 10:03:15.784+00 0 podium podium 1286 134 VARCHAR(50) com.nvs.core.model.meta.DataField 156 2021-01-26 10:03:15.785+00 2021-01-26 10:03:15.785+00 0 podium podium 1287 53 \N com.nvs.core.model.meta.DataField 151 2021-01-26 10:03:15.786+00 2021-01-26 10:03:15.786+00 0 podium podium 1288 49 \N com.nvs.core.model.meta.DataField 170 2021-01-26 10:03:15.787+00 2021-01-26 10:03:15.787+00 0 podium podium 1289 49 \N com.nvs.core.model.meta.DataField 137 2021-01-26 10:03:15.788+00 2021-01-26 10:03:15.788+00 0 podium podium 1290 53 \N com.nvs.core.model.meta.DataField 137 2021-01-26 10:03:15.788+00 2021-01-26 10:03:15.788+00 0 podium podium 1291 44 \N com.nvs.core.model.meta.DataField 161 2021-01-26 10:03:15.789+00 2021-01-26 10:03:15.789+00 0 podium podium 1292 53 \N com.nvs.core.model.meta.DataField 123 2021-01-26 10:03:15.79+00 2021-01-26 10:03:15.79+00 0 podium podium 1293 52 \N com.nvs.core.model.meta.DataField 164 2021-01-26 10:03:15.791+00 2021-01-26 10:03:15.791+00 0 podium podium 1294 44 \N com.nvs.core.model.meta.DataField 167 2021-01-26 10:03:15.792+00 2021-01-26 10:03:15.792+00 0 podium podium 1295 53 \N com.nvs.core.model.meta.DataField 131 2021-01-26 10:03:15.793+00 2021-01-26 10:03:15.793+00 0 podium podium 1296 81 false com.nvs.core.model.meta.DataField 152 2021-01-26 10:03:15.794+00 2021-01-26 10:03:15.794+00 0 podium podium 1297 49 \N com.nvs.core.model.meta.DataField 121 2021-01-26 10:03:15.794+00 2021-01-26 10:03:15.794+00 0 podium podium 1298 45 \N com.nvs.core.model.meta.DataField 172 2021-01-26 10:03:15.795+00 2021-01-26 10:03:15.795+00 0 podium podium 1299 44 \N com.nvs.core.model.meta.DataField 138 2021-01-26 10:03:15.796+00 2021-01-26 10:03:15.796+00 0 podium podium 1300 134 VARCHAR(50) com.nvs.core.model.meta.DataField 151 2021-01-26 10:03:15.797+00 2021-01-26 10:03:15.797+00 0 podium podium 1301 51 50 com.nvs.core.model.meta.DataField 163 2021-01-26 10:03:15.798+00 2021-01-26 10:03:15.798+00 0 podium podium 1302 44 \N com.nvs.core.model.meta.DataField 147 2021-01-26 10:03:15.798+00 2021-01-26 10:03:15.798+00 0 podium podium 1303 49 \N com.nvs.core.model.meta.DataField 130 2021-01-26 10:03:15.799+00 2021-01-26 10:03:15.799+00 0 podium podium 1304 50 \N com.nvs.core.model.meta.DataField 128 2021-01-26 10:03:15.8+00 2021-01-26 10:03:15.8+00 0 podium podium 1305 53 \N com.nvs.core.model.meta.DataField 141 2021-01-26 10:03:15.801+00 2021-01-26 10:03:15.801+00 0 podium podium 1306 49 \N com.nvs.core.model.meta.DataField 144 2021-01-26 10:03:15.802+00 2021-01-26 10:03:15.802+00 0 podium podium 1307 134 VARCHAR(15) com.nvs.core.model.meta.DataField 133 2021-01-26 10:03:15.802+00 2021-01-26 10:03:15.802+00 0 podium podium 1308 45 \N com.nvs.core.model.meta.DataField 129 2021-01-26 10:03:15.803+00 2021-01-26 10:03:15.803+00 0 podium podium 1309 51 50 com.nvs.core.model.meta.DataField 154 2021-01-26 10:03:15.804+00 2021-01-26 10:03:15.804+00 0 podium podium 1310 45 \N com.nvs.core.model.meta.DataField 149 2021-01-26 10:03:15.805+00 2021-01-26 10:03:15.805+00 0 podium podium 1311 52 \N com.nvs.core.model.meta.DataField 170 2021-01-26 10:03:15.806+00 2021-01-26 10:03:15.806+00 0 podium podium 1312 134 VARCHAR(10) com.nvs.core.model.meta.DataField 134 2021-01-26 10:03:15.806+00 2021-01-26 10:03:15.806+00 0 podium podium 1313 44 \N com.nvs.core.model.meta.DataField 143 2021-01-26 10:03:15.807+00 2021-01-26 10:03:15.807+00 0 podium podium 1314 44 \N com.nvs.core.model.meta.DataField 140 2021-01-26 10:03:15.808+00 2021-01-26 10:03:15.808+00 0 podium podium 1315 52 \N com.nvs.core.model.meta.DataField 119 2021-01-26 10:03:15.808+00 2021-01-26 10:03:15.808+00 0 podium podium 1316 44 \N com.nvs.core.model.meta.DataField 149 2021-01-26 10:03:15.809+00 2021-01-26 10:03:15.809+00 0 podium podium 1317 134 VARCHAR(10) com.nvs.core.model.meta.DataField 162 2021-01-26 10:03:15.81+00 2021-01-26 10:03:15.81+00 0 podium podium 1318 52 \N com.nvs.core.model.meta.DataField 174 2021-01-26 10:03:15.81+00 2021-01-26 10:03:15.81+00 0 podium podium 1319 45 \N com.nvs.core.model.meta.DataField 153 2021-01-26 10:03:15.811+00 2021-01-26 10:03:15.811+00 0 podium podium 1320 53 \N com.nvs.core.model.meta.DataField 157 2021-01-26 10:03:15.811+00 2021-01-26 10:03:15.811+00 0 podium podium 1321 45 \N com.nvs.core.model.meta.DataField 164 2021-01-26 10:03:15.812+00 2021-01-26 10:03:15.812+00 0 podium podium 1322 52 \N com.nvs.core.model.meta.DataField 147 2021-01-26 10:03:15.814+00 2021-01-26 10:03:15.814+00 0 podium podium 1323 49 \N com.nvs.core.model.meta.DataField 157 2021-01-26 10:03:15.815+00 2021-01-26 10:03:15.815+00 0 podium podium 1324 49 \N com.nvs.core.model.meta.DataField 143 2021-01-26 10:03:15.815+00 2021-01-26 10:03:15.815+00 0 podium podium 1325 53 \N com.nvs.core.model.meta.DataField 120 2021-01-26 10:03:15.816+00 2021-01-26 10:03:15.816+00 0 podium podium 1326 52 \N com.nvs.core.model.meta.DataField 168 2021-01-26 10:03:15.817+00 2021-01-26 10:03:15.817+00 0 podium podium 1327 53 \N com.nvs.core.model.meta.DataField 134 2021-01-26 10:03:15.818+00 2021-01-26 10:03:15.818+00 0 podium podium 1328 81 false com.nvs.core.model.meta.DataField 161 2021-01-26 10:03:15.819+00 2021-01-26 10:03:15.819+00 0 podium podium 1329 81 false com.nvs.core.model.meta.DataField 141 2021-01-26 10:03:15.82+00 2021-01-26 10:03:15.82+00 0 podium podium 1330 134 VARCHAR(10) com.nvs.core.model.meta.DataField 144 2021-01-26 10:03:15.821+00 2021-01-26 10:03:15.821+00 0 podium podium 1332 49 \N com.nvs.core.model.meta.DataField 155 2021-01-26 10:03:15.822+00 2021-01-26 10:03:15.822+00 0 podium podium 1333 52 \N com.nvs.core.model.meta.DataField 167 2021-01-26 10:03:15.823+00 2021-01-26 10:03:15.823+00 0 podium podium 1334 45 \N com.nvs.core.model.meta.DataField 156 2021-01-26 10:03:15.824+00 2021-01-26 10:03:15.824+00 0 podium podium 1335 52 \N com.nvs.core.model.meta.DataField 161 2021-01-26 10:03:15.825+00 2021-01-26 10:03:15.825+00 0 podium podium 1336 49 \N com.nvs.core.model.meta.DataField 119 2021-01-26 10:03:15.826+00 2021-01-26 10:03:15.826+00 0 podium podium 1337 51 50 com.nvs.core.model.meta.DataField 141 2021-01-26 10:03:15.827+00 2021-01-26 10:03:15.827+00 0 podium podium 1338 53 \N com.nvs.core.model.meta.DataField 126 2021-01-26 10:03:15.827+00 2021-01-26 10:03:15.827+00 0 podium podium 1339 81 false com.nvs.core.model.meta.DataField 127 2021-01-26 10:03:15.828+00 2021-01-26 10:03:15.828+00 0 podium podium 1340 52 \N com.nvs.core.model.meta.DataField 131 2021-01-26 10:03:15.829+00 2021-01-26 10:03:15.829+00 0 podium podium 1341 53 \N com.nvs.core.model.meta.DataField 161 2021-01-26 10:03:15.83+00 2021-01-26 10:03:15.83+00 0 podium podium 1342 81 false com.nvs.core.model.meta.DataField 121 2021-01-26 10:03:15.83+00 2021-01-26 10:03:15.83+00 0 podium podium 1343 53 \N com.nvs.core.model.meta.DataField 119 2021-01-26 10:03:15.831+00 2021-01-26 10:03:15.831+00 0 podium podium 1344 44 \N com.nvs.core.model.meta.DataField 156 2021-01-26 10:03:15.832+00 2021-01-26 10:03:15.832+00 0 podium podium 1345 49 \N com.nvs.core.model.meta.DataField 120 2021-01-26 10:03:15.833+00 2021-01-26 10:03:15.833+00 0 podium podium 1346 50 \N com.nvs.core.model.meta.DataField 146 2021-01-26 10:03:15.833+00 2021-01-26 10:03:15.833+00 0 podium podium 1349 49 \N com.nvs.core.model.meta.DataField 126 2021-01-26 10:03:15.835+00 2021-01-26 10:03:15.835+00 0 podium podium 1350 81 false com.nvs.core.model.meta.DataField 171 2021-01-26 10:03:15.836+00 2021-01-26 10:03:15.836+00 0 podium podium 1351 52 \N com.nvs.core.model.meta.DataField 124 2021-01-26 10:03:15.837+00 2021-01-26 10:03:15.837+00 0 podium podium 1352 81 false com.nvs.core.model.meta.DataField 128 2021-01-26 10:03:15.837+00 2021-01-26 10:03:15.837+00 0 podium podium 1353 81 false com.nvs.core.model.meta.DataField 125 2021-01-26 10:03:15.838+00 2021-01-26 10:03:15.838+00 0 podium podium 1354 53 \N com.nvs.core.model.meta.DataField 170 2021-01-26 10:03:15.839+00 2021-01-26 10:03:15.839+00 0 podium podium 1355 134 VARCHAR(50) com.nvs.core.model.meta.DataField 155 2021-01-26 10:03:15.84+00 2021-01-26 10:03:15.84+00 0 podium podium 1357 81 false com.nvs.core.model.meta.DataField 126 2021-01-26 10:03:15.841+00 2021-01-26 10:03:15.841+00 0 podium podium 1358 53 \N com.nvs.core.model.meta.DataField 118 2021-01-26 10:03:15.842+00 2021-01-26 10:03:15.842+00 0 podium podium 1359 52 \N com.nvs.core.model.meta.DataField 136 2021-01-26 10:03:15.842+00 2021-01-26 10:03:15.842+00 0 podium podium 1360 52 \N com.nvs.core.model.meta.DataField 154 2021-01-26 10:03:15.843+00 2021-01-26 10:03:15.843+00 0 podium podium 1361 49 \N com.nvs.core.model.meta.DataField 128 2021-01-26 10:03:15.843+00 2021-01-26 10:03:15.843+00 0 podium podium 1362 53 \N com.nvs.core.model.meta.DataField 144 2021-01-26 10:03:15.845+00 2021-01-26 10:03:15.845+00 0 podium podium 1363 51 10 com.nvs.core.model.meta.DataField 123 2021-01-26 10:03:15.846+00 2021-01-26 10:03:15.846+00 0 podium podium 1364 51 50 com.nvs.core.model.meta.DataField 125 2021-01-26 10:03:15.847+00 2021-01-26 10:03:15.847+00 0 podium podium 1365 51 70 com.nvs.core.model.meta.DataField 122 2021-01-26 10:03:15.847+00 2021-01-26 10:03:15.847+00 0 podium podium 1366 49 \N com.nvs.core.model.meta.DataField 167 2021-01-26 10:03:15.848+00 2021-01-26 10:03:15.848+00 0 podium podium 1367 81 false com.nvs.core.model.meta.DataField 168 2021-01-26 10:03:15.849+00 2021-01-26 10:03:15.849+00 0 podium podium 1368 45 \N com.nvs.core.model.meta.DataField 148 2021-01-26 10:03:15.85+00 2021-01-26 10:03:15.85+00 0 podium podium 1369 45 \N com.nvs.core.model.meta.DataField 165 2021-01-26 10:03:15.85+00 2021-01-26 10:03:15.85+00 0 podium podium 1370 51 50 com.nvs.core.model.meta.DataField 124 2021-01-26 10:03:15.851+00 2021-01-26 10:03:15.851+00 0 podium podium 1371 81 false com.nvs.core.model.meta.DataField 158 2021-01-26 10:03:15.852+00 2021-01-26 10:03:15.852+00 0 podium podium 1372 49 \N com.nvs.core.model.meta.DataField 127 2021-01-26 10:03:15.853+00 2021-01-26 10:03:15.853+00 0 podium podium 1373 50 \N com.nvs.core.model.meta.DataField 159 2021-01-26 10:03:15.853+00 2021-01-26 10:03:15.853+00 0 podium podium 1374 52 \N com.nvs.core.model.meta.DataField 126 2021-01-26 10:03:15.854+00 2021-01-26 10:03:15.854+00 0 podium podium 1375 50 \N com.nvs.core.model.meta.DataField 124 2021-01-26 10:03:15.855+00 2021-01-26 10:03:15.855+00 0 podium podium 1376 52 \N com.nvs.core.model.meta.DataField 129 2021-01-26 10:03:15.856+00 2021-01-26 10:03:15.856+00 0 podium podium 1377 50 \N com.nvs.core.model.meta.DataField 127 2021-01-26 10:03:15.856+00 2021-01-26 10:03:15.856+00 0 podium podium 1378 81 false com.nvs.core.model.meta.DataField 136 2021-01-26 10:03:15.857+00 2021-01-26 10:03:15.857+00 0 podium podium 1379 50 \N com.nvs.core.model.meta.DataField 161 2021-01-26 10:03:15.858+00 2021-01-26 10:03:15.858+00 0 podium podium 1380 51 15 com.nvs.core.model.meta.DataField 138 2021-01-26 10:03:15.859+00 2021-01-26 10:03:15.859+00 0 podium podium 1381 81 false com.nvs.core.model.meta.DataField 159 2021-01-26 10:03:15.859+00 2021-01-26 10:03:15.859+00 0 podium podium 1382 53 \N com.nvs.core.model.meta.DataField 154 2021-01-26 10:03:15.86+00 2021-01-26 10:03:15.86+00 0 podium podium 1383 81 false com.nvs.core.model.meta.DataField 170 2021-01-26 10:03:15.861+00 2021-01-26 10:03:15.861+00 0 podium podium 1385 44 \N com.nvs.core.model.meta.DataField 126 2021-01-26 10:03:15.863+00 2021-01-26 10:03:15.863+00 0 podium podium 1386 50 \N com.nvs.core.model.meta.DataField 129 2021-01-26 10:03:15.863+00 2021-01-26 10:03:15.863+00 0 podium podium 1388 53 \N com.nvs.core.model.meta.DataField 146 2021-01-26 10:03:15.865+00 2021-01-26 10:03:15.865+00 0 podium podium 1389 81 false com.nvs.core.model.meta.DataField 167 2021-01-26 10:03:15.866+00 2021-01-26 10:03:15.866+00 0 podium podium 1390 51 50 com.nvs.core.model.meta.DataField 127 2021-01-26 10:03:15.866+00 2021-01-26 10:03:15.866+00 0 podium podium 1391 44 \N com.nvs.core.model.meta.DataField 125 2021-01-26 10:03:15.867+00 2021-01-26 10:03:15.867+00 0 podium podium 1392 49 \N com.nvs.core.model.meta.DataField 152 2021-01-26 10:03:15.868+00 2021-01-26 10:03:15.868+00 0 podium podium 1393 45 \N com.nvs.core.model.meta.DataField 134 2021-01-26 10:03:15.869+00 2021-01-26 10:03:15.869+00 0 podium podium 1394 134 VARCHAR(50) com.nvs.core.model.meta.DataField 160 2021-01-26 10:03:15.869+00 2021-01-26 10:03:15.869+00 0 podium podium 1395 52 \N com.nvs.core.model.meta.DataField 158 2021-01-26 10:03:15.87+00 2021-01-26 10:03:15.87+00 0 podium podium 1397 52 \N com.nvs.core.model.meta.DataField 169 2021-01-26 10:03:15.872+00 2021-01-26 10:03:15.872+00 0 podium podium 1398 50 \N com.nvs.core.model.meta.DataField 154 2021-01-26 10:03:15.872+00 2021-01-26 10:03:15.872+00 0 podium podium 1399 44 \N com.nvs.core.model.meta.DataField 119 2021-01-26 10:03:15.873+00 2021-01-26 10:03:15.873+00 0 podium podium 1400 49 \N com.nvs.core.model.meta.DataField 138 2021-01-26 10:03:15.874+00 2021-01-26 10:03:15.874+00 0 podium podium 1401 53 \N com.nvs.core.model.meta.DataField 156 2021-01-26 10:03:15.874+00 2021-01-26 10:03:15.874+00 0 podium podium 1402 51 \N com.nvs.core.model.meta.DataField 152 2021-01-26 10:03:15.875+00 2021-01-26 10:03:15.875+00 0 podium podium 1403 81 false com.nvs.core.model.meta.DataField 174 2021-01-26 10:03:15.876+00 2021-01-26 10:03:15.876+00 0 podium podium 1404 52 \N com.nvs.core.model.meta.DataField 157 2021-01-26 10:03:15.877+00 2021-01-26 10:03:15.877+00 0 podium podium 1405 49 \N com.nvs.core.model.meta.DataField 154 2021-01-26 10:03:15.877+00 2021-01-26 10:03:15.877+00 0 podium podium 1406 45 \N com.nvs.core.model.meta.DataField 122 2021-01-26 10:03:15.878+00 2021-01-26 10:03:15.878+00 0 podium podium 1407 45 \N com.nvs.core.model.meta.DataField 138 2021-01-26 10:03:15.879+00 2021-01-26 10:03:15.879+00 0 podium podium 1408 49 \N com.nvs.core.model.meta.DataField 133 2021-01-26 10:03:15.88+00 2021-01-26 10:03:15.88+00 0 podium podium 1409 134 VARCHAR(50) com.nvs.core.model.meta.DataField 147 2021-01-26 10:03:15.88+00 2021-01-26 10:03:15.88+00 0 podium podium 1410 44 \N com.nvs.core.model.meta.DataField 168 2021-01-26 10:03:15.881+00 2021-01-26 10:03:15.881+00 0 podium podium 1412 52 \N com.nvs.core.model.meta.DataField 163 2021-01-26 10:03:15.882+00 2021-01-26 10:03:15.882+00 0 podium podium 1413 52 \N com.nvs.core.model.meta.DataField 120 2021-01-26 10:03:15.883+00 2021-01-26 10:03:15.883+00 0 podium podium 1414 52 \N com.nvs.core.model.meta.DataField 122 2021-01-26 10:03:15.884+00 2021-01-26 10:03:15.884+00 0 podium podium 1415 49 \N com.nvs.core.model.meta.DataField 118 2021-01-26 10:03:15.885+00 2021-01-26 10:03:15.885+00 0 podium podium 1416 49 \N com.nvs.core.model.meta.DataField 142 2021-01-26 10:03:15.886+00 2021-01-26 10:03:15.886+00 0 podium podium 1417 50 \N com.nvs.core.model.meta.DataField 163 2021-01-26 10:03:15.886+00 2021-01-26 10:03:15.886+00 0 podium podium 1418 134 VARCHAR(50) com.nvs.core.model.meta.DataField 129 2021-01-26 10:03:15.887+00 2021-01-26 10:03:15.887+00 0 podium podium 1419 50 \N com.nvs.core.model.meta.DataField 119 2021-01-26 10:03:15.888+00 2021-01-26 10:03:15.888+00 0 podium podium 1420 51 \N com.nvs.core.model.meta.DataField 166 2021-01-26 10:03:15.889+00 2021-01-26 10:03:15.889+00 0 podium podium 1421 52 \N com.nvs.core.model.meta.DataField 166 2021-01-26 10:03:15.89+00 2021-01-26 10:03:15.89+00 0 podium podium 1423 52 \N com.nvs.core.model.meta.DataField 162 2021-01-26 10:03:15.891+00 2021-01-26 10:03:15.891+00 0 podium podium 1424 44 \N com.nvs.core.model.meta.DataField 128 2021-01-26 10:03:15.892+00 2021-01-26 10:03:15.892+00 0 podium podium 1425 50 \N com.nvs.core.model.meta.DataField 155 2021-01-26 10:03:15.893+00 2021-01-26 10:03:15.893+00 0 podium podium 1426 51 \N com.nvs.core.model.meta.DataField 143 2021-01-26 10:03:15.893+00 2021-01-26 10:03:15.893+00 0 podium podium 1427 134 VARCHAR(50) com.nvs.core.model.meta.DataField 163 2021-01-26 10:03:15.894+00 2021-01-26 10:03:15.894+00 0 podium podium 1428 50 \N com.nvs.core.model.meta.DataField 123 2021-01-26 10:03:15.895+00 2021-01-26 10:03:15.895+00 0 podium podium 1429 44 \N com.nvs.core.model.meta.DataField 122 2021-01-26 10:03:15.895+00 2021-01-26 10:03:15.895+00 0 podium podium 1430 53 \N com.nvs.core.model.meta.DataField 155 2021-01-26 10:03:15.896+00 2021-01-26 10:03:15.896+00 0 podium podium 1431 49 \N com.nvs.core.model.meta.DataField 131 2021-01-26 10:03:15.897+00 2021-01-26 10:03:15.897+00 0 podium podium 1432 49 \N com.nvs.core.model.meta.DataField 129 2021-01-26 10:03:15.898+00 2021-01-26 10:03:15.898+00 0 podium podium 1433 45 \N com.nvs.core.model.meta.DataField 130 2021-01-26 10:03:15.898+00 2021-01-26 10:03:15.898+00 0 podium podium 1435 45 \N com.nvs.core.model.meta.DataField 167 2021-01-26 10:03:15.9+00 2021-01-26 10:03:15.9+00 0 podium podium 1436 51 \N com.nvs.core.model.meta.DataField 119 2021-01-26 10:03:15.9+00 2021-01-26 10:03:15.9+00 0 podium podium 1437 44 \N com.nvs.core.model.meta.DataField 142 2021-01-26 10:03:15.901+00 2021-01-26 10:03:15.901+00 0 podium podium 1438 45 \N com.nvs.core.model.meta.DataField 161 2021-01-26 10:03:15.902+00 2021-01-26 10:03:15.902+00 0 podium podium 1439 53 \N com.nvs.core.model.meta.DataField 127 2021-01-26 10:03:15.903+00 2021-01-26 10:03:15.903+00 0 podium podium 1440 53 \N com.nvs.core.model.meta.DataField 122 2021-01-26 10:03:15.903+00 2021-01-26 10:03:15.903+00 0 podium podium 1441 44 \N com.nvs.core.model.meta.DataField 124 2021-01-26 10:03:15.904+00 2021-01-26 10:03:15.904+00 0 podium podium 1442 51 50 com.nvs.core.model.meta.DataField 158 2021-01-26 10:03:15.905+00 2021-01-26 10:03:15.905+00 0 podium podium 1443 53 \N com.nvs.core.model.meta.DataField 136 2021-01-26 10:03:15.905+00 2021-01-26 10:03:15.905+00 0 podium podium 1445 45 \N com.nvs.core.model.meta.DataField 143 2021-01-26 10:03:15.907+00 2021-01-26 10:03:15.907+00 0 podium podium 1446 45 \N com.nvs.core.model.meta.DataField 158 2021-01-26 10:03:15.908+00 2021-01-26 10:03:15.908+00 0 podium podium 1447 44 \N com.nvs.core.model.meta.DataField 141 2021-01-26 10:03:15.908+00 2021-01-26 10:03:15.908+00 0 podium podium 1448 45 \N com.nvs.core.model.meta.DataField 132 2021-01-26 10:03:15.909+00 2021-01-26 10:03:15.909+00 0 podium podium 1450 44 \N com.nvs.core.model.meta.DataField 155 2021-01-26 10:03:15.911+00 2021-01-26 10:03:15.911+00 0 podium podium 1451 81 false com.nvs.core.model.meta.DataField 172 2021-01-26 10:03:15.911+00 2021-01-26 10:03:15.911+00 0 podium podium 1452 52 \N com.nvs.core.model.meta.DataField 121 2021-01-26 10:03:15.912+00 2021-01-26 10:03:15.912+00 0 podium podium 1453 134 VARCHAR(50) com.nvs.core.model.meta.DataField 126 2021-01-26 10:03:15.913+00 2021-01-26 10:03:15.913+00 0 podium podium 1454 53 \N com.nvs.core.model.meta.DataField 160 2021-01-26 10:03:15.914+00 2021-01-26 10:03:15.914+00 0 podium podium 1455 49 \N com.nvs.core.model.meta.DataField 164 2021-01-26 10:03:15.914+00 2021-01-26 10:03:15.914+00 0 podium podium 1457 45 \N com.nvs.core.model.meta.DataField 133 2021-01-26 10:03:15.916+00 2021-01-26 10:03:15.916+00 0 podium podium 1458 52 \N com.nvs.core.model.meta.DataField 153 2021-01-26 10:03:15.916+00 2021-01-26 10:03:15.916+00 0 podium podium 1459 49 \N com.nvs.core.model.meta.DataField 122 2021-01-26 10:03:15.917+00 2021-01-26 10:03:15.917+00 0 podium podium 1460 134 VARCHAR(50) com.nvs.core.model.meta.DataField 158 2021-01-26 10:03:15.918+00 2021-01-26 10:03:15.918+00 0 podium podium 1461 52 \N com.nvs.core.model.meta.DataField 142 2021-01-26 10:03:15.919+00 2021-01-26 10:03:15.919+00 0 podium podium 1463 45 \N com.nvs.core.model.meta.DataField 151 2021-01-26 10:03:15.92+00 2021-01-26 10:03:15.92+00 0 podium podium 1464 49 \N com.nvs.core.model.meta.DataField 147 2021-01-26 10:03:15.921+00 2021-01-26 10:03:15.921+00 0 podium podium 1465 51 \N com.nvs.core.model.meta.DataField 120 2021-01-26 10:03:15.921+00 2021-01-26 10:03:15.921+00 0 podium podium 1466 52 \N com.nvs.core.model.meta.DataField 133 2021-01-26 10:03:15.922+00 2021-01-26 10:03:15.922+00 0 podium podium 1467 50 \N com.nvs.core.model.meta.DataField 165 2021-01-26 10:03:15.923+00 2021-01-26 10:03:15.923+00 0 podium podium 1468 53 \N com.nvs.core.model.meta.DataField 152 2021-01-26 10:03:15.923+00 2021-01-26 10:03:15.923+00 0 podium podium 1469 50 \N com.nvs.core.model.meta.DataField 138 2021-01-26 10:03:15.924+00 2021-01-26 10:03:15.924+00 0 podium podium 1470 44 \N com.nvs.core.model.meta.DataField 118 2021-01-26 10:03:15.925+00 2021-01-26 10:03:15.925+00 0 podium podium 1471 53 \N com.nvs.core.model.meta.DataField 174 2021-01-26 10:03:15.925+00 2021-01-26 10:03:15.925+00 0 podium podium 1472 81 false com.nvs.core.model.meta.DataField 117 2021-01-26 10:03:15.926+00 2021-01-26 10:03:15.926+00 0 podium podium 1473 52 \N com.nvs.core.model.meta.DataField 117 2021-01-26 10:03:15.927+00 2021-01-26 10:03:15.927+00 0 podium podium 1474 49 \N com.nvs.core.model.meta.DataField 117 2021-01-26 10:03:15.928+00 2021-01-26 10:03:15.928+00 0 podium podium 1475 52 \N com.nvs.core.model.meta.DataField 159 2021-01-26 10:03:15.928+00 2021-01-26 10:03:15.928+00 0 podium podium 1476 44 \N com.nvs.core.model.meta.DataField 169 2021-01-26 10:03:15.929+00 2021-01-26 10:03:15.929+00 0 podium podium 1477 50 \N com.nvs.core.model.meta.DataField 122 2021-01-26 10:03:15.93+00 2021-01-26 10:03:15.93+00 0 podium podium 1478 49 \N com.nvs.core.model.meta.DataField 158 2021-01-26 10:03:15.931+00 2021-01-26 10:03:15.931+00 0 podium podium 1479 49 \N com.nvs.core.model.meta.DataField 124 2021-01-26 10:03:15.931+00 2021-01-26 10:03:15.931+00 0 podium podium 1480 50 \N com.nvs.core.model.meta.DataField 151 2021-01-26 10:03:15.932+00 2021-01-26 10:03:15.932+00 0 podium podium 1481 44 \N com.nvs.core.model.meta.DataField 121 2021-01-26 10:03:15.933+00 2021-01-26 10:03:15.933+00 0 podium podium 1483 52 \N com.nvs.core.model.meta.DataField 155 2021-01-26 10:03:15.934+00 2021-01-26 10:03:15.934+00 0 podium podium 1484 51 50 com.nvs.core.model.meta.DataField 151 2021-01-26 10:03:15.935+00 2021-01-26 10:03:15.935+00 0 podium podium 1485 134 VARCHAR(50) com.nvs.core.model.meta.DataField 124 2021-01-26 10:03:15.936+00 2021-01-26 10:03:15.936+00 0 podium podium 1486 49 \N com.nvs.core.model.meta.DataField 165 2021-01-26 10:03:15.936+00 2021-01-26 10:03:15.936+00 0 podium podium 1487 50 \N com.nvs.core.model.meta.DataField 158 2021-01-26 10:03:15.937+00 2021-01-26 10:03:15.937+00 0 podium podium 1488 45 \N com.nvs.core.model.meta.DataField 162 2021-01-26 10:03:15.938+00 2021-01-26 10:03:15.938+00 0 podium podium 1489 50 \N com.nvs.core.model.meta.DataField 140 2021-01-26 10:03:15.938+00 2021-01-26 10:03:15.938+00 0 podium podium 1490 134 VARCHAR(10) com.nvs.core.model.meta.DataField 174 2021-01-26 10:03:15.939+00 2021-01-26 10:03:15.939+00 0 podium podium 1491 50 \N com.nvs.core.model.meta.DataField 142 2021-01-26 10:03:15.94+00 2021-01-26 10:03:15.94+00 0 podium podium 1492 134 VARCHAR(50) com.nvs.core.model.meta.DataField 127 2021-01-26 10:03:15.941+00 2021-01-26 10:03:15.941+00 0 podium podium 1493 81 false com.nvs.core.model.meta.DataField 146 2021-01-26 10:03:15.941+00 2021-01-26 10:03:15.941+00 0 podium podium 1494 50 \N com.nvs.core.model.meta.DataField 157 2021-01-26 10:03:15.942+00 2021-01-26 10:03:15.942+00 0 podium podium 1495 81 false com.nvs.core.model.meta.DataField 130 2021-01-26 10:03:15.943+00 2021-01-26 10:03:15.943+00 0 podium podium 1497 44 \N com.nvs.core.model.meta.DataField 174 2021-01-26 10:03:15.944+00 2021-01-26 10:03:15.944+00 0 podium podium 1498 53 \N com.nvs.core.model.meta.DataField 171 2021-01-26 10:03:15.945+00 2021-01-26 10:03:15.945+00 0 podium podium 1499 81 false com.nvs.core.model.meta.DataField 140 2021-01-26 10:03:15.946+00 2021-01-26 10:03:15.946+00 0 podium podium 1500 44 \N com.nvs.core.model.meta.DataField 162 2021-01-26 10:03:15.947+00 2021-01-26 10:03:15.947+00 0 podium podium 1501 49 \N com.nvs.core.model.meta.DataField 125 2021-01-26 10:03:15.947+00 2021-01-26 10:03:15.947+00 0 podium podium 1502 51 50 com.nvs.core.model.meta.DataField 160 2021-01-26 10:03:15.948+00 2021-01-26 10:03:15.948+00 0 podium podium 1503 81 false com.nvs.core.model.meta.DataField 157 2021-01-26 10:03:15.949+00 2021-01-26 10:03:15.949+00 0 podium podium 1504 81 false com.nvs.core.model.meta.DataField 148 2021-01-26 10:03:15.95+00 2021-01-26 10:03:15.95+00 0 podium podium 1505 52 \N com.nvs.core.model.meta.DataField 118 2021-01-26 10:03:15.951+00 2021-01-26 10:03:15.951+00 0 podium podium 6577 277 true com.nvs.core.model.prepare.Bundle 3019 2021-01-27 11:00:14.307+00 2021-01-27 11:00:14.307+00 0 podium podium 6859 94 orders com.nvs.core.model.meta.DataEntity 56 2021-01-28 08:20:56.019+00 2021-01-28 08:20:56.019+00 0 podium podium 6860 202 MANAGED com.nvs.core.model.meta.DataEntity 55 2021-01-28 08:20:56.036+00 2021-01-28 08:20:56.036+00 0 podium podium 6861 94 customers com.nvs.core.model.meta.DataEntity 55 2021-01-28 08:20:56.037+00 2021-01-28 08:20:56.037+00 0 podium podium 6862 202 MANAGED com.nvs.core.model.meta.DataEntity 54 2021-01-28 08:20:56.054+00 2021-01-28 08:20:56.054+00 0 podium podium 1507 51 10 com.nvs.core.model.meta.DataField 134 2021-01-26 10:03:15.952+00 2021-01-26 10:03:15.952+00 0 podium podium 1508 52 \N com.nvs.core.model.meta.DataField 128 2021-01-26 10:03:15.953+00 2021-01-26 10:03:15.953+00 0 podium podium 1509 50 \N com.nvs.core.model.meta.DataField 152 2021-01-26 10:03:15.954+00 2021-01-26 10:03:15.954+00 0 podium podium 1510 50 \N com.nvs.core.model.meta.DataField 120 2021-01-26 10:03:15.954+00 2021-01-26 10:03:15.954+00 0 podium podium 1511 49 \N com.nvs.core.model.meta.DataField 174 2021-01-26 10:03:15.955+00 2021-01-26 10:03:15.955+00 0 podium podium 1512 51 \N com.nvs.core.model.meta.DataField 164 2021-01-26 10:03:15.956+00 2021-01-26 10:03:15.956+00 0 podium podium 1513 44 \N com.nvs.core.model.meta.DataField 166 2021-01-26 10:03:15.957+00 2021-01-26 10:03:15.957+00 0 podium podium 1515 44 \N com.nvs.core.model.meta.DataField 123 2021-01-26 10:03:15.958+00 2021-01-26 10:03:15.958+00 0 podium podium 1516 49 \N com.nvs.core.model.meta.DataField 159 2021-01-26 10:03:15.959+00 2021-01-26 10:03:15.959+00 0 podium podium 1517 50 \N com.nvs.core.model.meta.DataField 153 2021-01-26 10:03:15.96+00 2021-01-26 10:03:15.96+00 0 podium podium 1518 49 \N com.nvs.core.model.meta.DataField 151 2021-01-26 10:03:15.961+00 2021-01-26 10:03:15.961+00 0 podium podium 1519 81 false com.nvs.core.model.meta.DataField 154 2021-01-26 10:03:15.961+00 2021-01-26 10:03:15.961+00 0 podium podium 1520 52 \N com.nvs.core.model.meta.DataField 149 2021-01-26 10:03:15.962+00 2021-01-26 10:03:15.962+00 0 podium podium 1521 45 \N com.nvs.core.model.meta.DataField 126 2021-01-26 10:03:15.963+00 2021-01-26 10:03:15.963+00 0 podium podium 1522 134 VARCHAR(50) com.nvs.core.model.meta.DataField 148 2021-01-26 10:03:15.963+00 2021-01-26 10:03:15.963+00 0 podium podium 1523 45 \N com.nvs.core.model.meta.DataField 144 2021-01-26 10:03:15.964+00 2021-01-26 10:03:15.964+00 0 podium podium 1524 81 false com.nvs.core.model.meta.DataField 133 2021-01-26 10:03:15.965+00 2021-01-26 10:03:15.965+00 0 podium podium 1525 44 \N com.nvs.core.model.meta.DataField 117 2021-01-26 10:03:15.966+00 2021-01-26 10:03:15.966+00 0 podium podium 1526 50 \N com.nvs.core.model.meta.DataField 170 2021-01-26 10:03:15.966+00 2021-01-26 10:03:15.966+00 0 podium podium 1527 51 50 com.nvs.core.model.meta.DataField 136 2021-01-26 10:03:15.967+00 2021-01-26 10:03:15.967+00 0 podium podium 1528 45 \N com.nvs.core.model.meta.DataField 163 2021-01-26 10:03:15.968+00 2021-01-26 10:03:15.968+00 0 podium podium 1529 50 \N com.nvs.core.model.meta.DataField 160 2021-01-26 10:03:15.969+00 2021-01-26 10:03:15.969+00 0 podium podium 1530 51 21845 com.nvs.core.model.meta.DataField 172 2021-01-26 10:03:15.97+00 2021-01-26 10:03:15.97+00 0 podium podium 1531 81 false com.nvs.core.model.meta.DataField 132 2021-01-26 10:03:15.97+00 2021-01-26 10:03:15.97+00 0 podium podium 1532 51 \N com.nvs.core.model.meta.DataField 169 2021-01-26 10:03:15.971+00 2021-01-26 10:03:15.971+00 0 podium podium 1533 49 \N com.nvs.core.model.meta.DataField 134 2021-01-26 10:03:15.972+00 2021-01-26 10:03:15.972+00 0 podium podium 1534 52 \N com.nvs.core.model.meta.DataField 137 2021-01-26 10:03:15.973+00 2021-01-26 10:03:15.973+00 0 podium podium 6863 94 categories com.nvs.core.model.meta.DataEntity 54 2021-01-28 08:20:56.054+00 2021-01-28 08:20:56.054+00 0 podium podium 1536 134 VARCHAR(50) com.nvs.core.model.meta.DataField 146 2021-01-26 10:03:15.974+00 2021-01-26 10:03:15.974+00 0 podium podium 1537 50 \N com.nvs.core.model.meta.DataField 156 2021-01-26 10:03:15.975+00 2021-01-26 10:03:15.975+00 0 podium podium 1538 53 \N com.nvs.core.model.meta.DataField 164 2021-01-26 10:03:15.976+00 2021-01-26 10:03:15.976+00 0 podium podium 1539 51 \N com.nvs.core.model.meta.DataField 137 2021-01-26 10:03:15.977+00 2021-01-26 10:03:15.977+00 0 podium podium 1540 50 \N com.nvs.core.model.meta.DataField 134 2021-01-26 10:03:15.978+00 2021-01-26 10:03:15.978+00 0 podium podium 1541 81 false com.nvs.core.model.meta.DataField 149 2021-01-26 10:03:15.979+00 2021-01-26 10:03:15.979+00 0 podium podium 1542 51 \N com.nvs.core.model.meta.DataField 170 2021-01-26 10:03:15.979+00 2021-01-26 10:03:15.979+00 0 podium podium 1543 53 \N com.nvs.core.model.meta.DataField 165 2021-01-26 10:03:15.98+00 2021-01-26 10:03:15.98+00 0 podium podium 6864 202 MANAGED com.nvs.core.model.meta.DataEntity 59 2021-01-28 08:20:56.071+00 2021-01-28 08:20:56.071+00 0 podium podium 1545 81 false com.nvs.core.model.meta.DataField 147 2021-01-26 10:03:15.982+00 2021-01-26 10:03:15.982+00 0 podium podium 6865 94 employees com.nvs.core.model.meta.DataEntity 59 2021-01-28 08:20:56.071+00 2021-01-28 08:20:56.071+00 0 podium podium 1547 134 VARCHAR(50) com.nvs.core.model.meta.DataField 154 2021-01-26 10:03:15.983+00 2021-01-26 10:03:15.983+00 0 podium podium 1548 44 \N com.nvs.core.model.meta.DataField 137 2021-01-26 10:03:15.984+00 2021-01-26 10:03:15.984+00 0 podium podium 1549 45 \N com.nvs.core.model.meta.DataField 154 2021-01-26 10:03:15.984+00 2021-01-26 10:03:15.984+00 0 podium podium 1550 51 50 com.nvs.core.model.meta.DataField 129 2021-01-26 10:03:15.985+00 2021-01-26 10:03:15.985+00 0 podium podium 1551 53 \N com.nvs.core.model.meta.DataField 169 2021-01-26 10:03:15.986+00 2021-01-26 10:03:15.986+00 0 podium podium 1552 51 \N com.nvs.core.model.meta.DataField 171 2021-01-26 10:03:15.986+00 2021-01-26 10:03:15.986+00 0 podium podium 1553 50 \N com.nvs.core.model.meta.DataField 148 2021-01-26 10:03:15.987+00 2021-01-26 10:03:15.987+00 0 podium podium 1554 45 \N com.nvs.core.model.meta.DataField 121 2021-01-26 10:03:15.988+00 2021-01-26 10:03:15.988+00 0 podium podium 1555 50 \N com.nvs.core.model.meta.DataField 133 2021-01-26 10:03:15.988+00 2021-01-26 10:03:15.988+00 0 podium podium 1556 49 \N com.nvs.core.model.meta.DataField 141 2021-01-26 10:03:15.989+00 2021-01-26 10:03:15.989+00 0 podium podium 1557 45 \N com.nvs.core.model.meta.DataField 170 2021-01-26 10:03:15.99+00 2021-01-26 10:03:15.99+00 0 podium podium 1559 52 \N com.nvs.core.model.meta.DataField 146 2021-01-26 10:03:15.991+00 2021-01-26 10:03:15.991+00 0 podium podium 1560 49 \N com.nvs.core.model.meta.DataField 160 2021-01-26 10:03:15.993+00 2021-01-26 10:03:15.993+00 0 podium podium 1561 50 \N com.nvs.core.model.meta.DataField 137 2021-01-26 10:03:15.994+00 2021-01-26 10:03:15.994+00 0 podium podium 1562 45 \N com.nvs.core.model.meta.DataField 120 2021-01-26 10:03:15.994+00 2021-01-26 10:03:15.994+00 0 podium podium 1563 51 \N com.nvs.core.model.meta.DataField 165 2021-01-26 10:03:15.995+00 2021-01-26 10:03:15.995+00 0 podium podium 1564 44 \N com.nvs.core.model.meta.DataField 159 2021-01-26 10:03:15.996+00 2021-01-26 10:03:15.996+00 0 podium podium 1565 52 \N com.nvs.core.model.meta.DataField 138 2021-01-26 10:03:15.997+00 2021-01-26 10:03:15.997+00 0 podium podium 1566 45 \N com.nvs.core.model.meta.DataField 142 2021-01-26 10:03:15.998+00 2021-01-26 10:03:15.998+00 0 podium podium 1567 49 \N com.nvs.core.model.meta.DataField 168 2021-01-26 10:03:15.999+00 2021-01-26 10:03:15.999+00 0 podium podium 1568 50 \N com.nvs.core.model.meta.DataField 126 2021-01-26 10:03:15.999+00 2021-01-26 10:03:15.999+00 0 podium podium 1569 53 \N com.nvs.core.model.meta.DataField 121 2021-01-26 10:03:16+00 2021-01-26 10:03:16+00 0 podium podium 1570 134 VARCHAR(50) com.nvs.core.model.meta.DataField 136 2021-01-26 10:03:16.001+00 2021-01-26 10:03:16.001+00 0 podium podium 1571 51 \N com.nvs.core.model.meta.DataField 131 2021-01-26 10:03:16.002+00 2021-01-26 10:03:16.002+00 0 podium podium 1572 53 \N com.nvs.core.model.meta.DataField 138 2021-01-26 10:03:16.002+00 2021-01-26 10:03:16.002+00 0 podium podium 1573 50 \N com.nvs.core.model.meta.DataField 136 2021-01-26 10:03:16.003+00 2021-01-26 10:03:16.003+00 0 podium podium 1574 45 \N com.nvs.core.model.meta.DataField 127 2021-01-26 10:03:16.004+00 2021-01-26 10:03:16.004+00 0 podium podium 1575 45 \N com.nvs.core.model.meta.DataField 147 2021-01-26 10:03:16.004+00 2021-01-26 10:03:16.004+00 0 podium podium 1576 45 \N com.nvs.core.model.meta.DataField 123 2021-01-26 10:03:16.005+00 2021-01-26 10:03:16.005+00 0 podium podium 1577 134 VARCHAR(15) com.nvs.core.model.meta.DataField 168 2021-01-26 10:03:16.006+00 2021-01-26 10:03:16.006+00 0 podium podium 1578 134 VARCHAR(50) com.nvs.core.model.meta.DataField 141 2021-01-26 10:03:16.007+00 2021-01-26 10:03:16.007+00 0 podium podium 1579 44 \N com.nvs.core.model.meta.DataField 165 2021-01-26 10:03:16.007+00 2021-01-26 10:03:16.007+00 0 podium podium 1580 52 \N com.nvs.core.model.meta.DataField 127 2021-01-26 10:03:16.008+00 2021-01-26 10:03:16.008+00 0 podium podium 1581 45 \N com.nvs.core.model.meta.DataField 124 2021-01-26 10:03:16.009+00 2021-01-26 10:03:16.009+00 0 podium podium 1582 50 \N com.nvs.core.model.meta.DataField 147 2021-01-26 10:03:16.009+00 2021-01-26 10:03:16.009+00 0 podium podium 1583 51 4000 com.nvs.core.model.meta.DataField 117 2021-01-26 10:03:16.012+00 2021-01-26 10:03:16.012+00 0 podium podium 1584 50 \N com.nvs.core.model.meta.DataField 164 2021-01-26 10:03:16.012+00 2021-01-26 10:03:16.012+00 0 podium podium 1585 51 \N com.nvs.core.model.meta.DataField 153 2021-01-26 10:03:16.013+00 2021-01-26 10:03:16.013+00 0 podium podium 1586 53 \N com.nvs.core.model.meta.DataField 149 2021-01-26 10:03:16.013+00 2021-01-26 10:03:16.013+00 0 podium podium 1587 134 VARCHAR(50) com.nvs.core.model.meta.DataField 157 2021-01-26 10:03:16.014+00 2021-01-26 10:03:16.014+00 0 podium podium 1588 53 \N com.nvs.core.model.meta.DataField 167 2021-01-26 10:03:16.015+00 2021-01-26 10:03:16.015+00 0 podium podium 1589 52 \N com.nvs.core.model.meta.DataField 165 2021-01-26 10:03:16.015+00 2021-01-26 10:03:16.015+00 0 podium podium 1590 50 \N com.nvs.core.model.meta.DataField 143 2021-01-26 10:03:16.016+00 2021-01-26 10:03:16.016+00 0 podium podium 1591 53 \N com.nvs.core.model.meta.DataField 117 2021-01-26 10:03:16.016+00 2021-01-26 10:03:16.016+00 0 podium podium 1592 53 \N com.nvs.core.model.meta.DataField 158 2021-01-26 10:03:16.017+00 2021-01-26 10:03:16.017+00 0 podium podium 1593 49 \N com.nvs.core.model.meta.DataField 171 2021-01-26 10:03:16.018+00 2021-01-26 10:03:16.018+00 0 podium podium 1594 51 \N com.nvs.core.model.meta.DataField 130 2021-01-26 10:03:16.018+00 2021-01-26 10:03:16.018+00 0 podium podium 1595 52 \N com.nvs.core.model.meta.DataField 132 2021-01-26 10:03:16.019+00 2021-01-26 10:03:16.019+00 0 podium podium 1596 134 VARCHAR(50) com.nvs.core.model.meta.DataField 125 2021-01-26 10:03:16.02+00 2021-01-26 10:03:16.02+00 0 podium podium 1597 52 \N com.nvs.core.model.meta.DataField 140 2021-01-26 10:03:16.02+00 2021-01-26 10:03:16.02+00 0 podium podium 1598 51 50 com.nvs.core.model.meta.DataField 157 2021-01-26 10:03:16.021+00 2021-01-26 10:03:16.021+00 0 podium podium 1599 45 \N com.nvs.core.model.meta.DataField 136 2021-01-26 10:03:16.021+00 2021-01-26 10:03:16.021+00 0 podium podium 1600 44 \N com.nvs.core.model.meta.DataField 163 2021-01-26 10:03:16.024+00 2021-01-26 10:03:16.024+00 0 podium podium 1601 53 \N com.nvs.core.model.meta.DataField 148 2021-01-26 10:03:16.025+00 2021-01-26 10:03:16.025+00 0 podium podium 1602 81 false com.nvs.core.model.meta.DataField 142 2021-01-26 10:03:16.026+00 2021-01-26 10:03:16.026+00 0 podium podium 1603 81 false com.nvs.core.model.meta.DataField 119 2021-01-26 10:03:16.027+00 2021-01-26 10:03:16.027+00 0 podium podium 1604 53 \N com.nvs.core.model.meta.DataField 129 2021-01-26 10:03:16.027+00 2021-01-26 10:03:16.027+00 0 podium podium 1605 49 \N com.nvs.core.model.meta.DataField 162 2021-01-26 10:03:16.028+00 2021-01-26 10:03:16.028+00 0 podium podium 1606 44 \N com.nvs.core.model.meta.DataField 164 2021-01-26 10:03:16.029+00 2021-01-26 10:03:16.029+00 0 podium podium 1607 49 \N com.nvs.core.model.meta.DataField 123 2021-01-26 10:03:16.029+00 2021-01-26 10:03:16.029+00 0 podium podium 1608 53 \N com.nvs.core.model.meta.DataField 143 2021-01-26 10:03:16.03+00 2021-01-26 10:03:16.03+00 0 podium podium 1609 49 \N com.nvs.core.model.meta.DataField 132 2021-01-26 10:03:16.03+00 2021-01-26 10:03:16.03+00 0 podium podium 1610 81 false com.nvs.core.model.meta.DataField 151 2021-01-26 10:03:16.031+00 2021-01-26 10:03:16.031+00 0 podium podium 1611 50 \N com.nvs.core.model.meta.DataField 169 2021-01-26 10:03:16.032+00 2021-01-26 10:03:16.032+00 0 podium podium 1612 44 \N com.nvs.core.model.meta.DataField 148 2021-01-26 10:03:16.032+00 2021-01-26 10:03:16.032+00 0 podium podium 1613 44 \N com.nvs.core.model.meta.DataField 171 2021-01-26 10:03:16.033+00 2021-01-26 10:03:16.033+00 0 podium podium 1614 45 \N com.nvs.core.model.meta.DataField 118 2021-01-26 10:03:16.033+00 2021-01-26 10:03:16.033+00 0 podium podium 1615 210 MANAGED com.nvs.core.model.meta.DataSource 5 2021-01-26 10:03:16.065+00 2021-01-26 10:03:16.065+00 0 podium podium 6588 34 \\t com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.964+00 2021-01-27 11:06:11.964+00 0 podium podium 6589 293 \N com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.966+00 2021-01-27 11:06:11.966+00 0 podium podium 6590 31 1 com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.967+00 2021-01-27 11:06:11.967+00 0 podium podium 6591 202 MANAGED com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.968+00 2021-01-27 11:06:11.968+00 0 podium podium 6592 57 true com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.969+00 2021-01-27 11:06:11.969+00 0 podium podium 6593 288 com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.97+00 2021-01-27 11:06:11.97+00 0 podium podium 6594 35 false com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.971+00 2021-01-27 11:06:11.971+00 0 podium podium 6595 32 262144 com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.972+00 2021-01-27 11:06:11.972+00 0 podium podium 6596 114 Snapshot com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.973+00 2021-01-27 11:06:11.973+00 0 podium podium 6597 37 " com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.974+00 2021-01-27 11:06:11.974+00 0 podium podium 6598 33 \\n com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.975+00 2021-01-27 11:06:11.975+00 0 podium podium 6599 27 UTF_8 com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.976+00 2021-01-27 11:06:11.976+00 0 podium podium 6600 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.977+00 2021-01-27 11:06:11.977+00 0 podium podium 6601 38 " com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.977+00 2021-01-27 11:06:11.977+00 0 podium podium 1630 134 VARCHAR(50) com.nvs.core.model.meta.DataField 196 2021-01-26 10:03:16.292+00 2021-01-26 10:03:16.292+00 0 podium podium 1631 134 VARCHAR(50) com.nvs.core.model.meta.DataField 218 2021-01-26 10:03:16.293+00 2021-01-26 10:03:16.293+00 0 podium podium 1632 134 VARCHAR(50) com.nvs.core.model.meta.DataField 178 2021-01-26 10:03:16.293+00 2021-01-26 10:03:16.293+00 0 podium podium 1633 134 VARCHAR(50) com.nvs.core.model.meta.DataField 224 2021-01-26 10:03:16.294+00 2021-01-26 10:03:16.294+00 0 podium podium 1634 134 VARCHAR(15) com.nvs.core.model.meta.DataField 190 2021-01-26 10:03:16.295+00 2021-01-26 10:03:16.295+00 0 podium podium 1635 134 VARCHAR(15) com.nvs.core.model.meta.DataField 180 2021-01-26 10:03:16.295+00 2021-01-26 10:03:16.295+00 0 podium podium 1636 134 VARCHAR(10) com.nvs.core.model.meta.DataField 177 2021-01-26 10:03:16.296+00 2021-01-26 10:03:16.296+00 0 podium podium 1637 134 VARCHAR(50) com.nvs.core.model.meta.DataField 231 2021-01-26 10:03:16.297+00 2021-01-26 10:03:16.297+00 0 podium podium 1638 134 VARCHAR(50) com.nvs.core.model.meta.DataField 189 2021-01-26 10:03:16.298+00 2021-01-26 10:03:16.298+00 0 podium podium 1639 134 VARCHAR(15) com.nvs.core.model.meta.DataField 187 2021-01-26 10:03:16.298+00 2021-01-26 10:03:16.298+00 0 podium podium 1640 134 VARCHAR(21845) com.nvs.core.model.meta.DataField 183 2021-01-26 10:03:16.299+00 2021-01-26 10:03:16.299+00 0 podium podium 1641 134 VARCHAR(50) com.nvs.core.model.meta.DataField 209 2021-01-26 10:03:16.3+00 2021-01-26 10:03:16.3+00 0 podium podium 1642 134 VARCHAR(50) com.nvs.core.model.meta.DataField 184 2021-01-26 10:03:16.301+00 2021-01-26 10:03:16.301+00 0 podium podium 1643 134 VARCHAR(4000) com.nvs.core.model.meta.DataField 228 2021-01-26 10:03:16.301+00 2021-01-26 10:03:16.301+00 0 podium podium 1644 134 VARCHAR(50) com.nvs.core.model.meta.DataField 201 2021-01-26 10:03:16.302+00 2021-01-26 10:03:16.302+00 0 podium podium 1645 134 VARCHAR(50) com.nvs.core.model.meta.DataField 185 2021-01-26 10:03:16.303+00 2021-01-26 10:03:16.303+00 0 podium podium 1646 134 VARCHAR(50) com.nvs.core.model.meta.DataField 215 2021-01-26 10:03:16.303+00 2021-01-26 10:03:16.303+00 0 podium podium 1647 134 VARCHAR(50) com.nvs.core.model.meta.DataField 230 2021-01-26 10:03:16.305+00 2021-01-26 10:03:16.305+00 0 podium podium 1648 134 VARCHAR(50) com.nvs.core.model.meta.DataField 208 2021-01-26 10:03:16.306+00 2021-01-26 10:03:16.306+00 0 podium podium 1649 134 VARCHAR(10) com.nvs.core.model.meta.DataField 211 2021-01-26 10:03:16.306+00 2021-01-26 10:03:16.306+00 0 podium podium 1650 134 VARCHAR(50) com.nvs.core.model.meta.DataField 226 2021-01-26 10:03:16.307+00 2021-01-26 10:03:16.307+00 0 podium podium 1651 134 VARCHAR(50) com.nvs.core.model.meta.DataField 213 2021-01-26 10:03:16.308+00 2021-01-26 10:03:16.308+00 0 podium podium 1652 134 VARCHAR(50) com.nvs.core.model.meta.DataField 195 2021-01-26 10:03:16.308+00 2021-01-26 10:03:16.308+00 0 podium podium 1653 134 VARCHAR(50) com.nvs.core.model.meta.DataField 186 2021-01-26 10:03:16.309+00 2021-01-26 10:03:16.309+00 0 podium podium 1654 134 VARCHAR(50) com.nvs.core.model.meta.DataField 193 2021-01-26 10:03:16.31+00 2021-01-26 10:03:16.31+00 0 podium podium 1655 134 VARCHAR(100) com.nvs.core.model.meta.DataField 192 2021-01-26 10:03:16.311+00 2021-01-26 10:03:16.311+00 0 podium podium 1656 134 VARCHAR(70) com.nvs.core.model.meta.DataField 205 2021-01-26 10:03:16.311+00 2021-01-26 10:03:16.311+00 0 podium podium 1657 134 VARCHAR(15) com.nvs.core.model.meta.DataField 219 2021-01-26 10:03:16.312+00 2021-01-26 10:03:16.312+00 0 podium podium 1658 134 VARCHAR(10) com.nvs.core.model.meta.DataField 221 2021-01-26 10:03:16.313+00 2021-01-26 10:03:16.313+00 0 podium podium 1659 134 VARCHAR(50) com.nvs.core.model.meta.DataField 176 2021-01-26 10:03:16.313+00 2021-01-26 10:03:16.313+00 0 podium podium 1660 134 VARCHAR(10) com.nvs.core.model.meta.DataField 225 2021-01-26 10:03:16.315+00 2021-01-26 10:03:16.315+00 0 podium podium 1661 134 VARCHAR(50) com.nvs.core.model.meta.DataField 202 2021-01-26 10:03:16.316+00 2021-01-26 10:03:16.316+00 0 podium podium 1662 134 VARCHAR(15) com.nvs.core.model.meta.DataField 181 2021-01-26 10:03:16.317+00 2021-01-26 10:03:16.317+00 0 podium podium 1663 134 VARCHAR(50) com.nvs.core.model.meta.DataField 199 2021-01-26 10:03:16.317+00 2021-01-26 10:03:16.317+00 0 podium podium 1664 134 VARCHAR(10) com.nvs.core.model.meta.DataField 204 2021-01-26 10:03:16.318+00 2021-01-26 10:03:16.318+00 0 podium podium 1665 134 VARCHAR(50) com.nvs.core.model.meta.DataField 217 2021-01-26 10:03:16.319+00 2021-01-26 10:03:16.319+00 0 podium podium 6602 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.978+00 2021-01-27 11:06:11.978+00 0 podium podium 6603 42 com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.979+00 2021-01-27 11:06:11.979+00 0 podium podium 6604 56 true com.nvs.core.model.meta.DataEntity 77 2021-01-27 11:06:11.98+00 2021-01-27 11:06:11.98+00 0 podium podium 6605 288 com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.386+00 2021-01-27 11:06:25.386+00 0 podium podium 6606 34 \\t com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.387+00 2021-01-27 11:06:25.387+00 0 podium podium 6607 42 com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.388+00 2021-01-27 11:06:25.388+00 0 podium podium 6608 38 " com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.389+00 2021-01-27 11:06:25.389+00 0 podium podium 6609 33 \\n com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.389+00 2021-01-27 11:06:25.389+00 0 podium podium 6610 56 true com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.39+00 2021-01-27 11:06:25.39+00 0 podium podium 6611 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.391+00 2021-01-27 11:06:25.391+00 0 podium podium 6612 37 " com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.392+00 2021-01-27 11:06:25.392+00 0 podium podium 6613 202 MANAGED com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.393+00 2021-01-27 11:06:25.393+00 0 podium podium 6614 32 262144 com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.394+00 2021-01-27 11:06:25.394+00 0 podium podium 6615 114 Snapshot com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.395+00 2021-01-27 11:06:25.395+00 0 podium podium 6616 35 false com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.396+00 2021-01-27 11:06:25.396+00 0 podium podium 6617 293 \N com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.397+00 2021-01-27 11:06:25.397+00 0 podium podium 6618 57 true com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.397+00 2021-01-27 11:06:25.397+00 0 podium podium 6619 31 1 com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.398+00 2021-01-27 11:06:25.398+00 0 podium podium 6620 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.399+00 2021-01-27 11:06:25.399+00 0 podium podium 6621 27 UTF_8 com.nvs.core.model.meta.DataEntity 75 2021-01-27 11:06:25.4+00 2021-01-27 11:06:25.4+00 0 podium podium 6639 277 true com.nvs.core.model.PrepareExecutionWorkOrder 5 2021-01-27 11:08:09.512+00 2021-01-27 11:08:09.512+00 0 podium podium 6640 253 false com.nvs.core.model.PrepareExecutionWorkOrder 5 2021-01-27 11:08:09.518+00 2021-01-27 11:08:09.518+00 0 podium podium 6641 127 LOCAL com.nvs.core.model.PrepareExecutionWorkOrder 5 2021-01-27 11:08:09.524+00 2021-01-27 11:08:09.524+00 0 podium podium 6866 94 order_details com.nvs.core.model.meta.DataEntity 60 2021-01-28 08:20:56.088+00 2021-01-28 08:20:56.088+00 0 podium podium 6867 202 MANAGED com.nvs.core.model.meta.DataEntity 60 2021-01-28 08:20:56.088+00 2021-01-28 08:20:56.088+00 0 podium podium 6868 94 products com.nvs.core.model.meta.DataEntity 53 2021-01-28 08:20:56.106+00 2021-01-28 08:20:56.106+00 0 podium podium 6869 202 MANAGED com.nvs.core.model.meta.DataEntity 53 2021-01-28 08:20:56.107+00 2021-01-28 08:20:56.107+00 0 podium podium 6870 94 suppliers com.nvs.core.model.meta.DataEntity 41 2021-01-28 08:20:56.147+00 2021-01-28 08:20:56.147+00 0 podium podium 6871 202 MANAGED com.nvs.core.model.meta.DataEntity 41 2021-01-28 08:20:56.148+00 2021-01-28 08:20:56.148+00 0 podium podium 6872 202 MANAGED com.nvs.core.model.meta.DataEntity 44 2021-01-28 08:20:56.164+00 2021-01-28 08:20:56.164+00 0 podium podium 6873 94 shippers com.nvs.core.model.meta.DataEntity 44 2021-01-28 08:20:56.165+00 2021-01-28 08:20:56.165+00 0 podium podium 6874 94 orders com.nvs.core.model.meta.DataEntity 37 2021-01-28 08:20:56.176+00 2021-01-28 08:20:56.176+00 0 podium podium 6875 202 MANAGED com.nvs.core.model.meta.DataEntity 37 2021-01-28 08:20:56.177+00 2021-01-28 08:20:56.177+00 0 podium podium 6876 94 customers com.nvs.core.model.meta.DataEntity 42 2021-01-28 08:20:56.188+00 2021-01-28 08:20:56.188+00 0 podium podium 6877 202 MANAGED com.nvs.core.model.meta.DataEntity 42 2021-01-28 08:20:56.189+00 2021-01-28 08:20:56.189+00 0 podium podium 6878 94 categories com.nvs.core.model.meta.DataEntity 38 2021-01-28 08:20:56.2+00 2021-01-28 08:20:56.2+00 0 podium podium 6879 202 MANAGED com.nvs.core.model.meta.DataEntity 38 2021-01-28 08:20:56.2+00 2021-01-28 08:20:56.2+00 0 podium podium 6642 129 79 com.nvs.core.model.PrepareExecutionWorkOrder 5 2021-01-27 11:08:35.633+00 2021-01-27 11:08:35.633+00 0 ANONYMOUS ANONYMOUS 6643 166 UNCOMPRESSED com.nvs.core.model.PrepareExecutionWorkOrder 5 2021-01-27 11:08:35.695+00 2021-01-27 11:08:35.695+00 0 ANONYMOUS ANONYMOUS 6644 128 69 com.nvs.core.model.PrepareExecutionWorkOrder 5 2021-01-27 11:08:35.752+00 2021-01-27 11:08:35.752+00 0 ANONYMOUS ANONYMOUS 6645 130 -- podium data script generator prologue\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3026) \n\npdpg_45 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/customers/20210126010000/good' AS (customerNumber:long,customerName:chararray,contactLastName:chararray,contactFirstName:chararray,phone:chararray,addressLine1:chararray,addressLine2:chararray,city:chararray,state:chararray,postalCode:chararray,country:chararray,salesRepEmployeeNumber:long,creditLimit:double,customerLocation:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3026) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3027) \n\npdpg_46 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/salesorders/20210126010000/good' AS (orderNumber:long,orderDate:chararray,requiredDate:chararray,shippedDate:chararray,status:chararray,customerNumber:long,orderLineNumber:long,priceEach:double,quantityOrdered:long,productCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3027) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3028) \n\npdpg_47 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/employees/20210126010000/good' AS (employeeNumber:long,lastName:chararray,firstName:chararray,extension:chararray,email:chararray,reportsTo:long,jobTitle:chararray,officeCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3028) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3029) \n\npdpg_48 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/products_full/20210125230000/good' AS (productCode:chararray,productName:chararray,productScale:chararray,productVendor:chararray,productDescription:chararray,quantityInStock:long,buyPrice:double,MSRP:double,productLine:chararray,textDescription:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3029) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3023) \n\npdpg_38_temp = JOIN pdpg_46 BY productCode, pdpg_48 BY productCode ;\npdpg_38 = FOREACH pdpg_38_temp GENERATE pdpg_46::orderNumber AS orderNumber, pdpg_46::orderDate AS orderDate, pdpg_46::requiredDate AS requiredDate, pdpg_46::shippedDate AS shippedDate, pdpg_46::status AS status, pdpg_46::customerNumber AS customerNumber, pdpg_46::orderLineNumber AS orderLineNumber, pdpg_46::priceEach AS priceEach, pdpg_46::quantityOrdered AS quantityOrdered, pdpg_46::productCode AS productCode, pdpg_48::productName AS productName, pdpg_48::productScale AS productScale, pdpg_48::productVendor AS productVendor, pdpg_48::productDescription AS productDescription, pdpg_48::quantityInStock AS quantityInStock, pdpg_48::buyPrice AS buyPrice, pdpg_48::MSRP AS MSRP, pdpg_48::productLine AS productLine, pdpg_48::textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3023) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3020) \n\npdpg_31 = FOREACH pdpg_38 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3020) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3024) \n\npdpg_41_temp = JOIN pdpg_31 BY customerNumber, pdpg_45 BY customerNumber ;\npdpg_41 = FOREACH pdpg_41_temp GENERATE pdpg_31::orderNumber AS orderNumber, pdpg_31::orderDate AS orderDate, pdpg_31::requiredDate AS requiredDate, pdpg_31::shippedDate AS shippedDate, pdpg_31::status AS status, pdpg_31::customerNumber AS customerNumber, pdpg_31::orderLineNumber AS orderLineNumber, pdpg_31::priceEach AS priceEach, pdpg_31::quantityOrdered AS quantityOrdered, pdpg_31::productCode AS productCode, pdpg_31::productName AS productName, pdpg_31::productScale AS productScale, pdpg_31::productVendor AS productVendor, pdpg_31::productDescription AS productDescription, pdpg_31::quantityInStock AS quantityInStock, pdpg_31::buyPrice AS buyPrice, pdpg_31::MSRP AS MSRP, pdpg_31::productLine AS productLine, pdpg_31::textDescription AS textDescription, pdpg_45::customerName AS customerName, pdpg_45::contactLastName AS contactLastName, pdpg_45::contactFirstName AS contactFirstName, pdpg_45::phone AS phone, pdpg_45::addressLine1 AS addressLine1, pdpg_45::addressLine2 AS addressLine2, pdpg_45::city AS city, pdpg_45::state AS state, pdpg_45::postalCode AS postalCode, pdpg_45::country AS country, pdpg_45::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_45::creditLimit AS creditLimit, pdpg_45::customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3024) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3021) \n\npdpg_33 = FOREACH pdpg_41 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(double) creditLimit AS creditLimit,(chararray) customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3021) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3025) \n\npdpg_44_temp = JOIN pdpg_33 BY salesRepEmployeeNumber, pdpg_47 BY employeeNumber ;\npdpg_44 = FOREACH pdpg_44_temp GENERATE pdpg_33::orderNumber AS orderNumber, pdpg_33::orderDate AS orderDate, pdpg_33::requiredDate AS requiredDate, pdpg_33::shippedDate AS shippedDate, pdpg_33::status AS status, pdpg_33::customerNumber AS customerNumber, pdpg_33::orderLineNumber AS orderLineNumber, pdpg_33::priceEach AS priceEach, pdpg_33::quantityOrdered AS quantityOrdered, pdpg_33::productCode AS productCode, pdpg_33::productName AS productName, pdpg_33::productScale AS productScale, pdpg_33::productVendor AS productVendor, pdpg_33::productDescription AS productDescription, pdpg_33::quantityInStock AS quantityInStock, pdpg_33::buyPrice AS buyPrice, pdpg_33::MSRP AS MSRP, pdpg_33::productLine AS productLine, pdpg_33::textDescription AS textDescription, pdpg_33::customerName AS customerName, pdpg_33::contactLastName AS contactLastName, pdpg_33::contactFirstName AS contactFirstName, pdpg_33::phone AS phone, pdpg_33::addressLine1 AS addressLine1, pdpg_33::addressLine2 AS addressLine2, pdpg_33::city AS city, pdpg_33::state AS state, pdpg_33::postalCode AS postalCode, pdpg_33::country AS country, pdpg_33::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_33::creditLimit AS creditLimit, pdpg_33::customerLocation AS customerLocation, pdpg_47::lastName AS lastName, pdpg_47::firstName AS firstName, pdpg_47::extension AS extension, pdpg_47::email AS email, pdpg_47::reportsTo AS reportsTo, pdpg_47::jobTitle AS jobTitle, pdpg_47::officeCode AS officeCode;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3025) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3022) \n\npdpg_35 = FOREACH pdpg_44 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(chararray) (com.podiumdata.pigudf.obfuscation.Obfuscate(buyPrice,'Char Class Random')) AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(chararray) (com.podiumdata.pigudf.obfuscation.Obfuscate(creditLimit,'Char Class Random')) AS creditLimit,(chararray) customerLocation AS customerLocation,(chararray) lastName AS lastName,(chararray) firstName AS firstName,(chararray) extension AS extension,(chararray) email AS email,(long) reportsTo AS reportsTo,(chararray) jobTitle AS jobTitle,(chararray) officeCode AS officeCode,(bigdecimal) (com.podiumdata.pigudf.number.TO_DECIMAL(priceEach * quantityOrdered)) AS orderTotal;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3022) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Store (id:3031) \n\nSTORE pdpg_35 INTO 'file:///usr/local/qdc/data/loadingdock/classic_models/sales_full_masked/20210127110000' ;\n\n-- end script for com.nvs.core.model.prepare.pkg.Store (id:3031) \n\n-- podium data script generator epilogue\n com.nvs.core.model.PrepareExecutionWorkOrder 5 2021-01-27 11:08:40.834+00 2021-01-27 11:08:40.834+00 0 ANONYMOUS ANONYMOUS 6646 266 {"mapreduce.jobtracker.address":"local","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","ipc.client.connection.maxidletime":"10000","mapreduce.cluster.acls.enabled":"false","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","mapreduce.job.ubertask.maxmaps":"9","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","yarn.nodemanager.container-manager.thread-count":"20","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","fs.s3a.metadatastore.authoritative":"false","mapreduce.app-submission.cross-platform":"false","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.markreset.buffer.percent":"0.0","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","mapreduce.job.ubertask.enable":"false","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.am.max-attempts":"2","mapreduce.jobtracker.heartbeats.in.second":"100","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.security.instrumentation.requires.admin":"false","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.registry.zk.retry.ceiling.ms":"60000","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","yarn.app.mapreduce.client.job.max-retries":"3","mapreduce.jobhistory.cleaner.enable":"true","fs.s3a.s3guard.ddb.table.capacity.write":"100","ha.failover-controller.graceful-fence.connection.retries":"1","mapreduce.tasktracker.http.address":"0.0.0.0:50060","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","fs.s3a.max.total.tasks":"5","mapreduce.reduce.maxattempts":"4","mapreduce.client.submit.file.replication":"10","mapreduce.shuffle.port":"13562","yarn.resourcemanager.resource-tracker.client.thread-count":"50","yarn.fail-fast":"false","yarn.nodemanager.delete.thread-count":"4","fs.hdfs.impl.disable.cache":"true","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","s3native.client-write-packet-size":"65536","file.bytes-per-checksum":"512","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","mapreduce.jobtracker.taskcache.levels":"2","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.job.jvm.numtasks":"1","mapreduce.jobtracker.tasktracker.maxblacklists":"4","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.security.group.mapping.ldap.search.attr.member":"member","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","hadoop.security.credential.clear-text-fallback":"true","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","ha.failover-controller.new-active.rpc-timeout.ms":"60000","mapreduce.map.memory.mb":"-1","hadoop.ssl.hostname.verifier":"DEFAULT","mapreduce.tasktracker.healthchecker.interval":"60000","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","s3native.blocksize":"67108864","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","hadoop.registry.zk.retry.times":"5","mapreduce.job.running.reduce.limit":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.task.io.sort.factor":"10","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.s3a.paging.maximum":"5000","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","hadoop.shell.missing.defaultFs.warning":"true","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","fs.s3a.s3guard.ddb.background.sleep":"25","mapreduce.tasktracker.http.threads":"40","mapreduce.tasktracker.dns.nameserver":"default","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.job.maxtaskfailures.per.tracker":"3","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","mapreduce.shuffle.max.connections":"0","mapreduce.jobhistory.loadedjobs.cache.size":"5","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","mapreduce.client.output.filter":"FAILED","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","mapreduce.jobtracker.persist.jobstatus.hours":"1","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","mapreduce.job.speculative.retry-after-no-speculate":"1000","fs.s3a.attempts.maximum":"20","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","mapreduce.task.io.sort.mb":"100","yarn.app.mapreduce.client-am.ipc.max-retries":"3","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","adl.http.timeout":"5000","mapreduce.job.speculative.retry-after-speculate":"15000","mapreduce.jobtracker.restart.recover":"false","ipc.client.connect.max.retries":"10","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.security.kms.client.timeout":"60","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","yarn.resourcemanager.ha.automatic-failover.embedded":"true","hadoop.security.kms.client.failover.sleep.base.millis":"100","mapreduce.job.heap.memory-mb.ratio":"0.8","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","mapreduce.task.exit.timeout.check-interval-ms":"20000","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","yarn.resourcemanager.keytab":"/etc/krb5.keytab","mapreduce.map.log.level":"INFO","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","mapreduce.tasktracker.local.dir.minspacestart":"0","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","ha.health-monitor.check-interval.ms":"1000","mapreduce.reduce.shuffle.merge.percent":"0.66","ipc.client.connect.timeout":"20000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","yarn.nodemanager.recovery.enabled":"false","io.native.lib.available":"true","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","mapreduce.job.running.map.limit":"0","mapreduce.reduce.input.buffer.percent":"0.0","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","yarn.app.attempt.diagnostics.limit.kc":"64","hadoop.security.group.mapping.ldap.ssl":"false","fs.defaultFS":"file:///","fs.s3a.multipart.size":"64M","yarn.app.mapreduce.am.job.committer.commit-window":"10000","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.ifile.readahead":"true","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","s3native.replication":"3","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","fs.s3a.s3guard.ddb.table.create":"false","yarn.nodemanager.health-checker.interval-ms":"600000","s3.stream-buffer-size":"4096","ftp.client-write-packet-size":"65536","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","yarn.timeline-service.keytab":"/etc/krb5.keytab","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","ha.zookeeper.session-timeout.ms":"5000","fs.s3a.connection.ssl.enabled":"true","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","ipc.server.max.connections":"0","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.app.mapreduce.am.resource.mb":"1536","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","hadoop.security.groups.cache.secs":"300","mapreduce.job.speculative.minimum-allowed-tasks":"10","yarn.nodemanager.container-monitor.interval-ms":"3000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","s3.client-write-packet-size":"65536","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","mapreduce.job.reduces":"1","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","mapreduce.job.acl-modify-job":" ","hadoop.registry.zk.session.timeout.ms":"60000","fs.automatic.close":"true","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","fs.s3.block.size":"67108864","hadoop.http.authentication.token.validity":"36000","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.tasktracker.local.dir.minspacekill":"0","mapreduce.jobhistory.cleaner.interval-ms":"86400000","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","mapreduce.jobtracker.http.address":"0.0.0.0:50030","yarn.nodemanager.recovery.compaction-interval-secs":"3600","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","mapreduce.tasktracker.report.address":"127.0.0.1:0","hadoop.kerberos.kinit.command":"kinit","yarn.timeline-service.http-authentication.type":"simple","yarn.log-aggregation.retain-seconds":"-1","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","ipc.client.connect.max.retries.on.timeouts":"45","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","io.file.buffer.size":"4096","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","io.mapfile.bloom.size":"1048576","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","ipc.client.connect.retry.interval":"1000","hadoop.security.kms.client.authentication.retry-count":"1","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","yarn.app.mapreduce.shuffle.log.backups":"0","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","ftp.blocksize":"67108864","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","yarn.resourcemanager.scheduler.monitor.enable":"false","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","hadoop.http.authentication.simple.anonymous.allowed":"true","yarn.client.nodemanager-connect.retry-interval-ms":"10000","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","mapreduce.task.files.preserve.failedtasks":"false","mapreduce.job.reduce.slowstart.completedmaps":"0.05","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.jobhistory.minicluster.fixed.ports":"false","file.replication":"1","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","io.mapfile.bloom.error.rate":"0.005","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","mapreduce.map.cpu.vcores":"1","yarn.resourcemanager.zk-retry-interval-ms":"1000","ftp.bytes-per-checksum":"512","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.pmem-check-enabled":"true","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","fs.s3a.s3guard.cli.prune.age":"86400000","hadoop.registry.zk.root":"/registry","hadoop.jetty.logs.serve.aliases":"true","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","mapreduce.reduce.merge.inmem.threshold":"1000","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","mapreduce.job.token.tracking.ids.enabled":"false","yarn.nodemanager.localizer.client.thread-count":"5","hadoop.security.kms.client.failover.sleep.max.millis":"2000","mapreduce.jobhistory.move.thread-count":"3","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","rpc.metrics.quantile.enable":"false","mapreduce.jobtracker.expire.trackers.interval":"600000","io.bytes.per.checksum":"512","mapreduce.jobhistory.loadedjob.tasks.max":"-1","mapreduce.task.timeout":"600000","yarn.app.mapreduce.client.max-retries":"3","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","mapreduce.framework.name":"local","mapreduce.fileoutputcommitter.algorithm.version":"1","yarn.resourcemanager.connect.max-wait.ms":"900000","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","ipc.client.ping":"true","mapreduce.input.lineinputformat.linespermap":"1","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","hadoop.security.uid.cache.secs":"14400","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","mapreduce.tasktracker.dns.interface":"default","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","yarn.resourcemanager.ha.enabled":"false","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","fs.s3a.multipart.threshold":"128M","io.map.index.skip":"0","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","mapreduce.job.hdfs-servers":"${fs.defaultFS}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","mapreduce.task.merge.progress.records":"10000","map.sort.class":"org.apache.hadoop.util.QuickSort","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","fs.s3a.socket.send.buffer":"8192","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","hadoop.registry.zk.quorum":"localhost:2181","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","fs.s3a.fast.upload.active.blocks":"4","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","mapreduce.reduce.memory.mb":"-1","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","yarn.client.failover-retries-on-socket-timeouts":"0","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","hadoop.treat.subject.external":"false","mapreduce.client.completion.pollinterval":"5000","ipc.server.log.slow.rpc":"false","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10","yarn.nodemanager.vmem-pmem-ratio":"2.1"} com.nvs.core.model.PrepareExecutionWorkOrder 5 2021-01-27 11:08:40.847+00 2021-01-27 11:08:40.847+00 0 ANONYMOUS ANONYMOUS 6880 202 MANAGED com.nvs.core.model.meta.DataEntity 40 2021-01-28 08:20:56.213+00 2021-01-28 08:20:56.213+00 0 podium podium 6881 94 employees com.nvs.core.model.meta.DataEntity 40 2021-01-28 08:20:56.213+00 2021-01-28 08:20:56.213+00 0 podium podium 6882 94 order_details com.nvs.core.model.meta.DataEntity 43 2021-01-28 08:20:56.225+00 2021-01-28 08:20:56.225+00 0 podium podium 6883 202 MANAGED com.nvs.core.model.meta.DataEntity 43 2021-01-28 08:20:56.226+00 2021-01-28 08:20:56.226+00 0 podium podium 6884 202 MANAGED com.nvs.core.model.meta.DataEntity 39 2021-01-28 08:20:56.237+00 2021-01-28 08:20:56.237+00 0 podium podium 6885 94 products com.nvs.core.model.meta.DataEntity 39 2021-01-28 08:20:56.237+00 2021-01-28 08:20:56.237+00 0 podium podium 6886 45 \N com.nvs.core.model.meta.DataField 587 2021-01-28 08:24:01.107+00 2021-01-28 08:24:01.107+00 0 podium podium 6887 50 \N com.nvs.core.model.meta.DataField 587 2021-01-28 08:24:01.108+00 2021-01-28 08:24:01.108+00 0 podium podium 6888 81 true com.nvs.core.model.meta.DataField 587 2021-01-28 08:24:01.109+00 2021-01-28 08:24:01.109+00 0 podium podium 6889 49 \N com.nvs.core.model.meta.DataField 587 2021-01-28 08:24:01.109+00 2021-01-28 08:24:01.109+00 0 podium podium 6890 53 \N com.nvs.core.model.meta.DataField 587 2021-01-28 08:24:01.11+00 2021-01-28 08:24:01.11+00 0 podium podium 6891 52 \N com.nvs.core.model.meta.DataField 587 2021-01-28 08:24:01.11+00 2021-01-28 08:24:01.11+00 0 podium podium 6892 51 \N com.nvs.core.model.meta.DataField 587 2021-01-28 08:24:01.111+00 2021-01-28 08:24:01.111+00 0 podium podium 6893 137 Digest SHA256 Lower com.nvs.core.model.meta.DataField 587 2021-01-28 08:24:01.111+00 2021-01-28 08:24:01.111+00 0 podium podium 6894 44 \N com.nvs.core.model.meta.DataField 587 2021-01-28 08:24:01.112+00 2021-01-28 08:24:01.112+00 0 podium podium 7186 202 MANAGED com.nvs.core.model.meta.DataEntity 23 2021-01-28 10:28:38.395+00 2021-01-28 10:28:38.395+00 0 podium podium 7187 94 customers com.nvs.core.model.meta.DataEntity 25 2021-01-28 10:28:38.552+00 2021-01-28 10:28:38.552+00 0 podium podium 7188 202 MANAGED com.nvs.core.model.meta.DataEntity 25 2021-01-28 10:28:38.553+00 2021-01-28 10:28:38.553+00 0 podium podium 7189 202 MANAGED com.nvs.core.model.meta.DataEntity 24 2021-01-28 10:28:38.773+00 2021-01-28 10:28:38.773+00 0 podium podium 7190 94 productlines com.nvs.core.model.meta.DataEntity 24 2021-01-28 10:28:38.774+00 2021-01-28 10:28:38.774+00 0 podium podium 7191 202 MANAGED com.nvs.core.model.meta.DataEntity 22 2021-01-28 10:28:38.832+00 2021-01-28 10:28:38.832+00 0 podium podium 7192 94 employees com.nvs.core.model.meta.DataEntity 22 2021-01-28 10:28:38.832+00 2021-01-28 10:28:38.832+00 0 podium podium 7193 202 MANAGED com.nvs.core.model.meta.DataEntity 27 2021-01-28 10:28:38.97+00 2021-01-28 10:28:38.97+00 0 podium podium 7194 94 products com.nvs.core.model.meta.DataEntity 27 2021-01-28 10:28:38.971+00 2021-01-28 10:28:38.971+00 0 podium podium 7195 21 0 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.119+00 2021-01-28 10:28:39.119+00 0 podium podium 7196 259 0 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.119+00 2021-01-28 10:28:39.119+00 0 podium podium 7197 258 0 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.12+00 2021-01-28 10:28:39.12+00 0 podium podium 7198 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.12+00 2021-01-28 10:28:39.12+00 0 podium podium 7199 31 1 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.121+00 2021-01-28 10:28:39.121+00 0 podium podium 7200 153 0 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.121+00 2021-01-28 10:28:39.121+00 0 podium podium 7201 34 , com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.121+00 2021-01-28 10:28:39.121+00 0 podium podium 7202 27 UTF_8 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.122+00 2021-01-28 10:28:39.122+00 0 podium podium 7203 24 false com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.122+00 2021-01-28 10:28:39.122+00 0 podium podium 7204 33 \\r\\n com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.123+00 2021-01-28 10:28:39.123+00 0 podium podium 7205 5 SELECT `orderNumber`,`orderDate`,`requiredDate`,`shippedDate`,`status`,`customerNumber`,`orderLineNumber`,`priceEach`,`quantityOrdered`,`productCode` FROM `classic-models`.`salesorders` com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.123+00 2021-01-28 10:28:39.123+00 0 podium podium 7206 154 false com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.124+00 2021-01-28 10:28:39.124+00 0 podium podium 7207 293 \N com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.124+00 2021-01-28 10:28:39.124+00 0 podium podium 7208 17 false com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.124+00 2021-01-28 10:28:39.124+00 0 podium podium 7209 202 MANAGED com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.125+00 2021-01-28 10:28:39.125+00 0 podium podium 7210 32 262144 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.125+00 2021-01-28 10:28:39.125+00 0 podium podium 7211 77 \N com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.126+00 2021-01-28 10:28:39.126+00 0 podium podium 7212 37 " com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.126+00 2021-01-28 10:28:39.126+00 0 podium podium 7213 156 true com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.126+00 2021-01-28 10:28:39.126+00 0 podium podium 7214 152 0 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.127+00 2021-01-28 10:28:39.127+00 0 podium podium 7215 35 false com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.127+00 2021-01-28 10:28:39.127+00 0 podium podium 7216 94 salesorders com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.128+00 2021-01-28 10:28:39.128+00 0 podium podium 7217 114 Snapshot com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.128+00 2021-01-28 10:28:39.128+00 0 podium podium 7218 13 1 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.129+00 2021-01-28 10:28:39.129+00 0 podium podium 7219 92 0 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.129+00 2021-01-28 10:28:39.129+00 0 podium podium 7220 12 0 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.13+00 2021-01-28 10:28:39.13+00 0 podium podium 7221 38 " com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.13+00 2021-01-28 10:28:39.13+00 0 podium podium 7222 20 0 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.131+00 2021-01-28 10:28:39.131+00 0 podium podium 6647 294 {"79":{"bad":0,"expected":0,"ugly":0,"chaffed":0,"good":2473,"sample":35}} com.nvs.core.model.PrepareExecutionWorkOrder 5 2021-01-27 11:09:02.21+00 2021-01-27 11:09:02.21+00 0 ANONYMOUS ANONYMOUS 7223 14 false com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.131+00 2021-01-28 10:28:39.131+00 0 podium podium 7224 155 true com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.132+00 2021-01-28 10:28:39.132+00 0 podium podium 7225 18 "orderNumber","orderDate","requiredDate","shippedDate","status","customerNumber","orderLineNumber","priceEach","quantityOrdered","productCode"\\r\\n com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.132+00 2021-01-28 10:28:39.132+00 0 podium podium 7226 288 \N com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.133+00 2021-01-28 10:28:39.133+00 0 podium podium 7227 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.133+00 2021-01-28 10:28:39.133+00 0 podium podium 7228 28 0.00 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.134+00 2021-01-28 10:28:39.134+00 0 podium podium 7229 320 0 com.nvs.core.model.meta.DataEntity 65 2021-01-28 10:28:39.134+00 2021-01-28 10:28:39.134+00 0 podium podium 7230 293 \N com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.309+00 2021-01-28 10:28:39.309+00 0 podium podium 7231 288 \N com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.309+00 2021-01-28 10:28:39.309+00 0 podium podium 7232 31 1 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.31+00 2021-01-28 10:28:39.31+00 0 podium podium 7233 258 0 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.31+00 2021-01-28 10:28:39.31+00 0 podium podium 7234 155 true com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.311+00 2021-01-28 10:28:39.311+00 0 podium podium 7235 20 0 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.311+00 2021-01-28 10:28:39.311+00 0 podium podium 7236 18 "checkNumber","paymentDate","amount","customerNumber"\\r\\n com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.312+00 2021-01-28 10:28:39.312+00 0 podium podium 7237 33 \\r\\n com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.312+00 2021-01-28 10:28:39.312+00 0 podium podium 7238 17 false com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.313+00 2021-01-28 10:28:39.313+00 0 podium podium 7239 27 UTF_8 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.313+00 2021-01-28 10:28:39.313+00 0 podium podium 7240 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.314+00 2021-01-28 10:28:39.314+00 0 podium podium 7241 35 false com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.314+00 2021-01-28 10:28:39.314+00 0 podium podium 7242 32 262144 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.315+00 2021-01-28 10:28:39.315+00 0 podium podium 7243 12 0 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.315+00 2021-01-28 10:28:39.315+00 0 podium podium 7244 320 0 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.316+00 2021-01-28 10:28:39.316+00 0 podium podium 7245 34 , com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.316+00 2021-01-28 10:28:39.316+00 0 podium podium 7246 94 payments com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.317+00 2021-01-28 10:28:39.317+00 0 podium podium 7247 37 " com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.317+00 2021-01-28 10:28:39.317+00 0 podium podium 7248 259 0 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.318+00 2021-01-28 10:28:39.318+00 0 podium podium 7249 24 false com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.318+00 2021-01-28 10:28:39.318+00 0 podium podium 7250 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.319+00 2021-01-28 10:28:39.319+00 0 podium podium 7251 5 SELECT `checkNumber`,`paymentDate`,`amount`,`customerNumber` FROM `classic-models`.`payments` com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.319+00 2021-01-28 10:28:39.319+00 0 podium podium 7252 13 1 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.32+00 2021-01-28 10:28:39.32+00 0 podium podium 7253 14 false com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.32+00 2021-01-28 10:28:39.32+00 0 podium podium 7254 202 MANAGED com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.321+00 2021-01-28 10:28:39.321+00 0 podium podium 7255 92 0 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.321+00 2021-01-28 10:28:39.321+00 0 podium podium 7256 77 \N com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.322+00 2021-01-28 10:28:39.322+00 0 podium podium 7257 152 0 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.323+00 2021-01-28 10:28:39.323+00 0 podium podium 7258 38 " com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.323+00 2021-01-28 10:28:39.323+00 0 podium podium 7259 114 Snapshot com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.324+00 2021-01-28 10:28:39.324+00 0 podium podium 7260 153 0 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.324+00 2021-01-28 10:28:39.324+00 0 podium podium 7261 154 false com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.325+00 2021-01-28 10:28:39.325+00 0 podium podium 7262 21 0 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.325+00 2021-01-28 10:28:39.325+00 0 podium podium 7263 28 0.00 com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.326+00 2021-01-28 10:28:39.326+00 0 podium podium 7264 156 true com.nvs.core.model.meta.DataEntity 61 2021-01-28 10:28:39.326+00 2021-01-28 10:28:39.326+00 0 podium podium 7265 32 262144 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.412+00 2021-01-28 10:28:39.412+00 0 podium podium 7266 5 SELECT `officeCode`,`city`,`phone`,`addressLine1`,`addressLine2`,`state`,`country`,`postalCode`,`territory`,`officeLocation` FROM `classic-models`.`offices` com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.413+00 2021-01-28 10:28:39.413+00 0 podium podium 7267 33 \\r\\n com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.413+00 2021-01-28 10:28:39.413+00 0 podium podium 6904 52 \N com.nvs.core.model.meta.DataField 578 2021-01-28 08:26:24.785+00 2021-01-28 08:26:24.785+00 0 podium podium 6905 81 true com.nvs.core.model.meta.DataField 578 2021-01-28 08:26:24.786+00 2021-01-28 08:26:24.786+00 0 podium podium 6906 51 \N com.nvs.core.model.meta.DataField 578 2021-01-28 08:26:24.786+00 2021-01-28 08:26:24.786+00 0 podium podium 6907 45 \N com.nvs.core.model.meta.DataField 578 2021-01-28 08:26:24.787+00 2021-01-28 08:26:24.787+00 0 podium podium 6908 53 \N com.nvs.core.model.meta.DataField 578 2021-01-28 08:26:24.787+00 2021-01-28 08:26:24.787+00 0 podium podium 6909 50 \N com.nvs.core.model.meta.DataField 578 2021-01-28 08:26:24.802+00 2021-01-28 08:26:24.802+00 0 podium podium 6910 137 Digest MD5 Upper x2 com.nvs.core.model.meta.DataField 578 2021-01-28 08:26:24.803+00 2021-01-28 08:26:24.803+00 0 podium podium 6911 49 \N com.nvs.core.model.meta.DataField 578 2021-01-28 08:26:24.804+00 2021-01-28 08:26:24.804+00 0 podium podium 6912 44 \N com.nvs.core.model.meta.DataField 578 2021-01-28 08:26:24.804+00 2021-01-28 08:26:24.804+00 0 podium podium 7268 38 " com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.414+00 2021-01-28 10:28:39.414+00 0 podium podium 7269 21 0 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.414+00 2021-01-28 10:28:39.414+00 0 podium podium 7270 320 0 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.415+00 2021-01-28 10:28:39.415+00 0 podium podium 7271 28 0.00 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.415+00 2021-01-28 10:28:39.415+00 0 podium podium 7272 153 0 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.416+00 2021-01-28 10:28:39.416+00 0 podium podium 7273 31 1 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.416+00 2021-01-28 10:28:39.416+00 0 podium podium 7274 27 UTF_8 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.416+00 2021-01-28 10:28:39.416+00 0 podium podium 7275 35 false com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.417+00 2021-01-28 10:28:39.417+00 0 podium podium 7276 92 0 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.417+00 2021-01-28 10:28:39.417+00 0 podium podium 7277 202 MANAGED com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.418+00 2021-01-28 10:28:39.418+00 0 podium podium 7278 37 " com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.418+00 2021-01-28 10:28:39.418+00 0 podium podium 7279 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.419+00 2021-01-28 10:28:39.419+00 0 podium podium 7280 77 \N com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.419+00 2021-01-28 10:28:39.419+00 0 podium podium 7281 12 0 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.419+00 2021-01-28 10:28:39.419+00 0 podium podium 7282 288 \N com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.42+00 2021-01-28 10:28:39.42+00 0 podium podium 7283 259 0 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.42+00 2021-01-28 10:28:39.42+00 0 podium podium 7284 114 Snapshot com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.421+00 2021-01-28 10:28:39.421+00 0 podium podium 7285 18 "officeCode","city","phone","addressLine1","addressLine2","state","country","postalCode","territory","officeLocation"\\r\\n com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.421+00 2021-01-28 10:28:39.421+00 0 podium podium 7286 156 true com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.422+00 2021-01-28 10:28:39.422+00 0 podium podium 7287 14 false com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.422+00 2021-01-28 10:28:39.422+00 0 podium podium 7288 154 false com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.422+00 2021-01-28 10:28:39.422+00 0 podium podium 7289 293 \N com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.423+00 2021-01-28 10:28:39.423+00 0 podium podium 6684 253 false com.nvs.core.model.PrepareExecutionWorkOrder 6 2021-01-27 11:11:53.225+00 2021-01-27 11:11:53.225+00 0 podium podium 6685 271 5 com.nvs.core.model.PrepareExecutionWorkOrder 6 2021-01-27 11:11:53.23+00 2021-01-27 11:11:53.23+00 0 podium podium 6686 277 true com.nvs.core.model.PrepareExecutionWorkOrder 6 2021-01-27 11:11:53.236+00 2021-01-27 11:11:53.236+00 0 podium podium 6687 127 LOCAL com.nvs.core.model.PrepareExecutionWorkOrder 6 2021-01-27 11:11:53.241+00 2021-01-27 11:11:53.241+00 0 podium podium 6703 127 LOCAL com.nvs.core.model.PrepareExecutionWorkOrder 7 2021-01-27 11:14:25.356+00 2021-01-27 11:14:25.356+00 0 podium podium 6704 277 true com.nvs.core.model.PrepareExecutionWorkOrder 7 2021-01-27 11:14:25.362+00 2021-01-27 11:14:25.362+00 0 podium podium 6705 271 5 com.nvs.core.model.PrepareExecutionWorkOrder 7 2021-01-27 11:14:25.367+00 2021-01-27 11:14:25.367+00 0 podium podium 5601 49 \N com.nvs.core.model.meta.DataField 558 2021-01-26 10:32:11.029+00 2021-01-26 10:32:11.029+00 0 podium podium 5602 45 \N com.nvs.core.model.meta.DataField 566 2021-01-26 10:32:11.03+00 2021-01-26 10:32:11.03+00 0 podium podium 5603 51 \N com.nvs.core.model.meta.DataField 582 2021-01-26 10:32:11.031+00 2021-01-26 10:32:11.031+00 0 podium podium 5604 44 \N com.nvs.core.model.meta.DataField 550 2021-01-26 10:32:11.031+00 2021-01-26 10:32:11.031+00 0 podium podium 5605 52 \N com.nvs.core.model.meta.DataField 559 2021-01-26 10:32:11.032+00 2021-01-26 10:32:11.032+00 0 podium podium 5606 45 \N com.nvs.core.model.meta.DataField 561 2021-01-26 10:32:11.032+00 2021-01-26 10:32:11.032+00 0 podium podium 5607 49 \N com.nvs.core.model.meta.DataField 606 2021-01-26 10:32:11.033+00 2021-01-26 10:32:11.033+00 0 podium podium 5608 53 \N com.nvs.core.model.meta.DataField 560 2021-01-26 10:32:11.034+00 2021-01-26 10:32:11.034+00 0 podium podium 5609 81 false com.nvs.core.model.meta.DataField 582 2021-01-26 10:32:11.034+00 2021-01-26 10:32:11.034+00 0 podium podium 5610 49 \N com.nvs.core.model.meta.DataField 562 2021-01-26 10:32:11.035+00 2021-01-26 10:32:11.035+00 0 podium podium 5611 45 \N com.nvs.core.model.meta.DataField 592 2021-01-26 10:32:11.035+00 2021-01-26 10:32:11.035+00 0 podium podium 5612 52 \N com.nvs.core.model.meta.DataField 595 2021-01-26 10:32:11.036+00 2021-01-26 10:32:11.036+00 0 podium podium 5613 81 false com.nvs.core.model.meta.DataField 554 2021-01-26 10:32:11.037+00 2021-01-26 10:32:11.037+00 0 podium podium 5614 50 \N com.nvs.core.model.meta.DataField 561 2021-01-26 10:32:11.037+00 2021-01-26 10:32:11.037+00 0 podium podium 5615 50 \N com.nvs.core.model.meta.DataField 583 2021-01-26 10:32:11.038+00 2021-01-26 10:32:11.038+00 0 podium podium 5616 50 \N com.nvs.core.model.meta.DataField 582 2021-01-26 10:32:11.038+00 2021-01-26 10:32:11.038+00 0 podium podium 5617 51 50 com.nvs.core.model.meta.DataField 553 2021-01-26 10:32:11.039+00 2021-01-26 10:32:11.039+00 0 podium podium 5618 51 \N com.nvs.core.model.meta.DataField 558 2021-01-26 10:32:11.04+00 2021-01-26 10:32:11.04+00 0 podium podium 5619 44 \N com.nvs.core.model.meta.DataField 574 2021-01-26 10:32:11.04+00 2021-01-26 10:32:11.04+00 0 podium podium 5620 81 false com.nvs.core.model.meta.DataField 577 2021-01-26 10:32:11.041+00 2021-01-26 10:32:11.041+00 0 podium podium 5621 50 \N com.nvs.core.model.meta.DataField 558 2021-01-26 10:32:11.041+00 2021-01-26 10:32:11.041+00 0 podium podium 5622 53 \N com.nvs.core.model.meta.DataField 589 2021-01-26 10:32:11.042+00 2021-01-26 10:32:11.042+00 0 podium podium 5623 81 false com.nvs.core.model.meta.DataField 584 2021-01-26 10:32:11.042+00 2021-01-26 10:32:11.042+00 0 podium podium 5624 53 \N com.nvs.core.model.meta.DataField 602 2021-01-26 10:32:11.043+00 2021-01-26 10:32:11.043+00 0 podium podium 5625 51 15 com.nvs.core.model.meta.DataField 569 2021-01-26 10:32:11.044+00 2021-01-26 10:32:11.044+00 0 podium podium 5626 53 \N com.nvs.core.model.meta.DataField 582 2021-01-26 10:32:11.044+00 2021-01-26 10:32:11.044+00 0 podium podium 5627 50 \N com.nvs.core.model.meta.DataField 594 2021-01-26 10:32:11.045+00 2021-01-26 10:32:11.045+00 0 podium podium 5629 50 \N com.nvs.core.model.meta.DataField 604 2021-01-26 10:32:11.046+00 2021-01-26 10:32:11.046+00 0 podium podium 5630 44 \N com.nvs.core.model.meta.DataField 565 2021-01-26 10:32:11.046+00 2021-01-26 10:32:11.046+00 0 podium podium 5631 44 \N com.nvs.core.model.meta.DataField 595 2021-01-26 10:32:11.047+00 2021-01-26 10:32:11.047+00 0 podium podium 5632 51 10 com.nvs.core.model.meta.DataField 603 2021-01-26 10:32:11.048+00 2021-01-26 10:32:11.048+00 0 podium podium 5633 51 50 com.nvs.core.model.meta.DataField 602 2021-01-26 10:32:11.048+00 2021-01-26 10:32:11.048+00 0 podium podium 5634 53 \N com.nvs.core.model.meta.DataField 567 2021-01-26 10:32:11.049+00 2021-01-26 10:32:11.049+00 0 podium podium 5635 50 \N com.nvs.core.model.meta.DataField 557 2021-01-26 10:32:11.049+00 2021-01-26 10:32:11.049+00 0 podium podium 5636 45 \N com.nvs.core.model.meta.DataField 551 2021-01-26 10:32:11.05+00 2021-01-26 10:32:11.05+00 0 podium podium 5637 51 \N com.nvs.core.model.meta.DataField 579 2021-01-26 10:32:11.05+00 2021-01-26 10:32:11.05+00 0 podium podium 5638 52 \N com.nvs.core.model.meta.DataField 557 2021-01-26 10:32:11.051+00 2021-01-26 10:32:11.051+00 0 podium podium 5639 51 50 com.nvs.core.model.meta.DataField 563 2021-01-26 10:32:11.052+00 2021-01-26 10:32:11.052+00 0 podium podium 5640 49 \N com.nvs.core.model.meta.DataField 561 2021-01-26 10:32:11.052+00 2021-01-26 10:32:11.052+00 0 podium podium 5641 51 50 com.nvs.core.model.meta.DataField 596 2021-01-26 10:32:11.053+00 2021-01-26 10:32:11.053+00 0 podium podium 5642 52 \N com.nvs.core.model.meta.DataField 602 2021-01-26 10:32:11.053+00 2021-01-26 10:32:11.053+00 0 podium podium 5643 134 VARCHAR(50) com.nvs.core.model.meta.DataField 596 2021-01-26 10:32:11.054+00 2021-01-26 10:32:11.054+00 0 podium podium 5644 44 \N com.nvs.core.model.meta.DataField 558 2021-01-26 10:32:11.055+00 2021-01-26 10:32:11.055+00 0 podium podium 5645 50 \N com.nvs.core.model.meta.DataField 606 2021-01-26 10:32:11.055+00 2021-01-26 10:32:11.055+00 0 podium podium 5646 44 \N com.nvs.core.model.meta.DataField 585 2021-01-26 10:32:11.056+00 2021-01-26 10:32:11.056+00 0 podium podium 5647 49 \N com.nvs.core.model.meta.DataField 580 2021-01-26 10:32:11.056+00 2021-01-26 10:32:11.056+00 0 podium podium 5648 52 \N com.nvs.core.model.meta.DataField 589 2021-01-26 10:32:11.057+00 2021-01-26 10:32:11.057+00 0 podium podium 5649 51 50 com.nvs.core.model.meta.DataField 581 2021-01-26 10:32:11.058+00 2021-01-26 10:32:11.058+00 0 podium podium 5650 50 \N com.nvs.core.model.meta.DataField 580 2021-01-26 10:32:11.058+00 2021-01-26 10:32:11.058+00 0 podium podium 5651 52 \N com.nvs.core.model.meta.DataField 605 2021-01-26 10:32:11.059+00 2021-01-26 10:32:11.059+00 0 podium podium 6706 253 false com.nvs.core.model.PrepareExecutionWorkOrder 7 2021-01-27 11:14:25.372+00 2021-01-27 11:14:25.372+00 0 podium podium 5652 45 \N com.nvs.core.model.meta.DataField 591 2021-01-26 10:32:11.059+00 2021-01-26 10:32:11.059+00 0 podium podium 5653 81 false com.nvs.core.model.meta.DataField 559 2021-01-26 10:32:11.06+00 2021-01-26 10:32:11.06+00 0 podium podium 5654 50 \N com.nvs.core.model.meta.DataField 575 2021-01-26 10:32:11.06+00 2021-01-26 10:32:11.06+00 0 podium podium 5655 44 \N com.nvs.core.model.meta.DataField 567 2021-01-26 10:32:11.061+00 2021-01-26 10:32:11.061+00 0 podium podium 5656 53 \N com.nvs.core.model.meta.DataField 606 2021-01-26 10:32:11.062+00 2021-01-26 10:32:11.062+00 0 podium podium 5657 53 \N com.nvs.core.model.meta.DataField 593 2021-01-26 10:32:11.062+00 2021-01-26 10:32:11.062+00 0 podium podium 5658 49 \N com.nvs.core.model.meta.DataField 568 2021-01-26 10:32:11.063+00 2021-01-26 10:32:11.063+00 0 podium podium 5659 134 VARCHAR(10) com.nvs.core.model.meta.DataField 603 2021-01-26 10:32:11.063+00 2021-01-26 10:32:11.063+00 0 podium podium 5660 49 \N com.nvs.core.model.meta.DataField 575 2021-01-26 10:32:11.064+00 2021-01-26 10:32:11.064+00 0 podium podium 5661 134 VARCHAR(50) com.nvs.core.model.meta.DataField 598 2021-01-26 10:32:11.065+00 2021-01-26 10:32:11.065+00 0 podium podium 5662 50 \N com.nvs.core.model.meta.DataField 589 2021-01-26 10:32:11.065+00 2021-01-26 10:32:11.065+00 0 podium podium 5663 81 false com.nvs.core.model.meta.DataField 567 2021-01-26 10:32:11.066+00 2021-01-26 10:32:11.066+00 0 podium podium 5664 49 \N com.nvs.core.model.meta.DataField 594 2021-01-26 10:32:11.066+00 2021-01-26 10:32:11.066+00 0 podium podium 5665 81 false com.nvs.core.model.meta.DataField 576 2021-01-26 10:32:11.067+00 2021-01-26 10:32:11.067+00 0 podium podium 5666 49 \N com.nvs.core.model.meta.DataField 557 2021-01-26 10:32:11.067+00 2021-01-26 10:32:11.067+00 0 podium podium 5667 49 \N com.nvs.core.model.meta.DataField 598 2021-01-26 10:32:11.068+00 2021-01-26 10:32:11.068+00 0 podium podium 5668 53 \N com.nvs.core.model.meta.DataField 577 2021-01-26 10:32:11.069+00 2021-01-26 10:32:11.069+00 0 podium podium 5669 44 \N com.nvs.core.model.meta.DataField 553 2021-01-26 10:32:11.069+00 2021-01-26 10:32:11.069+00 0 podium podium 5670 52 \N com.nvs.core.model.meta.DataField 556 2021-01-26 10:32:11.07+00 2021-01-26 10:32:11.07+00 0 podium podium 5671 44 \N com.nvs.core.model.meta.DataField 597 2021-01-26 10:32:11.07+00 2021-01-26 10:32:11.07+00 0 podium podium 5672 53 \N com.nvs.core.model.meta.DataField 581 2021-01-26 10:32:11.071+00 2021-01-26 10:32:11.071+00 0 podium podium 5673 81 false com.nvs.core.model.meta.DataField 575 2021-01-26 10:32:11.071+00 2021-01-26 10:32:11.071+00 0 podium podium 5674 50 \N com.nvs.core.model.meta.DataField 572 2021-01-26 10:32:11.072+00 2021-01-26 10:32:11.072+00 0 podium podium 5675 50 \N com.nvs.core.model.meta.DataField 554 2021-01-26 10:32:11.073+00 2021-01-26 10:32:11.073+00 0 podium podium 5676 52 \N com.nvs.core.model.meta.DataField 586 2021-01-26 10:32:11.073+00 2021-01-26 10:32:11.073+00 0 podium podium 5677 53 \N com.nvs.core.model.meta.DataField 597 2021-01-26 10:32:11.074+00 2021-01-26 10:32:11.074+00 0 podium podium 5678 45 \N com.nvs.core.model.meta.DataField 595 2021-01-26 10:32:11.074+00 2021-01-26 10:32:11.074+00 0 podium podium 5679 49 \N com.nvs.core.model.meta.DataField 570 2021-01-26 10:32:11.075+00 2021-01-26 10:32:11.075+00 0 podium podium 5680 51 \N com.nvs.core.model.meta.DataField 552 2021-01-26 10:32:11.075+00 2021-01-26 10:32:11.075+00 0 podium podium 5681 44 \N com.nvs.core.model.meta.DataField 601 2021-01-26 10:32:11.076+00 2021-01-26 10:32:11.076+00 0 podium podium 5682 81 false com.nvs.core.model.meta.DataField 594 2021-01-26 10:32:11.076+00 2021-01-26 10:32:11.076+00 0 podium podium 5683 45 \N com.nvs.core.model.meta.DataField 562 2021-01-26 10:32:11.077+00 2021-01-26 10:32:11.077+00 0 podium podium 5684 53 \N com.nvs.core.model.meta.DataField 591 2021-01-26 10:32:11.078+00 2021-01-26 10:32:11.078+00 0 podium podium 5685 52 \N com.nvs.core.model.meta.DataField 604 2021-01-26 10:32:11.078+00 2021-01-26 10:32:11.078+00 0 podium podium 5686 53 \N com.nvs.core.model.meta.DataField 603 2021-01-26 10:32:11.079+00 2021-01-26 10:32:11.079+00 0 podium podium 5687 52 \N com.nvs.core.model.meta.DataField 555 2021-01-26 10:32:11.079+00 2021-01-26 10:32:11.079+00 0 podium podium 5688 81 false com.nvs.core.model.meta.DataField 565 2021-01-26 10:32:11.08+00 2021-01-26 10:32:11.08+00 0 podium podium 5689 49 \N com.nvs.core.model.meta.DataField 599 2021-01-26 10:32:11.081+00 2021-01-26 10:32:11.081+00 0 podium podium 5690 45 \N com.nvs.core.model.meta.DataField 590 2021-01-26 10:32:11.081+00 2021-01-26 10:32:11.081+00 0 podium podium 5691 44 \N com.nvs.core.model.meta.DataField 604 2021-01-26 10:32:11.082+00 2021-01-26 10:32:11.082+00 0 podium podium 5692 134 VARCHAR(15) com.nvs.core.model.meta.DataField 585 2021-01-26 10:32:11.082+00 2021-01-26 10:32:11.082+00 0 podium podium 5693 50 \N com.nvs.core.model.meta.DataField 585 2021-01-26 10:32:11.083+00 2021-01-26 10:32:11.083+00 0 podium podium 5694 45 \N com.nvs.core.model.meta.DataField 598 2021-01-26 10:32:11.083+00 2021-01-26 10:32:11.083+00 0 podium podium 5695 52 \N com.nvs.core.model.meta.DataField 581 2021-01-26 10:32:11.084+00 2021-01-26 10:32:11.084+00 0 podium podium 5696 53 \N com.nvs.core.model.meta.DataField 570 2021-01-26 10:32:11.085+00 2021-01-26 10:32:11.085+00 0 podium podium 5697 53 \N com.nvs.core.model.meta.DataField 598 2021-01-26 10:32:11.085+00 2021-01-26 10:32:11.085+00 0 podium podium 5698 52 \N com.nvs.core.model.meta.DataField 588 2021-01-26 10:32:11.086+00 2021-01-26 10:32:11.086+00 0 podium podium 5699 52 \N com.nvs.core.model.meta.DataField 564 2021-01-26 10:32:11.086+00 2021-01-26 10:32:11.086+00 0 podium podium 5700 53 \N com.nvs.core.model.meta.DataField 601 2021-01-26 10:32:11.087+00 2021-01-26 10:32:11.087+00 0 podium podium 5701 52 \N com.nvs.core.model.meta.DataField 591 2021-01-26 10:32:11.087+00 2021-01-26 10:32:11.087+00 0 podium podium 5702 45 \N com.nvs.core.model.meta.DataField 553 2021-01-26 10:32:11.088+00 2021-01-26 10:32:11.088+00 0 podium podium 5703 44 \N com.nvs.core.model.meta.DataField 561 2021-01-26 10:32:11.089+00 2021-01-26 10:32:11.089+00 0 podium podium 5704 134 VARCHAR(50) com.nvs.core.model.meta.DataField 574 2021-01-26 10:32:11.089+00 2021-01-26 10:32:11.089+00 0 podium podium 5705 50 \N com.nvs.core.model.meta.DataField 569 2021-01-26 10:32:11.09+00 2021-01-26 10:32:11.09+00 0 podium podium 5706 50 \N com.nvs.core.model.meta.DataField 581 2021-01-26 10:32:11.09+00 2021-01-26 10:32:11.09+00 0 podium podium 5707 52 \N com.nvs.core.model.meta.DataField 585 2021-01-26 10:32:11.091+00 2021-01-26 10:32:11.091+00 0 podium podium 5708 45 \N com.nvs.core.model.meta.DataField 564 2021-01-26 10:32:11.091+00 2021-01-26 10:32:11.091+00 0 podium podium 5709 45 \N com.nvs.core.model.meta.DataField 606 2021-01-26 10:32:11.092+00 2021-01-26 10:32:11.092+00 0 podium podium 5710 50 \N com.nvs.core.model.meta.DataField 563 2021-01-26 10:32:11.093+00 2021-01-26 10:32:11.093+00 0 podium podium 5711 134 VARCHAR(50) com.nvs.core.model.meta.DataField 575 2021-01-26 10:32:11.093+00 2021-01-26 10:32:11.093+00 0 podium podium 5712 50 \N com.nvs.core.model.meta.DataField 566 2021-01-26 10:32:11.094+00 2021-01-26 10:32:11.094+00 0 podium podium 5713 44 \N com.nvs.core.model.meta.DataField 583 2021-01-26 10:32:11.094+00 2021-01-26 10:32:11.094+00 0 podium podium 5714 53 \N com.nvs.core.model.meta.DataField 596 2021-01-26 10:32:11.095+00 2021-01-26 10:32:11.095+00 0 podium podium 5715 81 false com.nvs.core.model.meta.DataField 553 2021-01-26 10:32:11.095+00 2021-01-26 10:32:11.095+00 0 podium podium 5716 49 \N com.nvs.core.model.meta.DataField 588 2021-01-26 10:32:11.096+00 2021-01-26 10:32:11.096+00 0 podium podium 5717 44 \N com.nvs.core.model.meta.DataField 562 2021-01-26 10:32:11.097+00 2021-01-26 10:32:11.097+00 0 podium podium 5718 45 \N com.nvs.core.model.meta.DataField 568 2021-01-26 10:32:11.097+00 2021-01-26 10:32:11.097+00 0 podium podium 5721 50 \N com.nvs.core.model.meta.DataField 564 2021-01-26 10:32:11.099+00 2021-01-26 10:32:11.099+00 0 podium podium 5722 81 false com.nvs.core.model.meta.DataField 580 2021-01-26 10:32:11.1+00 2021-01-26 10:32:11.1+00 0 podium podium 5723 52 \N com.nvs.core.model.meta.DataField 570 2021-01-26 10:32:11.1+00 2021-01-26 10:32:11.1+00 0 podium podium 5724 44 \N com.nvs.core.model.meta.DataField 600 2021-01-26 10:32:11.101+00 2021-01-26 10:32:11.101+00 0 podium podium 5725 49 \N com.nvs.core.model.meta.DataField 592 2021-01-26 10:32:11.101+00 2021-01-26 10:32:11.101+00 0 podium podium 5726 134 VARCHAR(50) com.nvs.core.model.meta.DataField 576 2021-01-26 10:32:11.102+00 2021-01-26 10:32:11.102+00 0 podium podium 5727 52 \N com.nvs.core.model.meta.DataField 551 2021-01-26 10:32:11.102+00 2021-01-26 10:32:11.102+00 0 podium podium 5728 51 50 com.nvs.core.model.meta.DataField 573 2021-01-26 10:32:11.103+00 2021-01-26 10:32:11.103+00 0 podium podium 5729 51 50 com.nvs.core.model.meta.DataField 549 2021-01-26 10:32:11.104+00 2021-01-26 10:32:11.104+00 0 podium podium 5730 44 \N com.nvs.core.model.meta.DataField 582 2021-01-26 10:32:11.104+00 2021-01-26 10:32:11.104+00 0 podium podium 5731 49 \N com.nvs.core.model.meta.DataField 601 2021-01-26 10:32:11.105+00 2021-01-26 10:32:11.105+00 0 podium podium 5732 81 false com.nvs.core.model.meta.DataField 561 2021-01-26 10:32:11.105+00 2021-01-26 10:32:11.105+00 0 podium podium 5733 51 10 com.nvs.core.model.meta.DataField 590 2021-01-26 10:32:11.106+00 2021-01-26 10:32:11.106+00 0 podium podium 5734 53 \N com.nvs.core.model.meta.DataField 555 2021-01-26 10:32:11.107+00 2021-01-26 10:32:11.107+00 0 podium podium 5735 53 \N com.nvs.core.model.meta.DataField 573 2021-01-26 10:32:11.107+00 2021-01-26 10:32:11.107+00 0 podium podium 5736 44 \N com.nvs.core.model.meta.DataField 564 2021-01-26 10:32:11.108+00 2021-01-26 10:32:11.108+00 0 podium podium 5737 53 \N com.nvs.core.model.meta.DataField 595 2021-01-26 10:32:11.108+00 2021-01-26 10:32:11.108+00 0 podium podium 5740 51 50 com.nvs.core.model.meta.DataField 570 2021-01-26 10:32:11.11+00 2021-01-26 10:32:11.11+00 0 podium podium 5741 45 \N com.nvs.core.model.meta.DataField 580 2021-01-26 10:32:11.111+00 2021-01-26 10:32:11.111+00 0 podium podium 5742 134 VARCHAR(50) com.nvs.core.model.meta.DataField 559 2021-01-26 10:32:11.111+00 2021-01-26 10:32:11.111+00 0 podium podium 5743 50 \N com.nvs.core.model.meta.DataField 601 2021-01-26 10:32:11.112+00 2021-01-26 10:32:11.112+00 0 podium podium 5744 44 \N com.nvs.core.model.meta.DataField 551 2021-01-26 10:32:11.113+00 2021-01-26 10:32:11.113+00 0 podium podium 5745 52 \N com.nvs.core.model.meta.DataField 598 2021-01-26 10:32:11.113+00 2021-01-26 10:32:11.113+00 0 podium podium 5746 49 \N com.nvs.core.model.meta.DataField 560 2021-01-26 10:32:11.114+00 2021-01-26 10:32:11.114+00 0 podium podium 5747 45 \N com.nvs.core.model.meta.DataField 593 2021-01-26 10:32:11.114+00 2021-01-26 10:32:11.114+00 0 podium podium 5748 44 \N com.nvs.core.model.meta.DataField 572 2021-01-26 10:32:11.115+00 2021-01-26 10:32:11.115+00 0 podium podium 5750 134 VARCHAR(21845) com.nvs.core.model.meta.DataField 595 2021-01-26 10:32:11.116+00 2021-01-26 10:32:11.116+00 0 podium podium 5751 44 \N com.nvs.core.model.meta.DataField 569 2021-01-26 10:32:11.117+00 2021-01-26 10:32:11.117+00 0 podium podium 5752 81 false com.nvs.core.model.meta.DataField 555 2021-01-26 10:32:11.117+00 2021-01-26 10:32:11.117+00 0 podium podium 5753 210 MANAGED com.nvs.core.model.meta.DataSource 11 2021-01-26 10:32:11.135+00 2021-01-26 10:32:11.135+00 0 podium podium 6688 129 79 com.nvs.core.model.PrepareExecutionWorkOrder 6 2021-01-27 11:12:19.328+00 2021-01-27 11:12:19.328+00 0 ANONYMOUS ANONYMOUS 6689 128 69 com.nvs.core.model.PrepareExecutionWorkOrder 6 2021-01-27 11:12:19.479+00 2021-01-27 11:12:19.479+00 0 ANONYMOUS ANONYMOUS 6690 166 UNCOMPRESSED com.nvs.core.model.PrepareExecutionWorkOrder 6 2021-01-27 11:12:19.515+00 2021-01-27 11:12:19.515+00 0 ANONYMOUS ANONYMOUS 6691 130 -- podium data script generator prologue\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3026) \n\npdpg_45 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/customers/20210126010000/good' AS (customerNumber:long,customerName:chararray,contactLastName:chararray,contactFirstName:chararray,phone:chararray,addressLine1:chararray,addressLine2:chararray,city:chararray,state:chararray,postalCode:chararray,country:chararray,salesRepEmployeeNumber:long,creditLimit:double,customerLocation:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3026) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3027) \n\npdpg_46 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/salesorders/20210126010000/good' AS (orderNumber:long,orderDate:chararray,requiredDate:chararray,shippedDate:chararray,status:chararray,customerNumber:long,orderLineNumber:long,priceEach:double,quantityOrdered:long,productCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3027) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3028) \n\npdpg_47 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/employees/20210126010000/good' AS (employeeNumber:long,lastName:chararray,firstName:chararray,extension:chararray,email:chararray,reportsTo:long,jobTitle:chararray,officeCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3028) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3029) \n\npdpg_48 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/products_full/20210125230000/good' AS (productCode:chararray,productName:chararray,productScale:chararray,productVendor:chararray,productDescription:chararray,quantityInStock:long,buyPrice:double,MSRP:double,productLine:chararray,textDescription:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3029) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3023) \n\npdpg_38_temp = JOIN pdpg_46 BY productCode, pdpg_48 BY productCode ;\npdpg_38 = FOREACH pdpg_38_temp GENERATE pdpg_46::orderNumber AS orderNumber, pdpg_46::orderDate AS orderDate, pdpg_46::requiredDate AS requiredDate, pdpg_46::shippedDate AS shippedDate, pdpg_46::status AS status, pdpg_46::customerNumber AS customerNumber, pdpg_46::orderLineNumber AS orderLineNumber, pdpg_46::priceEach AS priceEach, pdpg_46::quantityOrdered AS quantityOrdered, pdpg_46::productCode AS productCode, pdpg_48::productName AS productName, pdpg_48::productScale AS productScale, pdpg_48::productVendor AS productVendor, pdpg_48::productDescription AS productDescription, pdpg_48::quantityInStock AS quantityInStock, pdpg_48::buyPrice AS buyPrice, pdpg_48::MSRP AS MSRP, pdpg_48::productLine AS productLine, pdpg_48::textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3023) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3020) \n\npdpg_31 = FOREACH pdpg_38 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3020) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3024) \n\npdpg_41_temp = JOIN pdpg_31 BY customerNumber, pdpg_45 BY customerNumber ;\npdpg_41 = FOREACH pdpg_41_temp GENERATE pdpg_31::orderNumber AS orderNumber, pdpg_31::orderDate AS orderDate, pdpg_31::requiredDate AS requiredDate, pdpg_31::shippedDate AS shippedDate, pdpg_31::status AS status, pdpg_31::customerNumber AS customerNumber, pdpg_31::orderLineNumber AS orderLineNumber, pdpg_31::priceEach AS priceEach, pdpg_31::quantityOrdered AS quantityOrdered, pdpg_31::productCode AS productCode, pdpg_31::productName AS productName, pdpg_31::productScale AS productScale, pdpg_31::productVendor AS productVendor, pdpg_31::productDescription AS productDescription, pdpg_31::quantityInStock AS quantityInStock, pdpg_31::buyPrice AS buyPrice, pdpg_31::MSRP AS MSRP, pdpg_31::productLine AS productLine, pdpg_31::textDescription AS textDescription, pdpg_45::customerName AS customerName, pdpg_45::contactLastName AS contactLastName, pdpg_45::contactFirstName AS contactFirstName, pdpg_45::phone AS phone, pdpg_45::addressLine1 AS addressLine1, pdpg_45::addressLine2 AS addressLine2, pdpg_45::city AS city, pdpg_45::state AS state, pdpg_45::postalCode AS postalCode, pdpg_45::country AS country, pdpg_45::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_45::creditLimit AS creditLimit, pdpg_45::customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3024) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3021) \n\npdpg_33 = FOREACH pdpg_41 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(double) creditLimit AS creditLimit,(chararray) customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3021) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3025) \n\npdpg_44_temp = JOIN pdpg_33 BY salesRepEmployeeNumber, pdpg_47 BY employeeNumber ;\npdpg_44 = FOREACH pdpg_44_temp GENERATE pdpg_33::orderNumber AS orderNumber, pdpg_33::orderDate AS orderDate, pdpg_33::requiredDate AS requiredDate, pdpg_33::shippedDate AS shippedDate, pdpg_33::status AS status, pdpg_33::customerNumber AS customerNumber, pdpg_33::orderLineNumber AS orderLineNumber, pdpg_33::priceEach AS priceEach, pdpg_33::quantityOrdered AS quantityOrdered, pdpg_33::productCode AS productCode, pdpg_33::productName AS productName, pdpg_33::productScale AS productScale, pdpg_33::productVendor AS productVendor, pdpg_33::productDescription AS productDescription, pdpg_33::quantityInStock AS quantityInStock, pdpg_33::buyPrice AS buyPrice, pdpg_33::MSRP AS MSRP, pdpg_33::productLine AS productLine, pdpg_33::textDescription AS textDescription, pdpg_33::customerName AS customerName, pdpg_33::contactLastName AS contactLastName, pdpg_33::contactFirstName AS contactFirstName, pdpg_33::phone AS phone, pdpg_33::addressLine1 AS addressLine1, pdpg_33::addressLine2 AS addressLine2, pdpg_33::city AS city, pdpg_33::state AS state, pdpg_33::postalCode AS postalCode, pdpg_33::country AS country, pdpg_33::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_33::creditLimit AS creditLimit, pdpg_33::customerLocation AS customerLocation, pdpg_47::lastName AS lastName, pdpg_47::firstName AS firstName, pdpg_47::extension AS extension, pdpg_47::email AS email, pdpg_47::reportsTo AS reportsTo, pdpg_47::jobTitle AS jobTitle, pdpg_47::officeCode AS officeCode;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3025) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3022) \n\npdpg_35 = FOREACH pdpg_44 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(chararray) (com.podiumdata.pigudf.obfuscation.Obfuscate(buyPrice,'Char Class Random')) AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(chararray) (com.podiumdata.pigudf.obfuscation.Obfuscate(creditLimit,'Char Class Random')) AS creditLimit,(chararray) customerLocation AS customerLocation,(chararray) lastName AS lastName,(chararray) firstName AS firstName,(chararray) extension AS extension,(chararray) email AS email,(long) reportsTo AS reportsTo,(chararray) jobTitle AS jobTitle,(chararray) officeCode AS officeCode,(bigdecimal) (com.podiumdata.pigudf.number.TO_DECIMAL(priceEach * quantityOrdered)) AS orderTotal;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3022) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Store (id:3031) \n\nSTORE pdpg_35 INTO 'file:///usr/local/qdc/data/loadingdock/classic_models/sales_full_masked/20210127111153' ;\n\n-- end script for com.nvs.core.model.prepare.pkg.Store (id:3031) \n\n-- podium data script generator epilogue\n com.nvs.core.model.PrepareExecutionWorkOrder 6 2021-01-27 11:12:24.6+00 2021-01-27 11:12:24.6+00 0 ANONYMOUS ANONYMOUS 6692 266 {"mapreduce.jobtracker.address":"local","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","ipc.client.connection.maxidletime":"10000","mapreduce.cluster.acls.enabled":"false","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","mapreduce.job.ubertask.maxmaps":"9","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","yarn.nodemanager.container-manager.thread-count":"20","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","fs.s3a.metadatastore.authoritative":"false","mapreduce.app-submission.cross-platform":"false","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.markreset.buffer.percent":"0.0","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","mapreduce.job.ubertask.enable":"false","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.am.max-attempts":"2","mapreduce.jobtracker.heartbeats.in.second":"100","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.security.instrumentation.requires.admin":"false","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.registry.zk.retry.ceiling.ms":"60000","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","yarn.app.mapreduce.client.job.max-retries":"3","mapreduce.jobhistory.cleaner.enable":"true","fs.s3a.s3guard.ddb.table.capacity.write":"100","ha.failover-controller.graceful-fence.connection.retries":"1","mapreduce.tasktracker.http.address":"0.0.0.0:50060","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","fs.s3a.max.total.tasks":"5","mapreduce.reduce.maxattempts":"4","mapreduce.client.submit.file.replication":"10","mapreduce.shuffle.port":"13562","yarn.resourcemanager.resource-tracker.client.thread-count":"50","yarn.fail-fast":"false","yarn.nodemanager.delete.thread-count":"4","fs.hdfs.impl.disable.cache":"true","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","s3native.client-write-packet-size":"65536","file.bytes-per-checksum":"512","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","mapreduce.jobtracker.taskcache.levels":"2","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.job.jvm.numtasks":"1","mapreduce.jobtracker.tasktracker.maxblacklists":"4","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.security.group.mapping.ldap.search.attr.member":"member","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","hadoop.security.credential.clear-text-fallback":"true","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","ha.failover-controller.new-active.rpc-timeout.ms":"60000","mapreduce.map.memory.mb":"-1","hadoop.ssl.hostname.verifier":"DEFAULT","mapreduce.tasktracker.healthchecker.interval":"60000","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","s3native.blocksize":"67108864","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","hadoop.registry.zk.retry.times":"5","mapreduce.job.running.reduce.limit":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.task.io.sort.factor":"10","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.s3a.paging.maximum":"5000","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","hadoop.shell.missing.defaultFs.warning":"true","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","fs.s3a.s3guard.ddb.background.sleep":"25","mapreduce.tasktracker.http.threads":"40","mapreduce.tasktracker.dns.nameserver":"default","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.job.maxtaskfailures.per.tracker":"3","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","mapreduce.shuffle.max.connections":"0","mapreduce.jobhistory.loadedjobs.cache.size":"5","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","mapreduce.client.output.filter":"FAILED","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","mapreduce.jobtracker.persist.jobstatus.hours":"1","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","mapreduce.job.speculative.retry-after-no-speculate":"1000","fs.s3a.attempts.maximum":"20","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","mapreduce.task.io.sort.mb":"100","yarn.app.mapreduce.client-am.ipc.max-retries":"3","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","adl.http.timeout":"5000","mapreduce.job.speculative.retry-after-speculate":"15000","mapreduce.jobtracker.restart.recover":"false","ipc.client.connect.max.retries":"10","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.security.kms.client.timeout":"60","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","yarn.resourcemanager.ha.automatic-failover.embedded":"true","hadoop.security.kms.client.failover.sleep.base.millis":"100","mapreduce.job.heap.memory-mb.ratio":"0.8","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","mapreduce.task.exit.timeout.check-interval-ms":"20000","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","yarn.resourcemanager.keytab":"/etc/krb5.keytab","mapreduce.map.log.level":"INFO","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","mapreduce.tasktracker.local.dir.minspacestart":"0","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","ha.health-monitor.check-interval.ms":"1000","mapreduce.reduce.shuffle.merge.percent":"0.66","ipc.client.connect.timeout":"20000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","yarn.nodemanager.recovery.enabled":"false","io.native.lib.available":"true","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","mapreduce.job.running.map.limit":"0","mapreduce.reduce.input.buffer.percent":"0.0","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","yarn.app.attempt.diagnostics.limit.kc":"64","hadoop.security.group.mapping.ldap.ssl":"false","fs.defaultFS":"file:///","fs.s3a.multipart.size":"64M","yarn.app.mapreduce.am.job.committer.commit-window":"10000","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.ifile.readahead":"true","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","s3native.replication":"3","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","fs.s3a.s3guard.ddb.table.create":"false","yarn.nodemanager.health-checker.interval-ms":"600000","s3.stream-buffer-size":"4096","ftp.client-write-packet-size":"65536","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","yarn.timeline-service.keytab":"/etc/krb5.keytab","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","ha.zookeeper.session-timeout.ms":"5000","fs.s3a.connection.ssl.enabled":"true","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","ipc.server.max.connections":"0","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.app.mapreduce.am.resource.mb":"1536","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","hadoop.security.groups.cache.secs":"300","mapreduce.job.speculative.minimum-allowed-tasks":"10","yarn.nodemanager.container-monitor.interval-ms":"3000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","s3.client-write-packet-size":"65536","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","mapreduce.job.reduces":"1","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","mapreduce.job.acl-modify-job":" ","hadoop.registry.zk.session.timeout.ms":"60000","fs.automatic.close":"true","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","fs.s3.block.size":"67108864","hadoop.http.authentication.token.validity":"36000","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.tasktracker.local.dir.minspacekill":"0","mapreduce.jobhistory.cleaner.interval-ms":"86400000","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","mapreduce.jobtracker.http.address":"0.0.0.0:50030","yarn.nodemanager.recovery.compaction-interval-secs":"3600","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","mapreduce.tasktracker.report.address":"127.0.0.1:0","hadoop.kerberos.kinit.command":"kinit","yarn.timeline-service.http-authentication.type":"simple","yarn.log-aggregation.retain-seconds":"-1","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","ipc.client.connect.max.retries.on.timeouts":"45","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","io.file.buffer.size":"4096","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","io.mapfile.bloom.size":"1048576","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","ipc.client.connect.retry.interval":"1000","hadoop.security.kms.client.authentication.retry-count":"1","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","yarn.app.mapreduce.shuffle.log.backups":"0","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","ftp.blocksize":"67108864","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","yarn.resourcemanager.scheduler.monitor.enable":"false","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","hadoop.http.authentication.simple.anonymous.allowed":"true","yarn.client.nodemanager-connect.retry-interval-ms":"10000","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","mapreduce.task.files.preserve.failedtasks":"false","mapreduce.job.reduce.slowstart.completedmaps":"0.05","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.jobhistory.minicluster.fixed.ports":"false","file.replication":"1","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","io.mapfile.bloom.error.rate":"0.005","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","mapreduce.map.cpu.vcores":"1","yarn.resourcemanager.zk-retry-interval-ms":"1000","ftp.bytes-per-checksum":"512","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.pmem-check-enabled":"true","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","fs.s3a.s3guard.cli.prune.age":"86400000","hadoop.registry.zk.root":"/registry","hadoop.jetty.logs.serve.aliases":"true","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","mapreduce.reduce.merge.inmem.threshold":"1000","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","mapreduce.job.token.tracking.ids.enabled":"false","yarn.nodemanager.localizer.client.thread-count":"5","hadoop.security.kms.client.failover.sleep.max.millis":"2000","mapreduce.jobhistory.move.thread-count":"3","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","rpc.metrics.quantile.enable":"false","mapreduce.jobtracker.expire.trackers.interval":"600000","io.bytes.per.checksum":"512","mapreduce.jobhistory.loadedjob.tasks.max":"-1","mapreduce.task.timeout":"600000","yarn.app.mapreduce.client.max-retries":"3","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","mapreduce.framework.name":"local","mapreduce.fileoutputcommitter.algorithm.version":"1","yarn.resourcemanager.connect.max-wait.ms":"900000","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","ipc.client.ping":"true","mapreduce.input.lineinputformat.linespermap":"1","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","hadoop.security.uid.cache.secs":"14400","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","mapreduce.tasktracker.dns.interface":"default","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","yarn.resourcemanager.ha.enabled":"false","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","fs.s3a.multipart.threshold":"128M","io.map.index.skip":"0","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","mapreduce.job.hdfs-servers":"${fs.defaultFS}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","mapreduce.task.merge.progress.records":"10000","map.sort.class":"org.apache.hadoop.util.QuickSort","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","fs.s3a.socket.send.buffer":"8192","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","hadoop.registry.zk.quorum":"localhost:2181","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","fs.s3a.fast.upload.active.blocks":"4","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","mapreduce.reduce.memory.mb":"-1","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","yarn.client.failover-retries-on-socket-timeouts":"0","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","hadoop.treat.subject.external":"false","mapreduce.client.completion.pollinterval":"5000","ipc.server.log.slow.rpc":"false","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10","yarn.nodemanager.vmem-pmem-ratio":"2.1"} com.nvs.core.model.PrepareExecutionWorkOrder 6 2021-01-27 11:12:24.607+00 2021-01-27 11:12:24.607+00 0 ANONYMOUS ANONYMOUS 6922 49 \N com.nvs.core.model.meta.DataField 145 2021-01-28 08:26:42.794+00 2021-01-28 08:26:42.794+00 0 podium podium 6923 45 \N com.nvs.core.model.meta.DataField 145 2021-01-28 08:26:42.795+00 2021-01-28 08:26:42.795+00 0 podium podium 6924 50 \N com.nvs.core.model.meta.DataField 145 2021-01-28 08:26:42.796+00 2021-01-28 08:26:42.796+00 0 podium podium 6925 51 \N com.nvs.core.model.meta.DataField 145 2021-01-28 08:26:42.797+00 2021-01-28 08:26:42.797+00 0 podium podium 6926 81 true com.nvs.core.model.meta.DataField 145 2021-01-28 08:26:42.797+00 2021-01-28 08:26:42.797+00 0 podium podium 6927 52 \N com.nvs.core.model.meta.DataField 145 2021-01-28 08:26:42.798+00 2021-01-28 08:26:42.798+00 0 podium podium 6928 44 \N com.nvs.core.model.meta.DataField 145 2021-01-28 08:26:42.798+00 2021-01-28 08:26:42.798+00 0 podium podium 6929 137 Digest MD5 Upper x2 com.nvs.core.model.meta.DataField 145 2021-01-28 08:26:42.799+00 2021-01-28 08:26:42.799+00 0 podium podium 6930 53 \N com.nvs.core.model.meta.DataField 145 2021-01-28 08:26:42.799+00 2021-01-28 08:26:42.799+00 0 podium podium 7290 155 true com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.423+00 2021-01-28 10:28:39.423+00 0 podium podium 7291 17 false com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.424+00 2021-01-28 10:28:39.424+00 0 podium podium 7292 258 0 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.424+00 2021-01-28 10:28:39.424+00 0 podium podium 7293 20 0 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.424+00 2021-01-28 10:28:39.424+00 0 podium podium 7294 24 false com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.425+00 2021-01-28 10:28:39.425+00 0 podium podium 5768 134 VARCHAR(50) com.nvs.core.model.meta.DataField 647 2021-01-26 10:32:11.277+00 2021-01-26 10:32:11.277+00 0 podium podium 5769 134 VARCHAR(50) com.nvs.core.model.meta.DataField 656 2021-01-26 10:32:11.278+00 2021-01-26 10:32:11.278+00 0 podium podium 5770 134 VARCHAR(50) com.nvs.core.model.meta.DataField 629 2021-01-26 10:32:11.278+00 2021-01-26 10:32:11.278+00 0 podium podium 5771 134 VARCHAR(50) com.nvs.core.model.meta.DataField 650 2021-01-26 10:32:11.279+00 2021-01-26 10:32:11.279+00 0 podium podium 5772 134 VARCHAR(50) com.nvs.core.model.meta.DataField 655 2021-01-26 10:32:11.279+00 2021-01-26 10:32:11.279+00 0 podium podium 5773 134 VARCHAR(70) com.nvs.core.model.meta.DataField 626 2021-01-26 10:32:11.279+00 2021-01-26 10:32:11.279+00 0 podium podium 5774 134 VARCHAR(50) com.nvs.core.model.meta.DataField 623 2021-01-26 10:32:11.28+00 2021-01-26 10:32:11.28+00 0 podium podium 5775 134 VARCHAR(50) com.nvs.core.model.meta.DataField 609 2021-01-26 10:32:11.28+00 2021-01-26 10:32:11.28+00 0 podium podium 5776 134 VARCHAR(100) com.nvs.core.model.meta.DataField 620 2021-01-26 10:32:11.281+00 2021-01-26 10:32:11.281+00 0 podium podium 5777 134 VARCHAR(50) com.nvs.core.model.meta.DataField 612 2021-01-26 10:32:11.281+00 2021-01-26 10:32:11.281+00 0 podium podium 5778 134 VARCHAR(10) com.nvs.core.model.meta.DataField 618 2021-01-26 10:32:11.282+00 2021-01-26 10:32:11.282+00 0 podium podium 5779 134 VARCHAR(15) com.nvs.core.model.meta.DataField 652 2021-01-26 10:32:11.282+00 2021-01-26 10:32:11.282+00 0 podium podium 5780 134 VARCHAR(50) com.nvs.core.model.meta.DataField 636 2021-01-26 10:32:11.283+00 2021-01-26 10:32:11.283+00 0 podium podium 5781 134 VARCHAR(50) com.nvs.core.model.meta.DataField 663 2021-01-26 10:32:11.283+00 2021-01-26 10:32:11.283+00 0 podium podium 5782 134 VARCHAR(10) com.nvs.core.model.meta.DataField 648 2021-01-26 10:32:11.284+00 2021-01-26 10:32:11.284+00 0 podium podium 5783 134 VARCHAR(50) com.nvs.core.model.meta.DataField 611 2021-01-26 10:32:11.284+00 2021-01-26 10:32:11.284+00 0 podium podium 5784 134 VARCHAR(15) com.nvs.core.model.meta.DataField 619 2021-01-26 10:32:11.285+00 2021-01-26 10:32:11.285+00 0 podium podium 5785 134 VARCHAR(15) com.nvs.core.model.meta.DataField 607 2021-01-26 10:32:11.285+00 2021-01-26 10:32:11.285+00 0 podium podium 5786 134 VARCHAR(50) com.nvs.core.model.meta.DataField 616 2021-01-26 10:32:11.286+00 2021-01-26 10:32:11.286+00 0 podium podium 5787 134 VARCHAR(21845) com.nvs.core.model.meta.DataField 633 2021-01-26 10:32:11.286+00 2021-01-26 10:32:11.286+00 0 podium podium 5788 134 VARCHAR(50) com.nvs.core.model.meta.DataField 627 2021-01-26 10:32:11.287+00 2021-01-26 10:32:11.287+00 0 podium podium 5789 134 VARCHAR(50) com.nvs.core.model.meta.DataField 642 2021-01-26 10:32:11.287+00 2021-01-26 10:32:11.287+00 0 podium podium 5790 134 VARCHAR(50) com.nvs.core.model.meta.DataField 617 2021-01-26 10:32:11.287+00 2021-01-26 10:32:11.287+00 0 podium podium 5791 134 VARCHAR(4000) com.nvs.core.model.meta.DataField 662 2021-01-26 10:32:11.288+00 2021-01-26 10:32:11.288+00 0 podium podium 5792 134 VARCHAR(10) com.nvs.core.model.meta.DataField 621 2021-01-26 10:32:11.288+00 2021-01-26 10:32:11.288+00 0 podium podium 5793 134 VARCHAR(50) com.nvs.core.model.meta.DataField 637 2021-01-26 10:32:11.289+00 2021-01-26 10:32:11.289+00 0 podium podium 5794 134 VARCHAR(15) com.nvs.core.model.meta.DataField 644 2021-01-26 10:32:11.289+00 2021-01-26 10:32:11.289+00 0 podium podium 5795 134 VARCHAR(50) com.nvs.core.model.meta.DataField 639 2021-01-26 10:32:11.29+00 2021-01-26 10:32:11.29+00 0 podium podium 5796 134 VARCHAR(50) com.nvs.core.model.meta.DataField 632 2021-01-26 10:32:11.29+00 2021-01-26 10:32:11.29+00 0 podium podium 5797 134 VARCHAR(15) com.nvs.core.model.meta.DataField 660 2021-01-26 10:32:11.291+00 2021-01-26 10:32:11.291+00 0 podium podium 5798 134 VARCHAR(50) com.nvs.core.model.meta.DataField 624 2021-01-26 10:32:11.292+00 2021-01-26 10:32:11.292+00 0 podium podium 5799 134 VARCHAR(50) com.nvs.core.model.meta.DataField 622 2021-01-26 10:32:11.292+00 2021-01-26 10:32:11.292+00 0 podium podium 5800 134 VARCHAR(50) com.nvs.core.model.meta.DataField 661 2021-01-26 10:32:11.293+00 2021-01-26 10:32:11.293+00 0 podium podium 5801 134 VARCHAR(10) com.nvs.core.model.meta.DataField 654 2021-01-26 10:32:11.293+00 2021-01-26 10:32:11.293+00 0 podium podium 5802 134 VARCHAR(50) com.nvs.core.model.meta.DataField 614 2021-01-26 10:32:11.294+00 2021-01-26 10:32:11.294+00 0 podium podium 5803 134 VARCHAR(10) com.nvs.core.model.meta.DataField 608 2021-01-26 10:32:11.294+00 2021-01-26 10:32:11.294+00 0 podium podium 6693 294 {"79":{"bad":0,"expected":0,"ugly":0,"chaffed":0,"good":2473,"sample":32}} com.nvs.core.model.PrepareExecutionWorkOrder 6 2021-01-27 11:12:46.225+00 2021-01-27 11:12:46.225+00 0 ANONYMOUS ANONYMOUS 6931 288 \N com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.027+00 2021-01-28 10:28:37.027+00 0 podium podium 6932 24 false com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.027+00 2021-01-28 10:28:37.027+00 0 podium podium 6933 152 0 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.028+00 2021-01-28 10:28:37.028+00 0 podium podium 6934 202 MANAGED com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.029+00 2021-01-28 10:28:37.029+00 0 podium podium 6935 38 " com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.029+00 2021-01-28 10:28:37.029+00 0 podium podium 6936 32 262144 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.03+00 2021-01-28 10:28:37.03+00 0 podium podium 6937 258 0 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.03+00 2021-01-28 10:28:37.03+00 0 podium podium 6938 92 0 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.031+00 2021-01-28 10:28:37.031+00 0 podium podium 6939 94 salesorders com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.032+00 2021-01-28 10:28:37.032+00 0 podium podium 6940 20 0 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.032+00 2021-01-28 10:28:37.032+00 0 podium podium 6941 13 1 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.033+00 2021-01-28 10:28:37.033+00 0 podium podium 6942 21 0 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.033+00 2021-01-28 10:28:37.033+00 0 podium podium 6943 259 0 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.034+00 2021-01-28 10:28:37.034+00 0 podium podium 6944 293 \N com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.034+00 2021-01-28 10:28:37.034+00 0 podium podium 6945 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.035+00 2021-01-28 10:28:37.035+00 0 podium podium 6946 153 0 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.035+00 2021-01-28 10:28:37.035+00 0 podium podium 6947 37 " com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.036+00 2021-01-28 10:28:37.036+00 0 podium podium 6948 34 , com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.036+00 2021-01-28 10:28:37.036+00 0 podium podium 6949 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.037+00 2021-01-28 10:28:37.037+00 0 podium podium 6950 18 "orderNumber","orderDate","requiredDate","shippedDate","status","customerNumber","orderLineNumber","priceEach","quantityOrdered","productCode"\\r\\n com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.037+00 2021-01-28 10:28:37.037+00 0 podium podium 6951 33 \\r\\n com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.038+00 2021-01-28 10:28:37.038+00 0 podium podium 6952 31 1 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.038+00 2021-01-28 10:28:37.038+00 0 podium podium 6953 28 0.00 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.039+00 2021-01-28 10:28:37.039+00 0 podium podium 6954 17 false com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.039+00 2021-01-28 10:28:37.039+00 0 podium podium 6955 35 false com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.04+00 2021-01-28 10:28:37.04+00 0 podium podium 6956 156 true com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.04+00 2021-01-28 10:28:37.04+00 0 podium podium 6957 320 0 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.041+00 2021-01-28 10:28:37.041+00 0 podium podium 6958 5 SELECT `orderNumber`,`orderDate`,`requiredDate`,`shippedDate`,`status`,`customerNumber`,`orderLineNumber`,`priceEach`,`quantityOrdered`,`productCode` FROM `classic-models-errors`.`salesorders` com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.041+00 2021-01-28 10:28:37.041+00 0 podium podium 6959 27 UTF_8 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.042+00 2021-01-28 10:28:37.042+00 0 podium podium 6960 14 false com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.042+00 2021-01-28 10:28:37.042+00 0 podium podium 6961 155 true com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.043+00 2021-01-28 10:28:37.043+00 0 podium podium 6962 77 \N com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.044+00 2021-01-28 10:28:37.044+00 0 podium podium 6963 114 Snapshot com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.044+00 2021-01-28 10:28:37.044+00 0 podium podium 6964 154 false com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.045+00 2021-01-28 10:28:37.045+00 0 podium podium 6965 12 0 com.nvs.core.model.meta.DataEntity 15 2021-01-28 10:28:37.045+00 2021-01-28 10:28:37.045+00 0 podium podium 6722 271 5 com.nvs.core.model.PrepareExecutionWorkOrder 8 2021-01-27 11:17:37.198+00 2021-01-27 11:17:37.198+00 0 podium podium 6723 253 false com.nvs.core.model.PrepareExecutionWorkOrder 8 2021-01-27 11:17:37.205+00 2021-01-27 11:17:37.205+00 0 podium podium 6724 127 LOCAL com.nvs.core.model.PrepareExecutionWorkOrder 8 2021-01-27 11:17:37.21+00 2021-01-27 11:17:37.21+00 0 podium podium 6725 277 true com.nvs.core.model.PrepareExecutionWorkOrder 8 2021-01-27 11:17:37.215+00 2021-01-27 11:17:37.215+00 0 podium podium 6749 35 false com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.895+00 2021-01-27 11:19:28.895+00 0 podium podium 6750 31 1 com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.896+00 2021-01-27 11:19:28.896+00 0 podium podium 6751 57 true com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.896+00 2021-01-27 11:19:28.896+00 0 podium podium 6752 114 Snapshot com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.897+00 2021-01-27 11:19:28.897+00 0 podium podium 6753 293 \N com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.898+00 2021-01-27 11:19:28.898+00 0 podium podium 6754 32 262144 com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.898+00 2021-01-27 11:19:28.898+00 0 podium podium 6755 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.899+00 2021-01-27 11:19:28.899+00 0 podium podium 6756 56 true com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.9+00 2021-01-27 11:19:28.9+00 0 podium podium 6757 288 com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.901+00 2021-01-27 11:19:28.901+00 0 podium podium 6758 37 " com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.901+00 2021-01-27 11:19:28.901+00 0 podium podium 6759 27 UTF_8 com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.902+00 2021-01-27 11:19:28.902+00 0 podium podium 6760 202 MANAGED com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.903+00 2021-01-27 11:19:28.903+00 0 podium podium 6761 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.904+00 2021-01-27 11:19:28.904+00 0 podium podium 6762 42 com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.904+00 2021-01-27 11:19:28.904+00 0 podium podium 6763 34 \\t com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.905+00 2021-01-27 11:19:28.905+00 0 podium podium 6764 33 \\n com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.906+00 2021-01-27 11:19:28.906+00 0 podium podium 6765 38 " com.nvs.core.model.meta.DataEntity 79 2021-01-27 11:19:28.906+00 2021-01-27 11:19:28.906+00 0 podium podium 6966 20 0 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.236+00 2021-01-28 10:28:37.236+00 0 podium podium 6967 92 0 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.236+00 2021-01-28 10:28:37.236+00 0 podium podium 6968 34 , com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.237+00 2021-01-28 10:28:37.237+00 0 podium podium 6969 28 0.00 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.237+00 2021-01-28 10:28:37.237+00 0 podium podium 6970 31 1 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.238+00 2021-01-28 10:28:37.238+00 0 podium podium 6971 293 \N com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.238+00 2021-01-28 10:28:37.238+00 0 podium podium 6972 156 true com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.239+00 2021-01-28 10:28:37.239+00 0 podium podium 6973 32 262144 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.239+00 2021-01-28 10:28:37.239+00 0 podium podium 6974 13 1 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.24+00 2021-01-28 10:28:37.24+00 0 podium podium 6975 320 0 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.24+00 2021-01-28 10:28:37.24+00 0 podium podium 6976 152 0 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.241+00 2021-01-28 10:28:37.241+00 0 podium podium 6977 202 MANAGED com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.241+00 2021-01-28 10:28:37.241+00 0 podium podium 6978 77 \N com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.242+00 2021-01-28 10:28:37.242+00 0 podium podium 6979 288 \N com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.242+00 2021-01-28 10:28:37.242+00 0 podium podium 6980 33 \\r\\n com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.243+00 2021-01-28 10:28:37.243+00 0 podium podium 6981 5 SELECT `checkNumber`,`paymentDate`,`amount`,`customerNumber` FROM `classic-models-errors`.`payments` com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.243+00 2021-01-28 10:28:37.243+00 0 podium podium 6982 17 false com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.244+00 2021-01-28 10:28:37.244+00 0 podium podium 6983 24 false com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.244+00 2021-01-28 10:28:37.244+00 0 podium podium 6984 27 UTF_8 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.245+00 2021-01-28 10:28:37.245+00 0 podium podium 6985 114 Snapshot com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.245+00 2021-01-28 10:28:37.245+00 0 podium podium 6986 94 payments com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.246+00 2021-01-28 10:28:37.246+00 0 podium podium 6987 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.246+00 2021-01-28 10:28:37.246+00 0 podium podium 6988 37 " com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.247+00 2021-01-28 10:28:37.247+00 0 podium podium 6989 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.247+00 2021-01-28 10:28:37.247+00 0 podium podium 6990 258 0 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.248+00 2021-01-28 10:28:37.248+00 0 podium podium 6991 153 0 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.248+00 2021-01-28 10:28:37.248+00 0 podium podium 6992 259 0 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.249+00 2021-01-28 10:28:37.249+00 0 podium podium 6993 14 false com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.249+00 2021-01-28 10:28:37.249+00 0 podium podium 6707 166 UNCOMPRESSED com.nvs.core.model.PrepareExecutionWorkOrder 7 2021-01-27 11:14:56.419+00 2021-01-27 11:14:56.419+00 0 ANONYMOUS ANONYMOUS 6708 128 69 com.nvs.core.model.PrepareExecutionWorkOrder 7 2021-01-27 11:14:56.51+00 2021-01-27 11:14:56.51+00 0 ANONYMOUS ANONYMOUS 6709 129 79 com.nvs.core.model.PrepareExecutionWorkOrder 7 2021-01-27 11:14:56.565+00 2021-01-27 11:14:56.565+00 0 ANONYMOUS ANONYMOUS 6710 130 -- podium data script generator prologue\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3026) \n\npdpg_45 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/customers/20210126010000/good' AS (customerNumber:long,customerName:chararray,contactLastName:chararray,contactFirstName:chararray,phone:chararray,addressLine1:chararray,addressLine2:chararray,city:chararray,state:chararray,postalCode:chararray,country:chararray,salesRepEmployeeNumber:long,creditLimit:double,customerLocation:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3026) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3027) \n\npdpg_46 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/salesorders/20210126010000/good' AS (orderNumber:long,orderDate:chararray,requiredDate:chararray,shippedDate:chararray,status:chararray,customerNumber:long,orderLineNumber:long,priceEach:double,quantityOrdered:long,productCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3027) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3028) \n\npdpg_47 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/employees/20210126010000/good' AS (employeeNumber:long,lastName:chararray,firstName:chararray,extension:chararray,email:chararray,reportsTo:long,jobTitle:chararray,officeCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3028) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3029) \n\npdpg_48 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/products_full/20210125230000/good' AS (productCode:chararray,productName:chararray,productScale:chararray,productVendor:chararray,productDescription:chararray,quantityInStock:long,buyPrice:double,MSRP:double,productLine:chararray,textDescription:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3029) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3023) \n\npdpg_38_temp = JOIN pdpg_46 BY productCode, pdpg_48 BY productCode ;\npdpg_38 = FOREACH pdpg_38_temp GENERATE pdpg_46::orderNumber AS orderNumber, pdpg_46::orderDate AS orderDate, pdpg_46::requiredDate AS requiredDate, pdpg_46::shippedDate AS shippedDate, pdpg_46::status AS status, pdpg_46::customerNumber AS customerNumber, pdpg_46::orderLineNumber AS orderLineNumber, pdpg_46::priceEach AS priceEach, pdpg_46::quantityOrdered AS quantityOrdered, pdpg_46::productCode AS productCode, pdpg_48::productName AS productName, pdpg_48::productScale AS productScale, pdpg_48::productVendor AS productVendor, pdpg_48::productDescription AS productDescription, pdpg_48::quantityInStock AS quantityInStock, pdpg_48::buyPrice AS buyPrice, pdpg_48::MSRP AS MSRP, pdpg_48::productLine AS productLine, pdpg_48::textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3023) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3020) \n\npdpg_31 = FOREACH pdpg_38 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3020) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3024) \n\npdpg_41_temp = JOIN pdpg_31 BY customerNumber, pdpg_45 BY customerNumber ;\npdpg_41 = FOREACH pdpg_41_temp GENERATE pdpg_31::orderNumber AS orderNumber, pdpg_31::orderDate AS orderDate, pdpg_31::requiredDate AS requiredDate, pdpg_31::shippedDate AS shippedDate, pdpg_31::status AS status, pdpg_31::customerNumber AS customerNumber, pdpg_31::orderLineNumber AS orderLineNumber, pdpg_31::priceEach AS priceEach, pdpg_31::quantityOrdered AS quantityOrdered, pdpg_31::productCode AS productCode, pdpg_31::productName AS productName, pdpg_31::productScale AS productScale, pdpg_31::productVendor AS productVendor, pdpg_31::productDescription AS productDescription, pdpg_31::quantityInStock AS quantityInStock, pdpg_31::buyPrice AS buyPrice, pdpg_31::MSRP AS MSRP, pdpg_31::productLine AS productLine, pdpg_31::textDescription AS textDescription, pdpg_45::customerName AS customerName, pdpg_45::contactLastName AS contactLastName, pdpg_45::contactFirstName AS contactFirstName, pdpg_45::phone AS phone, pdpg_45::addressLine1 AS addressLine1, pdpg_45::addressLine2 AS addressLine2, pdpg_45::city AS city, pdpg_45::state AS state, pdpg_45::postalCode AS postalCode, pdpg_45::country AS country, pdpg_45::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_45::creditLimit AS creditLimit, pdpg_45::customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3024) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3021) \n\npdpg_33 = FOREACH pdpg_41 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(double) creditLimit AS creditLimit,(chararray) customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3021) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3025) \n\npdpg_44_temp = JOIN pdpg_33 BY salesRepEmployeeNumber, pdpg_47 BY employeeNumber ;\npdpg_44 = FOREACH pdpg_44_temp GENERATE pdpg_33::orderNumber AS orderNumber, pdpg_33::orderDate AS orderDate, pdpg_33::requiredDate AS requiredDate, pdpg_33::shippedDate AS shippedDate, pdpg_33::status AS status, pdpg_33::customerNumber AS customerNumber, pdpg_33::orderLineNumber AS orderLineNumber, pdpg_33::priceEach AS priceEach, pdpg_33::quantityOrdered AS quantityOrdered, pdpg_33::productCode AS productCode, pdpg_33::productName AS productName, pdpg_33::productScale AS productScale, pdpg_33::productVendor AS productVendor, pdpg_33::productDescription AS productDescription, pdpg_33::quantityInStock AS quantityInStock, pdpg_33::buyPrice AS buyPrice, pdpg_33::MSRP AS MSRP, pdpg_33::productLine AS productLine, pdpg_33::textDescription AS textDescription, pdpg_33::customerName AS customerName, pdpg_33::contactLastName AS contactLastName, pdpg_33::contactFirstName AS contactFirstName, pdpg_33::phone AS phone, pdpg_33::addressLine1 AS addressLine1, pdpg_33::addressLine2 AS addressLine2, pdpg_33::city AS city, pdpg_33::state AS state, pdpg_33::postalCode AS postalCode, pdpg_33::country AS country, pdpg_33::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_33::creditLimit AS creditLimit, pdpg_33::customerLocation AS customerLocation, pdpg_47::lastName AS lastName, pdpg_47::firstName AS firstName, pdpg_47::extension AS extension, pdpg_47::email AS email, pdpg_47::reportsTo AS reportsTo, pdpg_47::jobTitle AS jobTitle, pdpg_47::officeCode AS officeCode;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3025) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3022) \n\npdpg_35 = FOREACH pdpg_44 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(chararray) (com.podiumdata.pigudf.obfuscation.Obfuscate(buyPrice,'Digest SHA256 Lower')) AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(chararray) (com.podiumdata.pigudf.obfuscation.Obfuscate(creditLimit,'Char Class Random')) AS creditLimit,(chararray) customerLocation AS customerLocation,(chararray) lastName AS lastName,(chararray) firstName AS firstName,(chararray) extension AS extension,(chararray) email AS email,(long) reportsTo AS reportsTo,(chararray) jobTitle AS jobTitle,(chararray) officeCode AS officeCode,(bigdecimal) (com.podiumdata.pigudf.number.TO_DECIMAL(priceEach * quantityOrdered)) AS orderTotal;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3022) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Store (id:3031) \n\nSTORE pdpg_35 INTO 'file:///usr/local/qdc/data/loadingdock/classic_models/sales_full_masked/20210127111425' ;\n\n-- end script for com.nvs.core.model.prepare.pkg.Store (id:3031) \n\n-- podium data script generator epilogue\n com.nvs.core.model.PrepareExecutionWorkOrder 7 2021-01-27 11:15:01.66+00 2021-01-27 11:15:01.66+00 0 ANONYMOUS ANONYMOUS 6711 266 {"mapreduce.jobtracker.address":"local","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","ipc.client.connection.maxidletime":"10000","mapreduce.cluster.acls.enabled":"false","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","mapreduce.job.ubertask.maxmaps":"9","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","yarn.nodemanager.container-manager.thread-count":"20","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","fs.s3a.metadatastore.authoritative":"false","mapreduce.app-submission.cross-platform":"false","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.markreset.buffer.percent":"0.0","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","mapreduce.job.ubertask.enable":"false","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.am.max-attempts":"2","mapreduce.jobtracker.heartbeats.in.second":"100","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.security.instrumentation.requires.admin":"false","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.registry.zk.retry.ceiling.ms":"60000","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","yarn.app.mapreduce.client.job.max-retries":"3","mapreduce.jobhistory.cleaner.enable":"true","fs.s3a.s3guard.ddb.table.capacity.write":"100","ha.failover-controller.graceful-fence.connection.retries":"1","mapreduce.tasktracker.http.address":"0.0.0.0:50060","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","fs.s3a.max.total.tasks":"5","mapreduce.reduce.maxattempts":"4","mapreduce.client.submit.file.replication":"10","mapreduce.shuffle.port":"13562","yarn.resourcemanager.resource-tracker.client.thread-count":"50","yarn.fail-fast":"false","yarn.nodemanager.delete.thread-count":"4","fs.hdfs.impl.disable.cache":"true","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","s3native.client-write-packet-size":"65536","file.bytes-per-checksum":"512","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","mapreduce.jobtracker.taskcache.levels":"2","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.job.jvm.numtasks":"1","mapreduce.jobtracker.tasktracker.maxblacklists":"4","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.security.group.mapping.ldap.search.attr.member":"member","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","hadoop.security.credential.clear-text-fallback":"true","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","ha.failover-controller.new-active.rpc-timeout.ms":"60000","mapreduce.map.memory.mb":"-1","hadoop.ssl.hostname.verifier":"DEFAULT","mapreduce.tasktracker.healthchecker.interval":"60000","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","s3native.blocksize":"67108864","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","hadoop.registry.zk.retry.times":"5","mapreduce.job.running.reduce.limit":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.task.io.sort.factor":"10","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.s3a.paging.maximum":"5000","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","hadoop.shell.missing.defaultFs.warning":"true","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","fs.s3a.s3guard.ddb.background.sleep":"25","mapreduce.tasktracker.http.threads":"40","mapreduce.tasktracker.dns.nameserver":"default","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.job.maxtaskfailures.per.tracker":"3","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","mapreduce.shuffle.max.connections":"0","mapreduce.jobhistory.loadedjobs.cache.size":"5","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","mapreduce.client.output.filter":"FAILED","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","mapreduce.jobtracker.persist.jobstatus.hours":"1","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","mapreduce.job.speculative.retry-after-no-speculate":"1000","fs.s3a.attempts.maximum":"20","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","mapreduce.task.io.sort.mb":"100","yarn.app.mapreduce.client-am.ipc.max-retries":"3","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","adl.http.timeout":"5000","mapreduce.job.speculative.retry-after-speculate":"15000","mapreduce.jobtracker.restart.recover":"false","ipc.client.connect.max.retries":"10","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.security.kms.client.timeout":"60","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","yarn.resourcemanager.ha.automatic-failover.embedded":"true","hadoop.security.kms.client.failover.sleep.base.millis":"100","mapreduce.job.heap.memory-mb.ratio":"0.8","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","mapreduce.task.exit.timeout.check-interval-ms":"20000","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","yarn.resourcemanager.keytab":"/etc/krb5.keytab","mapreduce.map.log.level":"INFO","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","mapreduce.tasktracker.local.dir.minspacestart":"0","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","ha.health-monitor.check-interval.ms":"1000","mapreduce.reduce.shuffle.merge.percent":"0.66","ipc.client.connect.timeout":"20000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","yarn.nodemanager.recovery.enabled":"false","io.native.lib.available":"true","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","mapreduce.job.running.map.limit":"0","mapreduce.reduce.input.buffer.percent":"0.0","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","yarn.app.attempt.diagnostics.limit.kc":"64","hadoop.security.group.mapping.ldap.ssl":"false","fs.defaultFS":"file:///","fs.s3a.multipart.size":"64M","yarn.app.mapreduce.am.job.committer.commit-window":"10000","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.ifile.readahead":"true","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","s3native.replication":"3","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","fs.s3a.s3guard.ddb.table.create":"false","yarn.nodemanager.health-checker.interval-ms":"600000","s3.stream-buffer-size":"4096","ftp.client-write-packet-size":"65536","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","yarn.timeline-service.keytab":"/etc/krb5.keytab","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","ha.zookeeper.session-timeout.ms":"5000","fs.s3a.connection.ssl.enabled":"true","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","ipc.server.max.connections":"0","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.app.mapreduce.am.resource.mb":"1536","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","hadoop.security.groups.cache.secs":"300","mapreduce.job.speculative.minimum-allowed-tasks":"10","yarn.nodemanager.container-monitor.interval-ms":"3000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","s3.client-write-packet-size":"65536","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","mapreduce.job.reduces":"1","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","mapreduce.job.acl-modify-job":" ","hadoop.registry.zk.session.timeout.ms":"60000","fs.automatic.close":"true","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","fs.s3.block.size":"67108864","hadoop.http.authentication.token.validity":"36000","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.tasktracker.local.dir.minspacekill":"0","mapreduce.jobhistory.cleaner.interval-ms":"86400000","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","mapreduce.jobtracker.http.address":"0.0.0.0:50030","yarn.nodemanager.recovery.compaction-interval-secs":"3600","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","mapreduce.tasktracker.report.address":"127.0.0.1:0","hadoop.kerberos.kinit.command":"kinit","yarn.timeline-service.http-authentication.type":"simple","yarn.log-aggregation.retain-seconds":"-1","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","ipc.client.connect.max.retries.on.timeouts":"45","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","io.file.buffer.size":"4096","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","io.mapfile.bloom.size":"1048576","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","ipc.client.connect.retry.interval":"1000","hadoop.security.kms.client.authentication.retry-count":"1","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","yarn.app.mapreduce.shuffle.log.backups":"0","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","ftp.blocksize":"67108864","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","yarn.resourcemanager.scheduler.monitor.enable":"false","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","hadoop.http.authentication.simple.anonymous.allowed":"true","yarn.client.nodemanager-connect.retry-interval-ms":"10000","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","mapreduce.task.files.preserve.failedtasks":"false","mapreduce.job.reduce.slowstart.completedmaps":"0.05","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.jobhistory.minicluster.fixed.ports":"false","file.replication":"1","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","io.mapfile.bloom.error.rate":"0.005","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","mapreduce.map.cpu.vcores":"1","yarn.resourcemanager.zk-retry-interval-ms":"1000","ftp.bytes-per-checksum":"512","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.pmem-check-enabled":"true","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","fs.s3a.s3guard.cli.prune.age":"86400000","hadoop.registry.zk.root":"/registry","hadoop.jetty.logs.serve.aliases":"true","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","mapreduce.reduce.merge.inmem.threshold":"1000","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","mapreduce.job.token.tracking.ids.enabled":"false","yarn.nodemanager.localizer.client.thread-count":"5","hadoop.security.kms.client.failover.sleep.max.millis":"2000","mapreduce.jobhistory.move.thread-count":"3","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","rpc.metrics.quantile.enable":"false","mapreduce.jobtracker.expire.trackers.interval":"600000","io.bytes.per.checksum":"512","mapreduce.jobhistory.loadedjob.tasks.max":"-1","mapreduce.task.timeout":"600000","yarn.app.mapreduce.client.max-retries":"3","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","mapreduce.framework.name":"local","mapreduce.fileoutputcommitter.algorithm.version":"1","yarn.resourcemanager.connect.max-wait.ms":"900000","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","ipc.client.ping":"true","mapreduce.input.lineinputformat.linespermap":"1","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","hadoop.security.uid.cache.secs":"14400","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","mapreduce.tasktracker.dns.interface":"default","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","yarn.resourcemanager.ha.enabled":"false","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","fs.s3a.multipart.threshold":"128M","io.map.index.skip":"0","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","mapreduce.job.hdfs-servers":"${fs.defaultFS}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","mapreduce.task.merge.progress.records":"10000","map.sort.class":"org.apache.hadoop.util.QuickSort","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","fs.s3a.socket.send.buffer":"8192","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","hadoop.registry.zk.quorum":"localhost:2181","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","fs.s3a.fast.upload.active.blocks":"4","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","mapreduce.reduce.memory.mb":"-1","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","yarn.client.failover-retries-on-socket-timeouts":"0","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","hadoop.treat.subject.external":"false","mapreduce.client.completion.pollinterval":"5000","ipc.server.log.slow.rpc":"false","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10","yarn.nodemanager.vmem-pmem-ratio":"2.1"} com.nvs.core.model.PrepareExecutionWorkOrder 7 2021-01-27 11:15:01.686+00 2021-01-27 11:15:01.686+00 0 ANONYMOUS ANONYMOUS 6994 35 false com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.25+00 2021-01-28 10:28:37.25+00 0 podium podium 6995 154 false com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.25+00 2021-01-28 10:28:37.25+00 0 podium podium 6996 38 " com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.251+00 2021-01-28 10:28:37.251+00 0 podium podium 6997 21 0 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.251+00 2021-01-28 10:28:37.251+00 0 podium podium 6998 12 0 com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.252+00 2021-01-28 10:28:37.252+00 0 podium podium 6999 18 "checkNumber","paymentDate","amount","customerNumber"\\r\\n com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.252+00 2021-01-28 10:28:37.252+00 0 podium podium 7000 155 true com.nvs.core.model.meta.DataEntity 18 2021-01-28 10:28:37.253+00 2021-01-28 10:28:37.253+00 0 podium podium 7001 31 1 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.337+00 2021-01-28 10:28:37.337+00 0 podium podium 7002 202 MANAGED com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.338+00 2021-01-28 10:28:37.338+00 0 podium podium 7003 156 true com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.339+00 2021-01-28 10:28:37.339+00 0 podium podium 7004 21 0 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.339+00 2021-01-28 10:28:37.339+00 0 podium podium 7005 154 false com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.34+00 2021-01-28 10:28:37.34+00 0 podium podium 7006 152 0 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.34+00 2021-01-28 10:28:37.34+00 0 podium podium 7007 293 \N com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.341+00 2021-01-28 10:28:37.341+00 0 podium podium 7384 259 0 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.974+00 2021-01-28 10:28:39.974+00 0 podium podium 7385 320 0 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.975+00 2021-01-28 10:28:39.975+00 0 podium podium 7386 24 false com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.975+00 2021-01-28 10:28:39.975+00 0 podium podium 7387 152 0 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.975+00 2021-01-28 10:28:39.975+00 0 podium podium 7388 202 MANAGED com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.976+00 2021-01-28 10:28:39.976+00 0 podium podium 7389 37 " com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.976+00 2021-01-28 10:28:39.976+00 0 podium podium 7390 21 0 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.977+00 2021-01-28 10:28:39.977+00 0 podium podium 7391 32 262144 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.977+00 2021-01-28 10:28:39.977+00 0 podium podium 7392 92 0 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.977+00 2021-01-28 10:28:39.977+00 0 podium podium 7393 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.978+00 2021-01-28 10:28:39.978+00 0 podium podium 7394 35 false com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.978+00 2021-01-28 10:28:39.978+00 0 podium podium 7395 258 0 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.979+00 2021-01-28 10:28:39.979+00 0 podium podium 7396 18 "employeeNumber","lastName","firstName","extension","email","reportsTo","jobTitle","officeCode"\\r\\n com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.979+00 2021-01-28 10:28:39.979+00 0 podium podium 7397 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.98+00 2021-01-28 10:28:39.98+00 0 podium podium 7398 12 0 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.98+00 2021-01-28 10:28:39.98+00 0 podium podium 7399 38 " com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.98+00 2021-01-28 10:28:39.98+00 0 podium podium 7400 31 1 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.981+00 2021-01-28 10:28:39.981+00 0 podium podium 7401 153 0 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.981+00 2021-01-28 10:28:39.981+00 0 podium podium 7402 28 0.00 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.982+00 2021-01-28 10:28:39.982+00 0 podium podium 7403 17 false com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.983+00 2021-01-28 10:28:39.983+00 0 podium podium 7404 20 0 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.983+00 2021-01-28 10:28:39.983+00 0 podium podium 7405 288 \N com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.983+00 2021-01-28 10:28:39.983+00 0 podium podium 7406 155 true com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.984+00 2021-01-28 10:28:39.984+00 0 podium podium 7407 94 products com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.13+00 2021-01-28 10:28:40.13+00 0 podium podium 7408 202 MANAGED com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.131+00 2021-01-28 10:28:40.131+00 0 podium podium 7409 153 0 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.131+00 2021-01-28 10:28:40.131+00 0 podium podium 7410 148 true com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.131+00 2021-01-28 10:28:40.131+00 0 podium podium 7411 35 false com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.132+00 2021-01-28 10:28:40.132+00 0 podium podium 7412 24 false com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.132+00 2021-01-28 10:28:40.132+00 0 podium podium 7413 33 \\r\\n com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.132+00 2021-01-28 10:28:40.132+00 0 podium podium 7414 27 UTF_8 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.133+00 2021-01-28 10:28:40.133+00 0 podium podium 7415 114 Snapshot com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.133+00 2021-01-28 10:28:40.133+00 0 podium podium 2441 44 \N com.nvs.core.model.meta.DataField 302 2021-01-26 10:04:32.737+00 2021-01-26 10:04:32.737+00 0 podium podium 2442 44 \N com.nvs.core.model.meta.DataField 238 2021-01-26 10:04:32.738+00 2021-01-26 10:04:32.738+00 0 podium podium 2443 49 \N com.nvs.core.model.meta.DataField 287 2021-01-26 10:04:32.738+00 2021-01-26 10:04:32.738+00 0 podium podium 2444 44 \N com.nvs.core.model.meta.DataField 296 2021-01-26 10:04:32.739+00 2021-01-26 10:04:32.739+00 0 podium podium 2445 44 \N com.nvs.core.model.meta.DataField 265 2021-01-26 10:04:32.74+00 2021-01-26 10:04:32.74+00 0 podium podium 2446 53 \N com.nvs.core.model.meta.DataField 295 2021-01-26 10:04:32.74+00 2021-01-26 10:04:32.74+00 0 podium podium 2447 51 45 com.nvs.core.model.meta.DataField 233 2021-01-26 10:04:32.741+00 2021-01-26 10:04:32.741+00 0 podium podium 2448 49 \N com.nvs.core.model.meta.DataField 258 2021-01-26 10:04:32.742+00 2021-01-26 10:04:32.742+00 0 podium podium 2449 50 \N com.nvs.core.model.meta.DataField 272 2021-01-26 10:04:32.743+00 2021-01-26 10:04:32.743+00 0 podium podium 2450 134 VARCHAR(24) com.nvs.core.model.meta.DataField 236 2021-01-26 10:04:32.743+00 2021-01-26 10:04:32.743+00 0 podium podium 2451 44 \N com.nvs.core.model.meta.DataField 264 2021-01-26 10:04:32.744+00 2021-01-26 10:04:32.744+00 0 podium podium 2452 49 \N com.nvs.core.model.meta.DataField 267 2021-01-26 10:04:32.745+00 2021-01-26 10:04:32.745+00 0 podium podium 2453 50 \N com.nvs.core.model.meta.DataField 271 2021-01-26 10:04:32.745+00 2021-01-26 10:04:32.745+00 0 podium podium 2454 50 \N com.nvs.core.model.meta.DataField 274 2021-01-26 10:04:32.746+00 2021-01-26 10:04:32.746+00 0 podium podium 2455 51 50 com.nvs.core.model.meta.DataField 298 2021-01-26 10:04:32.747+00 2021-01-26 10:04:32.747+00 0 podium podium 2456 49 \N com.nvs.core.model.meta.DataField 247 2021-01-26 10:04:32.747+00 2021-01-26 10:04:32.747+00 0 podium podium 2457 134 VARCHAR(5) com.nvs.core.model.meta.DataField 271 2021-01-26 10:04:32.748+00 2021-01-26 10:04:32.748+00 0 podium podium 2458 50 \N com.nvs.core.model.meta.DataField 261 2021-01-26 10:04:32.749+00 2021-01-26 10:04:32.749+00 0 podium podium 2459 45 \N com.nvs.core.model.meta.DataField 286 2021-01-26 10:04:32.75+00 2021-01-26 10:04:32.75+00 0 podium podium 2460 50 \N com.nvs.core.model.meta.DataField 238 2021-01-26 10:04:32.75+00 2021-01-26 10:04:32.75+00 0 podium podium 2461 52 \N com.nvs.core.model.meta.DataField 234 2021-01-26 10:04:32.751+00 2021-01-26 10:04:32.751+00 0 podium podium 2462 81 false com.nvs.core.model.meta.DataField 289 2021-01-26 10:04:32.752+00 2021-01-26 10:04:32.752+00 0 podium podium 2463 45 \N com.nvs.core.model.meta.DataField 282 2021-01-26 10:04:32.752+00 2021-01-26 10:04:32.752+00 0 podium podium 2464 53 \N com.nvs.core.model.meta.DataField 252 2021-01-26 10:04:32.753+00 2021-01-26 10:04:32.753+00 0 podium podium 2465 81 false com.nvs.core.model.meta.DataField 260 2021-01-26 10:04:32.754+00 2021-01-26 10:04:32.754+00 0 podium podium 2466 52 \N com.nvs.core.model.meta.DataField 236 2021-01-26 10:04:32.754+00 2021-01-26 10:04:32.754+00 0 podium podium 2467 45 \N com.nvs.core.model.meta.DataField 294 2021-01-26 10:04:32.755+00 2021-01-26 10:04:32.755+00 0 podium podium 2468 53 \N com.nvs.core.model.meta.DataField 234 2021-01-26 10:04:32.756+00 2021-01-26 10:04:32.756+00 0 podium podium 2469 50 \N com.nvs.core.model.meta.DataField 285 2021-01-26 10:04:32.757+00 2021-01-26 10:04:32.757+00 0 podium podium 2470 134 VARCHAR(50) com.nvs.core.model.meta.DataField 270 2021-01-26 10:04:32.757+00 2021-01-26 10:04:32.757+00 0 podium podium 2471 44 \N com.nvs.core.model.meta.DataField 271 2021-01-26 10:04:32.759+00 2021-01-26 10:04:32.759+00 0 podium podium 2472 51 \N com.nvs.core.model.meta.DataField 246 2021-01-26 10:04:32.759+00 2021-01-26 10:04:32.759+00 0 podium podium 2473 49 \N com.nvs.core.model.meta.DataField 294 2021-01-26 10:04:32.76+00 2021-01-26 10:04:32.76+00 0 podium podium 2474 134 VARCHAR(15) com.nvs.core.model.meta.DataField 258 2021-01-26 10:04:32.761+00 2021-01-26 10:04:32.761+00 0 podium podium 2475 51 10 com.nvs.core.model.meta.DataField 257 2021-01-26 10:04:32.761+00 2021-01-26 10:04:32.761+00 0 podium podium 2476 50 \N com.nvs.core.model.meta.DataField 299 2021-01-26 10:04:32.762+00 2021-01-26 10:04:32.762+00 0 podium podium 2477 45 \N com.nvs.core.model.meta.DataField 236 2021-01-26 10:04:32.763+00 2021-01-26 10:04:32.763+00 0 podium podium 2478 44 \N com.nvs.core.model.meta.DataField 255 2021-01-26 10:04:32.763+00 2021-01-26 10:04:32.763+00 0 podium podium 2479 52 \N com.nvs.core.model.meta.DataField 264 2021-01-26 10:04:32.764+00 2021-01-26 10:04:32.764+00 0 podium podium 2480 49 \N com.nvs.core.model.meta.DataField 283 2021-01-26 10:04:32.765+00 2021-01-26 10:04:32.765+00 0 podium podium 2481 51 1000 com.nvs.core.model.meta.DataField 239 2021-01-26 10:04:32.766+00 2021-01-26 10:04:32.766+00 0 podium podium 2482 134 VARCHAR(10) com.nvs.core.model.meta.DataField 284 2021-01-26 10:04:32.766+00 2021-01-26 10:04:32.766+00 0 podium podium 2483 49 \N com.nvs.core.model.meta.DataField 265 2021-01-26 10:04:32.767+00 2021-01-26 10:04:32.767+00 0 podium podium 2484 50 \N com.nvs.core.model.meta.DataField 280 2021-01-26 10:04:32.768+00 2021-01-26 10:04:32.768+00 0 podium podium 2485 81 false com.nvs.core.model.meta.DataField 307 2021-01-26 10:04:32.768+00 2021-01-26 10:04:32.768+00 0 podium podium 2486 49 \N com.nvs.core.model.meta.DataField 244 2021-01-26 10:04:32.769+00 2021-01-26 10:04:32.769+00 0 podium podium 2487 49 \N com.nvs.core.model.meta.DataField 235 2021-01-26 10:04:32.77+00 2021-01-26 10:04:32.77+00 0 podium podium 2488 44 \N com.nvs.core.model.meta.DataField 292 2021-01-26 10:04:32.77+00 2021-01-26 10:04:32.77+00 0 podium podium 2489 51 15 com.nvs.core.model.meta.DataField 290 2021-01-26 10:04:32.771+00 2021-01-26 10:04:32.771+00 0 podium podium 2490 45 \N com.nvs.core.model.meta.DataField 273 2021-01-26 10:04:32.772+00 2021-01-26 10:04:32.772+00 0 podium podium 2491 44 \N com.nvs.core.model.meta.DataField 248 2021-01-26 10:04:32.772+00 2021-01-26 10:04:32.772+00 0 podium podium 2492 81 false com.nvs.core.model.meta.DataField 272 2021-01-26 10:04:32.773+00 2021-01-26 10:04:32.773+00 0 podium podium 2493 44 \N com.nvs.core.model.meta.DataField 273 2021-01-26 10:04:32.774+00 2021-01-26 10:04:32.774+00 0 podium podium 2494 134 VARCHAR(50) com.nvs.core.model.meta.DataField 298 2021-01-26 10:04:32.774+00 2021-01-26 10:04:32.774+00 0 podium podium 2495 45 \N com.nvs.core.model.meta.DataField 237 2021-01-26 10:04:32.775+00 2021-01-26 10:04:32.775+00 0 podium podium 2496 49 \N com.nvs.core.model.meta.DataField 295 2021-01-26 10:04:32.776+00 2021-01-26 10:04:32.776+00 0 podium podium 2497 45 \N com.nvs.core.model.meta.DataField 269 2021-01-26 10:04:32.776+00 2021-01-26 10:04:32.776+00 0 podium podium 2498 49 \N com.nvs.core.model.meta.DataField 298 2021-01-26 10:04:32.777+00 2021-01-26 10:04:32.777+00 0 podium podium 2499 53 \N com.nvs.core.model.meta.DataField 238 2021-01-26 10:04:32.778+00 2021-01-26 10:04:32.778+00 0 podium podium 2500 53 \N com.nvs.core.model.meta.DataField 280 2021-01-26 10:04:32.779+00 2021-01-26 10:04:32.779+00 0 podium podium 2501 50 \N com.nvs.core.model.meta.DataField 255 2021-01-26 10:04:32.779+00 2021-01-26 10:04:32.779+00 0 podium podium 2502 134 VARCHAR(45) com.nvs.core.model.meta.DataField 233 2021-01-26 10:04:32.78+00 2021-01-26 10:04:32.78+00 0 podium podium 2503 53 \N com.nvs.core.model.meta.DataField 270 2021-01-26 10:04:32.781+00 2021-01-26 10:04:32.781+00 0 podium podium 2504 45 \N com.nvs.core.model.meta.DataField 283 2021-01-26 10:04:32.781+00 2021-01-26 10:04:32.781+00 0 podium podium 2505 53 \N com.nvs.core.model.meta.DataField 247 2021-01-26 10:04:32.782+00 2021-01-26 10:04:32.782+00 0 podium podium 2506 51 5 com.nvs.core.model.meta.DataField 267 2021-01-26 10:04:32.783+00 2021-01-26 10:04:32.783+00 0 podium podium 2507 49 \N com.nvs.core.model.meta.DataField 282 2021-01-26 10:04:32.783+00 2021-01-26 10:04:32.783+00 0 podium podium 2508 134 VARCHAR(24) com.nvs.core.model.meta.DataField 250 2021-01-26 10:04:32.784+00 2021-01-26 10:04:32.784+00 0 podium podium 2509 81 false com.nvs.core.model.meta.DataField 281 2021-01-26 10:04:32.785+00 2021-01-26 10:04:32.785+00 0 podium podium 2510 52 \N com.nvs.core.model.meta.DataField 268 2021-01-26 10:04:32.785+00 2021-01-26 10:04:32.785+00 0 podium podium 2511 81 false com.nvs.core.model.meta.DataField 286 2021-01-26 10:04:32.786+00 2021-01-26 10:04:32.786+00 0 podium podium 2512 50 \N com.nvs.core.model.meta.DataField 304 2021-01-26 10:04:32.787+00 2021-01-26 10:04:32.787+00 0 podium podium 2513 51 \N com.nvs.core.model.meta.DataField 310 2021-01-26 10:04:32.788+00 2021-01-26 10:04:32.788+00 0 podium podium 2514 52 \N com.nvs.core.model.meta.DataField 292 2021-01-26 10:04:32.788+00 2021-01-26 10:04:32.788+00 0 podium podium 2515 45 \N com.nvs.core.model.meta.DataField 290 2021-01-26 10:04:32.789+00 2021-01-26 10:04:32.789+00 0 podium podium 2516 45 \N com.nvs.core.model.meta.DataField 241 2021-01-26 10:04:32.79+00 2021-01-26 10:04:32.79+00 0 podium podium 2517 81 false com.nvs.core.model.meta.DataField 293 2021-01-26 10:04:32.79+00 2021-01-26 10:04:32.79+00 0 podium podium 2518 44 \N com.nvs.core.model.meta.DataField 260 2021-01-26 10:04:32.791+00 2021-01-26 10:04:32.791+00 0 podium podium 2519 49 \N com.nvs.core.model.meta.DataField 251 2021-01-26 10:04:32.792+00 2021-01-26 10:04:32.792+00 0 podium podium 2520 53 \N com.nvs.core.model.meta.DataField 248 2021-01-26 10:04:32.792+00 2021-01-26 10:04:32.792+00 0 podium podium 2521 44 \N com.nvs.core.model.meta.DataField 291 2021-01-26 10:04:32.793+00 2021-01-26 10:04:32.793+00 0 podium podium 2522 134 VARCHAR(5) com.nvs.core.model.meta.DataField 300 2021-01-26 10:04:32.794+00 2021-01-26 10:04:32.794+00 0 podium podium 2523 53 \N com.nvs.core.model.meta.DataField 251 2021-01-26 10:04:32.794+00 2021-01-26 10:04:32.794+00 0 podium podium 2524 53 \N com.nvs.core.model.meta.DataField 259 2021-01-26 10:04:32.795+00 2021-01-26 10:04:32.795+00 0 podium podium 2525 45 \N com.nvs.core.model.meta.DataField 254 2021-01-26 10:04:32.796+00 2021-01-26 10:04:32.796+00 0 podium podium 2526 52 \N com.nvs.core.model.meta.DataField 258 2021-01-26 10:04:32.797+00 2021-01-26 10:04:32.797+00 0 podium podium 2527 51 15 com.nvs.core.model.meta.DataField 286 2021-01-26 10:04:32.797+00 2021-01-26 10:04:32.797+00 0 podium podium 2528 81 false com.nvs.core.model.meta.DataField 268 2021-01-26 10:04:32.798+00 2021-01-26 10:04:32.798+00 0 podium podium 2529 52 \N com.nvs.core.model.meta.DataField 296 2021-01-26 10:04:32.799+00 2021-01-26 10:04:32.799+00 0 podium podium 2530 49 \N com.nvs.core.model.meta.DataField 304 2021-01-26 10:04:32.8+00 2021-01-26 10:04:32.8+00 0 podium podium 2531 50 \N com.nvs.core.model.meta.DataField 254 2021-01-26 10:04:32.8+00 2021-01-26 10:04:32.8+00 0 podium podium 2532 51 24 com.nvs.core.model.meta.DataField 236 2021-01-26 10:04:32.801+00 2021-01-26 10:04:32.801+00 0 podium podium 2533 53 \N com.nvs.core.model.meta.DataField 311 2021-01-26 10:04:32.802+00 2021-01-26 10:04:32.802+00 0 podium podium 2534 50 \N com.nvs.core.model.meta.DataField 303 2021-01-26 10:04:32.802+00 2021-01-26 10:04:32.802+00 0 podium podium 2535 44 \N com.nvs.core.model.meta.DataField 280 2021-01-26 10:04:32.803+00 2021-01-26 10:04:32.803+00 0 podium podium 2536 45 \N com.nvs.core.model.meta.DataField 296 2021-01-26 10:04:32.804+00 2021-01-26 10:04:32.804+00 0 podium podium 2537 52 \N com.nvs.core.model.meta.DataField 306 2021-01-26 10:04:32.805+00 2021-01-26 10:04:32.805+00 0 podium podium 2538 44 \N com.nvs.core.model.meta.DataField 262 2021-01-26 10:04:32.805+00 2021-01-26 10:04:32.805+00 0 podium podium 2539 52 \N com.nvs.core.model.meta.DataField 300 2021-01-26 10:04:32.806+00 2021-01-26 10:04:32.806+00 0 podium podium 2540 44 \N com.nvs.core.model.meta.DataField 261 2021-01-26 10:04:32.807+00 2021-01-26 10:04:32.807+00 0 podium podium 2541 44 \N com.nvs.core.model.meta.DataField 247 2021-01-26 10:04:32.807+00 2021-01-26 10:04:32.807+00 0 podium podium 2542 45 \N com.nvs.core.model.meta.DataField 267 2021-01-26 10:04:32.808+00 2021-01-26 10:04:32.808+00 0 podium podium 2543 81 false com.nvs.core.model.meta.DataField 308 2021-01-26 10:04:32.809+00 2021-01-26 10:04:32.809+00 0 podium podium 2544 50 \N com.nvs.core.model.meta.DataField 302 2021-01-26 10:04:32.81+00 2021-01-26 10:04:32.81+00 0 podium podium 2545 134 VARCHAR(24) com.nvs.core.model.meta.DataField 309 2021-01-26 10:04:32.81+00 2021-01-26 10:04:32.81+00 0 podium podium 2546 45 \N com.nvs.core.model.meta.DataField 280 2021-01-26 10:04:32.811+00 2021-01-26 10:04:32.811+00 0 podium podium 2547 50 \N com.nvs.core.model.meta.DataField 308 2021-01-26 10:04:32.812+00 2021-01-26 10:04:32.812+00 0 podium podium 2548 52 \N com.nvs.core.model.meta.DataField 262 2021-01-26 10:04:32.812+00 2021-01-26 10:04:32.812+00 0 podium podium 2549 45 \N com.nvs.core.model.meta.DataField 278 2021-01-26 10:04:32.813+00 2021-01-26 10:04:32.813+00 0 podium podium 2550 44 \N com.nvs.core.model.meta.DataField 287 2021-01-26 10:04:32.814+00 2021-01-26 10:04:32.814+00 0 podium podium 2551 50 \N com.nvs.core.model.meta.DataField 257 2021-01-26 10:04:32.814+00 2021-01-26 10:04:32.814+00 0 podium podium 2552 52 \N com.nvs.core.model.meta.DataField 251 2021-01-26 10:04:32.815+00 2021-01-26 10:04:32.815+00 0 podium podium 2553 52 \N com.nvs.core.model.meta.DataField 276 2021-01-26 10:04:32.816+00 2021-01-26 10:04:32.816+00 0 podium podium 2554 50 \N com.nvs.core.model.meta.DataField 310 2021-01-26 10:04:32.817+00 2021-01-26 10:04:32.817+00 0 podium podium 2555 53 \N com.nvs.core.model.meta.DataField 282 2021-01-26 10:04:32.817+00 2021-01-26 10:04:32.817+00 0 podium podium 2556 51 \N com.nvs.core.model.meta.DataField 268 2021-01-26 10:04:32.818+00 2021-01-26 10:04:32.818+00 0 podium podium 2557 44 \N com.nvs.core.model.meta.DataField 246 2021-01-26 10:04:32.819+00 2021-01-26 10:04:32.819+00 0 podium podium 2558 134 VARCHAR(30) com.nvs.core.model.meta.DataField 288 2021-01-26 10:04:32.819+00 2021-01-26 10:04:32.819+00 0 podium podium 2559 52 \N com.nvs.core.model.meta.DataField 254 2021-01-26 10:04:32.82+00 2021-01-26 10:04:32.82+00 0 podium podium 2560 50 \N com.nvs.core.model.meta.DataField 241 2021-01-26 10:04:32.821+00 2021-01-26 10:04:32.821+00 0 podium podium 2561 52 \N com.nvs.core.model.meta.DataField 293 2021-01-26 10:04:32.822+00 2021-01-26 10:04:32.822+00 0 podium podium 2562 51 10 com.nvs.core.model.meta.DataField 285 2021-01-26 10:04:32.822+00 2021-01-26 10:04:32.822+00 0 podium podium 2563 44 \N com.nvs.core.model.meta.DataField 272 2021-01-26 10:04:32.823+00 2021-01-26 10:04:32.823+00 0 podium podium 2564 81 false com.nvs.core.model.meta.DataField 282 2021-01-26 10:04:32.824+00 2021-01-26 10:04:32.824+00 0 podium podium 2565 51 4 com.nvs.core.model.meta.DataField 247 2021-01-26 10:04:32.824+00 2021-01-26 10:04:32.824+00 0 podium podium 2566 51 \N com.nvs.core.model.meta.DataField 254 2021-01-26 10:04:32.825+00 2021-01-26 10:04:32.825+00 0 podium podium 2567 53 \N com.nvs.core.model.meta.DataField 277 2021-01-26 10:04:32.826+00 2021-01-26 10:04:32.826+00 0 podium podium 2568 44 \N com.nvs.core.model.meta.DataField 299 2021-01-26 10:04:32.827+00 2021-01-26 10:04:32.827+00 0 podium podium 2569 44 \N com.nvs.core.model.meta.DataField 297 2021-01-26 10:04:32.827+00 2021-01-26 10:04:32.827+00 0 podium podium 2570 53 \N com.nvs.core.model.meta.DataField 309 2021-01-26 10:04:32.828+00 2021-01-26 10:04:32.828+00 0 podium podium 2571 49 \N com.nvs.core.model.meta.DataField 309 2021-01-26 10:04:32.829+00 2021-01-26 10:04:32.829+00 0 podium podium 2572 44 \N com.nvs.core.model.meta.DataField 250 2021-01-26 10:04:32.829+00 2021-01-26 10:04:32.829+00 0 podium podium 2573 50 \N com.nvs.core.model.meta.DataField 282 2021-01-26 10:04:32.83+00 2021-01-26 10:04:32.83+00 0 podium podium 2574 50 \N com.nvs.core.model.meta.DataField 236 2021-01-26 10:04:32.831+00 2021-01-26 10:04:32.831+00 0 podium podium 2575 49 \N com.nvs.core.model.meta.DataField 278 2021-01-26 10:04:32.832+00 2021-01-26 10:04:32.832+00 0 podium podium 2576 44 \N com.nvs.core.model.meta.DataField 235 2021-01-26 10:04:32.832+00 2021-01-26 10:04:32.832+00 0 podium podium 2577 53 \N com.nvs.core.model.meta.DataField 241 2021-01-26 10:04:32.833+00 2021-01-26 10:04:32.833+00 0 podium podium 2578 53 \N com.nvs.core.model.meta.DataField 302 2021-01-26 10:04:32.834+00 2021-01-26 10:04:32.834+00 0 podium podium 2579 53 \N com.nvs.core.model.meta.DataField 287 2021-01-26 10:04:32.834+00 2021-01-26 10:04:32.834+00 0 podium podium 2580 134 VARCHAR(5) com.nvs.core.model.meta.DataField 265 2021-01-26 10:04:32.835+00 2021-01-26 10:04:32.835+00 0 podium podium 2581 81 false com.nvs.core.model.meta.DataField 245 2021-01-26 10:04:32.836+00 2021-01-26 10:04:32.836+00 0 podium podium 2582 51 50 com.nvs.core.model.meta.DataField 249 2021-01-26 10:04:32.836+00 2021-01-26 10:04:32.836+00 0 podium podium 2583 51 24 com.nvs.core.model.meta.DataField 250 2021-01-26 10:04:32.837+00 2021-01-26 10:04:32.837+00 0 podium podium 2584 52 \N com.nvs.core.model.meta.DataField 273 2021-01-26 10:04:32.838+00 2021-01-26 10:04:32.838+00 0 podium podium 2585 50 \N com.nvs.core.model.meta.DataField 262 2021-01-26 10:04:32.839+00 2021-01-26 10:04:32.839+00 0 podium podium 2586 50 \N com.nvs.core.model.meta.DataField 277 2021-01-26 10:04:32.839+00 2021-01-26 10:04:32.839+00 0 podium podium 2587 45 \N com.nvs.core.model.meta.DataField 291 2021-01-26 10:04:32.84+00 2021-01-26 10:04:32.84+00 0 podium podium 2588 50 \N com.nvs.core.model.meta.DataField 297 2021-01-26 10:04:32.841+00 2021-01-26 10:04:32.841+00 0 podium podium 2589 45 \N com.nvs.core.model.meta.DataField 264 2021-01-26 10:04:32.841+00 2021-01-26 10:04:32.841+00 0 podium podium 2590 50 \N com.nvs.core.model.meta.DataField 292 2021-01-26 10:04:32.842+00 2021-01-26 10:04:32.842+00 0 podium podium 2591 52 \N com.nvs.core.model.meta.DataField 265 2021-01-26 10:04:32.843+00 2021-01-26 10:04:32.843+00 0 podium podium 2592 51 30 com.nvs.core.model.meta.DataField 311 2021-01-26 10:04:32.844+00 2021-01-26 10:04:32.844+00 0 podium podium 2593 44 \N com.nvs.core.model.meta.DataField 305 2021-01-26 10:04:32.844+00 2021-01-26 10:04:32.844+00 0 podium podium 2594 45 \N com.nvs.core.model.meta.DataField 275 2021-01-26 10:04:32.845+00 2021-01-26 10:04:32.845+00 0 podium podium 2595 134 VARCHAR(30) com.nvs.core.model.meta.DataField 244 2021-01-26 10:04:32.846+00 2021-01-26 10:04:32.846+00 0 podium podium 2596 49 \N com.nvs.core.model.meta.DataField 302 2021-01-26 10:04:32.846+00 2021-01-26 10:04:32.846+00 0 podium podium 2597 52 \N com.nvs.core.model.meta.DataField 311 2021-01-26 10:04:32.847+00 2021-01-26 10:04:32.847+00 0 podium podium 2598 45 \N com.nvs.core.model.meta.DataField 311 2021-01-26 10:04:32.848+00 2021-01-26 10:04:32.848+00 0 podium podium 2599 51 5 com.nvs.core.model.meta.DataField 261 2021-01-26 10:04:32.848+00 2021-01-26 10:04:32.848+00 0 podium podium 2600 53 \N com.nvs.core.model.meta.DataField 292 2021-01-26 10:04:32.849+00 2021-01-26 10:04:32.849+00 0 podium podium 2601 53 \N com.nvs.core.model.meta.DataField 300 2021-01-26 10:04:32.85+00 2021-01-26 10:04:32.85+00 0 podium podium 2602 44 \N com.nvs.core.model.meta.DataField 270 2021-01-26 10:04:32.851+00 2021-01-26 10:04:32.851+00 0 podium podium 2603 44 \N com.nvs.core.model.meta.DataField 252 2021-01-26 10:04:32.851+00 2021-01-26 10:04:32.851+00 0 podium podium 2604 44 \N com.nvs.core.model.meta.DataField 234 2021-01-26 10:04:32.852+00 2021-01-26 10:04:32.852+00 0 podium podium 2605 52 \N com.nvs.core.model.meta.DataField 294 2021-01-26 10:04:32.853+00 2021-01-26 10:04:32.853+00 0 podium podium 2606 81 false com.nvs.core.model.meta.DataField 253 2021-01-26 10:04:32.853+00 2021-01-26 10:04:32.853+00 0 podium podium 2607 44 \N com.nvs.core.model.meta.DataField 306 2021-01-26 10:04:32.854+00 2021-01-26 10:04:32.854+00 0 podium podium 2608 49 \N com.nvs.core.model.meta.DataField 248 2021-01-26 10:04:32.855+00 2021-01-26 10:04:32.855+00 0 podium podium 2609 45 \N com.nvs.core.model.meta.DataField 289 2021-01-26 10:04:32.855+00 2021-01-26 10:04:32.855+00 0 podium podium 2610 53 \N com.nvs.core.model.meta.DataField 242 2021-01-26 10:04:32.856+00 2021-01-26 10:04:32.856+00 0 podium podium 2611 81 false com.nvs.core.model.meta.DataField 285 2021-01-26 10:04:32.857+00 2021-01-26 10:04:32.857+00 0 podium podium 2612 45 \N com.nvs.core.model.meta.DataField 239 2021-01-26 10:04:32.857+00 2021-01-26 10:04:32.857+00 0 podium podium 2613 49 \N com.nvs.core.model.meta.DataField 293 2021-01-26 10:04:32.858+00 2021-01-26 10:04:32.858+00 0 podium podium 2614 51 1000 com.nvs.core.model.meta.DataField 293 2021-01-26 10:04:32.859+00 2021-01-26 10:04:32.859+00 0 podium podium 2615 51 \N com.nvs.core.model.meta.DataField 308 2021-01-26 10:04:32.86+00 2021-01-26 10:04:32.86+00 0 podium podium 2616 53 \N com.nvs.core.model.meta.DataField 308 2021-01-26 10:04:32.86+00 2021-01-26 10:04:32.86+00 0 podium podium 2617 81 false com.nvs.core.model.meta.DataField 269 2021-01-26 10:04:32.861+00 2021-01-26 10:04:32.861+00 0 podium podium 2618 44 \N com.nvs.core.model.meta.DataField 266 2021-01-26 10:04:32.862+00 2021-01-26 10:04:32.862+00 0 podium podium 2619 44 \N com.nvs.core.model.meta.DataField 240 2021-01-26 10:04:32.862+00 2021-01-26 10:04:32.862+00 0 podium podium 2620 51 30 com.nvs.core.model.meta.DataField 288 2021-01-26 10:04:32.863+00 2021-01-26 10:04:32.863+00 0 podium podium 2621 52 \N com.nvs.core.model.meta.DataField 275 2021-01-26 10:04:32.864+00 2021-01-26 10:04:32.864+00 0 podium podium 2622 49 \N com.nvs.core.model.meta.DataField 259 2021-01-26 10:04:32.865+00 2021-01-26 10:04:32.865+00 0 podium podium 2623 45 \N com.nvs.core.model.meta.DataField 245 2021-01-26 10:04:32.865+00 2021-01-26 10:04:32.865+00 0 podium podium 2624 81 false com.nvs.core.model.meta.DataField 238 2021-01-26 10:04:32.866+00 2021-01-26 10:04:32.866+00 0 podium podium 2625 53 \N com.nvs.core.model.meta.DataField 293 2021-01-26 10:04:32.867+00 2021-01-26 10:04:32.867+00 0 podium podium 2626 53 \N com.nvs.core.model.meta.DataField 250 2021-01-26 10:04:32.867+00 2021-01-26 10:04:32.867+00 0 podium podium 2627 81 false com.nvs.core.model.meta.DataField 237 2021-01-26 10:04:32.868+00 2021-01-26 10:04:32.868+00 0 podium podium 2628 44 \N com.nvs.core.model.meta.DataField 301 2021-01-26 10:04:32.869+00 2021-01-26 10:04:32.869+00 0 podium podium 2629 44 \N com.nvs.core.model.meta.DataField 237 2021-01-26 10:04:32.869+00 2021-01-26 10:04:32.869+00 0 podium podium 2630 53 \N com.nvs.core.model.meta.DataField 239 2021-01-26 10:04:32.87+00 2021-01-26 10:04:32.87+00 0 podium podium 2631 134 VARCHAR(15) com.nvs.core.model.meta.DataField 302 2021-01-26 10:04:32.871+00 2021-01-26 10:04:32.871+00 0 podium podium 2632 81 false com.nvs.core.model.meta.DataField 277 2021-01-26 10:04:32.872+00 2021-01-26 10:04:32.872+00 0 podium podium 2633 44 \N com.nvs.core.model.meta.DataField 285 2021-01-26 10:04:32.872+00 2021-01-26 10:04:32.872+00 0 podium podium 2634 49 \N com.nvs.core.model.meta.DataField 285 2021-01-26 10:04:32.873+00 2021-01-26 10:04:32.873+00 0 podium podium 2635 49 \N com.nvs.core.model.meta.DataField 256 2021-01-26 10:04:32.874+00 2021-01-26 10:04:32.874+00 0 podium podium 2636 50 \N com.nvs.core.model.meta.DataField 293 2021-01-26 10:04:32.874+00 2021-01-26 10:04:32.874+00 0 podium podium 2637 81 false com.nvs.core.model.meta.DataField 291 2021-01-26 10:04:32.875+00 2021-01-26 10:04:32.875+00 0 podium podium 2638 81 false com.nvs.core.model.meta.DataField 242 2021-01-26 10:04:32.876+00 2021-01-26 10:04:32.876+00 0 podium podium 2639 49 \N com.nvs.core.model.meta.DataField 279 2021-01-26 10:04:32.876+00 2021-01-26 10:04:32.876+00 0 podium podium 2640 49 \N com.nvs.core.model.meta.DataField 275 2021-01-26 10:04:32.877+00 2021-01-26 10:04:32.877+00 0 podium podium 2641 49 \N com.nvs.core.model.meta.DataField 289 2021-01-26 10:04:32.878+00 2021-01-26 10:04:32.878+00 0 podium podium 2642 45 \N com.nvs.core.model.meta.DataField 276 2021-01-26 10:04:32.878+00 2021-01-26 10:04:32.878+00 0 podium podium 2643 50 \N com.nvs.core.model.meta.DataField 296 2021-01-26 10:04:32.879+00 2021-01-26 10:04:32.879+00 0 podium podium 2644 44 \N com.nvs.core.model.meta.DataField 309 2021-01-26 10:04:32.88+00 2021-01-26 10:04:32.88+00 0 podium podium 2645 51 50 com.nvs.core.model.meta.DataField 238 2021-01-26 10:04:32.88+00 2021-01-26 10:04:32.88+00 0 podium podium 2646 45 \N com.nvs.core.model.meta.DataField 287 2021-01-26 10:04:32.881+00 2021-01-26 10:04:32.881+00 0 podium podium 2647 52 \N com.nvs.core.model.meta.DataField 263 2021-01-26 10:04:32.882+00 2021-01-26 10:04:32.882+00 0 podium podium 2648 49 \N com.nvs.core.model.meta.DataField 291 2021-01-26 10:04:32.882+00 2021-01-26 10:04:32.882+00 0 podium podium 2649 81 false com.nvs.core.model.meta.DataField 233 2021-01-26 10:04:32.883+00 2021-01-26 10:04:32.883+00 0 podium podium 2650 53 \N com.nvs.core.model.meta.DataField 233 2021-01-26 10:04:32.884+00 2021-01-26 10:04:32.884+00 0 podium podium 2651 53 \N com.nvs.core.model.meta.DataField 303 2021-01-26 10:04:32.885+00 2021-01-26 10:04:32.885+00 0 podium podium 2652 51 5 com.nvs.core.model.meta.DataField 282 2021-01-26 10:04:32.885+00 2021-01-26 10:04:32.885+00 0 podium podium 2653 52 \N com.nvs.core.model.meta.DataField 252 2021-01-26 10:04:32.886+00 2021-01-26 10:04:32.886+00 0 podium podium 2654 81 false com.nvs.core.model.meta.DataField 258 2021-01-26 10:04:32.887+00 2021-01-26 10:04:32.887+00 0 podium podium 2655 50 \N com.nvs.core.model.meta.DataField 307 2021-01-26 10:04:32.887+00 2021-01-26 10:04:32.887+00 0 podium podium 2656 44 \N com.nvs.core.model.meta.DataField 290 2021-01-26 10:04:32.888+00 2021-01-26 10:04:32.888+00 0 podium podium 2657 50 \N com.nvs.core.model.meta.DataField 242 2021-01-26 10:04:32.889+00 2021-01-26 10:04:32.889+00 0 podium podium 2658 81 false com.nvs.core.model.meta.DataField 274 2021-01-26 10:04:32.889+00 2021-01-26 10:04:32.889+00 0 podium podium 2659 45 \N com.nvs.core.model.meta.DataField 252 2021-01-26 10:04:32.89+00 2021-01-26 10:04:32.89+00 0 podium podium 2660 52 \N com.nvs.core.model.meta.DataField 248 2021-01-26 10:04:32.891+00 2021-01-26 10:04:32.891+00 0 podium podium 2661 50 \N com.nvs.core.model.meta.DataField 251 2021-01-26 10:04:32.891+00 2021-01-26 10:04:32.891+00 0 podium podium 2662 49 \N com.nvs.core.model.meta.DataField 296 2021-01-26 10:04:32.892+00 2021-01-26 10:04:32.892+00 0 podium podium 2663 81 false com.nvs.core.model.meta.DataField 305 2021-01-26 10:04:32.893+00 2021-01-26 10:04:32.893+00 0 podium podium 2664 51 \N com.nvs.core.model.meta.DataField 279 2021-01-26 10:04:32.893+00 2021-01-26 10:04:32.893+00 0 podium podium 2665 52 \N com.nvs.core.model.meta.DataField 307 2021-01-26 10:04:32.894+00 2021-01-26 10:04:32.894+00 0 podium podium 2666 50 \N com.nvs.core.model.meta.DataField 234 2021-01-26 10:04:32.895+00 2021-01-26 10:04:32.895+00 0 podium podium 2667 52 \N com.nvs.core.model.meta.DataField 287 2021-01-26 10:04:32.895+00 2021-01-26 10:04:32.895+00 0 podium podium 2668 52 \N com.nvs.core.model.meta.DataField 284 2021-01-26 10:04:32.896+00 2021-01-26 10:04:32.896+00 0 podium podium 2669 44 \N com.nvs.core.model.meta.DataField 282 2021-01-26 10:04:32.897+00 2021-01-26 10:04:32.897+00 0 podium podium 2670 49 \N com.nvs.core.model.meta.DataField 253 2021-01-26 10:04:32.898+00 2021-01-26 10:04:32.898+00 0 podium podium 2671 53 \N com.nvs.core.model.meta.DataField 290 2021-01-26 10:04:32.898+00 2021-01-26 10:04:32.898+00 0 podium podium 2672 44 \N com.nvs.core.model.meta.DataField 253 2021-01-26 10:04:32.899+00 2021-01-26 10:04:32.899+00 0 podium podium 2673 45 \N com.nvs.core.model.meta.DataField 253 2021-01-26 10:04:32.9+00 2021-01-26 10:04:32.9+00 0 podium podium 2674 45 \N com.nvs.core.model.meta.DataField 281 2021-01-26 10:04:32.9+00 2021-01-26 10:04:32.9+00 0 podium podium 2675 134 VARCHAR(5) com.nvs.core.model.meta.DataField 267 2021-01-26 10:04:32.901+00 2021-01-26 10:04:32.901+00 0 podium podium 2676 45 \N com.nvs.core.model.meta.DataField 256 2021-01-26 10:04:32.902+00 2021-01-26 10:04:32.902+00 0 podium podium 2677 50 \N com.nvs.core.model.meta.DataField 240 2021-01-26 10:04:32.902+00 2021-01-26 10:04:32.902+00 0 podium podium 2678 50 \N com.nvs.core.model.meta.DataField 301 2021-01-26 10:04:32.903+00 2021-01-26 10:04:32.903+00 0 podium podium 2679 50 \N com.nvs.core.model.meta.DataField 281 2021-01-26 10:04:32.903+00 2021-01-26 10:04:32.903+00 0 podium podium 2680 49 \N com.nvs.core.model.meta.DataField 269 2021-01-26 10:04:32.904+00 2021-01-26 10:04:32.904+00 0 podium podium 2681 134 VARCHAR(30) com.nvs.core.model.meta.DataField 278 2021-01-26 10:04:32.905+00 2021-01-26 10:04:32.905+00 0 podium podium 2682 44 \N com.nvs.core.model.meta.DataField 277 2021-01-26 10:04:32.906+00 2021-01-26 10:04:32.906+00 0 podium podium 2683 81 false com.nvs.core.model.meta.DataField 240 2021-01-26 10:04:32.906+00 2021-01-26 10:04:32.906+00 0 podium podium 2684 53 \N com.nvs.core.model.meta.DataField 264 2021-01-26 10:04:32.907+00 2021-01-26 10:04:32.907+00 0 podium podium 2685 52 \N com.nvs.core.model.meta.DataField 244 2021-01-26 10:04:32.908+00 2021-01-26 10:04:32.908+00 0 podium podium 2686 52 \N com.nvs.core.model.meta.DataField 267 2021-01-26 10:04:32.908+00 2021-01-26 10:04:32.908+00 0 podium podium 2687 51 \N com.nvs.core.model.meta.DataField 273 2021-01-26 10:04:32.909+00 2021-01-26 10:04:32.909+00 0 podium podium 2688 51 5 com.nvs.core.model.meta.DataField 300 2021-01-26 10:04:32.91+00 2021-01-26 10:04:32.91+00 0 podium podium 2689 50 \N com.nvs.core.model.meta.DataField 258 2021-01-26 10:04:32.91+00 2021-01-26 10:04:32.91+00 0 podium podium 2690 53 \N com.nvs.core.model.meta.DataField 279 2021-01-26 10:04:32.911+00 2021-01-26 10:04:32.911+00 0 podium podium 2691 81 false com.nvs.core.model.meta.DataField 300 2021-01-26 10:04:32.912+00 2021-01-26 10:04:32.912+00 0 podium podium 2692 53 \N com.nvs.core.model.meta.DataField 257 2021-01-26 10:04:32.912+00 2021-01-26 10:04:32.912+00 0 podium podium 2693 53 \N com.nvs.core.model.meta.DataField 261 2021-01-26 10:04:32.913+00 2021-01-26 10:04:32.913+00 0 podium podium 2694 134 VARCHAR(1000) com.nvs.core.model.meta.DataField 239 2021-01-26 10:04:32.914+00 2021-01-26 10:04:32.914+00 0 podium podium 2695 45 \N com.nvs.core.model.meta.DataField 274 2021-01-26 10:04:32.914+00 2021-01-26 10:04:32.914+00 0 podium podium 2696 50 \N com.nvs.core.model.meta.DataField 270 2021-01-26 10:04:32.915+00 2021-01-26 10:04:32.915+00 0 podium podium 2697 49 \N com.nvs.core.model.meta.DataField 307 2021-01-26 10:04:32.916+00 2021-01-26 10:04:32.916+00 0 podium podium 2698 134 VARCHAR(30) com.nvs.core.model.meta.DataField 235 2021-01-26 10:04:32.916+00 2021-01-26 10:04:32.916+00 0 podium podium 2699 51 24 com.nvs.core.model.meta.DataField 277 2021-01-26 10:04:32.917+00 2021-01-26 10:04:32.917+00 0 podium podium 2700 50 \N com.nvs.core.model.meta.DataField 265 2021-01-26 10:04:32.918+00 2021-01-26 10:04:32.918+00 0 podium podium 2701 45 \N com.nvs.core.model.meta.DataField 299 2021-01-26 10:04:32.918+00 2021-01-26 10:04:32.918+00 0 podium podium 2702 51 \N com.nvs.core.model.meta.DataField 281 2021-01-26 10:04:32.919+00 2021-01-26 10:04:32.919+00 0 podium podium 2703 45 \N com.nvs.core.model.meta.DataField 249 2021-01-26 10:04:32.92+00 2021-01-26 10:04:32.92+00 0 podium podium 2704 49 \N com.nvs.core.model.meta.DataField 249 2021-01-26 10:04:32.92+00 2021-01-26 10:04:32.92+00 0 podium podium 2705 50 \N com.nvs.core.model.meta.DataField 248 2021-01-26 10:04:32.922+00 2021-01-26 10:04:32.922+00 0 podium podium 2706 53 \N com.nvs.core.model.meta.DataField 255 2021-01-26 10:04:32.922+00 2021-01-26 10:04:32.922+00 0 podium podium 2707 51 \N com.nvs.core.model.meta.DataField 292 2021-01-26 10:04:32.923+00 2021-01-26 10:04:32.923+00 0 podium podium 2708 53 \N com.nvs.core.model.meta.DataField 236 2021-01-26 10:04:32.924+00 2021-01-26 10:04:32.924+00 0 podium podium 2709 53 \N com.nvs.core.model.meta.DataField 304 2021-01-26 10:04:32.924+00 2021-01-26 10:04:32.924+00 0 podium podium 2710 134 VARCHAR(1000) com.nvs.core.model.meta.DataField 293 2021-01-26 10:04:32.925+00 2021-01-26 10:04:32.925+00 0 podium podium 2711 52 \N com.nvs.core.model.meta.DataField 302 2021-01-26 10:04:32.926+00 2021-01-26 10:04:32.926+00 0 podium podium 2712 53 \N com.nvs.core.model.meta.DataField 246 2021-01-26 10:04:32.927+00 2021-01-26 10:04:32.927+00 0 podium podium 2713 51 50 com.nvs.core.model.meta.DataField 252 2021-01-26 10:04:32.927+00 2021-01-26 10:04:32.927+00 0 podium podium 2714 53 \N com.nvs.core.model.meta.DataField 235 2021-01-26 10:04:32.928+00 2021-01-26 10:04:32.928+00 0 podium podium 2715 49 \N com.nvs.core.model.meta.DataField 274 2021-01-26 10:04:32.929+00 2021-01-26 10:04:32.929+00 0 podium podium 2716 45 \N com.nvs.core.model.meta.DataField 305 2021-01-26 10:04:32.929+00 2021-01-26 10:04:32.929+00 0 podium podium 2717 44 \N com.nvs.core.model.meta.DataField 278 2021-01-26 10:04:32.93+00 2021-01-26 10:04:32.93+00 0 podium podium 2718 134 VARCHAR(50) com.nvs.core.model.meta.DataField 262 2021-01-26 10:04:32.931+00 2021-01-26 10:04:32.931+00 0 podium podium 2719 44 \N com.nvs.core.model.meta.DataField 293 2021-01-26 10:04:32.931+00 2021-01-26 10:04:32.931+00 0 podium podium 2720 50 \N com.nvs.core.model.meta.DataField 286 2021-01-26 10:04:32.932+00 2021-01-26 10:04:32.932+00 0 podium podium 2721 45 \N com.nvs.core.model.meta.DataField 285 2021-01-26 10:04:32.933+00 2021-01-26 10:04:32.933+00 0 podium podium 2722 44 \N com.nvs.core.model.meta.DataField 256 2021-01-26 10:04:32.933+00 2021-01-26 10:04:32.933+00 0 podium podium 2723 81 false com.nvs.core.model.meta.DataField 244 2021-01-26 10:04:32.934+00 2021-01-26 10:04:32.934+00 0 podium podium 2724 51 5 com.nvs.core.model.meta.DataField 296 2021-01-26 10:04:32.935+00 2021-01-26 10:04:32.935+00 0 podium podium 2725 53 \N com.nvs.core.model.meta.DataField 281 2021-01-26 10:04:32.935+00 2021-01-26 10:04:32.935+00 0 podium podium 2726 45 \N com.nvs.core.model.meta.DataField 235 2021-01-26 10:04:32.936+00 2021-01-26 10:04:32.936+00 0 podium podium 2727 51 5 com.nvs.core.model.meta.DataField 265 2021-01-26 10:04:32.937+00 2021-01-26 10:04:32.937+00 0 podium podium 2728 81 false com.nvs.core.model.meta.DataField 248 2021-01-26 10:04:32.937+00 2021-01-26 10:04:32.937+00 0 podium podium 2729 50 \N com.nvs.core.model.meta.DataField 275 2021-01-26 10:04:32.938+00 2021-01-26 10:04:32.938+00 0 podium podium 2730 45 \N com.nvs.core.model.meta.DataField 307 2021-01-26 10:04:32.939+00 2021-01-26 10:04:32.939+00 0 podium podium 2731 44 \N com.nvs.core.model.meta.DataField 283 2021-01-26 10:04:32.94+00 2021-01-26 10:04:32.94+00 0 podium podium 2732 50 \N com.nvs.core.model.meta.DataField 268 2021-01-26 10:04:32.94+00 2021-01-26 10:04:32.94+00 0 podium podium 2733 52 \N com.nvs.core.model.meta.DataField 247 2021-01-26 10:04:32.941+00 2021-01-26 10:04:32.941+00 0 podium podium 2734 53 \N com.nvs.core.model.meta.DataField 266 2021-01-26 10:04:32.941+00 2021-01-26 10:04:32.941+00 0 podium podium 2735 134 VARCHAR(5) com.nvs.core.model.meta.DataField 261 2021-01-26 10:04:32.942+00 2021-01-26 10:04:32.942+00 0 podium podium 2736 49 \N com.nvs.core.model.meta.DataField 263 2021-01-26 10:04:32.943+00 2021-01-26 10:04:32.943+00 0 podium podium 2737 50 \N com.nvs.core.model.meta.DataField 249 2021-01-26 10:04:32.943+00 2021-01-26 10:04:32.943+00 0 podium podium 2738 49 \N com.nvs.core.model.meta.DataField 297 2021-01-26 10:04:32.944+00 2021-01-26 10:04:32.944+00 0 podium podium 2739 134 VARCHAR(50) com.nvs.core.model.meta.DataField 305 2021-01-26 10:04:32.945+00 2021-01-26 10:04:32.945+00 0 podium podium 2740 81 false com.nvs.core.model.meta.DataField 270 2021-01-26 10:04:32.945+00 2021-01-26 10:04:32.945+00 0 podium podium 2741 81 false com.nvs.core.model.meta.DataField 279 2021-01-26 10:04:32.946+00 2021-01-26 10:04:32.946+00 0 podium podium 2742 49 \N com.nvs.core.model.meta.DataField 303 2021-01-26 10:04:32.947+00 2021-01-26 10:04:32.947+00 0 podium podium 2743 49 \N com.nvs.core.model.meta.DataField 271 2021-01-26 10:04:32.948+00 2021-01-26 10:04:32.948+00 0 podium podium 2744 81 false com.nvs.core.model.meta.DataField 301 2021-01-26 10:04:32.948+00 2021-01-26 10:04:32.948+00 0 podium podium 2745 50 \N com.nvs.core.model.meta.DataField 287 2021-01-26 10:04:32.949+00 2021-01-26 10:04:32.949+00 0 podium podium 2746 52 \N com.nvs.core.model.meta.DataField 305 2021-01-26 10:04:32.949+00 2021-01-26 10:04:32.949+00 0 podium podium 2747 53 \N com.nvs.core.model.meta.DataField 306 2021-01-26 10:04:32.95+00 2021-01-26 10:04:32.95+00 0 podium podium 2748 45 \N com.nvs.core.model.meta.DataField 233 2021-01-26 10:04:32.951+00 2021-01-26 10:04:32.951+00 0 podium podium 2749 44 \N com.nvs.core.model.meta.DataField 259 2021-01-26 10:04:32.951+00 2021-01-26 10:04:32.951+00 0 podium podium 2750 45 \N com.nvs.core.model.meta.DataField 251 2021-01-26 10:04:32.952+00 2021-01-26 10:04:32.952+00 0 podium podium 2751 44 \N com.nvs.core.model.meta.DataField 279 2021-01-26 10:04:32.953+00 2021-01-26 10:04:32.953+00 0 podium podium 2752 49 \N com.nvs.core.model.meta.DataField 240 2021-01-26 10:04:32.953+00 2021-01-26 10:04:32.953+00 0 podium podium 2753 45 \N com.nvs.core.model.meta.DataField 263 2021-01-26 10:04:32.954+00 2021-01-26 10:04:32.954+00 0 podium podium 2754 49 \N com.nvs.core.model.meta.DataField 284 2021-01-26 10:04:32.955+00 2021-01-26 10:04:32.955+00 0 podium podium 2755 50 \N com.nvs.core.model.meta.DataField 253 2021-01-26 10:04:32.955+00 2021-01-26 10:04:32.955+00 0 podium podium 2756 134 VARCHAR(30) com.nvs.core.model.meta.DataField 311 2021-01-26 10:04:32.956+00 2021-01-26 10:04:32.956+00 0 podium podium 2757 134 VARCHAR(4) com.nvs.core.model.meta.DataField 247 2021-01-26 10:04:32.957+00 2021-01-26 10:04:32.957+00 0 podium podium 2758 50 \N com.nvs.core.model.meta.DataField 259 2021-01-26 10:04:32.958+00 2021-01-26 10:04:32.958+00 0 podium podium 2759 81 false com.nvs.core.model.meta.DataField 257 2021-01-26 10:04:32.958+00 2021-01-26 10:04:32.958+00 0 podium podium 2760 50 \N com.nvs.core.model.meta.DataField 288 2021-01-26 10:04:32.959+00 2021-01-26 10:04:32.959+00 0 podium podium 2761 45 \N com.nvs.core.model.meta.DataField 257 2021-01-26 10:04:32.96+00 2021-01-26 10:04:32.96+00 0 podium podium 2762 52 \N com.nvs.core.model.meta.DataField 295 2021-01-26 10:04:32.96+00 2021-01-26 10:04:32.96+00 0 podium podium 2763 50 \N com.nvs.core.model.meta.DataField 252 2021-01-26 10:04:32.961+00 2021-01-26 10:04:32.961+00 0 podium podium 2764 44 \N com.nvs.core.model.meta.DataField 254 2021-01-26 10:04:32.962+00 2021-01-26 10:04:32.962+00 0 podium podium 2765 52 \N com.nvs.core.model.meta.DataField 290 2021-01-26 10:04:32.962+00 2021-01-26 10:04:32.962+00 0 podium podium 2766 45 \N com.nvs.core.model.meta.DataField 262 2021-01-26 10:04:32.963+00 2021-01-26 10:04:32.963+00 0 podium podium 2767 45 \N com.nvs.core.model.meta.DataField 246 2021-01-26 10:04:32.964+00 2021-01-26 10:04:32.964+00 0 podium podium 2768 44 \N com.nvs.core.model.meta.DataField 281 2021-01-26 10:04:32.964+00 2021-01-26 10:04:32.964+00 0 podium podium 2769 49 \N com.nvs.core.model.meta.DataField 268 2021-01-26 10:04:32.965+00 2021-01-26 10:04:32.965+00 0 podium podium 2770 53 \N com.nvs.core.model.meta.DataField 262 2021-01-26 10:04:32.966+00 2021-01-26 10:04:32.966+00 0 podium podium 2771 49 \N com.nvs.core.model.meta.DataField 280 2021-01-26 10:04:32.967+00 2021-01-26 10:04:32.967+00 0 podium podium 2772 81 false com.nvs.core.model.meta.DataField 298 2021-01-26 10:04:32.967+00 2021-01-26 10:04:32.967+00 0 podium podium 2773 81 false com.nvs.core.model.meta.DataField 278 2021-01-26 10:04:32.968+00 2021-01-26 10:04:32.968+00 0 podium podium 2774 45 \N com.nvs.core.model.meta.DataField 300 2021-01-26 10:04:32.969+00 2021-01-26 10:04:32.969+00 0 podium podium 2775 49 \N com.nvs.core.model.meta.DataField 290 2021-01-26 10:04:32.969+00 2021-01-26 10:04:32.969+00 0 podium podium 2776 51 40 com.nvs.core.model.meta.DataField 287 2021-01-26 10:04:32.97+00 2021-01-26 10:04:32.97+00 0 podium podium 2777 81 false com.nvs.core.model.meta.DataField 263 2021-01-26 10:04:32.97+00 2021-01-26 10:04:32.97+00 0 podium podium 2778 52 \N com.nvs.core.model.meta.DataField 298 2021-01-26 10:04:32.971+00 2021-01-26 10:04:32.971+00 0 podium podium 2779 51 30 com.nvs.core.model.meta.DataField 235 2021-01-26 10:04:32.972+00 2021-01-26 10:04:32.972+00 0 podium podium 2780 52 \N com.nvs.core.model.meta.DataField 285 2021-01-26 10:04:32.972+00 2021-01-26 10:04:32.972+00 0 podium podium 2781 45 \N com.nvs.core.model.meta.DataField 308 2021-01-26 10:04:32.973+00 2021-01-26 10:04:32.973+00 0 podium podium 2782 51 5 com.nvs.core.model.meta.DataField 253 2021-01-26 10:04:32.974+00 2021-01-26 10:04:32.974+00 0 podium podium 2783 134 VARCHAR(5) com.nvs.core.model.meta.DataField 282 2021-01-26 10:04:32.974+00 2021-01-26 10:04:32.974+00 0 podium podium 2784 134 VARCHAR(10) com.nvs.core.model.meta.DataField 269 2021-01-26 10:04:32.975+00 2021-01-26 10:04:32.975+00 0 podium podium 2785 81 false com.nvs.core.model.meta.DataField 295 2021-01-26 10:04:32.976+00 2021-01-26 10:04:32.976+00 0 podium podium 2786 81 false com.nvs.core.model.meta.DataField 256 2021-01-26 10:04:32.976+00 2021-01-26 10:04:32.976+00 0 podium podium 2787 51 \N com.nvs.core.model.meta.DataField 289 2021-01-26 10:04:32.977+00 2021-01-26 10:04:32.977+00 0 podium podium 2788 49 \N com.nvs.core.model.meta.DataField 273 2021-01-26 10:04:32.978+00 2021-01-26 10:04:32.978+00 0 podium podium 2789 53 \N com.nvs.core.model.meta.DataField 307 2021-01-26 10:04:32.979+00 2021-01-26 10:04:32.979+00 0 podium podium 2790 81 false com.nvs.core.model.meta.DataField 280 2021-01-26 10:04:32.979+00 2021-01-26 10:04:32.979+00 0 podium podium 2791 45 \N com.nvs.core.model.meta.DataField 255 2021-01-26 10:04:32.98+00 2021-01-26 10:04:32.98+00 0 podium podium 2792 44 \N com.nvs.core.model.meta.DataField 263 2021-01-26 10:04:32.981+00 2021-01-26 10:04:32.981+00 0 podium podium 2793 51 30 com.nvs.core.model.meta.DataField 278 2021-01-26 10:04:32.981+00 2021-01-26 10:04:32.981+00 0 podium podium 2794 44 \N com.nvs.core.model.meta.DataField 288 2021-01-26 10:04:32.982+00 2021-01-26 10:04:32.982+00 0 podium podium 2795 51 15 com.nvs.core.model.meta.DataField 307 2021-01-26 10:04:32.983+00 2021-01-26 10:04:32.983+00 0 podium podium 2796 53 \N com.nvs.core.model.meta.DataField 283 2021-01-26 10:04:32.984+00 2021-01-26 10:04:32.984+00 0 podium podium 2797 52 \N com.nvs.core.model.meta.DataField 237 2021-01-26 10:04:32.984+00 2021-01-26 10:04:32.984+00 0 podium podium 2798 52 \N com.nvs.core.model.meta.DataField 243 2021-01-26 10:04:32.985+00 2021-01-26 10:04:32.985+00 0 podium podium 2799 51 15 com.nvs.core.model.meta.DataField 280 2021-01-26 10:04:32.986+00 2021-01-26 10:04:32.986+00 0 podium podium 2800 51 10 com.nvs.core.model.meta.DataField 284 2021-01-26 10:04:32.986+00 2021-01-26 10:04:32.986+00 0 podium podium 2801 51 \N com.nvs.core.model.meta.DataField 297 2021-01-26 10:04:32.987+00 2021-01-26 10:04:32.987+00 0 podium podium 2802 52 \N com.nvs.core.model.meta.DataField 304 2021-01-26 10:04:32.988+00 2021-01-26 10:04:32.988+00 0 podium podium 2803 44 \N com.nvs.core.model.meta.DataField 249 2021-01-26 10:04:32.988+00 2021-01-26 10:04:32.988+00 0 podium podium 2804 50 \N com.nvs.core.model.meta.DataField 256 2021-01-26 10:04:32.989+00 2021-01-26 10:04:32.989+00 0 podium podium 2805 45 \N com.nvs.core.model.meta.DataField 259 2021-01-26 10:04:32.99+00 2021-01-26 10:04:32.99+00 0 podium podium 2806 53 \N com.nvs.core.model.meta.DataField 286 2021-01-26 10:04:32.99+00 2021-01-26 10:04:32.99+00 0 podium podium 2807 44 \N com.nvs.core.model.meta.DataField 304 2021-01-26 10:04:32.991+00 2021-01-26 10:04:32.991+00 0 podium podium 2808 51 \N com.nvs.core.model.meta.DataField 241 2021-01-26 10:04:32.992+00 2021-01-26 10:04:32.992+00 0 podium podium 2809 52 \N com.nvs.core.model.meta.DataField 297 2021-01-26 10:04:32.993+00 2021-01-26 10:04:32.993+00 0 podium podium 2810 45 \N com.nvs.core.model.meta.DataField 247 2021-01-26 10:04:32.993+00 2021-01-26 10:04:32.993+00 0 podium podium 2811 134 VARCHAR(15) com.nvs.core.model.meta.DataField 290 2021-01-26 10:04:32.994+00 2021-01-26 10:04:32.994+00 0 podium podium 2812 45 \N com.nvs.core.model.meta.DataField 258 2021-01-26 10:04:32.995+00 2021-01-26 10:04:32.995+00 0 podium podium 2813 44 \N com.nvs.core.model.meta.DataField 289 2021-01-26 10:04:32.995+00 2021-01-26 10:04:32.995+00 0 podium podium 2814 49 \N com.nvs.core.model.meta.DataField 266 2021-01-26 10:04:32.996+00 2021-01-26 10:04:32.996+00 0 podium podium 2815 49 \N com.nvs.core.model.meta.DataField 264 2021-01-26 10:04:32.997+00 2021-01-26 10:04:32.997+00 0 podium podium 2816 53 \N com.nvs.core.model.meta.DataField 275 2021-01-26 10:04:32.997+00 2021-01-26 10:04:32.997+00 0 podium podium 2817 53 \N com.nvs.core.model.meta.DataField 260 2021-01-26 10:04:32.998+00 2021-01-26 10:04:32.998+00 0 podium podium 2818 49 \N com.nvs.core.model.meta.DataField 243 2021-01-26 10:04:32.999+00 2021-01-26 10:04:32.999+00 0 podium podium 2819 52 \N com.nvs.core.model.meta.DataField 266 2021-01-26 10:04:32.999+00 2021-01-26 10:04:32.999+00 0 podium podium 2820 50 \N com.nvs.core.model.meta.DataField 305 2021-01-26 10:04:33+00 2021-01-26 10:04:33+00 0 podium podium 2821 45 \N com.nvs.core.model.meta.DataField 292 2021-01-26 10:04:33.001+00 2021-01-26 10:04:33.001+00 0 podium podium 2822 52 \N com.nvs.core.model.meta.DataField 272 2021-01-26 10:04:33.001+00 2021-01-26 10:04:33.001+00 0 podium podium 2823 52 \N com.nvs.core.model.meta.DataField 255 2021-01-26 10:04:33.002+00 2021-01-26 10:04:33.002+00 0 podium podium 2824 81 false com.nvs.core.model.meta.DataField 292 2021-01-26 10:04:33.003+00 2021-01-26 10:04:33.003+00 0 podium podium 2825 51 \N com.nvs.core.model.meta.DataField 272 2021-01-26 10:04:33.003+00 2021-01-26 10:04:33.003+00 0 podium podium 2826 51 \N com.nvs.core.model.meta.DataField 295 2021-01-26 10:04:33.004+00 2021-01-26 10:04:33.004+00 0 podium podium 2827 134 VARCHAR(15) com.nvs.core.model.meta.DataField 256 2021-01-26 10:04:33.005+00 2021-01-26 10:04:33.005+00 0 podium podium 2828 49 \N com.nvs.core.model.meta.DataField 241 2021-01-26 10:04:33.005+00 2021-01-26 10:04:33.005+00 0 podium podium 2829 44 \N com.nvs.core.model.meta.DataField 310 2021-01-26 10:04:33.006+00 2021-01-26 10:04:33.006+00 0 podium podium 2830 50 \N com.nvs.core.model.meta.DataField 264 2021-01-26 10:04:33.007+00 2021-01-26 10:04:33.007+00 0 podium podium 2831 134 VARCHAR(1000) com.nvs.core.model.meta.DataField 304 2021-01-26 10:04:33.008+00 2021-01-26 10:04:33.008+00 0 podium podium 2832 134 VARCHAR(40) com.nvs.core.model.meta.DataField 283 2021-01-26 10:04:33.008+00 2021-01-26 10:04:33.008+00 0 podium podium 2833 49 \N com.nvs.core.model.meta.DataField 239 2021-01-26 10:04:33.009+00 2021-01-26 10:04:33.009+00 0 podium podium 2834 50 \N com.nvs.core.model.meta.DataField 237 2021-01-26 10:04:33.01+00 2021-01-26 10:04:33.01+00 0 podium podium 2835 49 \N com.nvs.core.model.meta.DataField 299 2021-01-26 10:04:33.011+00 2021-01-26 10:04:33.011+00 0 podium podium 2836 81 false com.nvs.core.model.meta.DataField 255 2021-01-26 10:04:33.011+00 2021-01-26 10:04:33.011+00 0 podium podium 2837 44 \N com.nvs.core.model.meta.DataField 245 2021-01-26 10:04:33.012+00 2021-01-26 10:04:33.012+00 0 podium podium 2838 45 \N com.nvs.core.model.meta.DataField 301 2021-01-26 10:04:33.013+00 2021-01-26 10:04:33.013+00 0 podium podium 2839 49 \N com.nvs.core.model.meta.DataField 260 2021-01-26 10:04:33.013+00 2021-01-26 10:04:33.013+00 0 podium podium 2840 52 \N com.nvs.core.model.meta.DataField 233 2021-01-26 10:04:33.014+00 2021-01-26 10:04:33.014+00 0 podium podium 2841 53 \N com.nvs.core.model.meta.DataField 245 2021-01-26 10:04:33.015+00 2021-01-26 10:04:33.015+00 0 podium podium 2842 45 \N com.nvs.core.model.meta.DataField 265 2021-01-26 10:04:33.015+00 2021-01-26 10:04:33.015+00 0 podium podium 2843 50 \N com.nvs.core.model.meta.DataField 279 2021-01-26 10:04:33.016+00 2021-01-26 10:04:33.016+00 0 podium podium 2844 45 \N com.nvs.core.model.meta.DataField 302 2021-01-26 10:04:33.017+00 2021-01-26 10:04:33.017+00 0 podium podium 2845 53 \N com.nvs.core.model.meta.DataField 249 2021-01-26 10:04:33.017+00 2021-01-26 10:04:33.017+00 0 podium podium 2846 49 \N com.nvs.core.model.meta.DataField 262 2021-01-26 10:04:33.018+00 2021-01-26 10:04:33.018+00 0 podium podium 2847 52 \N com.nvs.core.model.meta.DataField 309 2021-01-26 10:04:33.019+00 2021-01-26 10:04:33.019+00 0 podium podium 2848 50 \N com.nvs.core.model.meta.DataField 276 2021-01-26 10:04:33.02+00 2021-01-26 10:04:33.02+00 0 podium podium 2849 52 \N com.nvs.core.model.meta.DataField 288 2021-01-26 10:04:33.02+00 2021-01-26 10:04:33.02+00 0 podium podium 2850 49 \N com.nvs.core.model.meta.DataField 311 2021-01-26 10:04:33.021+00 2021-01-26 10:04:33.021+00 0 podium podium 2851 50 \N com.nvs.core.model.meta.DataField 246 2021-01-26 10:04:33.022+00 2021-01-26 10:04:33.022+00 0 podium podium 2852 45 \N com.nvs.core.model.meta.DataField 279 2021-01-26 10:04:33.022+00 2021-01-26 10:04:33.022+00 0 podium podium 2853 134 VARCHAR(24) com.nvs.core.model.meta.DataField 277 2021-01-26 10:04:33.023+00 2021-01-26 10:04:33.023+00 0 podium podium 2854 49 \N com.nvs.core.model.meta.DataField 272 2021-01-26 10:04:33.024+00 2021-01-26 10:04:33.024+00 0 podium podium 2855 52 \N com.nvs.core.model.meta.DataField 299 2021-01-26 10:04:33.025+00 2021-01-26 10:04:33.025+00 0 podium podium 2856 52 \N com.nvs.core.model.meta.DataField 261 2021-01-26 10:04:33.025+00 2021-01-26 10:04:33.025+00 0 podium podium 2857 50 \N com.nvs.core.model.meta.DataField 260 2021-01-26 10:04:33.026+00 2021-01-26 10:04:33.026+00 0 podium podium 2858 51 15 com.nvs.core.model.meta.DataField 263 2021-01-26 10:04:33.027+00 2021-01-26 10:04:33.027+00 0 podium podium 2859 45 \N com.nvs.core.model.meta.DataField 268 2021-01-26 10:04:33.027+00 2021-01-26 10:04:33.027+00 0 podium podium 2860 53 \N com.nvs.core.model.meta.DataField 305 2021-01-26 10:04:33.028+00 2021-01-26 10:04:33.028+00 0 podium podium 2861 134 VARCHAR(15) com.nvs.core.model.meta.DataField 286 2021-01-26 10:04:33.029+00 2021-01-26 10:04:33.029+00 0 podium podium 2862 53 \N com.nvs.core.model.meta.DataField 265 2021-01-26 10:04:33.03+00 2021-01-26 10:04:33.03+00 0 podium podium 2863 81 false com.nvs.core.model.meta.DataField 303 2021-01-26 10:04:33.03+00 2021-01-26 10:04:33.03+00 0 podium podium 2864 53 \N com.nvs.core.model.meta.DataField 289 2021-01-26 10:04:33.031+00 2021-01-26 10:04:33.031+00 0 podium podium 2865 51 50 com.nvs.core.model.meta.DataField 305 2021-01-26 10:04:33.032+00 2021-01-26 10:04:33.032+00 0 podium podium 2866 53 \N com.nvs.core.model.meta.DataField 263 2021-01-26 10:04:33.032+00 2021-01-26 10:04:33.032+00 0 podium podium 2867 51 24 com.nvs.core.model.meta.DataField 245 2021-01-26 10:04:33.033+00 2021-01-26 10:04:33.033+00 0 podium podium 2868 50 \N com.nvs.core.model.meta.DataField 239 2021-01-26 10:04:33.034+00 2021-01-26 10:04:33.034+00 0 podium podium 2869 53 \N com.nvs.core.model.meta.DataField 288 2021-01-26 10:04:33.034+00 2021-01-26 10:04:33.034+00 0 podium podium 2870 50 \N com.nvs.core.model.meta.DataField 273 2021-01-26 10:04:33.035+00 2021-01-26 10:04:33.035+00 0 podium podium 2871 52 \N com.nvs.core.model.meta.DataField 271 2021-01-26 10:04:33.036+00 2021-01-26 10:04:33.036+00 0 podium podium 2872 49 \N com.nvs.core.model.meta.DataField 250 2021-01-26 10:04:33.036+00 2021-01-26 10:04:33.036+00 0 podium podium 2873 50 \N com.nvs.core.model.meta.DataField 233 2021-01-26 10:04:33.037+00 2021-01-26 10:04:33.037+00 0 podium podium 2874 51 40 com.nvs.core.model.meta.DataField 283 2021-01-26 10:04:33.038+00 2021-01-26 10:04:33.038+00 0 podium podium 2875 134 VARCHAR(50) com.nvs.core.model.meta.DataField 238 2021-01-26 10:04:33.038+00 2021-01-26 10:04:33.038+00 0 podium podium 2876 51 \N com.nvs.core.model.meta.DataField 264 2021-01-26 10:04:33.039+00 2021-01-26 10:04:33.039+00 0 podium podium 2877 51 15 com.nvs.core.model.meta.DataField 256 2021-01-26 10:04:33.04+00 2021-01-26 10:04:33.04+00 0 podium podium 2878 51 1000 com.nvs.core.model.meta.DataField 304 2021-01-26 10:04:33.04+00 2021-01-26 10:04:33.04+00 0 podium podium 2879 51 50 com.nvs.core.model.meta.DataField 262 2021-01-26 10:04:33.041+00 2021-01-26 10:04:33.041+00 0 podium podium 2880 134 VARCHAR(24) com.nvs.core.model.meta.DataField 245 2021-01-26 10:04:33.042+00 2021-01-26 10:04:33.042+00 0 podium podium 2881 81 false com.nvs.core.model.meta.DataField 243 2021-01-26 10:04:33.042+00 2021-01-26 10:04:33.042+00 0 podium podium 2882 51 24 com.nvs.core.model.meta.DataField 274 2021-01-26 10:04:33.043+00 2021-01-26 10:04:33.043+00 0 podium podium 2883 81 false com.nvs.core.model.meta.DataField 249 2021-01-26 10:04:33.044+00 2021-01-26 10:04:33.044+00 0 podium podium 2884 81 false com.nvs.core.model.meta.DataField 254 2021-01-26 10:04:33.044+00 2021-01-26 10:04:33.044+00 0 podium podium 2885 45 \N com.nvs.core.model.meta.DataField 284 2021-01-26 10:04:33.045+00 2021-01-26 10:04:33.045+00 0 podium podium 2886 51 60 com.nvs.core.model.meta.DataField 237 2021-01-26 10:04:33.046+00 2021-01-26 10:04:33.046+00 0 podium podium 2887 51 \N com.nvs.core.model.meta.DataField 306 2021-01-26 10:04:33.046+00 2021-01-26 10:04:33.046+00 0 podium podium 2888 45 \N com.nvs.core.model.meta.DataField 306 2021-01-26 10:04:33.047+00 2021-01-26 10:04:33.047+00 0 podium podium 2889 53 \N com.nvs.core.model.meta.DataField 296 2021-01-26 10:04:33.048+00 2021-01-26 10:04:33.048+00 0 podium podium 2890 49 \N com.nvs.core.model.meta.DataField 261 2021-01-26 10:04:33.048+00 2021-01-26 10:04:33.048+00 0 podium podium 2891 81 false com.nvs.core.model.meta.DataField 310 2021-01-26 10:04:33.049+00 2021-01-26 10:04:33.049+00 0 podium podium 2892 53 \N com.nvs.core.model.meta.DataField 243 2021-01-26 10:04:33.05+00 2021-01-26 10:04:33.05+00 0 podium podium 2893 134 VARCHAR(60) com.nvs.core.model.meta.DataField 237 2021-01-26 10:04:33.051+00 2021-01-26 10:04:33.051+00 0 podium podium 2894 51 \N com.nvs.core.model.meta.DataField 243 2021-01-26 10:04:33.051+00 2021-01-26 10:04:33.051+00 0 podium podium 2895 49 \N com.nvs.core.model.meta.DataField 252 2021-01-26 10:04:33.052+00 2021-01-26 10:04:33.052+00 0 podium podium 2896 49 \N com.nvs.core.model.meta.DataField 238 2021-01-26 10:04:33.053+00 2021-01-26 10:04:33.053+00 0 podium podium 2897 45 \N com.nvs.core.model.meta.DataField 234 2021-01-26 10:04:33.054+00 2021-01-26 10:04:33.054+00 0 podium podium 2898 52 \N com.nvs.core.model.meta.DataField 279 2021-01-26 10:04:33.054+00 2021-01-26 10:04:33.054+00 0 podium podium 2899 49 \N com.nvs.core.model.meta.DataField 257 2021-01-26 10:04:33.055+00 2021-01-26 10:04:33.055+00 0 podium podium 2900 81 false com.nvs.core.model.meta.DataField 294 2021-01-26 10:04:33.056+00 2021-01-26 10:04:33.056+00 0 podium podium 2901 50 \N com.nvs.core.model.meta.DataField 243 2021-01-26 10:04:33.056+00 2021-01-26 10:04:33.056+00 0 podium podium 2902 51 50 com.nvs.core.model.meta.DataField 276 2021-01-26 10:04:33.057+00 2021-01-26 10:04:33.057+00 0 podium podium 2903 52 \N com.nvs.core.model.meta.DataField 310 2021-01-26 10:04:33.058+00 2021-01-26 10:04:33.058+00 0 podium podium 2904 81 false com.nvs.core.model.meta.DataField 246 2021-01-26 10:04:33.058+00 2021-01-26 10:04:33.058+00 0 podium podium 2905 52 \N com.nvs.core.model.meta.DataField 240 2021-01-26 10:04:33.059+00 2021-01-26 10:04:33.059+00 0 podium podium 2906 45 \N com.nvs.core.model.meta.DataField 266 2021-01-26 10:04:33.06+00 2021-01-26 10:04:33.06+00 0 podium podium 2907 50 \N com.nvs.core.model.meta.DataField 284 2021-01-26 10:04:33.061+00 2021-01-26 10:04:33.061+00 0 podium podium 2908 50 \N com.nvs.core.model.meta.DataField 269 2021-01-26 10:04:33.061+00 2021-01-26 10:04:33.061+00 0 podium podium 2909 53 \N com.nvs.core.model.meta.DataField 299 2021-01-26 10:04:33.062+00 2021-01-26 10:04:33.062+00 0 podium podium 2910 50 \N com.nvs.core.model.meta.DataField 294 2021-01-26 10:04:33.063+00 2021-01-26 10:04:33.063+00 0 podium podium 2911 53 \N com.nvs.core.model.meta.DataField 253 2021-01-26 10:04:33.063+00 2021-01-26 10:04:33.063+00 0 podium podium 2912 45 \N com.nvs.core.model.meta.DataField 310 2021-01-26 10:04:33.064+00 2021-01-26 10:04:33.064+00 0 podium podium 2913 53 \N com.nvs.core.model.meta.DataField 258 2021-01-26 10:04:33.065+00 2021-01-26 10:04:33.065+00 0 podium podium 2914 51 50 com.nvs.core.model.meta.DataField 270 2021-01-26 10:04:33.065+00 2021-01-26 10:04:33.065+00 0 podium podium 2915 49 \N com.nvs.core.model.meta.DataField 236 2021-01-26 10:04:33.066+00 2021-01-26 10:04:33.066+00 0 podium podium 2916 49 \N com.nvs.core.model.meta.DataField 288 2021-01-26 10:04:33.067+00 2021-01-26 10:04:33.067+00 0 podium podium 2917 45 \N com.nvs.core.model.meta.DataField 303 2021-01-26 10:04:33.067+00 2021-01-26 10:04:33.067+00 0 podium podium 2918 45 \N com.nvs.core.model.meta.DataField 261 2021-01-26 10:04:33.068+00 2021-01-26 10:04:33.068+00 0 podium podium 2919 44 \N com.nvs.core.model.meta.DataField 298 2021-01-26 10:04:33.068+00 2021-01-26 10:04:33.068+00 0 podium podium 2920 52 \N com.nvs.core.model.meta.DataField 281 2021-01-26 10:04:33.07+00 2021-01-26 10:04:33.07+00 0 podium podium 2921 49 \N com.nvs.core.model.meta.DataField 237 2021-01-26 10:04:33.071+00 2021-01-26 10:04:33.071+00 0 podium podium 2922 81 false com.nvs.core.model.meta.DataField 290 2021-01-26 10:04:33.071+00 2021-01-26 10:04:33.071+00 0 podium podium 2923 134 VARCHAR(50) com.nvs.core.model.meta.DataField 276 2021-01-26 10:04:33.072+00 2021-01-26 10:04:33.072+00 0 podium podium 2924 81 false com.nvs.core.model.meta.DataField 267 2021-01-26 10:04:33.072+00 2021-01-26 10:04:33.072+00 0 podium podium 2925 44 \N com.nvs.core.model.meta.DataField 294 2021-01-26 10:04:33.073+00 2021-01-26 10:04:33.073+00 0 podium podium 2926 81 false com.nvs.core.model.meta.DataField 297 2021-01-26 10:04:33.073+00 2021-01-26 10:04:33.073+00 0 podium podium 2927 81 false com.nvs.core.model.meta.DataField 283 2021-01-26 10:04:33.074+00 2021-01-26 10:04:33.074+00 0 podium podium 2928 50 \N com.nvs.core.model.meta.DataField 295 2021-01-26 10:04:33.074+00 2021-01-26 10:04:33.074+00 0 podium podium 2929 49 \N com.nvs.core.model.meta.DataField 286 2021-01-26 10:04:33.074+00 2021-01-26 10:04:33.074+00 0 podium podium 2930 81 false com.nvs.core.model.meta.DataField 304 2021-01-26 10:04:33.075+00 2021-01-26 10:04:33.075+00 0 podium podium 2931 44 \N com.nvs.core.model.meta.DataField 239 2021-01-26 10:04:33.075+00 2021-01-26 10:04:33.075+00 0 podium podium 2932 49 \N com.nvs.core.model.meta.DataField 281 2021-01-26 10:04:33.076+00 2021-01-26 10:04:33.076+00 0 podium podium 2933 44 \N com.nvs.core.model.meta.DataField 275 2021-01-26 10:04:33.076+00 2021-01-26 10:04:33.076+00 0 podium podium 2934 51 \N com.nvs.core.model.meta.DataField 234 2021-01-26 10:04:33.077+00 2021-01-26 10:04:33.077+00 0 podium podium 2935 45 \N com.nvs.core.model.meta.DataField 244 2021-01-26 10:04:33.077+00 2021-01-26 10:04:33.077+00 0 podium podium 2936 44 \N com.nvs.core.model.meta.DataField 268 2021-01-26 10:04:33.078+00 2021-01-26 10:04:33.078+00 0 podium podium 2937 81 false com.nvs.core.model.meta.DataField 252 2021-01-26 10:04:33.079+00 2021-01-26 10:04:33.079+00 0 podium podium 2938 49 \N com.nvs.core.model.meta.DataField 276 2021-01-26 10:04:33.079+00 2021-01-26 10:04:33.079+00 0 podium podium 2939 81 false com.nvs.core.model.meta.DataField 235 2021-01-26 10:04:33.08+00 2021-01-26 10:04:33.08+00 0 podium podium 2940 50 \N com.nvs.core.model.meta.DataField 283 2021-01-26 10:04:33.081+00 2021-01-26 10:04:33.081+00 0 podium podium 2941 51 24 com.nvs.core.model.meta.DataField 309 2021-01-26 10:04:33.081+00 2021-01-26 10:04:33.081+00 0 podium podium 2942 50 \N com.nvs.core.model.meta.DataField 278 2021-01-26 10:04:33.082+00 2021-01-26 10:04:33.082+00 0 podium podium 2943 52 \N com.nvs.core.model.meta.DataField 260 2021-01-26 10:04:33.082+00 2021-01-26 10:04:33.082+00 0 podium podium 2944 50 \N com.nvs.core.model.meta.DataField 250 2021-01-26 10:04:33.083+00 2021-01-26 10:04:33.083+00 0 podium podium 2945 49 \N com.nvs.core.model.meta.DataField 234 2021-01-26 10:04:33.083+00 2021-01-26 10:04:33.083+00 0 podium podium 2946 81 false com.nvs.core.model.meta.DataField 234 2021-01-26 10:04:33.084+00 2021-01-26 10:04:33.084+00 0 podium podium 2947 52 \N com.nvs.core.model.meta.DataField 239 2021-01-26 10:04:33.084+00 2021-01-26 10:04:33.084+00 0 podium podium 2948 50 \N com.nvs.core.model.meta.DataField 235 2021-01-26 10:04:33.085+00 2021-01-26 10:04:33.085+00 0 podium podium 2949 53 \N com.nvs.core.model.meta.DataField 297 2021-01-26 10:04:33.086+00 2021-01-26 10:04:33.086+00 0 podium podium 2950 50 \N com.nvs.core.model.meta.DataField 309 2021-01-26 10:04:33.086+00 2021-01-26 10:04:33.086+00 0 podium podium 2951 49 \N com.nvs.core.model.meta.DataField 242 2021-01-26 10:04:33.087+00 2021-01-26 10:04:33.087+00 0 podium podium 2952 44 \N com.nvs.core.model.meta.DataField 308 2021-01-26 10:04:33.087+00 2021-01-26 10:04:33.087+00 0 podium podium 2953 53 \N com.nvs.core.model.meta.DataField 268 2021-01-26 10:04:33.088+00 2021-01-26 10:04:33.088+00 0 podium podium 2954 50 \N com.nvs.core.model.meta.DataField 300 2021-01-26 10:04:33.088+00 2021-01-26 10:04:33.088+00 0 podium podium 2955 51 5 com.nvs.core.model.meta.DataField 271 2021-01-26 10:04:33.089+00 2021-01-26 10:04:33.089+00 0 podium podium 2956 81 false com.nvs.core.model.meta.DataField 266 2021-01-26 10:04:33.089+00 2021-01-26 10:04:33.089+00 0 podium podium 2957 44 \N com.nvs.core.model.meta.DataField 300 2021-01-26 10:04:33.09+00 2021-01-26 10:04:33.09+00 0 podium podium 2958 51 \N com.nvs.core.model.meta.DataField 294 2021-01-26 10:04:33.09+00 2021-01-26 10:04:33.09+00 0 podium podium 2959 44 \N com.nvs.core.model.meta.DataField 269 2021-01-26 10:04:33.091+00 2021-01-26 10:04:33.091+00 0 podium podium 2960 44 \N com.nvs.core.model.meta.DataField 276 2021-01-26 10:04:33.091+00 2021-01-26 10:04:33.091+00 0 podium podium 2961 49 \N com.nvs.core.model.meta.DataField 254 2021-01-26 10:04:33.092+00 2021-01-26 10:04:33.092+00 0 podium podium 2962 81 false com.nvs.core.model.meta.DataField 265 2021-01-26 10:04:33.092+00 2021-01-26 10:04:33.092+00 0 podium podium 2963 49 \N com.nvs.core.model.meta.DataField 308 2021-01-26 10:04:33.093+00 2021-01-26 10:04:33.093+00 0 podium podium 2964 134 VARCHAR(50) com.nvs.core.model.meta.DataField 252 2021-01-26 10:04:33.093+00 2021-01-26 10:04:33.093+00 0 podium podium 2965 53 \N com.nvs.core.model.meta.DataField 276 2021-01-26 10:04:33.093+00 2021-01-26 10:04:33.093+00 0 podium podium 2966 53 \N com.nvs.core.model.meta.DataField 256 2021-01-26 10:04:33.094+00 2021-01-26 10:04:33.094+00 0 podium podium 2967 45 \N com.nvs.core.model.meta.DataField 272 2021-01-26 10:04:33.094+00 2021-01-26 10:04:33.094+00 0 podium podium 2968 50 \N com.nvs.core.model.meta.DataField 298 2021-01-26 10:04:33.095+00 2021-01-26 10:04:33.095+00 0 podium podium 2969 51 50 com.nvs.core.model.meta.DataField 251 2021-01-26 10:04:33.095+00 2021-01-26 10:04:33.095+00 0 podium podium 2970 45 \N com.nvs.core.model.meta.DataField 248 2021-01-26 10:04:33.096+00 2021-01-26 10:04:33.096+00 0 podium podium 2971 45 \N com.nvs.core.model.meta.DataField 270 2021-01-26 10:04:33.096+00 2021-01-26 10:04:33.096+00 0 podium podium 2972 81 false com.nvs.core.model.meta.DataField 299 2021-01-26 10:04:33.097+00 2021-01-26 10:04:33.097+00 0 podium podium 2973 134 VARCHAR(40) com.nvs.core.model.meta.DataField 287 2021-01-26 10:04:33.097+00 2021-01-26 10:04:33.097+00 0 podium podium 2974 53 \N com.nvs.core.model.meta.DataField 267 2021-01-26 10:04:33.098+00 2021-01-26 10:04:33.098+00 0 podium podium 2975 81 false com.nvs.core.model.meta.DataField 239 2021-01-26 10:04:33.098+00 2021-01-26 10:04:33.098+00 0 podium podium 2976 50 \N com.nvs.core.model.meta.DataField 247 2021-01-26 10:04:33.099+00 2021-01-26 10:04:33.099+00 0 podium podium 2977 134 VARCHAR(50) com.nvs.core.model.meta.DataField 275 2021-01-26 10:04:33.099+00 2021-01-26 10:04:33.099+00 0 podium podium 2978 49 \N com.nvs.core.model.meta.DataField 310 2021-01-26 10:04:33.1+00 2021-01-26 10:04:33.1+00 0 podium podium 2979 49 \N com.nvs.core.model.meta.DataField 277 2021-01-26 10:04:33.101+00 2021-01-26 10:04:33.101+00 0 podium podium 2980 45 \N com.nvs.core.model.meta.DataField 304 2021-01-26 10:04:33.101+00 2021-01-26 10:04:33.101+00 0 podium podium 2981 52 \N com.nvs.core.model.meta.DataField 256 2021-01-26 10:04:33.102+00 2021-01-26 10:04:33.102+00 0 podium podium 2982 52 \N com.nvs.core.model.meta.DataField 235 2021-01-26 10:04:33.103+00 2021-01-26 10:04:33.103+00 0 podium podium 2983 49 \N com.nvs.core.model.meta.DataField 270 2021-01-26 10:04:33.103+00 2021-01-26 10:04:33.103+00 0 podium podium 2984 44 \N com.nvs.core.model.meta.DataField 236 2021-01-26 10:04:33.104+00 2021-01-26 10:04:33.104+00 0 podium podium 2985 81 false com.nvs.core.model.meta.DataField 250 2021-01-26 10:04:33.105+00 2021-01-26 10:04:33.105+00 0 podium podium 2986 50 \N com.nvs.core.model.meta.DataField 289 2021-01-26 10:04:33.105+00 2021-01-26 10:04:33.105+00 0 podium podium 2987 51 \N com.nvs.core.model.meta.DataField 240 2021-01-26 10:04:33.106+00 2021-01-26 10:04:33.106+00 0 podium podium 2988 81 false com.nvs.core.model.meta.DataField 296 2021-01-26 10:04:33.107+00 2021-01-26 10:04:33.107+00 0 podium podium 2989 45 \N com.nvs.core.model.meta.DataField 238 2021-01-26 10:04:33.107+00 2021-01-26 10:04:33.107+00 0 podium podium 2990 53 \N com.nvs.core.model.meta.DataField 237 2021-01-26 10:04:33.108+00 2021-01-26 10:04:33.108+00 0 podium podium 2991 53 \N com.nvs.core.model.meta.DataField 269 2021-01-26 10:04:33.109+00 2021-01-26 10:04:33.109+00 0 podium podium 2992 52 \N com.nvs.core.model.meta.DataField 250 2021-01-26 10:04:33.11+00 2021-01-26 10:04:33.11+00 0 podium podium 2993 52 \N com.nvs.core.model.meta.DataField 259 2021-01-26 10:04:33.111+00 2021-01-26 10:04:33.111+00 0 podium podium 2994 44 \N com.nvs.core.model.meta.DataField 284 2021-01-26 10:04:33.112+00 2021-01-26 10:04:33.112+00 0 podium podium 2995 53 \N com.nvs.core.model.meta.DataField 274 2021-01-26 10:04:33.112+00 2021-01-26 10:04:33.112+00 0 podium podium 2996 50 \N com.nvs.core.model.meta.DataField 291 2021-01-26 10:04:33.113+00 2021-01-26 10:04:33.113+00 0 podium podium 2997 45 \N com.nvs.core.model.meta.DataField 297 2021-01-26 10:04:33.114+00 2021-01-26 10:04:33.114+00 0 podium podium 2998 52 \N com.nvs.core.model.meta.DataField 242 2021-01-26 10:04:33.115+00 2021-01-26 10:04:33.115+00 0 podium podium 2999 81 false com.nvs.core.model.meta.DataField 247 2021-01-26 10:04:33.116+00 2021-01-26 10:04:33.116+00 0 podium podium 3000 81 false com.nvs.core.model.meta.DataField 262 2021-01-26 10:04:33.116+00 2021-01-26 10:04:33.116+00 0 podium podium 3001 50 \N com.nvs.core.model.meta.DataField 244 2021-01-26 10:04:33.117+00 2021-01-26 10:04:33.117+00 0 podium podium 3002 45 \N com.nvs.core.model.meta.DataField 277 2021-01-26 10:04:33.117+00 2021-01-26 10:04:33.117+00 0 podium podium 3003 52 \N com.nvs.core.model.meta.DataField 253 2021-01-26 10:04:33.118+00 2021-01-26 10:04:33.118+00 0 podium podium 3004 81 false com.nvs.core.model.meta.DataField 311 2021-01-26 10:04:33.119+00 2021-01-26 10:04:33.119+00 0 podium podium 3005 53 \N com.nvs.core.model.meta.DataField 285 2021-01-26 10:04:33.119+00 2021-01-26 10:04:33.119+00 0 podium podium 3006 53 \N com.nvs.core.model.meta.DataField 310 2021-01-26 10:04:33.12+00 2021-01-26 10:04:33.12+00 0 podium podium 3007 52 \N com.nvs.core.model.meta.DataField 269 2021-01-26 10:04:33.121+00 2021-01-26 10:04:33.121+00 0 podium podium 3008 49 \N com.nvs.core.model.meta.DataField 301 2021-01-26 10:04:33.121+00 2021-01-26 10:04:33.121+00 0 podium podium 3009 51 15 com.nvs.core.model.meta.DataField 291 2021-01-26 10:04:33.122+00 2021-01-26 10:04:33.122+00 0 podium podium 3010 53 \N com.nvs.core.model.meta.DataField 291 2021-01-26 10:04:33.122+00 2021-01-26 10:04:33.122+00 0 podium podium 3011 52 \N com.nvs.core.model.meta.DataField 282 2021-01-26 10:04:33.123+00 2021-01-26 10:04:33.123+00 0 podium podium 3012 52 \N com.nvs.core.model.meta.DataField 245 2021-01-26 10:04:33.124+00 2021-01-26 10:04:33.124+00 0 podium podium 3013 53 \N com.nvs.core.model.meta.DataField 278 2021-01-26 10:04:33.124+00 2021-01-26 10:04:33.124+00 0 podium podium 3014 44 \N com.nvs.core.model.meta.DataField 244 2021-01-26 10:04:33.125+00 2021-01-26 10:04:33.125+00 0 podium podium 3015 50 \N com.nvs.core.model.meta.DataField 267 2021-01-26 10:04:33.125+00 2021-01-26 10:04:33.125+00 0 podium podium 3016 45 \N com.nvs.core.model.meta.DataField 309 2021-01-26 10:04:33.126+00 2021-01-26 10:04:33.126+00 0 podium podium 3017 49 \N com.nvs.core.model.meta.DataField 246 2021-01-26 10:04:33.126+00 2021-01-26 10:04:33.126+00 0 podium podium 3018 51 10 com.nvs.core.model.meta.DataField 269 2021-01-26 10:04:33.127+00 2021-01-26 10:04:33.127+00 0 podium podium 3019 134 VARCHAR(10) com.nvs.core.model.meta.DataField 285 2021-01-26 10:04:33.127+00 2021-01-26 10:04:33.127+00 0 podium podium 3020 134 VARCHAR(50) com.nvs.core.model.meta.DataField 251 2021-01-26 10:04:33.128+00 2021-01-26 10:04:33.128+00 0 podium podium 3021 134 VARCHAR(10) com.nvs.core.model.meta.DataField 257 2021-01-26 10:04:33.128+00 2021-01-26 10:04:33.128+00 0 podium podium 3022 44 \N com.nvs.core.model.meta.DataField 242 2021-01-26 10:04:33.129+00 2021-01-26 10:04:33.129+00 0 podium podium 3023 52 \N com.nvs.core.model.meta.DataField 241 2021-01-26 10:04:33.129+00 2021-01-26 10:04:33.129+00 0 podium podium 3024 53 \N com.nvs.core.model.meta.DataField 284 2021-01-26 10:04:33.13+00 2021-01-26 10:04:33.13+00 0 podium podium 3025 49 \N com.nvs.core.model.meta.DataField 292 2021-01-26 10:04:33.13+00 2021-01-26 10:04:33.13+00 0 podium podium 3026 52 \N com.nvs.core.model.meta.DataField 289 2021-01-26 10:04:33.131+00 2021-01-26 10:04:33.131+00 0 podium podium 3027 53 \N com.nvs.core.model.meta.DataField 271 2021-01-26 10:04:33.131+00 2021-01-26 10:04:33.131+00 0 podium podium 3028 45 \N com.nvs.core.model.meta.DataField 293 2021-01-26 10:04:33.132+00 2021-01-26 10:04:33.132+00 0 podium podium 3029 52 \N com.nvs.core.model.meta.DataField 246 2021-01-26 10:04:33.133+00 2021-01-26 10:04:33.133+00 0 podium podium 3030 134 VARCHAR(15) com.nvs.core.model.meta.DataField 280 2021-01-26 10:04:33.134+00 2021-01-26 10:04:33.134+00 0 podium podium 3031 134 VARCHAR(15) com.nvs.core.model.meta.DataField 291 2021-01-26 10:04:33.135+00 2021-01-26 10:04:33.135+00 0 podium podium 3032 51 15 com.nvs.core.model.meta.DataField 302 2021-01-26 10:04:33.135+00 2021-01-26 10:04:33.135+00 0 podium podium 3033 45 \N com.nvs.core.model.meta.DataField 250 2021-01-26 10:04:33.136+00 2021-01-26 10:04:33.136+00 0 podium podium 3034 51 \N com.nvs.core.model.meta.DataField 242 2021-01-26 10:04:33.136+00 2021-01-26 10:04:33.136+00 0 podium podium 3035 49 \N com.nvs.core.model.meta.DataField 305 2021-01-26 10:04:33.137+00 2021-01-26 10:04:33.137+00 0 podium podium 3036 50 \N com.nvs.core.model.meta.DataField 266 2021-01-26 10:04:33.137+00 2021-01-26 10:04:33.137+00 0 podium podium 3037 44 \N com.nvs.core.model.meta.DataField 295 2021-01-26 10:04:33.138+00 2021-01-26 10:04:33.138+00 0 podium podium 3038 81 false com.nvs.core.model.meta.DataField 287 2021-01-26 10:04:33.138+00 2021-01-26 10:04:33.138+00 0 podium podium 3039 134 VARCHAR(15) com.nvs.core.model.meta.DataField 263 2021-01-26 10:04:33.139+00 2021-01-26 10:04:33.139+00 0 podium podium 3040 44 \N com.nvs.core.model.meta.DataField 274 2021-01-26 10:04:33.139+00 2021-01-26 10:04:33.139+00 0 podium podium 3041 81 false com.nvs.core.model.meta.DataField 306 2021-01-26 10:04:33.14+00 2021-01-26 10:04:33.14+00 0 podium podium 3042 44 \N com.nvs.core.model.meta.DataField 251 2021-01-26 10:04:33.14+00 2021-01-26 10:04:33.14+00 0 podium podium 3043 53 \N com.nvs.core.model.meta.DataField 240 2021-01-26 10:04:33.141+00 2021-01-26 10:04:33.141+00 0 podium podium 3044 53 \N com.nvs.core.model.meta.DataField 294 2021-01-26 10:04:33.141+00 2021-01-26 10:04:33.141+00 0 podium podium 3045 44 \N com.nvs.core.model.meta.DataField 233 2021-01-26 10:04:33.142+00 2021-01-26 10:04:33.142+00 0 podium podium 3046 81 false com.nvs.core.model.meta.DataField 241 2021-01-26 10:04:33.143+00 2021-01-26 10:04:33.143+00 0 podium podium 3047 51 \N com.nvs.core.model.meta.DataField 248 2021-01-26 10:04:33.143+00 2021-01-26 10:04:33.143+00 0 podium podium 3048 52 \N com.nvs.core.model.meta.DataField 238 2021-01-26 10:04:33.144+00 2021-01-26 10:04:33.144+00 0 podium podium 3049 44 \N com.nvs.core.model.meta.DataField 243 2021-01-26 10:04:33.144+00 2021-01-26 10:04:33.144+00 0 podium podium 3050 81 false com.nvs.core.model.meta.DataField 259 2021-01-26 10:04:33.145+00 2021-01-26 10:04:33.145+00 0 podium podium 3051 44 \N com.nvs.core.model.meta.DataField 303 2021-01-26 10:04:33.145+00 2021-01-26 10:04:33.145+00 0 podium podium 3052 52 \N com.nvs.core.model.meta.DataField 280 2021-01-26 10:04:33.146+00 2021-01-26 10:04:33.146+00 0 podium podium 3053 49 \N com.nvs.core.model.meta.DataField 233 2021-01-26 10:04:33.147+00 2021-01-26 10:04:33.147+00 0 podium podium 3054 44 \N com.nvs.core.model.meta.DataField 258 2021-01-26 10:04:33.147+00 2021-01-26 10:04:33.147+00 0 podium podium 3055 45 \N com.nvs.core.model.meta.DataField 298 2021-01-26 10:04:33.148+00 2021-01-26 10:04:33.148+00 0 podium podium 3056 45 \N com.nvs.core.model.meta.DataField 242 2021-01-26 10:04:33.148+00 2021-01-26 10:04:33.148+00 0 podium podium 3057 50 \N com.nvs.core.model.meta.DataField 263 2021-01-26 10:04:33.149+00 2021-01-26 10:04:33.149+00 0 podium podium 3058 81 false com.nvs.core.model.meta.DataField 302 2021-01-26 10:04:33.149+00 2021-01-26 10:04:33.149+00 0 podium podium 3059 52 \N com.nvs.core.model.meta.DataField 291 2021-01-26 10:04:33.15+00 2021-01-26 10:04:33.15+00 0 podium podium 3060 49 \N com.nvs.core.model.meta.DataField 306 2021-01-26 10:04:33.15+00 2021-01-26 10:04:33.15+00 0 podium podium 3061 53 \N com.nvs.core.model.meta.DataField 254 2021-01-26 10:04:33.151+00 2021-01-26 10:04:33.151+00 0 podium podium 3062 51 \N com.nvs.core.model.meta.DataField 301 2021-01-26 10:04:33.152+00 2021-01-26 10:04:33.152+00 0 podium podium 3063 50 \N com.nvs.core.model.meta.DataField 245 2021-01-26 10:04:33.152+00 2021-01-26 10:04:33.152+00 0 podium podium 3064 53 \N com.nvs.core.model.meta.DataField 272 2021-01-26 10:04:33.153+00 2021-01-26 10:04:33.153+00 0 podium podium 3065 52 \N com.nvs.core.model.meta.DataField 278 2021-01-26 10:04:33.153+00 2021-01-26 10:04:33.153+00 0 podium podium 3066 53 \N com.nvs.core.model.meta.DataField 301 2021-01-26 10:04:33.154+00 2021-01-26 10:04:33.154+00 0 podium podium 3067 81 false com.nvs.core.model.meta.DataField 236 2021-01-26 10:04:33.154+00 2021-01-26 10:04:33.154+00 0 podium podium 3068 81 false com.nvs.core.model.meta.DataField 261 2021-01-26 10:04:33.155+00 2021-01-26 10:04:33.155+00 0 podium podium 3069 51 \N com.nvs.core.model.meta.DataField 303 2021-01-26 10:04:33.155+00 2021-01-26 10:04:33.155+00 0 podium podium 3070 52 \N com.nvs.core.model.meta.DataField 270 2021-01-26 10:04:33.156+00 2021-01-26 10:04:33.156+00 0 podium podium 3071 51 15 com.nvs.core.model.meta.DataField 258 2021-01-26 10:04:33.156+00 2021-01-26 10:04:33.156+00 0 podium podium 3072 51 \N com.nvs.core.model.meta.DataField 255 2021-01-26 10:04:33.157+00 2021-01-26 10:04:33.157+00 0 podium podium 3073 44 \N com.nvs.core.model.meta.DataField 307 2021-01-26 10:04:33.157+00 2021-01-26 10:04:33.157+00 0 podium podium 3074 44 \N com.nvs.core.model.meta.DataField 311 2021-01-26 10:04:33.158+00 2021-01-26 10:04:33.158+00 0 podium podium 3075 81 false com.nvs.core.model.meta.DataField 264 2021-01-26 10:04:33.158+00 2021-01-26 10:04:33.158+00 0 podium podium 3076 53 \N com.nvs.core.model.meta.DataField 298 2021-01-26 10:04:33.159+00 2021-01-26 10:04:33.159+00 0 podium podium 3077 81 false com.nvs.core.model.meta.DataField 284 2021-01-26 10:04:33.159+00 2021-01-26 10:04:33.159+00 0 podium podium 3078 134 VARCHAR(5) com.nvs.core.model.meta.DataField 296 2021-01-26 10:04:33.16+00 2021-01-26 10:04:33.16+00 0 podium podium 3079 45 \N com.nvs.core.model.meta.DataField 295 2021-01-26 10:04:33.16+00 2021-01-26 10:04:33.16+00 0 podium podium 3080 51 30 com.nvs.core.model.meta.DataField 244 2021-01-26 10:04:33.161+00 2021-01-26 10:04:33.161+00 0 podium podium 3081 134 VARCHAR(15) com.nvs.core.model.meta.DataField 307 2021-01-26 10:04:33.161+00 2021-01-26 10:04:33.161+00 0 podium podium 3082 49 \N com.nvs.core.model.meta.DataField 300 2021-01-26 10:04:33.162+00 2021-01-26 10:04:33.162+00 0 podium podium 3083 44 \N com.nvs.core.model.meta.DataField 241 2021-01-26 10:04:33.162+00 2021-01-26 10:04:33.162+00 0 podium podium 3084 44 \N com.nvs.core.model.meta.DataField 286 2021-01-26 10:04:33.163+00 2021-01-26 10:04:33.163+00 0 podium podium 3085 81 false com.nvs.core.model.meta.DataField 275 2021-01-26 10:04:33.163+00 2021-01-26 10:04:33.163+00 0 podium podium 3086 52 \N com.nvs.core.model.meta.DataField 249 2021-01-26 10:04:33.164+00 2021-01-26 10:04:33.164+00 0 podium podium 3087 81 false com.nvs.core.model.meta.DataField 276 2021-01-26 10:04:33.164+00 2021-01-26 10:04:33.164+00 0 podium podium 3088 51 50 com.nvs.core.model.meta.DataField 275 2021-01-26 10:04:33.165+00 2021-01-26 10:04:33.165+00 0 podium podium 3089 81 false com.nvs.core.model.meta.DataField 251 2021-01-26 10:04:33.165+00 2021-01-26 10:04:33.165+00 0 podium podium 3090 51 \N com.nvs.core.model.meta.DataField 260 2021-01-26 10:04:33.166+00 2021-01-26 10:04:33.166+00 0 podium podium 3091 45 \N com.nvs.core.model.meta.DataField 260 2021-01-26 10:04:33.166+00 2021-01-26 10:04:33.166+00 0 podium podium 3092 81 false com.nvs.core.model.meta.DataField 288 2021-01-26 10:04:33.167+00 2021-01-26 10:04:33.167+00 0 podium podium 3093 49 \N com.nvs.core.model.meta.DataField 255 2021-01-26 10:04:33.167+00 2021-01-26 10:04:33.167+00 0 podium podium 3094 51 \N com.nvs.core.model.meta.DataField 259 2021-01-26 10:04:33.168+00 2021-01-26 10:04:33.168+00 0 podium podium 3095 52 \N com.nvs.core.model.meta.DataField 274 2021-01-26 10:04:33.168+00 2021-01-26 10:04:33.168+00 0 podium podium 3096 52 \N com.nvs.core.model.meta.DataField 283 2021-01-26 10:04:33.169+00 2021-01-26 10:04:33.169+00 0 podium podium 3097 53 \N com.nvs.core.model.meta.DataField 244 2021-01-26 10:04:33.17+00 2021-01-26 10:04:33.17+00 0 podium podium 3098 52 \N com.nvs.core.model.meta.DataField 277 2021-01-26 10:04:33.17+00 2021-01-26 10:04:33.17+00 0 podium podium 3099 45 \N com.nvs.core.model.meta.DataField 243 2021-01-26 10:04:33.171+00 2021-01-26 10:04:33.171+00 0 podium podium 3100 44 \N com.nvs.core.model.meta.DataField 257 2021-01-26 10:04:33.172+00 2021-01-26 10:04:33.172+00 0 podium podium 3101 53 \N com.nvs.core.model.meta.DataField 273 2021-01-26 10:04:33.172+00 2021-01-26 10:04:33.172+00 0 podium podium 3102 81 false com.nvs.core.model.meta.DataField 273 2021-01-26 10:04:33.173+00 2021-01-26 10:04:33.173+00 0 podium podium 3103 52 \N com.nvs.core.model.meta.DataField 257 2021-01-26 10:04:33.173+00 2021-01-26 10:04:33.173+00 0 podium podium 3104 52 \N com.nvs.core.model.meta.DataField 286 2021-01-26 10:04:33.174+00 2021-01-26 10:04:33.174+00 0 podium podium 3105 51 \N com.nvs.core.model.meta.DataField 266 2021-01-26 10:04:33.175+00 2021-01-26 10:04:33.175+00 0 podium podium 3106 49 \N com.nvs.core.model.meta.DataField 245 2021-01-26 10:04:33.175+00 2021-01-26 10:04:33.175+00 0 podium podium 3107 44 \N com.nvs.core.model.meta.DataField 267 2021-01-26 10:04:33.176+00 2021-01-26 10:04:33.176+00 0 podium podium 3108 45 \N com.nvs.core.model.meta.DataField 288 2021-01-26 10:04:33.176+00 2021-01-26 10:04:33.176+00 0 podium podium 3109 50 \N com.nvs.core.model.meta.DataField 311 2021-01-26 10:04:33.177+00 2021-01-26 10:04:33.177+00 0 podium podium 3110 50 \N com.nvs.core.model.meta.DataField 306 2021-01-26 10:04:33.177+00 2021-01-26 10:04:33.177+00 0 podium podium 3111 81 false com.nvs.core.model.meta.DataField 271 2021-01-26 10:04:33.178+00 2021-01-26 10:04:33.178+00 0 podium podium 3112 52 \N com.nvs.core.model.meta.DataField 308 2021-01-26 10:04:33.178+00 2021-01-26 10:04:33.178+00 0 podium podium 3113 45 \N com.nvs.core.model.meta.DataField 271 2021-01-26 10:04:33.179+00 2021-01-26 10:04:33.179+00 0 podium podium 3114 134 VARCHAR(24) com.nvs.core.model.meta.DataField 274 2021-01-26 10:04:33.18+00 2021-01-26 10:04:33.18+00 0 podium podium 3115 134 VARCHAR(50) com.nvs.core.model.meta.DataField 249 2021-01-26 10:04:33.18+00 2021-01-26 10:04:33.18+00 0 podium podium 3116 134 VARCHAR(5) com.nvs.core.model.meta.DataField 253 2021-01-26 10:04:33.181+00 2021-01-26 10:04:33.181+00 0 podium podium 3117 81 false com.nvs.core.model.meta.DataField 309 2021-01-26 10:04:33.181+00 2021-01-26 10:04:33.181+00 0 podium podium 3118 51 \N com.nvs.core.model.meta.DataField 299 2021-01-26 10:04:33.182+00 2021-01-26 10:04:33.182+00 0 podium podium 3119 52 \N com.nvs.core.model.meta.DataField 301 2021-01-26 10:04:33.182+00 2021-01-26 10:04:33.182+00 0 podium podium 3120 45 \N com.nvs.core.model.meta.DataField 240 2021-01-26 10:04:33.183+00 2021-01-26 10:04:33.183+00 0 podium podium 3121 50 \N com.nvs.core.model.meta.DataField 290 2021-01-26 10:04:33.184+00 2021-01-26 10:04:33.184+00 0 podium podium 3122 52 \N com.nvs.core.model.meta.DataField 303 2021-01-26 10:04:33.184+00 2021-01-26 10:04:33.184+00 0 podium podium 3123 210 MANAGED com.nvs.core.model.meta.DataSource 7 2021-01-26 10:04:33.207+00 2021-01-26 10:04:33.207+00 0 podium podium 3140 134 VARCHAR(50) com.nvs.core.model.meta.DataField 335 2021-01-26 10:04:33.612+00 2021-01-26 10:04:33.612+00 0 podium podium 3141 134 VARCHAR(30) com.nvs.core.model.meta.DataField 386 2021-01-26 10:04:33.613+00 2021-01-26 10:04:33.613+00 0 podium podium 3142 134 VARCHAR(24) com.nvs.core.model.meta.DataField 314 2021-01-26 10:04:33.614+00 2021-01-26 10:04:33.614+00 0 podium podium 3143 134 VARCHAR(15) com.nvs.core.model.meta.DataField 367 2021-01-26 10:04:33.615+00 2021-01-26 10:04:33.615+00 0 podium podium 3144 134 VARCHAR(40) com.nvs.core.model.meta.DataField 357 2021-01-26 10:04:33.616+00 2021-01-26 10:04:33.616+00 0 podium podium 3145 134 VARCHAR(50) com.nvs.core.model.meta.DataField 364 2021-01-26 10:04:33.616+00 2021-01-26 10:04:33.616+00 0 podium podium 3146 134 VARCHAR(24) com.nvs.core.model.meta.DataField 340 2021-01-26 10:04:33.617+00 2021-01-26 10:04:33.617+00 0 podium podium 3147 134 VARCHAR(30) com.nvs.core.model.meta.DataField 361 2021-01-26 10:04:33.618+00 2021-01-26 10:04:33.618+00 0 podium podium 3148 134 VARCHAR(4) com.nvs.core.model.meta.DataField 318 2021-01-26 10:04:33.618+00 2021-01-26 10:04:33.618+00 0 podium podium 3149 134 VARCHAR(45) com.nvs.core.model.meta.DataField 370 2021-01-26 10:04:33.619+00 2021-01-26 10:04:33.619+00 0 podium podium 3150 134 VARCHAR(30) com.nvs.core.model.meta.DataField 382 2021-01-26 10:04:33.62+00 2021-01-26 10:04:33.62+00 0 podium podium 3151 134 VARCHAR(15) com.nvs.core.model.meta.DataField 384 2021-01-26 10:04:33.62+00 2021-01-26 10:04:33.62+00 0 podium podium 3152 134 VARCHAR(10) com.nvs.core.model.meta.DataField 354 2021-01-26 10:04:33.621+00 2021-01-26 10:04:33.621+00 0 podium podium 3153 134 VARCHAR(24) com.nvs.core.model.meta.DataField 324 2021-01-26 10:04:33.622+00 2021-01-26 10:04:33.622+00 0 podium podium 3154 134 VARCHAR(40) com.nvs.core.model.meta.DataField 362 2021-01-26 10:04:33.622+00 2021-01-26 10:04:33.622+00 0 podium podium 3155 134 VARCHAR(10) com.nvs.core.model.meta.DataField 360 2021-01-26 10:04:33.623+00 2021-01-26 10:04:33.623+00 0 podium podium 3156 134 VARCHAR(1000) com.nvs.core.model.meta.DataField 348 2021-01-26 10:04:33.624+00 2021-01-26 10:04:33.624+00 0 podium podium 3157 134 VARCHAR(10) com.nvs.core.model.meta.DataField 339 2021-01-26 10:04:33.624+00 2021-01-26 10:04:33.624+00 0 podium podium 3158 134 VARCHAR(50) com.nvs.core.model.meta.DataField 312 2021-01-26 10:04:33.625+00 2021-01-26 10:04:33.625+00 0 podium podium 3159 134 VARCHAR(24) com.nvs.core.model.meta.DataField 375 2021-01-26 10:04:33.625+00 2021-01-26 10:04:33.625+00 0 podium podium 3160 134 VARCHAR(60) com.nvs.core.model.meta.DataField 321 2021-01-26 10:04:33.626+00 2021-01-26 10:04:33.626+00 0 podium podium 3161 134 VARCHAR(5) com.nvs.core.model.meta.DataField 329 2021-01-26 10:04:33.627+00 2021-01-26 10:04:33.627+00 0 podium podium 3162 134 VARCHAR(50) com.nvs.core.model.meta.DataField 387 2021-01-26 10:04:33.627+00 2021-01-26 10:04:33.627+00 0 podium podium 3163 134 VARCHAR(5) com.nvs.core.model.meta.DataField 332 2021-01-26 10:04:33.628+00 2021-01-26 10:04:33.628+00 0 podium podium 3164 134 VARCHAR(50) com.nvs.core.model.meta.DataField 356 2021-01-26 10:04:33.628+00 2021-01-26 10:04:33.628+00 0 podium podium 3165 134 VARCHAR(30) com.nvs.core.model.meta.DataField 388 2021-01-26 10:04:33.629+00 2021-01-26 10:04:33.629+00 0 podium podium 3166 134 VARCHAR(30) com.nvs.core.model.meta.DataField 319 2021-01-26 10:04:33.629+00 2021-01-26 10:04:33.629+00 0 podium podium 3167 134 VARCHAR(24) com.nvs.core.model.meta.DataField 371 2021-01-26 10:04:33.63+00 2021-01-26 10:04:33.63+00 0 podium podium 3168 134 VARCHAR(15) com.nvs.core.model.meta.DataField 315 2021-01-26 10:04:33.631+00 2021-01-26 10:04:33.631+00 0 podium podium 3169 134 VARCHAR(50) com.nvs.core.model.meta.DataField 376 2021-01-26 10:04:33.631+00 2021-01-26 10:04:33.631+00 0 podium podium 3170 134 VARCHAR(50) com.nvs.core.model.meta.DataField 355 2021-01-26 10:04:33.633+00 2021-01-26 10:04:33.633+00 0 podium podium 3171 134 VARCHAR(5) com.nvs.core.model.meta.DataField 330 2021-01-26 10:04:33.633+00 2021-01-26 10:04:33.633+00 0 podium podium 3172 134 VARCHAR(10) com.nvs.core.model.meta.DataField 358 2021-01-26 10:04:33.634+00 2021-01-26 10:04:33.634+00 0 podium podium 3173 134 VARCHAR(15) com.nvs.core.model.meta.DataField 336 2021-01-26 10:04:33.635+00 2021-01-26 10:04:33.635+00 0 podium podium 3174 134 VARCHAR(50) com.nvs.core.model.meta.DataField 349 2021-01-26 10:04:33.635+00 2021-01-26 10:04:33.635+00 0 podium podium 3175 134 VARCHAR(50) com.nvs.core.model.meta.DataField 366 2021-01-26 10:04:33.636+00 2021-01-26 10:04:33.636+00 0 podium podium 3176 134 VARCHAR(5) com.nvs.core.model.meta.DataField 379 2021-01-26 10:04:33.637+00 2021-01-26 10:04:33.637+00 0 podium podium 3177 134 VARCHAR(5) com.nvs.core.model.meta.DataField 378 2021-01-26 10:04:33.637+00 2021-01-26 10:04:33.637+00 0 podium podium 3178 134 VARCHAR(15) com.nvs.core.model.meta.DataField 331 2021-01-26 10:04:33.638+00 2021-01-26 10:04:33.638+00 0 podium podium 3179 134 VARCHAR(5) com.nvs.core.model.meta.DataField 326 2021-01-26 10:04:33.639+00 2021-01-26 10:04:33.639+00 0 podium podium 3180 134 VARCHAR(15) com.nvs.core.model.meta.DataField 344 2021-01-26 10:04:33.639+00 2021-01-26 10:04:33.639+00 0 podium podium 3181 134 VARCHAR(24) com.nvs.core.model.meta.DataField 363 2021-01-26 10:04:33.64+00 2021-01-26 10:04:33.64+00 0 podium podium 3182 134 VARCHAR(50) com.nvs.core.model.meta.DataField 334 2021-01-26 10:04:33.641+00 2021-01-26 10:04:33.641+00 0 podium podium 3183 134 VARCHAR(15) com.nvs.core.model.meta.DataField 350 2021-01-26 10:04:33.641+00 2021-01-26 10:04:33.641+00 0 podium podium 3184 134 VARCHAR(15) com.nvs.core.model.meta.DataField 343 2021-01-26 10:04:33.642+00 2021-01-26 10:04:33.642+00 0 podium podium 3185 134 VARCHAR(1000) com.nvs.core.model.meta.DataField 341 2021-01-26 10:04:33.642+00 2021-01-26 10:04:33.642+00 0 podium podium 3186 134 VARCHAR(5) com.nvs.core.model.meta.DataField 373 2021-01-26 10:04:33.643+00 2021-01-26 10:04:33.643+00 0 podium podium 3187 134 VARCHAR(5) com.nvs.core.model.meta.DataField 369 2021-01-26 10:04:33.643+00 2021-01-26 10:04:33.643+00 0 podium podium 3188 134 VARCHAR(1000) com.nvs.core.model.meta.DataField 380 2021-01-26 10:04:33.644+00 2021-01-26 10:04:33.644+00 0 podium podium 3189 134 VARCHAR(15) com.nvs.core.model.meta.DataField 377 2021-01-26 10:04:33.644+00 2021-01-26 10:04:33.644+00 0 podium podium 3700 81 false com.nvs.core.model.meta.DataField 438 2021-01-26 10:04:59.613+00 2021-01-26 10:04:59.613+00 0 podium podium 3701 45 \N com.nvs.core.model.meta.DataField 399 2021-01-26 10:04:59.613+00 2021-01-26 10:04:59.613+00 0 podium podium 3702 45 \N com.nvs.core.model.meta.DataField 402 2021-01-26 10:04:59.614+00 2021-01-26 10:04:59.614+00 0 podium podium 3703 50 \N com.nvs.core.model.meta.DataField 440 2021-01-26 10:04:59.614+00 2021-01-26 10:04:59.614+00 0 podium podium 3704 45 \N com.nvs.core.model.meta.DataField 418 2021-01-26 10:04:59.615+00 2021-01-26 10:04:59.615+00 0 podium podium 3705 134 VARCHAR(1000) com.nvs.core.model.meta.DataField 452 2021-01-26 10:04:59.615+00 2021-01-26 10:04:59.615+00 0 podium podium 3706 49 \N com.nvs.core.model.meta.DataField 453 2021-01-26 10:04:59.616+00 2021-01-26 10:04:59.616+00 0 podium podium 3707 81 false com.nvs.core.model.meta.DataField 416 2021-01-26 10:04:59.616+00 2021-01-26 10:04:59.616+00 0 podium podium 3708 51 1000 com.nvs.core.model.meta.DataField 452 2021-01-26 10:04:59.617+00 2021-01-26 10:04:59.617+00 0 podium podium 3709 53 \N com.nvs.core.model.meta.DataField 444 2021-01-26 10:04:59.617+00 2021-01-26 10:04:59.617+00 0 podium podium 3710 51 24 com.nvs.core.model.meta.DataField 421 2021-01-26 10:04:59.618+00 2021-01-26 10:04:59.618+00 0 podium podium 3711 51 15 com.nvs.core.model.meta.DataField 412 2021-01-26 10:04:59.619+00 2021-01-26 10:04:59.619+00 0 podium podium 3712 50 \N com.nvs.core.model.meta.DataField 467 2021-01-26 10:04:59.619+00 2021-01-26 10:04:59.619+00 0 podium podium 3713 51 \N com.nvs.core.model.meta.DataField 396 2021-01-26 10:04:59.62+00 2021-01-26 10:04:59.62+00 0 podium podium 3714 44 \N com.nvs.core.model.meta.DataField 448 2021-01-26 10:04:59.62+00 2021-01-26 10:04:59.62+00 0 podium podium 3715 51 \N com.nvs.core.model.meta.DataField 427 2021-01-26 10:04:59.621+00 2021-01-26 10:04:59.621+00 0 podium podium 3716 51 \N com.nvs.core.model.meta.DataField 449 2021-01-26 10:04:59.621+00 2021-01-26 10:04:59.621+00 0 podium podium 3717 52 \N com.nvs.core.model.meta.DataField 400 2021-01-26 10:04:59.622+00 2021-01-26 10:04:59.622+00 0 podium podium 3718 52 \N com.nvs.core.model.meta.DataField 396 2021-01-26 10:04:59.622+00 2021-01-26 10:04:59.622+00 0 podium podium 3719 44 \N com.nvs.core.model.meta.DataField 469 2021-01-26 10:04:59.623+00 2021-01-26 10:04:59.623+00 0 podium podium 3720 45 \N com.nvs.core.model.meta.DataField 444 2021-01-26 10:04:59.623+00 2021-01-26 10:04:59.623+00 0 podium podium 3721 45 \N com.nvs.core.model.meta.DataField 455 2021-01-26 10:04:59.624+00 2021-01-26 10:04:59.624+00 0 podium podium 3722 52 \N com.nvs.core.model.meta.DataField 426 2021-01-26 10:04:59.624+00 2021-01-26 10:04:59.624+00 0 podium podium 3723 50 \N com.nvs.core.model.meta.DataField 429 2021-01-26 10:04:59.625+00 2021-01-26 10:04:59.625+00 0 podium podium 3724 81 false com.nvs.core.model.meta.DataField 391 2021-01-26 10:04:59.625+00 2021-01-26 10:04:59.625+00 0 podium podium 3725 53 \N com.nvs.core.model.meta.DataField 430 2021-01-26 10:04:59.626+00 2021-01-26 10:04:59.626+00 0 podium podium 3726 49 \N com.nvs.core.model.meta.DataField 429 2021-01-26 10:04:59.626+00 2021-01-26 10:04:59.626+00 0 podium podium 3727 45 \N com.nvs.core.model.meta.DataField 415 2021-01-26 10:04:59.627+00 2021-01-26 10:04:59.627+00 0 podium podium 3728 52 \N com.nvs.core.model.meta.DataField 452 2021-01-26 10:04:59.628+00 2021-01-26 10:04:59.628+00 0 podium podium 3729 50 \N com.nvs.core.model.meta.DataField 392 2021-01-26 10:04:59.628+00 2021-01-26 10:04:59.628+00 0 podium podium 3730 49 \N com.nvs.core.model.meta.DataField 448 2021-01-26 10:04:59.629+00 2021-01-26 10:04:59.629+00 0 podium podium 3731 81 false com.nvs.core.model.meta.DataField 423 2021-01-26 10:04:59.629+00 2021-01-26 10:04:59.629+00 0 podium podium 3732 53 \N com.nvs.core.model.meta.DataField 425 2021-01-26 10:04:59.63+00 2021-01-26 10:04:59.63+00 0 podium podium 3733 134 VARCHAR(24) com.nvs.core.model.meta.DataField 464 2021-01-26 10:04:59.63+00 2021-01-26 10:04:59.63+00 0 podium podium 3734 53 \N com.nvs.core.model.meta.DataField 398 2021-01-26 10:04:59.631+00 2021-01-26 10:04:59.631+00 0 podium podium 3735 51 50 com.nvs.core.model.meta.DataField 462 2021-01-26 10:04:59.631+00 2021-01-26 10:04:59.631+00 0 podium podium 3736 49 \N com.nvs.core.model.meta.DataField 410 2021-01-26 10:04:59.632+00 2021-01-26 10:04:59.632+00 0 podium podium 3737 53 \N com.nvs.core.model.meta.DataField 397 2021-01-26 10:04:59.632+00 2021-01-26 10:04:59.632+00 0 podium podium 3738 51 10 com.nvs.core.model.meta.DataField 419 2021-01-26 10:04:59.633+00 2021-01-26 10:04:59.633+00 0 podium podium 3739 49 \N com.nvs.core.model.meta.DataField 433 2021-01-26 10:04:59.633+00 2021-01-26 10:04:59.633+00 0 podium podium 3740 44 \N com.nvs.core.model.meta.DataField 399 2021-01-26 10:04:59.634+00 2021-01-26 10:04:59.634+00 0 podium podium 3741 51 40 com.nvs.core.model.meta.DataField 459 2021-01-26 10:04:59.634+00 2021-01-26 10:04:59.634+00 0 podium podium 3742 45 \N com.nvs.core.model.meta.DataField 410 2021-01-26 10:04:59.635+00 2021-01-26 10:04:59.635+00 0 podium podium 3743 81 false com.nvs.core.model.meta.DataField 427 2021-01-26 10:04:59.636+00 2021-01-26 10:04:59.636+00 0 podium podium 3744 44 \N com.nvs.core.model.meta.DataField 442 2021-01-26 10:04:59.636+00 2021-01-26 10:04:59.636+00 0 podium podium 3745 45 \N com.nvs.core.model.meta.DataField 454 2021-01-26 10:04:59.637+00 2021-01-26 10:04:59.637+00 0 podium podium 3746 81 false com.nvs.core.model.meta.DataField 462 2021-01-26 10:04:59.637+00 2021-01-26 10:04:59.637+00 0 podium podium 3747 53 \N com.nvs.core.model.meta.DataField 421 2021-01-26 10:04:59.638+00 2021-01-26 10:04:59.638+00 0 podium podium 3748 53 \N com.nvs.core.model.meta.DataField 433 2021-01-26 10:04:59.638+00 2021-01-26 10:04:59.638+00 0 podium podium 3749 134 VARCHAR(24) com.nvs.core.model.meta.DataField 421 2021-01-26 10:04:59.639+00 2021-01-26 10:04:59.639+00 0 podium podium 3750 45 \N com.nvs.core.model.meta.DataField 432 2021-01-26 10:04:59.639+00 2021-01-26 10:04:59.639+00 0 podium podium 3751 45 \N com.nvs.core.model.meta.DataField 392 2021-01-26 10:04:59.64+00 2021-01-26 10:04:59.64+00 0 podium podium 3752 53 \N com.nvs.core.model.meta.DataField 450 2021-01-26 10:04:59.64+00 2021-01-26 10:04:59.64+00 0 podium podium 3753 53 \N com.nvs.core.model.meta.DataField 418 2021-01-26 10:04:59.641+00 2021-01-26 10:04:59.641+00 0 podium podium 3754 53 \N com.nvs.core.model.meta.DataField 408 2021-01-26 10:04:59.642+00 2021-01-26 10:04:59.642+00 0 podium podium 3755 53 \N com.nvs.core.model.meta.DataField 465 2021-01-26 10:04:59.642+00 2021-01-26 10:04:59.642+00 0 podium podium 3756 53 \N com.nvs.core.model.meta.DataField 415 2021-01-26 10:04:59.643+00 2021-01-26 10:04:59.643+00 0 podium podium 3757 50 \N com.nvs.core.model.meta.DataField 398 2021-01-26 10:04:59.643+00 2021-01-26 10:04:59.643+00 0 podium podium 3758 134 VARCHAR(24) com.nvs.core.model.meta.DataField 399 2021-01-26 10:04:59.644+00 2021-01-26 10:04:59.644+00 0 podium podium 3759 51 24 com.nvs.core.model.meta.DataField 399 2021-01-26 10:04:59.644+00 2021-01-26 10:04:59.644+00 0 podium podium 3760 53 \N com.nvs.core.model.meta.DataField 445 2021-01-26 10:04:59.645+00 2021-01-26 10:04:59.645+00 0 podium podium 3761 52 \N com.nvs.core.model.meta.DataField 453 2021-01-26 10:04:59.645+00 2021-01-26 10:04:59.645+00 0 podium podium 3762 51 \N com.nvs.core.model.meta.DataField 391 2021-01-26 10:04:59.646+00 2021-01-26 10:04:59.646+00 0 podium podium 3763 49 \N com.nvs.core.model.meta.DataField 442 2021-01-26 10:04:59.646+00 2021-01-26 10:04:59.646+00 0 podium podium 3764 53 \N com.nvs.core.model.meta.DataField 454 2021-01-26 10:04:59.647+00 2021-01-26 10:04:59.647+00 0 podium podium 3765 51 \N com.nvs.core.model.meta.DataField 417 2021-01-26 10:04:59.647+00 2021-01-26 10:04:59.647+00 0 podium podium 3766 45 \N com.nvs.core.model.meta.DataField 425 2021-01-26 10:04:59.648+00 2021-01-26 10:04:59.648+00 0 podium podium 3767 49 \N com.nvs.core.model.meta.DataField 412 2021-01-26 10:04:59.648+00 2021-01-26 10:04:59.648+00 0 podium podium 3768 52 \N com.nvs.core.model.meta.DataField 437 2021-01-26 10:04:59.649+00 2021-01-26 10:04:59.649+00 0 podium podium 3769 81 false com.nvs.core.model.meta.DataField 424 2021-01-26 10:04:59.649+00 2021-01-26 10:04:59.649+00 0 podium podium 3770 51 24 com.nvs.core.model.meta.DataField 439 2021-01-26 10:04:59.65+00 2021-01-26 10:04:59.65+00 0 podium podium 3771 53 \N com.nvs.core.model.meta.DataField 428 2021-01-26 10:04:59.65+00 2021-01-26 10:04:59.65+00 0 podium podium 3772 44 \N com.nvs.core.model.meta.DataField 468 2021-01-26 10:04:59.651+00 2021-01-26 10:04:59.651+00 0 podium podium 3773 53 \N com.nvs.core.model.meta.DataField 394 2021-01-26 10:04:59.652+00 2021-01-26 10:04:59.652+00 0 podium podium 3774 52 \N com.nvs.core.model.meta.DataField 411 2021-01-26 10:04:59.652+00 2021-01-26 10:04:59.652+00 0 podium podium 3775 50 \N com.nvs.core.model.meta.DataField 448 2021-01-26 10:04:59.653+00 2021-01-26 10:04:59.653+00 0 podium podium 3776 44 \N com.nvs.core.model.meta.DataField 414 2021-01-26 10:04:59.653+00 2021-01-26 10:04:59.653+00 0 podium podium 3777 81 false com.nvs.core.model.meta.DataField 417 2021-01-26 10:04:59.654+00 2021-01-26 10:04:59.654+00 0 podium podium 3778 45 \N com.nvs.core.model.meta.DataField 395 2021-01-26 10:04:59.654+00 2021-01-26 10:04:59.654+00 0 podium podium 3779 51 15 com.nvs.core.model.meta.DataField 448 2021-01-26 10:04:59.655+00 2021-01-26 10:04:59.655+00 0 podium podium 3780 44 \N com.nvs.core.model.meta.DataField 420 2021-01-26 10:04:59.655+00 2021-01-26 10:04:59.655+00 0 podium podium 3781 50 \N com.nvs.core.model.meta.DataField 428 2021-01-26 10:04:59.656+00 2021-01-26 10:04:59.656+00 0 podium podium 3782 81 false com.nvs.core.model.meta.DataField 440 2021-01-26 10:04:59.656+00 2021-01-26 10:04:59.656+00 0 podium podium 3783 49 \N com.nvs.core.model.meta.DataField 397 2021-01-26 10:04:59.657+00 2021-01-26 10:04:59.657+00 0 podium podium 3784 51 \N com.nvs.core.model.meta.DataField 422 2021-01-26 10:04:59.657+00 2021-01-26 10:04:59.657+00 0 podium podium 3785 50 \N com.nvs.core.model.meta.DataField 453 2021-01-26 10:04:59.658+00 2021-01-26 10:04:59.658+00 0 podium podium 3786 81 false com.nvs.core.model.meta.DataField 439 2021-01-26 10:04:59.658+00 2021-01-26 10:04:59.658+00 0 podium podium 3787 134 VARCHAR(5) com.nvs.core.model.meta.DataField 441 2021-01-26 10:04:59.659+00 2021-01-26 10:04:59.659+00 0 podium podium 3788 52 \N com.nvs.core.model.meta.DataField 448 2021-01-26 10:04:59.659+00 2021-01-26 10:04:59.659+00 0 podium podium 3789 53 \N com.nvs.core.model.meta.DataField 393 2021-01-26 10:04:59.66+00 2021-01-26 10:04:59.66+00 0 podium podium 3790 44 \N com.nvs.core.model.meta.DataField 403 2021-01-26 10:04:59.661+00 2021-01-26 10:04:59.661+00 0 podium podium 3791 53 \N com.nvs.core.model.meta.DataField 405 2021-01-26 10:04:59.661+00 2021-01-26 10:04:59.661+00 0 podium podium 3792 134 VARCHAR(30) com.nvs.core.model.meta.DataField 432 2021-01-26 10:04:59.662+00 2021-01-26 10:04:59.662+00 0 podium podium 3793 45 \N com.nvs.core.model.meta.DataField 462 2021-01-26 10:04:59.662+00 2021-01-26 10:04:59.662+00 0 podium podium 3968 81 false com.nvs.core.model.meta.DataField 421 2021-01-26 10:04:59.756+00 2021-01-26 10:04:59.756+00 0 podium podium 3794 49 \N com.nvs.core.model.meta.DataField 462 2021-01-26 10:04:59.663+00 2021-01-26 10:04:59.663+00 0 podium podium 3795 50 \N com.nvs.core.model.meta.DataField 396 2021-01-26 10:04:59.663+00 2021-01-26 10:04:59.663+00 0 podium podium 3796 53 \N com.nvs.core.model.meta.DataField 458 2021-01-26 10:04:59.664+00 2021-01-26 10:04:59.664+00 0 podium podium 3797 81 false com.nvs.core.model.meta.DataField 392 2021-01-26 10:04:59.664+00 2021-01-26 10:04:59.664+00 0 podium podium 3798 52 \N com.nvs.core.model.meta.DataField 458 2021-01-26 10:04:59.665+00 2021-01-26 10:04:59.665+00 0 podium podium 3799 52 \N com.nvs.core.model.meta.DataField 420 2021-01-26 10:04:59.665+00 2021-01-26 10:04:59.665+00 0 podium podium 3800 50 \N com.nvs.core.model.meta.DataField 441 2021-01-26 10:04:59.666+00 2021-01-26 10:04:59.666+00 0 podium podium 3801 53 \N com.nvs.core.model.meta.DataField 404 2021-01-26 10:04:59.666+00 2021-01-26 10:04:59.666+00 0 podium podium 3802 52 \N com.nvs.core.model.meta.DataField 423 2021-01-26 10:04:59.667+00 2021-01-26 10:04:59.667+00 0 podium podium 3803 51 5 com.nvs.core.model.meta.DataField 397 2021-01-26 10:04:59.668+00 2021-01-26 10:04:59.668+00 0 podium podium 3804 81 false com.nvs.core.model.meta.DataField 450 2021-01-26 10:04:59.668+00 2021-01-26 10:04:59.668+00 0 podium podium 3805 53 \N com.nvs.core.model.meta.DataField 437 2021-01-26 10:04:59.669+00 2021-01-26 10:04:59.669+00 0 podium podium 3806 44 \N com.nvs.core.model.meta.DataField 466 2021-01-26 10:04:59.669+00 2021-01-26 10:04:59.669+00 0 podium podium 3807 50 \N com.nvs.core.model.meta.DataField 468 2021-01-26 10:04:59.67+00 2021-01-26 10:04:59.67+00 0 podium podium 3808 52 \N com.nvs.core.model.meta.DataField 449 2021-01-26 10:04:59.67+00 2021-01-26 10:04:59.67+00 0 podium podium 3809 51 \N com.nvs.core.model.meta.DataField 468 2021-01-26 10:04:59.671+00 2021-01-26 10:04:59.671+00 0 podium podium 3810 45 \N com.nvs.core.model.meta.DataField 428 2021-01-26 10:04:59.672+00 2021-01-26 10:04:59.672+00 0 podium podium 3811 51 50 com.nvs.core.model.meta.DataField 429 2021-01-26 10:04:59.672+00 2021-01-26 10:04:59.672+00 0 podium podium 3812 51 15 com.nvs.core.model.meta.DataField 428 2021-01-26 10:04:59.673+00 2021-01-26 10:04:59.673+00 0 podium podium 3813 45 \N com.nvs.core.model.meta.DataField 464 2021-01-26 10:04:59.673+00 2021-01-26 10:04:59.673+00 0 podium podium 3814 51 \N com.nvs.core.model.meta.DataField 447 2021-01-26 10:04:59.674+00 2021-01-26 10:04:59.674+00 0 podium podium 3815 50 \N com.nvs.core.model.meta.DataField 444 2021-01-26 10:04:59.674+00 2021-01-26 10:04:59.674+00 0 podium podium 3816 51 5 com.nvs.core.model.meta.DataField 433 2021-01-26 10:04:59.675+00 2021-01-26 10:04:59.675+00 0 podium podium 3817 44 \N com.nvs.core.model.meta.DataField 415 2021-01-26 10:04:59.675+00 2021-01-26 10:04:59.675+00 0 podium podium 3818 49 \N com.nvs.core.model.meta.DataField 391 2021-01-26 10:04:59.676+00 2021-01-26 10:04:59.676+00 0 podium podium 3819 81 false com.nvs.core.model.meta.DataField 460 2021-01-26 10:04:59.676+00 2021-01-26 10:04:59.676+00 0 podium podium 3820 51 30 com.nvs.core.model.meta.DataField 444 2021-01-26 10:04:59.677+00 2021-01-26 10:04:59.677+00 0 podium podium 3821 81 false com.nvs.core.model.meta.DataField 454 2021-01-26 10:04:59.677+00 2021-01-26 10:04:59.677+00 0 podium podium 3822 53 \N com.nvs.core.model.meta.DataField 448 2021-01-26 10:04:59.678+00 2021-01-26 10:04:59.678+00 0 podium podium 3823 53 \N com.nvs.core.model.meta.DataField 402 2021-01-26 10:04:59.678+00 2021-01-26 10:04:59.678+00 0 podium podium 3824 50 \N com.nvs.core.model.meta.DataField 469 2021-01-26 10:04:59.679+00 2021-01-26 10:04:59.679+00 0 podium podium 3825 52 \N com.nvs.core.model.meta.DataField 422 2021-01-26 10:04:59.68+00 2021-01-26 10:04:59.68+00 0 podium podium 3826 49 \N com.nvs.core.model.meta.DataField 430 2021-01-26 10:04:59.68+00 2021-01-26 10:04:59.68+00 0 podium podium 3827 53 \N com.nvs.core.model.meta.DataField 407 2021-01-26 10:04:59.681+00 2021-01-26 10:04:59.681+00 0 podium podium 3828 51 \N com.nvs.core.model.meta.DataField 407 2021-01-26 10:04:59.681+00 2021-01-26 10:04:59.681+00 0 podium podium 3829 50 \N com.nvs.core.model.meta.DataField 394 2021-01-26 10:04:59.682+00 2021-01-26 10:04:59.682+00 0 podium podium 3830 45 \N com.nvs.core.model.meta.DataField 447 2021-01-26 10:04:59.682+00 2021-01-26 10:04:59.682+00 0 podium podium 3831 53 \N com.nvs.core.model.meta.DataField 463 2021-01-26 10:04:59.683+00 2021-01-26 10:04:59.683+00 0 podium podium 3832 45 \N com.nvs.core.model.meta.DataField 408 2021-01-26 10:04:59.683+00 2021-01-26 10:04:59.683+00 0 podium podium 3833 45 \N com.nvs.core.model.meta.DataField 400 2021-01-26 10:04:59.684+00 2021-01-26 10:04:59.684+00 0 podium podium 3834 44 \N com.nvs.core.model.meta.DataField 431 2021-01-26 10:04:59.684+00 2021-01-26 10:04:59.684+00 0 podium podium 3835 49 \N com.nvs.core.model.meta.DataField 451 2021-01-26 10:04:59.685+00 2021-01-26 10:04:59.685+00 0 podium podium 3836 44 \N com.nvs.core.model.meta.DataField 426 2021-01-26 10:04:59.686+00 2021-01-26 10:04:59.686+00 0 podium podium 3837 44 \N com.nvs.core.model.meta.DataField 447 2021-01-26 10:04:59.686+00 2021-01-26 10:04:59.686+00 0 podium podium 3838 52 \N com.nvs.core.model.meta.DataField 431 2021-01-26 10:04:59.687+00 2021-01-26 10:04:59.687+00 0 podium podium 3839 52 \N com.nvs.core.model.meta.DataField 398 2021-01-26 10:04:59.687+00 2021-01-26 10:04:59.687+00 0 podium podium 3840 45 \N com.nvs.core.model.meta.DataField 439 2021-01-26 10:04:59.688+00 2021-01-26 10:04:59.688+00 0 podium podium 3841 134 VARCHAR(50) com.nvs.core.model.meta.DataField 420 2021-01-26 10:04:59.688+00 2021-01-26 10:04:59.688+00 0 podium podium 3842 44 \N com.nvs.core.model.meta.DataField 459 2021-01-26 10:04:59.689+00 2021-01-26 10:04:59.689+00 0 podium podium 3843 52 \N com.nvs.core.model.meta.DataField 403 2021-01-26 10:04:59.689+00 2021-01-26 10:04:59.689+00 0 podium podium 3844 44 \N com.nvs.core.model.meta.DataField 453 2021-01-26 10:04:59.69+00 2021-01-26 10:04:59.69+00 0 podium podium 3845 51 24 com.nvs.core.model.meta.DataField 409 2021-01-26 10:04:59.69+00 2021-01-26 10:04:59.69+00 0 podium podium 3846 45 \N com.nvs.core.model.meta.DataField 452 2021-01-26 10:04:59.691+00 2021-01-26 10:04:59.691+00 0 podium podium 3847 49 \N com.nvs.core.model.meta.DataField 457 2021-01-26 10:04:59.691+00 2021-01-26 10:04:59.691+00 0 podium podium 3848 44 \N com.nvs.core.model.meta.DataField 429 2021-01-26 10:04:59.692+00 2021-01-26 10:04:59.692+00 0 podium podium 3849 45 \N com.nvs.core.model.meta.DataField 433 2021-01-26 10:04:59.692+00 2021-01-26 10:04:59.692+00 0 podium podium 3850 51 \N com.nvs.core.model.meta.DataField 418 2021-01-26 10:04:59.693+00 2021-01-26 10:04:59.693+00 0 podium podium 3851 52 \N com.nvs.core.model.meta.DataField 433 2021-01-26 10:04:59.694+00 2021-01-26 10:04:59.694+00 0 podium podium 3852 52 \N com.nvs.core.model.meta.DataField 401 2021-01-26 10:04:59.694+00 2021-01-26 10:04:59.694+00 0 podium podium 3853 52 \N com.nvs.core.model.meta.DataField 435 2021-01-26 10:04:59.695+00 2021-01-26 10:04:59.695+00 0 podium podium 3854 49 \N com.nvs.core.model.meta.DataField 407 2021-01-26 10:04:59.695+00 2021-01-26 10:04:59.695+00 0 podium podium 3855 44 \N com.nvs.core.model.meta.DataField 412 2021-01-26 10:04:59.696+00 2021-01-26 10:04:59.696+00 0 podium podium 3856 45 \N com.nvs.core.model.meta.DataField 391 2021-01-26 10:04:59.696+00 2021-01-26 10:04:59.696+00 0 podium podium 3857 51 \N com.nvs.core.model.meta.DataField 415 2021-01-26 10:04:59.697+00 2021-01-26 10:04:59.697+00 0 podium podium 3858 53 \N com.nvs.core.model.meta.DataField 447 2021-01-26 10:04:59.697+00 2021-01-26 10:04:59.697+00 0 podium podium 3859 134 VARCHAR(5) com.nvs.core.model.meta.DataField 425 2021-01-26 10:04:59.698+00 2021-01-26 10:04:59.698+00 0 podium podium 3860 52 \N com.nvs.core.model.meta.DataField 393 2021-01-26 10:04:59.698+00 2021-01-26 10:04:59.698+00 0 podium podium 3861 44 \N com.nvs.core.model.meta.DataField 446 2021-01-26 10:04:59.699+00 2021-01-26 10:04:59.699+00 0 podium podium 3862 52 \N com.nvs.core.model.meta.DataField 427 2021-01-26 10:04:59.699+00 2021-01-26 10:04:59.699+00 0 podium podium 3863 53 \N com.nvs.core.model.meta.DataField 426 2021-01-26 10:04:59.7+00 2021-01-26 10:04:59.7+00 0 podium podium 3864 53 \N com.nvs.core.model.meta.DataField 441 2021-01-26 10:04:59.7+00 2021-01-26 10:04:59.7+00 0 podium podium 3865 49 \N com.nvs.core.model.meta.DataField 402 2021-01-26 10:04:59.701+00 2021-01-26 10:04:59.701+00 0 podium podium 3866 49 \N com.nvs.core.model.meta.DataField 437 2021-01-26 10:04:59.702+00 2021-01-26 10:04:59.702+00 0 podium podium 3867 134 VARCHAR(24) com.nvs.core.model.meta.DataField 409 2021-01-26 10:04:59.702+00 2021-01-26 10:04:59.702+00 0 podium podium 3868 81 false com.nvs.core.model.meta.DataField 428 2021-01-26 10:04:59.703+00 2021-01-26 10:04:59.703+00 0 podium podium 3869 134 VARCHAR(50) com.nvs.core.model.meta.DataField 395 2021-01-26 10:04:59.703+00 2021-01-26 10:04:59.703+00 0 podium podium 3870 44 \N com.nvs.core.model.meta.DataField 408 2021-01-26 10:04:59.704+00 2021-01-26 10:04:59.704+00 0 podium podium 3871 81 false com.nvs.core.model.meta.DataField 431 2021-01-26 10:04:59.704+00 2021-01-26 10:04:59.704+00 0 podium podium 3872 45 \N com.nvs.core.model.meta.DataField 451 2021-01-26 10:04:59.705+00 2021-01-26 10:04:59.705+00 0 podium podium 3873 52 \N com.nvs.core.model.meta.DataField 421 2021-01-26 10:04:59.705+00 2021-01-26 10:04:59.705+00 0 podium podium 3874 44 \N com.nvs.core.model.meta.DataField 405 2021-01-26 10:04:59.706+00 2021-01-26 10:04:59.706+00 0 podium podium 3875 44 \N com.nvs.core.model.meta.DataField 411 2021-01-26 10:04:59.706+00 2021-01-26 10:04:59.706+00 0 podium podium 3876 51 \N com.nvs.core.model.meta.DataField 445 2021-01-26 10:04:59.707+00 2021-01-26 10:04:59.707+00 0 podium podium 3877 50 \N com.nvs.core.model.meta.DataField 405 2021-01-26 10:04:59.707+00 2021-01-26 10:04:59.707+00 0 podium podium 3878 44 \N com.nvs.core.model.meta.DataField 428 2021-01-26 10:04:59.708+00 2021-01-26 10:04:59.708+00 0 podium podium 3879 50 \N com.nvs.core.model.meta.DataField 397 2021-01-26 10:04:59.709+00 2021-01-26 10:04:59.709+00 0 podium podium 3880 44 \N com.nvs.core.model.meta.DataField 394 2021-01-26 10:04:59.709+00 2021-01-26 10:04:59.709+00 0 podium podium 3881 52 \N com.nvs.core.model.meta.DataField 440 2021-01-26 10:04:59.71+00 2021-01-26 10:04:59.71+00 0 podium podium 3882 44 \N com.nvs.core.model.meta.DataField 437 2021-01-26 10:04:59.71+00 2021-01-26 10:04:59.71+00 0 podium podium 3883 134 VARCHAR(50) com.nvs.core.model.meta.DataField 462 2021-01-26 10:04:59.711+00 2021-01-26 10:04:59.711+00 0 podium podium 3884 81 false com.nvs.core.model.meta.DataField 461 2021-01-26 10:04:59.711+00 2021-01-26 10:04:59.711+00 0 podium podium 3885 51 50 com.nvs.core.model.meta.DataField 404 2021-01-26 10:04:59.712+00 2021-01-26 10:04:59.712+00 0 podium podium 3886 52 \N com.nvs.core.model.meta.DataField 430 2021-01-26 10:04:59.712+00 2021-01-26 10:04:59.712+00 0 podium podium 3887 52 \N com.nvs.core.model.meta.DataField 434 2021-01-26 10:04:59.713+00 2021-01-26 10:04:59.713+00 0 podium podium 3888 50 \N com.nvs.core.model.meta.DataField 419 2021-01-26 10:04:59.713+00 2021-01-26 10:04:59.713+00 0 podium podium 3889 81 false com.nvs.core.model.meta.DataField 464 2021-01-26 10:04:59.714+00 2021-01-26 10:04:59.714+00 0 podium podium 3890 52 \N com.nvs.core.model.meta.DataField 429 2021-01-26 10:04:59.714+00 2021-01-26 10:04:59.714+00 0 podium podium 3891 134 VARCHAR(60) com.nvs.core.model.meta.DataField 463 2021-01-26 10:04:59.715+00 2021-01-26 10:04:59.715+00 0 podium podium 3892 49 \N com.nvs.core.model.meta.DataField 439 2021-01-26 10:04:59.715+00 2021-01-26 10:04:59.715+00 0 podium podium 3893 49 \N com.nvs.core.model.meta.DataField 466 2021-01-26 10:04:59.716+00 2021-01-26 10:04:59.716+00 0 podium podium 3894 50 \N com.nvs.core.model.meta.DataField 423 2021-01-26 10:04:59.716+00 2021-01-26 10:04:59.716+00 0 podium podium 3895 53 \N com.nvs.core.model.meta.DataField 432 2021-01-26 10:04:59.717+00 2021-01-26 10:04:59.717+00 0 podium podium 3896 51 30 com.nvs.core.model.meta.DataField 437 2021-01-26 10:04:59.718+00 2021-01-26 10:04:59.718+00 0 podium podium 3897 44 \N com.nvs.core.model.meta.DataField 400 2021-01-26 10:04:59.718+00 2021-01-26 10:04:59.718+00 0 podium podium 3898 51 5 com.nvs.core.model.meta.DataField 441 2021-01-26 10:04:59.719+00 2021-01-26 10:04:59.719+00 0 podium podium 3899 53 \N com.nvs.core.model.meta.DataField 467 2021-01-26 10:04:59.719+00 2021-01-26 10:04:59.719+00 0 podium podium 3900 45 \N com.nvs.core.model.meta.DataField 441 2021-01-26 10:04:59.72+00 2021-01-26 10:04:59.72+00 0 podium podium 3901 134 VARCHAR(30) com.nvs.core.model.meta.DataField 394 2021-01-26 10:04:59.72+00 2021-01-26 10:04:59.72+00 0 podium podium 3902 134 VARCHAR(50) com.nvs.core.model.meta.DataField 440 2021-01-26 10:04:59.721+00 2021-01-26 10:04:59.721+00 0 podium podium 3903 81 false com.nvs.core.model.meta.DataField 449 2021-01-26 10:04:59.721+00 2021-01-26 10:04:59.721+00 0 podium podium 3904 81 false com.nvs.core.model.meta.DataField 412 2021-01-26 10:04:59.722+00 2021-01-26 10:04:59.722+00 0 podium podium 3905 81 false com.nvs.core.model.meta.DataField 410 2021-01-26 10:04:59.722+00 2021-01-26 10:04:59.722+00 0 podium podium 3906 44 \N com.nvs.core.model.meta.DataField 440 2021-01-26 10:04:59.723+00 2021-01-26 10:04:59.723+00 0 podium podium 3907 53 \N com.nvs.core.model.meta.DataField 431 2021-01-26 10:04:59.723+00 2021-01-26 10:04:59.723+00 0 podium podium 3908 52 \N com.nvs.core.model.meta.DataField 441 2021-01-26 10:04:59.724+00 2021-01-26 10:04:59.724+00 0 podium podium 3909 45 \N com.nvs.core.model.meta.DataField 422 2021-01-26 10:04:59.725+00 2021-01-26 10:04:59.725+00 0 podium podium 3910 53 \N com.nvs.core.model.meta.DataField 436 2021-01-26 10:04:59.725+00 2021-01-26 10:04:59.725+00 0 podium podium 3911 44 \N com.nvs.core.model.meta.DataField 392 2021-01-26 10:04:59.726+00 2021-01-26 10:04:59.726+00 0 podium podium 3912 49 \N com.nvs.core.model.meta.DataField 431 2021-01-26 10:04:59.726+00 2021-01-26 10:04:59.726+00 0 podium podium 3913 134 VARCHAR(15) com.nvs.core.model.meta.DataField 414 2021-01-26 10:04:59.727+00 2021-01-26 10:04:59.727+00 0 podium podium 3914 49 \N com.nvs.core.model.meta.DataField 464 2021-01-26 10:04:59.727+00 2021-01-26 10:04:59.727+00 0 podium podium 3915 134 VARCHAR(10) com.nvs.core.model.meta.DataField 419 2021-01-26 10:04:59.728+00 2021-01-26 10:04:59.728+00 0 podium podium 3916 50 \N com.nvs.core.model.meta.DataField 410 2021-01-26 10:04:59.728+00 2021-01-26 10:04:59.728+00 0 podium podium 3917 81 false com.nvs.core.model.meta.DataField 469 2021-01-26 10:04:59.729+00 2021-01-26 10:04:59.729+00 0 podium podium 3918 49 \N com.nvs.core.model.meta.DataField 395 2021-01-26 10:04:59.729+00 2021-01-26 10:04:59.729+00 0 podium podium 3919 49 \N com.nvs.core.model.meta.DataField 459 2021-01-26 10:04:59.73+00 2021-01-26 10:04:59.73+00 0 podium podium 3920 44 \N com.nvs.core.model.meta.DataField 436 2021-01-26 10:04:59.73+00 2021-01-26 10:04:59.73+00 0 podium podium 3921 45 \N com.nvs.core.model.meta.DataField 438 2021-01-26 10:04:59.731+00 2021-01-26 10:04:59.731+00 0 podium podium 3922 49 \N com.nvs.core.model.meta.DataField 405 2021-01-26 10:04:59.731+00 2021-01-26 10:04:59.731+00 0 podium podium 3923 52 \N com.nvs.core.model.meta.DataField 451 2021-01-26 10:04:59.732+00 2021-01-26 10:04:59.732+00 0 podium podium 3924 45 \N com.nvs.core.model.meta.DataField 460 2021-01-26 10:04:59.732+00 2021-01-26 10:04:59.732+00 0 podium podium 3925 49 \N com.nvs.core.model.meta.DataField 447 2021-01-26 10:04:59.733+00 2021-01-26 10:04:59.733+00 0 podium podium 3926 51 24 com.nvs.core.model.meta.DataField 402 2021-01-26 10:04:59.734+00 2021-01-26 10:04:59.734+00 0 podium podium 3927 50 \N com.nvs.core.model.meta.DataField 438 2021-01-26 10:04:59.734+00 2021-01-26 10:04:59.734+00 0 podium podium 3928 49 \N com.nvs.core.model.meta.DataField 417 2021-01-26 10:04:59.735+00 2021-01-26 10:04:59.735+00 0 podium podium 3929 49 \N com.nvs.core.model.meta.DataField 401 2021-01-26 10:04:59.735+00 2021-01-26 10:04:59.735+00 0 podium podium 3930 53 \N com.nvs.core.model.meta.DataField 411 2021-01-26 10:04:59.736+00 2021-01-26 10:04:59.736+00 0 podium podium 3931 50 \N com.nvs.core.model.meta.DataField 408 2021-01-26 10:04:59.736+00 2021-01-26 10:04:59.736+00 0 podium podium 3932 52 \N com.nvs.core.model.meta.DataField 419 2021-01-26 10:04:59.737+00 2021-01-26 10:04:59.737+00 0 podium podium 3933 50 \N com.nvs.core.model.meta.DataField 439 2021-01-26 10:04:59.737+00 2021-01-26 10:04:59.737+00 0 podium podium 3934 51 5 com.nvs.core.model.meta.DataField 455 2021-01-26 10:04:59.738+00 2021-01-26 10:04:59.738+00 0 podium podium 3935 49 \N com.nvs.core.model.meta.DataField 467 2021-01-26 10:04:59.738+00 2021-01-26 10:04:59.738+00 0 podium podium 3936 45 \N com.nvs.core.model.meta.DataField 435 2021-01-26 10:04:59.739+00 2021-01-26 10:04:59.739+00 0 podium podium 3937 52 \N com.nvs.core.model.meta.DataField 432 2021-01-26 10:04:59.739+00 2021-01-26 10:04:59.739+00 0 podium podium 3938 52 \N com.nvs.core.model.meta.DataField 418 2021-01-26 10:04:59.74+00 2021-01-26 10:04:59.74+00 0 podium podium 3939 52 \N com.nvs.core.model.meta.DataField 469 2021-01-26 10:04:59.74+00 2021-01-26 10:04:59.74+00 0 podium podium 3940 45 \N com.nvs.core.model.meta.DataField 424 2021-01-26 10:04:59.741+00 2021-01-26 10:04:59.741+00 0 podium podium 3941 49 \N com.nvs.core.model.meta.DataField 438 2021-01-26 10:04:59.741+00 2021-01-26 10:04:59.741+00 0 podium podium 3942 134 VARCHAR(5) com.nvs.core.model.meta.DataField 433 2021-01-26 10:04:59.742+00 2021-01-26 10:04:59.742+00 0 podium podium 3943 81 false com.nvs.core.model.meta.DataField 446 2021-01-26 10:04:59.742+00 2021-01-26 10:04:59.742+00 0 podium podium 3944 51 \N com.nvs.core.model.meta.DataField 453 2021-01-26 10:04:59.743+00 2021-01-26 10:04:59.743+00 0 podium podium 3945 45 \N com.nvs.core.model.meta.DataField 420 2021-01-26 10:04:59.744+00 2021-01-26 10:04:59.744+00 0 podium podium 3946 44 \N com.nvs.core.model.meta.DataField 396 2021-01-26 10:04:59.744+00 2021-01-26 10:04:59.744+00 0 podium podium 3947 44 \N com.nvs.core.model.meta.DataField 401 2021-01-26 10:04:59.745+00 2021-01-26 10:04:59.745+00 0 podium podium 3948 45 \N com.nvs.core.model.meta.DataField 450 2021-01-26 10:04:59.745+00 2021-01-26 10:04:59.745+00 0 podium podium 3949 49 \N com.nvs.core.model.meta.DataField 454 2021-01-26 10:04:59.746+00 2021-01-26 10:04:59.746+00 0 podium podium 3950 50 \N com.nvs.core.model.meta.DataField 411 2021-01-26 10:04:59.746+00 2021-01-26 10:04:59.746+00 0 podium podium 3951 81 false com.nvs.core.model.meta.DataField 411 2021-01-26 10:04:59.747+00 2021-01-26 10:04:59.747+00 0 podium podium 3952 51 15 com.nvs.core.model.meta.DataField 414 2021-01-26 10:04:59.747+00 2021-01-26 10:04:59.747+00 0 podium podium 3953 51 \N com.nvs.core.model.meta.DataField 454 2021-01-26 10:04:59.748+00 2021-01-26 10:04:59.748+00 0 podium podium 3954 45 \N com.nvs.core.model.meta.DataField 445 2021-01-26 10:04:59.748+00 2021-01-26 10:04:59.748+00 0 podium podium 3955 49 \N com.nvs.core.model.meta.DataField 409 2021-01-26 10:04:59.749+00 2021-01-26 10:04:59.749+00 0 podium podium 3956 50 \N com.nvs.core.model.meta.DataField 406 2021-01-26 10:04:59.75+00 2021-01-26 10:04:59.75+00 0 podium podium 3957 50 \N com.nvs.core.model.meta.DataField 450 2021-01-26 10:04:59.751+00 2021-01-26 10:04:59.751+00 0 podium podium 3958 53 \N com.nvs.core.model.meta.DataField 442 2021-01-26 10:04:59.751+00 2021-01-26 10:04:59.751+00 0 podium podium 3959 51 50 com.nvs.core.model.meta.DataField 420 2021-01-26 10:04:59.752+00 2021-01-26 10:04:59.752+00 0 podium podium 3960 49 \N com.nvs.core.model.meta.DataField 455 2021-01-26 10:04:59.753+00 2021-01-26 10:04:59.753+00 0 podium podium 3961 44 \N com.nvs.core.model.meta.DataField 397 2021-01-26 10:04:59.753+00 2021-01-26 10:04:59.753+00 0 podium podium 3962 45 \N com.nvs.core.model.meta.DataField 440 2021-01-26 10:04:59.754+00 2021-01-26 10:04:59.754+00 0 podium podium 3963 44 \N com.nvs.core.model.meta.DataField 464 2021-01-26 10:04:59.754+00 2021-01-26 10:04:59.754+00 0 podium podium 3964 49 \N com.nvs.core.model.meta.DataField 421 2021-01-26 10:04:59.754+00 2021-01-26 10:04:59.754+00 0 podium podium 3965 50 \N com.nvs.core.model.meta.DataField 449 2021-01-26 10:04:59.755+00 2021-01-26 10:04:59.755+00 0 podium podium 3966 44 \N com.nvs.core.model.meta.DataField 452 2021-01-26 10:04:59.755+00 2021-01-26 10:04:59.755+00 0 podium podium 3967 45 \N com.nvs.core.model.meta.DataField 413 2021-01-26 10:04:59.756+00 2021-01-26 10:04:59.756+00 0 podium podium 3969 50 \N com.nvs.core.model.meta.DataField 403 2021-01-26 10:04:59.757+00 2021-01-26 10:04:59.757+00 0 podium podium 3970 49 \N com.nvs.core.model.meta.DataField 468 2021-01-26 10:04:59.757+00 2021-01-26 10:04:59.757+00 0 podium podium 3971 49 \N com.nvs.core.model.meta.DataField 392 2021-01-26 10:04:59.758+00 2021-01-26 10:04:59.758+00 0 podium podium 3972 134 VARCHAR(5) com.nvs.core.model.meta.DataField 397 2021-01-26 10:04:59.758+00 2021-01-26 10:04:59.758+00 0 podium podium 3973 51 \N com.nvs.core.model.meta.DataField 469 2021-01-26 10:04:59.759+00 2021-01-26 10:04:59.759+00 0 podium podium 3974 44 \N com.nvs.core.model.meta.DataField 425 2021-01-26 10:04:59.759+00 2021-01-26 10:04:59.759+00 0 podium podium 3975 51 \N com.nvs.core.model.meta.DataField 446 2021-01-26 10:04:59.76+00 2021-01-26 10:04:59.76+00 0 podium podium 3976 53 \N com.nvs.core.model.meta.DataField 420 2021-01-26 10:04:59.761+00 2021-01-26 10:04:59.761+00 0 podium podium 3977 49 \N com.nvs.core.model.meta.DataField 445 2021-01-26 10:04:59.761+00 2021-01-26 10:04:59.761+00 0 podium podium 3978 50 \N com.nvs.core.model.meta.DataField 426 2021-01-26 10:04:59.762+00 2021-01-26 10:04:59.762+00 0 podium podium 3979 45 \N com.nvs.core.model.meta.DataField 463 2021-01-26 10:04:59.762+00 2021-01-26 10:04:59.762+00 0 podium podium 3980 81 false com.nvs.core.model.meta.DataField 414 2021-01-26 10:04:59.763+00 2021-01-26 10:04:59.763+00 0 podium podium 3981 81 false com.nvs.core.model.meta.DataField 445 2021-01-26 10:04:59.763+00 2021-01-26 10:04:59.763+00 0 podium podium 3982 50 \N com.nvs.core.model.meta.DataField 418 2021-01-26 10:04:59.764+00 2021-01-26 10:04:59.764+00 0 podium podium 3983 44 \N com.nvs.core.model.meta.DataField 455 2021-01-26 10:04:59.764+00 2021-01-26 10:04:59.764+00 0 podium podium 3984 53 \N com.nvs.core.model.meta.DataField 469 2021-01-26 10:04:59.765+00 2021-01-26 10:04:59.765+00 0 podium podium 3985 50 \N com.nvs.core.model.meta.DataField 430 2021-01-26 10:04:59.765+00 2021-01-26 10:04:59.765+00 0 podium podium 3986 134 VARCHAR(45) com.nvs.core.model.meta.DataField 458 2021-01-26 10:04:59.766+00 2021-01-26 10:04:59.766+00 0 podium podium 3987 49 \N com.nvs.core.model.meta.DataField 444 2021-01-26 10:04:59.766+00 2021-01-26 10:04:59.766+00 0 podium podium 3988 51 45 com.nvs.core.model.meta.DataField 458 2021-01-26 10:04:59.767+00 2021-01-26 10:04:59.767+00 0 podium podium 3989 50 \N com.nvs.core.model.meta.DataField 413 2021-01-26 10:04:59.767+00 2021-01-26 10:04:59.767+00 0 podium podium 3990 53 \N com.nvs.core.model.meta.DataField 403 2021-01-26 10:04:59.767+00 2021-01-26 10:04:59.767+00 0 podium podium 3991 50 \N com.nvs.core.model.meta.DataField 424 2021-01-26 10:04:59.768+00 2021-01-26 10:04:59.768+00 0 podium podium 3992 49 \N com.nvs.core.model.meta.DataField 425 2021-01-26 10:04:59.768+00 2021-01-26 10:04:59.768+00 0 podium podium 3993 49 \N com.nvs.core.model.meta.DataField 424 2021-01-26 10:04:59.769+00 2021-01-26 10:04:59.769+00 0 podium podium 3994 51 1000 com.nvs.core.model.meta.DataField 426 2021-01-26 10:04:59.769+00 2021-01-26 10:04:59.769+00 0 podium podium 3995 81 false com.nvs.core.model.meta.DataField 465 2021-01-26 10:04:59.77+00 2021-01-26 10:04:59.77+00 0 podium podium 3996 49 \N com.nvs.core.model.meta.DataField 420 2021-01-26 10:04:59.77+00 2021-01-26 10:04:59.77+00 0 podium podium 3997 51 \N com.nvs.core.model.meta.DataField 411 2021-01-26 10:04:59.771+00 2021-01-26 10:04:59.771+00 0 podium podium 3998 51 10 com.nvs.core.model.meta.DataField 393 2021-01-26 10:04:59.771+00 2021-01-26 10:04:59.771+00 0 podium podium 3999 50 \N com.nvs.core.model.meta.DataField 456 2021-01-26 10:04:59.771+00 2021-01-26 10:04:59.771+00 0 podium podium 4000 49 \N com.nvs.core.model.meta.DataField 415 2021-01-26 10:04:59.772+00 2021-01-26 10:04:59.772+00 0 podium podium 4001 49 \N com.nvs.core.model.meta.DataField 400 2021-01-26 10:04:59.772+00 2021-01-26 10:04:59.772+00 0 podium podium 4002 81 false com.nvs.core.model.meta.DataField 451 2021-01-26 10:04:59.773+00 2021-01-26 10:04:59.773+00 0 podium podium 4003 53 \N com.nvs.core.model.meta.DataField 427 2021-01-26 10:04:59.773+00 2021-01-26 10:04:59.773+00 0 podium podium 4004 45 \N com.nvs.core.model.meta.DataField 467 2021-01-26 10:04:59.774+00 2021-01-26 10:04:59.774+00 0 podium podium 4005 44 \N com.nvs.core.model.meta.DataField 433 2021-01-26 10:04:59.774+00 2021-01-26 10:04:59.774+00 0 podium podium 4006 51 30 com.nvs.core.model.meta.DataField 394 2021-01-26 10:04:59.775+00 2021-01-26 10:04:59.775+00 0 podium podium 4007 45 \N com.nvs.core.model.meta.DataField 411 2021-01-26 10:04:59.775+00 2021-01-26 10:04:59.775+00 0 podium podium 4008 50 \N com.nvs.core.model.meta.DataField 401 2021-01-26 10:04:59.775+00 2021-01-26 10:04:59.775+00 0 podium podium 4009 81 false com.nvs.core.model.meta.DataField 453 2021-01-26 10:04:59.776+00 2021-01-26 10:04:59.776+00 0 podium podium 4010 44 \N com.nvs.core.model.meta.DataField 438 2021-01-26 10:04:59.776+00 2021-01-26 10:04:59.776+00 0 podium podium 4011 45 \N com.nvs.core.model.meta.DataField 456 2021-01-26 10:04:59.777+00 2021-01-26 10:04:59.777+00 0 podium podium 4012 44 \N com.nvs.core.model.meta.DataField 402 2021-01-26 10:04:59.777+00 2021-01-26 10:04:59.777+00 0 podium podium 4013 81 false com.nvs.core.model.meta.DataField 397 2021-01-26 10:04:59.778+00 2021-01-26 10:04:59.778+00 0 podium podium 4014 49 \N com.nvs.core.model.meta.DataField 434 2021-01-26 10:04:59.778+00 2021-01-26 10:04:59.778+00 0 podium podium 4015 51 \N com.nvs.core.model.meta.DataField 423 2021-01-26 10:04:59.778+00 2021-01-26 10:04:59.778+00 0 podium podium 4016 50 \N com.nvs.core.model.meta.DataField 404 2021-01-26 10:04:59.779+00 2021-01-26 10:04:59.779+00 0 podium podium 4017 44 \N com.nvs.core.model.meta.DataField 418 2021-01-26 10:04:59.779+00 2021-01-26 10:04:59.779+00 0 podium podium 4018 45 \N com.nvs.core.model.meta.DataField 414 2021-01-26 10:04:59.78+00 2021-01-26 10:04:59.78+00 0 podium podium 4019 81 false com.nvs.core.model.meta.DataField 395 2021-01-26 10:04:59.78+00 2021-01-26 10:04:59.78+00 0 podium podium 4020 49 \N com.nvs.core.model.meta.DataField 393 2021-01-26 10:04:59.781+00 2021-01-26 10:04:59.781+00 0 podium podium 4021 45 \N com.nvs.core.model.meta.DataField 443 2021-01-26 10:04:59.781+00 2021-01-26 10:04:59.781+00 0 podium podium 4022 49 \N com.nvs.core.model.meta.DataField 446 2021-01-26 10:04:59.782+00 2021-01-26 10:04:59.782+00 0 podium podium 4023 53 \N com.nvs.core.model.meta.DataField 468 2021-01-26 10:04:59.782+00 2021-01-26 10:04:59.782+00 0 podium podium 4024 134 VARCHAR(10) com.nvs.core.model.meta.DataField 460 2021-01-26 10:04:59.783+00 2021-01-26 10:04:59.783+00 0 podium podium 4025 44 \N com.nvs.core.model.meta.DataField 419 2021-01-26 10:04:59.783+00 2021-01-26 10:04:59.783+00 0 podium podium 4026 49 \N com.nvs.core.model.meta.DataField 440 2021-01-26 10:04:59.784+00 2021-01-26 10:04:59.784+00 0 podium podium 4224 288 com.nvs.core.model.meta.DataSource 6 2021-01-26 10:05:59.56+00 2021-01-26 10:05:59.56+00 0 podium podium 4027 53 \N com.nvs.core.model.meta.DataField 413 2021-01-26 10:04:59.784+00 2021-01-26 10:04:59.784+00 0 podium podium 4028 49 \N com.nvs.core.model.meta.DataField 441 2021-01-26 10:04:59.785+00 2021-01-26 10:04:59.785+00 0 podium podium 4029 134 VARCHAR(4) com.nvs.core.model.meta.DataField 408 2021-01-26 10:04:59.785+00 2021-01-26 10:04:59.785+00 0 podium podium 4030 53 \N com.nvs.core.model.meta.DataField 412 2021-01-26 10:04:59.786+00 2021-01-26 10:04:59.786+00 0 podium podium 4031 51 15 com.nvs.core.model.meta.DataField 457 2021-01-26 10:04:59.787+00 2021-01-26 10:04:59.787+00 0 podium podium 4032 45 \N com.nvs.core.model.meta.DataField 448 2021-01-26 10:04:59.787+00 2021-01-26 10:04:59.787+00 0 podium podium 4033 51 1000 com.nvs.core.model.meta.DataField 438 2021-01-26 10:04:59.788+00 2021-01-26 10:04:59.788+00 0 podium podium 4034 49 \N com.nvs.core.model.meta.DataField 396 2021-01-26 10:04:59.788+00 2021-01-26 10:04:59.788+00 0 podium podium 4035 50 \N com.nvs.core.model.meta.DataField 400 2021-01-26 10:04:59.789+00 2021-01-26 10:04:59.789+00 0 podium podium 4036 81 false com.nvs.core.model.meta.DataField 441 2021-01-26 10:04:59.789+00 2021-01-26 10:04:59.789+00 0 podium podium 4037 52 \N com.nvs.core.model.meta.DataField 405 2021-01-26 10:04:59.79+00 2021-01-26 10:04:59.79+00 0 podium podium 4038 52 \N com.nvs.core.model.meta.DataField 402 2021-01-26 10:04:59.79+00 2021-01-26 10:04:59.79+00 0 podium podium 4039 44 \N com.nvs.core.model.meta.DataField 462 2021-01-26 10:04:59.791+00 2021-01-26 10:04:59.791+00 0 podium podium 4040 81 false com.nvs.core.model.meta.DataField 422 2021-01-26 10:04:59.791+00 2021-01-26 10:04:59.791+00 0 podium podium 4041 81 false com.nvs.core.model.meta.DataField 466 2021-01-26 10:04:59.792+00 2021-01-26 10:04:59.792+00 0 podium podium 4042 44 \N com.nvs.core.model.meta.DataField 398 2021-01-26 10:04:59.792+00 2021-01-26 10:04:59.792+00 0 podium podium 4043 50 \N com.nvs.core.model.meta.DataField 446 2021-01-26 10:04:59.793+00 2021-01-26 10:04:59.793+00 0 podium podium 4044 50 \N com.nvs.core.model.meta.DataField 422 2021-01-26 10:04:59.793+00 2021-01-26 10:04:59.793+00 0 podium podium 4045 52 \N com.nvs.core.model.meta.DataField 450 2021-01-26 10:04:59.794+00 2021-01-26 10:04:59.794+00 0 podium podium 4046 53 \N com.nvs.core.model.meta.DataField 423 2021-01-26 10:04:59.795+00 2021-01-26 10:04:59.795+00 0 podium podium 4047 52 \N com.nvs.core.model.meta.DataField 408 2021-01-26 10:04:59.795+00 2021-01-26 10:04:59.795+00 0 podium podium 4048 81 false com.nvs.core.model.meta.DataField 433 2021-01-26 10:04:59.796+00 2021-01-26 10:04:59.796+00 0 podium podium 4049 50 \N com.nvs.core.model.meta.DataField 447 2021-01-26 10:04:59.796+00 2021-01-26 10:04:59.796+00 0 podium podium 4050 45 \N com.nvs.core.model.meta.DataField 466 2021-01-26 10:04:59.797+00 2021-01-26 10:04:59.797+00 0 podium podium 4051 49 \N com.nvs.core.model.meta.DataField 449 2021-01-26 10:04:59.797+00 2021-01-26 10:04:59.797+00 0 podium podium 4052 44 \N com.nvs.core.model.meta.DataField 449 2021-01-26 10:04:59.798+00 2021-01-26 10:04:59.798+00 0 podium podium 4053 44 \N com.nvs.core.model.meta.DataField 457 2021-01-26 10:04:59.798+00 2021-01-26 10:04:59.798+00 0 podium podium 4054 49 \N com.nvs.core.model.meta.DataField 450 2021-01-26 10:04:59.799+00 2021-01-26 10:04:59.799+00 0 podium podium 4055 49 \N com.nvs.core.model.meta.DataField 398 2021-01-26 10:04:59.799+00 2021-01-26 10:04:59.799+00 0 podium podium 4056 50 \N com.nvs.core.model.meta.DataField 463 2021-01-26 10:04:59.8+00 2021-01-26 10:04:59.8+00 0 podium podium 4057 44 \N com.nvs.core.model.meta.DataField 460 2021-01-26 10:04:59.8+00 2021-01-26 10:04:59.8+00 0 podium podium 4058 45 \N com.nvs.core.model.meta.DataField 453 2021-01-26 10:04:59.801+00 2021-01-26 10:04:59.801+00 0 podium podium 4059 51 5 com.nvs.core.model.meta.DataField 410 2021-01-26 10:04:59.802+00 2021-01-26 10:04:59.802+00 0 podium podium 4060 52 \N com.nvs.core.model.meta.DataField 459 2021-01-26 10:04:59.802+00 2021-01-26 10:04:59.802+00 0 podium podium 4061 49 \N com.nvs.core.model.meta.DataField 408 2021-01-26 10:04:59.803+00 2021-01-26 10:04:59.803+00 0 podium podium 4062 52 \N com.nvs.core.model.meta.DataField 391 2021-01-26 10:04:59.804+00 2021-01-26 10:04:59.804+00 0 podium podium 4063 44 \N com.nvs.core.model.meta.DataField 404 2021-01-26 10:04:59.804+00 2021-01-26 10:04:59.804+00 0 podium podium 4064 50 \N com.nvs.core.model.meta.DataField 455 2021-01-26 10:04:59.805+00 2021-01-26 10:04:59.805+00 0 podium podium 4065 45 \N com.nvs.core.model.meta.DataField 437 2021-01-26 10:04:59.806+00 2021-01-26 10:04:59.806+00 0 podium podium 4066 81 false com.nvs.core.model.meta.DataField 457 2021-01-26 10:04:59.806+00 2021-01-26 10:04:59.806+00 0 podium podium 4067 51 10 com.nvs.core.model.meta.DataField 466 2021-01-26 10:04:59.807+00 2021-01-26 10:04:59.807+00 0 podium podium 4068 81 false com.nvs.core.model.meta.DataField 419 2021-01-26 10:04:59.808+00 2021-01-26 10:04:59.808+00 0 podium podium 4069 52 \N com.nvs.core.model.meta.DataField 417 2021-01-26 10:04:59.809+00 2021-01-26 10:04:59.809+00 0 podium podium 4070 49 \N com.nvs.core.model.meta.DataField 403 2021-01-26 10:04:59.809+00 2021-01-26 10:04:59.809+00 0 podium podium 4071 45 \N com.nvs.core.model.meta.DataField 405 2021-01-26 10:04:59.81+00 2021-01-26 10:04:59.81+00 0 podium podium 4072 81 false com.nvs.core.model.meta.DataField 435 2021-01-26 10:04:59.811+00 2021-01-26 10:04:59.811+00 0 podium podium 4073 49 \N com.nvs.core.model.meta.DataField 411 2021-01-26 10:04:59.811+00 2021-01-26 10:04:59.811+00 0 podium podium 4074 51 \N com.nvs.core.model.meta.DataField 467 2021-01-26 10:04:59.812+00 2021-01-26 10:04:59.812+00 0 podium podium 4075 45 \N com.nvs.core.model.meta.DataField 423 2021-01-26 10:04:59.813+00 2021-01-26 10:04:59.813+00 0 podium podium 4076 134 VARCHAR(5) com.nvs.core.model.meta.DataField 410 2021-01-26 10:04:59.814+00 2021-01-26 10:04:59.814+00 0 podium podium 4077 44 \N com.nvs.core.model.meta.DataField 391 2021-01-26 10:04:59.814+00 2021-01-26 10:04:59.814+00 0 podium podium 4078 81 false com.nvs.core.model.meta.DataField 452 2021-01-26 10:04:59.815+00 2021-01-26 10:04:59.815+00 0 podium podium 4079 49 \N com.nvs.core.model.meta.DataField 465 2021-01-26 10:04:59.816+00 2021-01-26 10:04:59.816+00 0 podium podium 4080 52 \N com.nvs.core.model.meta.DataField 406 2021-01-26 10:04:59.816+00 2021-01-26 10:04:59.816+00 0 podium podium 4081 134 VARCHAR(15) com.nvs.core.model.meta.DataField 400 2021-01-26 10:04:59.817+00 2021-01-26 10:04:59.817+00 0 podium podium 4082 44 \N com.nvs.core.model.meta.DataField 467 2021-01-26 10:04:59.818+00 2021-01-26 10:04:59.818+00 0 podium podium 4083 53 \N com.nvs.core.model.meta.DataField 424 2021-01-26 10:04:59.819+00 2021-01-26 10:04:59.819+00 0 podium podium 4084 53 \N com.nvs.core.model.meta.DataField 414 2021-01-26 10:04:59.819+00 2021-01-26 10:04:59.819+00 0 podium podium 4085 50 \N com.nvs.core.model.meta.DataField 412 2021-01-26 10:04:59.82+00 2021-01-26 10:04:59.82+00 0 podium podium 4086 53 \N com.nvs.core.model.meta.DataField 453 2021-01-26 10:04:59.821+00 2021-01-26 10:04:59.821+00 0 podium podium 4087 45 \N com.nvs.core.model.meta.DataField 426 2021-01-26 10:04:59.821+00 2021-01-26 10:04:59.821+00 0 podium podium 4088 53 \N com.nvs.core.model.meta.DataField 452 2021-01-26 10:04:59.822+00 2021-01-26 10:04:59.822+00 0 podium podium 4089 53 \N com.nvs.core.model.meta.DataField 456 2021-01-26 10:04:59.823+00 2021-01-26 10:04:59.823+00 0 podium podium 4090 52 \N com.nvs.core.model.meta.DataField 415 2021-01-26 10:04:59.823+00 2021-01-26 10:04:59.823+00 0 podium podium 4091 50 \N com.nvs.core.model.meta.DataField 461 2021-01-26 10:04:59.824+00 2021-01-26 10:04:59.824+00 0 podium podium 4092 53 \N com.nvs.core.model.meta.DataField 391 2021-01-26 10:04:59.824+00 2021-01-26 10:04:59.824+00 0 podium podium 4093 44 \N com.nvs.core.model.meta.DataField 432 2021-01-26 10:04:59.825+00 2021-01-26 10:04:59.825+00 0 podium podium 4094 81 false com.nvs.core.model.meta.DataField 401 2021-01-26 10:04:59.826+00 2021-01-26 10:04:59.826+00 0 podium podium 4095 53 \N com.nvs.core.model.meta.DataField 440 2021-01-26 10:04:59.826+00 2021-01-26 10:04:59.826+00 0 podium podium 4096 53 \N com.nvs.core.model.meta.DataField 455 2021-01-26 10:04:59.827+00 2021-01-26 10:04:59.827+00 0 podium podium 4097 45 \N com.nvs.core.model.meta.DataField 434 2021-01-26 10:04:59.827+00 2021-01-26 10:04:59.827+00 0 podium podium 4098 44 \N com.nvs.core.model.meta.DataField 463 2021-01-26 10:04:59.828+00 2021-01-26 10:04:59.828+00 0 podium podium 4099 49 \N com.nvs.core.model.meta.DataField 423 2021-01-26 10:04:59.828+00 2021-01-26 10:04:59.828+00 0 podium podium 4100 52 \N com.nvs.core.model.meta.DataField 447 2021-01-26 10:04:59.829+00 2021-01-26 10:04:59.829+00 0 podium podium 4101 81 false com.nvs.core.model.meta.DataField 447 2021-01-26 10:04:59.829+00 2021-01-26 10:04:59.829+00 0 podium podium 4102 51 \N com.nvs.core.model.meta.DataField 461 2021-01-26 10:04:59.83+00 2021-01-26 10:04:59.83+00 0 podium podium 4103 49 \N com.nvs.core.model.meta.DataField 469 2021-01-26 10:04:59.83+00 2021-01-26 10:04:59.83+00 0 podium podium 4104 53 \N com.nvs.core.model.meta.DataField 443 2021-01-26 10:04:59.831+00 2021-01-26 10:04:59.831+00 0 podium podium 4105 52 \N com.nvs.core.model.meta.DataField 462 2021-01-26 10:04:59.832+00 2021-01-26 10:04:59.832+00 0 podium podium 4106 52 \N com.nvs.core.model.meta.DataField 464 2021-01-26 10:04:59.832+00 2021-01-26 10:04:59.832+00 0 podium podium 4107 134 VARCHAR(40) com.nvs.core.model.meta.DataField 436 2021-01-26 10:04:59.833+00 2021-01-26 10:04:59.833+00 0 podium podium 4108 51 50 com.nvs.core.model.meta.DataField 416 2021-01-26 10:04:59.833+00 2021-01-26 10:04:59.833+00 0 podium podium 4109 51 15 com.nvs.core.model.meta.DataField 443 2021-01-26 10:04:59.834+00 2021-01-26 10:04:59.834+00 0 podium podium 4110 45 \N com.nvs.core.model.meta.DataField 429 2021-01-26 10:04:59.834+00 2021-01-26 10:04:59.834+00 0 podium podium 4111 53 \N com.nvs.core.model.meta.DataField 446 2021-01-26 10:04:59.835+00 2021-01-26 10:04:59.835+00 0 podium podium 4112 49 \N com.nvs.core.model.meta.DataField 432 2021-01-26 10:04:59.835+00 2021-01-26 10:04:59.835+00 0 podium podium 4113 52 \N com.nvs.core.model.meta.DataField 457 2021-01-26 10:04:59.836+00 2021-01-26 10:04:59.836+00 0 podium podium 4114 45 \N com.nvs.core.model.meta.DataField 398 2021-01-26 10:04:59.837+00 2021-01-26 10:04:59.837+00 0 podium podium 4115 53 \N com.nvs.core.model.meta.DataField 461 2021-01-26 10:04:59.837+00 2021-01-26 10:04:59.837+00 0 podium podium 4116 81 false com.nvs.core.model.meta.DataField 415 2021-01-26 10:04:59.838+00 2021-01-26 10:04:59.838+00 0 podium podium 4117 49 \N com.nvs.core.model.meta.DataField 414 2021-01-26 10:04:59.839+00 2021-01-26 10:04:59.839+00 0 podium podium 4118 134 VARCHAR(15) com.nvs.core.model.meta.DataField 412 2021-01-26 10:04:59.839+00 2021-01-26 10:04:59.839+00 0 podium podium 4119 134 VARCHAR(1000) com.nvs.core.model.meta.DataField 426 2021-01-26 10:04:59.84+00 2021-01-26 10:04:59.84+00 0 podium podium 4120 44 \N com.nvs.core.model.meta.DataField 409 2021-01-26 10:04:59.84+00 2021-01-26 10:04:59.84+00 0 podium podium 4121 50 \N com.nvs.core.model.meta.DataField 445 2021-01-26 10:04:59.841+00 2021-01-26 10:04:59.841+00 0 podium podium 4122 134 VARCHAR(30) com.nvs.core.model.meta.DataField 444 2021-01-26 10:04:59.842+00 2021-01-26 10:04:59.842+00 0 podium podium 4123 51 \N com.nvs.core.model.meta.DataField 435 2021-01-26 10:04:59.842+00 2021-01-26 10:04:59.842+00 0 podium podium 4124 134 VARCHAR(50) com.nvs.core.model.meta.DataField 405 2021-01-26 10:04:59.843+00 2021-01-26 10:04:59.843+00 0 podium podium 4125 81 false com.nvs.core.model.meta.DataField 437 2021-01-26 10:04:59.843+00 2021-01-26 10:04:59.843+00 0 podium podium 4126 44 \N com.nvs.core.model.meta.DataField 416 2021-01-26 10:04:59.844+00 2021-01-26 10:04:59.844+00 0 podium podium 4127 50 \N com.nvs.core.model.meta.DataField 395 2021-01-26 10:04:59.844+00 2021-01-26 10:04:59.844+00 0 podium podium 4128 50 \N com.nvs.core.model.meta.DataField 460 2021-01-26 10:04:59.845+00 2021-01-26 10:04:59.845+00 0 podium podium 4129 45 \N com.nvs.core.model.meta.DataField 412 2021-01-26 10:04:59.845+00 2021-01-26 10:04:59.845+00 0 podium podium 4130 50 \N com.nvs.core.model.meta.DataField 427 2021-01-26 10:04:59.846+00 2021-01-26 10:04:59.846+00 0 podium podium 4131 53 \N com.nvs.core.model.meta.DataField 392 2021-01-26 10:04:59.847+00 2021-01-26 10:04:59.847+00 0 podium podium 4132 50 \N com.nvs.core.model.meta.DataField 435 2021-01-26 10:04:59.847+00 2021-01-26 10:04:59.847+00 0 podium podium 4133 81 false com.nvs.core.model.meta.DataField 458 2021-01-26 10:04:59.848+00 2021-01-26 10:04:59.848+00 0 podium podium 4134 134 VARCHAR(15) com.nvs.core.model.meta.DataField 457 2021-01-26 10:04:59.849+00 2021-01-26 10:04:59.849+00 0 podium podium 4135 134 VARCHAR(1000) com.nvs.core.model.meta.DataField 438 2021-01-26 10:04:59.85+00 2021-01-26 10:04:59.85+00 0 podium podium 4136 49 \N com.nvs.core.model.meta.DataField 456 2021-01-26 10:04:59.85+00 2021-01-26 10:04:59.85+00 0 podium podium 4137 49 \N com.nvs.core.model.meta.DataField 422 2021-01-26 10:04:59.851+00 2021-01-26 10:04:59.851+00 0 podium podium 4138 45 \N com.nvs.core.model.meta.DataField 419 2021-01-26 10:04:59.852+00 2021-01-26 10:04:59.852+00 0 podium podium 4139 53 \N com.nvs.core.model.meta.DataField 419 2021-01-26 10:04:59.853+00 2021-01-26 10:04:59.853+00 0 podium podium 4140 45 \N com.nvs.core.model.meta.DataField 421 2021-01-26 10:04:59.853+00 2021-01-26 10:04:59.853+00 0 podium podium 4141 51 \N com.nvs.core.model.meta.DataField 430 2021-01-26 10:04:59.854+00 2021-01-26 10:04:59.854+00 0 podium podium 4142 53 \N com.nvs.core.model.meta.DataField 401 2021-01-26 10:04:59.855+00 2021-01-26 10:04:59.855+00 0 podium podium 4143 45 \N com.nvs.core.model.meta.DataField 430 2021-01-26 10:04:59.856+00 2021-01-26 10:04:59.856+00 0 podium podium 4144 44 \N com.nvs.core.model.meta.DataField 456 2021-01-26 10:04:59.856+00 2021-01-26 10:04:59.856+00 0 podium podium 4145 134 VARCHAR(15) com.nvs.core.model.meta.DataField 443 2021-01-26 10:04:59.857+00 2021-01-26 10:04:59.857+00 0 podium podium 4146 53 \N com.nvs.core.model.meta.DataField 460 2021-01-26 10:04:59.858+00 2021-01-26 10:04:59.858+00 0 podium podium 4147 53 \N com.nvs.core.model.meta.DataField 464 2021-01-26 10:04:59.859+00 2021-01-26 10:04:59.859+00 0 podium podium 4148 52 \N com.nvs.core.model.meta.DataField 412 2021-01-26 10:04:59.859+00 2021-01-26 10:04:59.859+00 0 podium podium 4149 134 VARCHAR(50) com.nvs.core.model.meta.DataField 429 2021-01-26 10:04:59.86+00 2021-01-26 10:04:59.86+00 0 podium podium 4150 50 \N com.nvs.core.model.meta.DataField 451 2021-01-26 10:04:59.861+00 2021-01-26 10:04:59.861+00 0 podium podium 4151 50 \N com.nvs.core.model.meta.DataField 425 2021-01-26 10:04:59.861+00 2021-01-26 10:04:59.861+00 0 podium podium 4152 81 false com.nvs.core.model.meta.DataField 436 2021-01-26 10:04:59.862+00 2021-01-26 10:04:59.862+00 0 podium podium 4153 51 \N com.nvs.core.model.meta.DataField 401 2021-01-26 10:04:59.863+00 2021-01-26 10:04:59.863+00 0 podium podium 4154 50 \N com.nvs.core.model.meta.DataField 442 2021-01-26 10:04:59.863+00 2021-01-26 10:04:59.863+00 0 podium podium 4155 134 VARCHAR(50) com.nvs.core.model.meta.DataField 413 2021-01-26 10:04:59.864+00 2021-01-26 10:04:59.864+00 0 podium podium 4156 52 \N com.nvs.core.model.meta.DataField 438 2021-01-26 10:04:59.865+00 2021-01-26 10:04:59.865+00 0 podium podium 4157 210 MANAGED com.nvs.core.model.meta.DataSource 9 2021-01-26 10:04:59.891+00 2021-01-26 10:04:59.891+00 0 podium podium 4174 134 VARCHAR(15) com.nvs.core.model.meta.DataField 492 2021-01-26 10:05:00.101+00 2021-01-26 10:05:00.101+00 0 podium podium 4175 134 VARCHAR(60) com.nvs.core.model.meta.DataField 487 2021-01-26 10:05:00.101+00 2021-01-26 10:05:00.101+00 0 podium podium 4176 134 VARCHAR(5) com.nvs.core.model.meta.DataField 510 2021-01-26 10:05:00.102+00 2021-01-26 10:05:00.102+00 0 podium podium 4177 134 VARCHAR(24) com.nvs.core.model.meta.DataField 507 2021-01-26 10:05:00.102+00 2021-01-26 10:05:00.102+00 0 podium podium 4178 134 VARCHAR(50) com.nvs.core.model.meta.DataField 534 2021-01-26 10:05:00.103+00 2021-01-26 10:05:00.103+00 0 podium podium 4179 134 VARCHAR(30) com.nvs.core.model.meta.DataField 529 2021-01-26 10:05:00.104+00 2021-01-26 10:05:00.104+00 0 podium podium 4180 134 VARCHAR(5) com.nvs.core.model.meta.DataField 478 2021-01-26 10:05:00.104+00 2021-01-26 10:05:00.104+00 0 podium podium 4181 134 VARCHAR(5) com.nvs.core.model.meta.DataField 542 2021-01-26 10:05:00.105+00 2021-01-26 10:05:00.105+00 0 podium podium 4182 134 VARCHAR(40) com.nvs.core.model.meta.DataField 484 2021-01-26 10:05:00.105+00 2021-01-26 10:05:00.105+00 0 podium podium 4183 134 VARCHAR(15) com.nvs.core.model.meta.DataField 482 2021-01-26 10:05:00.106+00 2021-01-26 10:05:00.106+00 0 podium podium 4184 134 VARCHAR(1000) com.nvs.core.model.meta.DataField 526 2021-01-26 10:05:00.106+00 2021-01-26 10:05:00.106+00 0 podium podium 4185 134 VARCHAR(30) com.nvs.core.model.meta.DataField 536 2021-01-26 10:05:00.107+00 2021-01-26 10:05:00.107+00 0 podium podium 4186 134 VARCHAR(50) com.nvs.core.model.meta.DataField 543 2021-01-26 10:05:00.107+00 2021-01-26 10:05:00.107+00 0 podium podium 4187 134 VARCHAR(30) com.nvs.core.model.meta.DataField 513 2021-01-26 10:05:00.108+00 2021-01-26 10:05:00.108+00 0 podium podium 4188 134 VARCHAR(50) com.nvs.core.model.meta.DataField 501 2021-01-26 10:05:00.109+00 2021-01-26 10:05:00.109+00 0 podium podium 4189 134 VARCHAR(4) com.nvs.core.model.meta.DataField 504 2021-01-26 10:05:00.109+00 2021-01-26 10:05:00.109+00 0 podium podium 4190 134 VARCHAR(50) com.nvs.core.model.meta.DataField 479 2021-01-26 10:05:00.11+00 2021-01-26 10:05:00.11+00 0 podium podium 4191 134 VARCHAR(1000) com.nvs.core.model.meta.DataField 494 2021-01-26 10:05:00.11+00 2021-01-26 10:05:00.11+00 0 podium podium 4192 134 VARCHAR(15) com.nvs.core.model.meta.DataField 509 2021-01-26 10:05:00.111+00 2021-01-26 10:05:00.111+00 0 podium podium 4193 134 VARCHAR(30) com.nvs.core.model.meta.DataField 490 2021-01-26 10:05:00.112+00 2021-01-26 10:05:00.112+00 0 podium podium 4194 134 VARCHAR(5) com.nvs.core.model.meta.DataField 525 2021-01-26 10:05:00.112+00 2021-01-26 10:05:00.112+00 0 podium podium 4195 134 VARCHAR(50) com.nvs.core.model.meta.DataField 518 2021-01-26 10:05:00.113+00 2021-01-26 10:05:00.113+00 0 podium podium 4196 134 VARCHAR(15) com.nvs.core.model.meta.DataField 475 2021-01-26 10:05:00.113+00 2021-01-26 10:05:00.113+00 0 podium podium 4197 134 VARCHAR(10) com.nvs.core.model.meta.DataField 472 2021-01-26 10:05:00.114+00 2021-01-26 10:05:00.114+00 0 podium podium 4198 134 VARCHAR(5) com.nvs.core.model.meta.DataField 546 2021-01-26 10:05:00.114+00 2021-01-26 10:05:00.114+00 0 podium podium 4199 134 VARCHAR(50) com.nvs.core.model.meta.DataField 548 2021-01-26 10:05:00.115+00 2021-01-26 10:05:00.115+00 0 podium podium 4200 134 VARCHAR(24) com.nvs.core.model.meta.DataField 521 2021-01-26 10:05:00.116+00 2021-01-26 10:05:00.116+00 0 podium podium 4201 134 VARCHAR(50) com.nvs.core.model.meta.DataField 499 2021-01-26 10:05:00.116+00 2021-01-26 10:05:00.116+00 0 podium podium 4202 134 VARCHAR(1000) com.nvs.core.model.meta.DataField 531 2021-01-26 10:05:00.117+00 2021-01-26 10:05:00.117+00 0 podium podium 4203 134 VARCHAR(50) com.nvs.core.model.meta.DataField 514 2021-01-26 10:05:00.117+00 2021-01-26 10:05:00.117+00 0 podium podium 4204 134 VARCHAR(45) com.nvs.core.model.meta.DataField 512 2021-01-26 10:05:00.118+00 2021-01-26 10:05:00.118+00 0 podium podium 4205 134 VARCHAR(15) com.nvs.core.model.meta.DataField 545 2021-01-26 10:05:00.119+00 2021-01-26 10:05:00.119+00 0 podium podium 4206 134 VARCHAR(5) com.nvs.core.model.meta.DataField 508 2021-01-26 10:05:00.119+00 2021-01-26 10:05:00.119+00 0 podium podium 4207 134 VARCHAR(30) com.nvs.core.model.meta.DataField 489 2021-01-26 10:05:00.12+00 2021-01-26 10:05:00.12+00 0 podium podium 4208 134 VARCHAR(15) com.nvs.core.model.meta.DataField 537 2021-01-26 10:05:00.12+00 2021-01-26 10:05:00.12+00 0 podium podium 4209 134 VARCHAR(24) com.nvs.core.model.meta.DataField 539 2021-01-26 10:05:00.121+00 2021-01-26 10:05:00.121+00 0 podium podium 4210 134 VARCHAR(10) com.nvs.core.model.meta.DataField 477 2021-01-26 10:05:00.121+00 2021-01-26 10:05:00.121+00 0 podium podium 4211 134 VARCHAR(15) com.nvs.core.model.meta.DataField 471 2021-01-26 10:05:00.122+00 2021-01-26 10:05:00.122+00 0 podium podium 4212 134 VARCHAR(5) com.nvs.core.model.meta.DataField 544 2021-01-26 10:05:00.122+00 2021-01-26 10:05:00.122+00 0 podium podium 4213 134 VARCHAR(24) com.nvs.core.model.meta.DataField 493 2021-01-26 10:05:00.123+00 2021-01-26 10:05:00.123+00 0 podium podium 4214 134 VARCHAR(24) com.nvs.core.model.meta.DataField 476 2021-01-26 10:05:00.123+00 2021-01-26 10:05:00.123+00 0 podium podium 4215 134 VARCHAR(50) com.nvs.core.model.meta.DataField 498 2021-01-26 10:05:00.124+00 2021-01-26 10:05:00.124+00 0 podium podium 4216 134 VARCHAR(50) com.nvs.core.model.meta.DataField 538 2021-01-26 10:05:00.124+00 2021-01-26 10:05:00.124+00 0 podium podium 4217 134 VARCHAR(15) com.nvs.core.model.meta.DataField 533 2021-01-26 10:05:00.125+00 2021-01-26 10:05:00.125+00 0 podium podium 4218 134 VARCHAR(15) com.nvs.core.model.meta.DataField 505 2021-01-26 10:05:00.125+00 2021-01-26 10:05:00.125+00 0 podium podium 4219 134 VARCHAR(24) com.nvs.core.model.meta.DataField 522 2021-01-26 10:05:00.126+00 2021-01-26 10:05:00.126+00 0 podium podium 4220 134 VARCHAR(40) com.nvs.core.model.meta.DataField 495 2021-01-26 10:05:00.126+00 2021-01-26 10:05:00.126+00 0 podium podium 4221 134 VARCHAR(10) com.nvs.core.model.meta.DataField 528 2021-01-26 10:05:00.127+00 2021-01-26 10:05:00.127+00 0 podium podium 4222 134 VARCHAR(5) com.nvs.core.model.meta.DataField 523 2021-01-26 10:05:00.127+00 2021-01-26 10:05:00.127+00 0 podium podium 4223 134 VARCHAR(10) com.nvs.core.model.meta.DataField 524 2021-01-26 10:05:00.128+00 2021-01-26 10:05:00.128+00 0 podium podium 4225 73 sales com.nvs.core.model.meta.DataSource 6 2021-01-26 10:05:59.561+00 2021-01-26 10:05:59.561+00 0 podium podium 4226 293 \N com.nvs.core.model.meta.DataSource 6 2021-01-26 10:05:59.562+00 2021-01-26 10:05:59.562+00 0 podium podium 4227 210 MANAGED com.nvs.core.model.meta.DataSource 6 2021-01-26 10:05:59.562+00 2021-01-26 10:05:59.562+00 0 podium podium 4228 77 \N com.nvs.core.model.meta.DataSource 6 2021-01-26 10:05:59.563+00 2021-01-26 10:05:59.563+00 0 podium podium 4229 94 suppliers com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.941+00 2021-01-26 10:14:46.941+00 0 podium podium 4230 12 0 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.942+00 2021-01-26 10:14:46.942+00 0 podium podium 4231 18 "SupplierID","CompanyName","ContactName","ContactTitle","Address","City","Region","PostalCode","Country","Phone","Fax","HomePage"\\r\\n com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.942+00 2021-01-26 10:14:46.942+00 0 podium podium 4232 152 0 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.943+00 2021-01-26 10:14:46.943+00 0 podium podium 4233 320 0 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.943+00 2021-01-26 10:14:46.943+00 0 podium podium 4234 17 false com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.944+00 2021-01-26 10:14:46.944+00 0 podium podium 4235 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.945+00 2021-01-26 10:14:46.945+00 0 podium podium 4236 92 0 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.945+00 2021-01-26 10:14:46.945+00 0 podium podium 4237 27 UTF_8 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.946+00 2021-01-26 10:14:46.946+00 0 podium podium 4238 20 0 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.946+00 2021-01-26 10:14:46.946+00 0 podium podium 4239 21 0 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.947+00 2021-01-26 10:14:46.947+00 0 podium podium 4240 31 1 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.947+00 2021-01-26 10:14:46.947+00 0 podium podium 4241 153 0 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.948+00 2021-01-26 10:14:46.948+00 0 podium podium 4242 156 true com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.949+00 2021-01-26 10:14:46.949+00 0 podium podium 4243 202 MANAGED com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.949+00 2021-01-26 10:14:46.949+00 0 podium podium 4244 13 1 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.95+00 2021-01-26 10:14:46.95+00 0 podium podium 4245 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.95+00 2021-01-26 10:14:46.95+00 0 podium podium 4246 5 SELECT `SupplierID`,`CompanyName`,`ContactName`,`ContactTitle`,`Address`,`City`,`Region`,`PostalCode`,`Country`,`Phone`,`Fax`,`HomePage` FROM `sales-errors`.`suppliers` com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.951+00 2021-01-26 10:14:46.951+00 0 podium podium 4247 259 0 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.951+00 2021-01-26 10:14:46.951+00 0 podium podium 4248 258 0 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.952+00 2021-01-26 10:14:46.952+00 0 podium podium 4249 154 false com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.952+00 2021-01-26 10:14:46.952+00 0 podium podium 4250 14 false com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.953+00 2021-01-26 10:14:46.953+00 0 podium podium 4251 288 \N com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.953+00 2021-01-26 10:14:46.953+00 0 podium podium 4252 155 true com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.954+00 2021-01-26 10:14:46.954+00 0 podium podium 4253 32 262144 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.954+00 2021-01-26 10:14:46.954+00 0 podium podium 4254 33 \\r\\n com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.955+00 2021-01-26 10:14:46.955+00 0 podium podium 4255 114 Snapshot com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.955+00 2021-01-26 10:14:46.955+00 0 podium podium 4256 293 \N com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.956+00 2021-01-26 10:14:46.956+00 0 podium podium 4257 38 " com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.957+00 2021-01-26 10:14:46.957+00 0 podium podium 4258 28 0.00 com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.957+00 2021-01-26 10:14:46.957+00 0 podium podium 4259 34 , com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.958+00 2021-01-26 10:14:46.958+00 0 podium podium 4260 24 false com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.958+00 2021-01-26 10:14:46.958+00 0 podium podium 4261 37 " com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.959+00 2021-01-26 10:14:46.959+00 0 podium podium 4262 35 false com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.959+00 2021-01-26 10:14:46.959+00 0 podium podium 4263 77 \N com.nvs.core.model.meta.DataEntity 52 2021-01-26 10:14:46.96+00 2021-01-26 10:14:46.96+00 0 podium podium 4264 35 false com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.002+00 2021-01-26 10:14:47.002+00 0 podium podium 4265 13 1 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.002+00 2021-01-26 10:14:47.002+00 0 podium podium 4266 258 0 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.003+00 2021-01-26 10:14:47.003+00 0 podium podium 4267 259 0 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.003+00 2021-01-26 10:14:47.003+00 0 podium podium 4268 34 , com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.004+00 2021-01-26 10:14:47.004+00 0 podium podium 4269 31 1 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.004+00 2021-01-26 10:14:47.004+00 0 podium podium 4270 155 true com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.005+00 2021-01-26 10:14:47.005+00 0 podium podium 4271 293 \N com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.005+00 2021-01-26 10:14:47.005+00 0 podium podium 4272 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.006+00 2021-01-26 10:14:47.006+00 0 podium podium 4273 37 " com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.006+00 2021-01-26 10:14:47.006+00 0 podium podium 4274 24 false com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.007+00 2021-01-26 10:14:47.007+00 0 podium podium 4275 77 \N com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.007+00 2021-01-26 10:14:47.007+00 0 podium podium 4276 153 0 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.008+00 2021-01-26 10:14:47.008+00 0 podium podium 4277 152 0 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.008+00 2021-01-26 10:14:47.008+00 0 podium podium 4278 18 "ShipperID","CompanyName","Phone"\\r\\n com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.009+00 2021-01-26 10:14:47.009+00 0 podium podium 4279 33 \\r\\n com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.009+00 2021-01-26 10:14:47.009+00 0 podium podium 4280 14 false com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.01+00 2021-01-26 10:14:47.01+00 0 podium podium 4281 17 false com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.01+00 2021-01-26 10:14:47.01+00 0 podium podium 4289 154 false com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.015+00 2021-01-26 10:14:47.015+00 0 podium podium 4290 27 UTF_8 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.015+00 2021-01-26 10:14:47.015+00 0 podium podium 4291 12 0 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.016+00 2021-01-26 10:14:47.016+00 0 podium podium 4292 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.016+00 2021-01-26 10:14:47.016+00 0 podium podium 4293 20 0 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.017+00 2021-01-26 10:14:47.017+00 0 podium podium 4294 28 0.00 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.018+00 2021-01-26 10:14:47.018+00 0 podium podium 4295 21 0 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.018+00 2021-01-26 10:14:47.018+00 0 podium podium 4296 114 Snapshot com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.019+00 2021-01-26 10:14:47.019+00 0 podium podium 4297 94 shippers com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.02+00 2021-01-26 10:14:47.02+00 0 podium podium 4298 92 0 com.nvs.core.model.meta.DataEntity 45 2021-01-26 10:14:47.02+00 2021-01-26 10:14:47.02+00 0 podium podium 4299 34 , com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.058+00 2021-01-26 10:14:47.058+00 0 podium podium 4300 17 false com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.058+00 2021-01-26 10:14:47.058+00 0 podium podium 4301 288 \N com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.059+00 2021-01-26 10:14:47.059+00 0 podium podium 4302 152 0 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.06+00 2021-01-26 10:14:47.06+00 0 podium podium 4303 320 0 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.06+00 2021-01-26 10:14:47.06+00 0 podium podium 4304 27 UTF_8 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.061+00 2021-01-26 10:14:47.061+00 0 podium podium 4305 114 Snapshot com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.061+00 2021-01-26 10:14:47.061+00 0 podium podium 4306 153 0 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.062+00 2021-01-26 10:14:47.062+00 0 podium podium 4307 293 \N com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.062+00 2021-01-26 10:14:47.062+00 0 podium podium 4308 77 \N com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.063+00 2021-01-26 10:14:47.063+00 0 podium podium 4309 14 false com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.063+00 2021-01-26 10:14:47.063+00 0 podium podium 4310 33 \\r\\n com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.064+00 2021-01-26 10:14:47.064+00 0 podium podium 4311 20 0 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.064+00 2021-01-26 10:14:47.064+00 0 podium podium 4312 31 1 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.065+00 2021-01-26 10:14:47.065+00 0 podium podium 4313 13 1 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.065+00 2021-01-26 10:14:47.065+00 0 podium podium 4314 12 0 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.066+00 2021-01-26 10:14:47.066+00 0 podium podium 4315 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.066+00 2021-01-26 10:14:47.066+00 0 podium podium 4316 32 262144 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.067+00 2021-01-26 10:14:47.067+00 0 podium podium 4317 156 true com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.067+00 2021-01-26 10:14:47.067+00 0 podium podium 4318 35 false com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.068+00 2021-01-26 10:14:47.068+00 0 podium podium 4319 92 0 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.068+00 2021-01-26 10:14:47.068+00 0 podium podium 4320 202 MANAGED com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.069+00 2021-01-26 10:14:47.069+00 0 podium podium 4321 258 0 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.069+00 2021-01-26 10:14:47.069+00 0 podium podium 4322 21 0 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.07+00 2021-01-26 10:14:47.07+00 0 podium podium 4323 155 true com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.07+00 2021-01-26 10:14:47.07+00 0 podium podium 4324 259 0 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.071+00 2021-01-26 10:14:47.071+00 0 podium podium 4325 5 SELECT `OrderID`,`CustomerID`,`EmployeeID`,`OrderDate`,`RequiredDate`,`ShippedDate`,`ShipVia`,`Freight`,`ShipName`,`ShipAddress`,`ShipCity`,`ShipRegion`,`ShipPostalCode`,`ShipCountry` FROM `sales-errors`.`orders` com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.071+00 2021-01-26 10:14:47.071+00 0 podium podium 4326 24 false com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.072+00 2021-01-26 10:14:47.072+00 0 podium podium 4327 37 " com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.072+00 2021-01-26 10:14:47.072+00 0 podium podium 4328 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.073+00 2021-01-26 10:14:47.073+00 0 podium podium 4329 154 false com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.074+00 2021-01-26 10:14:47.074+00 0 podium podium 4330 94 orders com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.074+00 2021-01-26 10:14:47.074+00 0 podium podium 4331 18 "OrderID","CustomerID","EmployeeID","OrderDate","RequiredDate","ShippedDate","ShipVia","Freight","ShipName","ShipAddress","ShipCity","ShipRegion","ShipPostalCode","ShipCountry"\\r\\n com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.075+00 2021-01-26 10:14:47.075+00 0 podium podium 4332 38 " com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.075+00 2021-01-26 10:14:47.075+00 0 podium podium 4333 28 0.00 com.nvs.core.model.meta.DataEntity 49 2021-01-26 10:14:47.076+00 2021-01-26 10:14:47.076+00 0 podium podium 4334 152 0 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.111+00 2021-01-26 10:14:47.111+00 0 podium podium 4335 12 0 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.112+00 2021-01-26 10:14:47.112+00 0 podium podium 4336 153 0 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.112+00 2021-01-26 10:14:47.112+00 0 podium podium 4337 156 true com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.113+00 2021-01-26 10:14:47.113+00 0 podium podium 4338 13 1 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.113+00 2021-01-26 10:14:47.113+00 0 podium podium 4339 293 \N com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.114+00 2021-01-26 10:14:47.114+00 0 podium podium 4340 21 0 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.115+00 2021-01-26 10:14:47.115+00 0 podium podium 4341 37 " com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.115+00 2021-01-26 10:14:47.115+00 0 podium podium 4342 18 "CustomerID","CompanyName","ContactName","ContactTitle","Address","City","Region","PostalCode","Country","Phone","Fax"\\r\\n com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.116+00 2021-01-26 10:14:47.116+00 0 podium podium 4343 33 \\r\\n com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.116+00 2021-01-26 10:14:47.116+00 0 podium podium 4344 94 customers com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.117+00 2021-01-26 10:14:47.117+00 0 podium podium 4345 288 \N com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.117+00 2021-01-26 10:14:47.117+00 0 podium podium 4346 92 0 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.118+00 2021-01-26 10:14:47.118+00 0 podium podium 4347 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.119+00 2021-01-26 10:14:47.119+00 0 podium podium 4348 155 true com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.119+00 2021-01-26 10:14:47.119+00 0 podium podium 4349 202 MANAGED com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.12+00 2021-01-26 10:14:47.12+00 0 podium podium 4350 24 false com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.12+00 2021-01-26 10:14:47.12+00 0 podium podium 4351 259 0 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.121+00 2021-01-26 10:14:47.121+00 0 podium podium 4352 38 " com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.121+00 2021-01-26 10:14:47.121+00 0 podium podium 4353 320 0 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.122+00 2021-01-26 10:14:47.122+00 0 podium podium 4354 77 \N com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.122+00 2021-01-26 10:14:47.122+00 0 podium podium 4355 28 0.00 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.123+00 2021-01-26 10:14:47.123+00 0 podium podium 4356 17 false com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.123+00 2021-01-26 10:14:47.123+00 0 podium podium 4357 114 Snapshot com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.123+00 2021-01-26 10:14:47.123+00 0 podium podium 4358 35 false com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.124+00 2021-01-26 10:14:47.124+00 0 podium podium 4359 154 false com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.124+00 2021-01-26 10:14:47.124+00 0 podium podium 4360 34 , com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.125+00 2021-01-26 10:14:47.125+00 0 podium podium 4361 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.125+00 2021-01-26 10:14:47.125+00 0 podium podium 4362 258 0 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.125+00 2021-01-26 10:14:47.125+00 0 podium podium 4363 31 1 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.126+00 2021-01-26 10:14:47.126+00 0 podium podium 4364 27 UTF_8 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.127+00 2021-01-26 10:14:47.127+00 0 podium podium 4365 32 262144 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.127+00 2021-01-26 10:14:47.127+00 0 podium podium 4366 5 SELECT `CustomerID`,`CompanyName`,`ContactName`,`ContactTitle`,`Address`,`City`,`Region`,`PostalCode`,`Country`,`Phone`,`Fax` FROM `sales-errors`.`customers` com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.127+00 2021-01-26 10:14:47.127+00 0 podium podium 4367 20 0 com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.128+00 2021-01-26 10:14:47.128+00 0 podium podium 4368 14 false com.nvs.core.model.meta.DataEntity 50 2021-01-26 10:14:47.128+00 2021-01-26 10:14:47.128+00 0 podium podium 4369 156 true com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.163+00 2021-01-26 10:14:47.163+00 0 podium podium 4370 155 true com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.164+00 2021-01-26 10:14:47.164+00 0 podium podium 4371 202 MANAGED com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.164+00 2021-01-26 10:14:47.164+00 0 podium podium 4372 12 0 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.164+00 2021-01-26 10:14:47.164+00 0 podium podium 4373 21 0 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.165+00 2021-01-26 10:14:47.165+00 0 podium podium 4374 288 \N com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.166+00 2021-01-26 10:14:47.166+00 0 podium podium 4375 38 " com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.166+00 2021-01-26 10:14:47.166+00 0 podium podium 4376 153 0 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.167+00 2021-01-26 10:14:47.167+00 0 podium podium 4377 31 1 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.167+00 2021-01-26 10:14:47.167+00 0 podium podium 4378 259 0 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.168+00 2021-01-26 10:14:47.168+00 0 podium podium 4379 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.168+00 2021-01-26 10:14:47.168+00 0 podium podium 4380 34 , com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.169+00 2021-01-26 10:14:47.169+00 0 podium podium 4381 154 false com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.169+00 2021-01-26 10:14:47.169+00 0 podium podium 4382 32 262144 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.17+00 2021-01-26 10:14:47.17+00 0 podium podium 4383 20 0 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.17+00 2021-01-26 10:14:47.17+00 0 podium podium 4384 152 0 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.17+00 2021-01-26 10:14:47.17+00 0 podium podium 4385 114 Snapshot com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.171+00 2021-01-26 10:14:47.171+00 0 podium podium 4386 258 0 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.171+00 2021-01-26 10:14:47.171+00 0 podium podium 4387 24 false com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.172+00 2021-01-26 10:14:47.172+00 0 podium podium 4388 293 \N com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.172+00 2021-01-26 10:14:47.172+00 0 podium podium 4389 5 SELECT `CategoryID`,`Picture`,`CategoryName`,`Description`,`categoriescol` FROM `sales-errors`.`categories` com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.173+00 2021-01-26 10:14:47.173+00 0 podium podium 4390 27 UTF_8 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.173+00 2021-01-26 10:14:47.173+00 0 podium podium 4391 28 0.00 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.174+00 2021-01-26 10:14:47.174+00 0 podium podium 4392 77 \N com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.174+00 2021-01-26 10:14:47.174+00 0 podium podium 4393 13 1 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.175+00 2021-01-26 10:14:47.175+00 0 podium podium 4394 17 false com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.175+00 2021-01-26 10:14:47.175+00 0 podium podium 4395 18 "CategoryID","Picture","CategoryName","Description","categoriescol"\\r\\n com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.175+00 2021-01-26 10:14:47.175+00 0 podium podium 4396 14 false com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.176+00 2021-01-26 10:14:47.176+00 0 podium podium 4397 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.176+00 2021-01-26 10:14:47.176+00 0 podium podium 4398 92 0 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.177+00 2021-01-26 10:14:47.177+00 0 podium podium 4399 35 false com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.177+00 2021-01-26 10:14:47.177+00 0 podium podium 4400 37 " com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.178+00 2021-01-26 10:14:47.178+00 0 podium podium 4401 320 0 com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.178+00 2021-01-26 10:14:47.178+00 0 podium podium 4402 94 categories com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.179+00 2021-01-26 10:14:47.179+00 0 podium podium 4403 33 \\r\\n com.nvs.core.model.meta.DataEntity 46 2021-01-26 10:14:47.179+00 2021-01-26 10:14:47.179+00 0 podium podium 4404 92 0 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.211+00 2021-01-26 10:14:47.211+00 0 podium podium 4405 94 employees com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.212+00 2021-01-26 10:14:47.212+00 0 podium podium 4406 37 " com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.212+00 2021-01-26 10:14:47.212+00 0 podium podium 4407 155 true com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.213+00 2021-01-26 10:14:47.213+00 0 podium podium 4408 32 262144 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.213+00 2021-01-26 10:14:47.213+00 0 podium podium 4409 77 \N com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.213+00 2021-01-26 10:14:47.213+00 0 podium podium 4410 114 Snapshot com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.214+00 2021-01-26 10:14:47.214+00 0 podium podium 4411 153 0 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.214+00 2021-01-26 10:14:47.214+00 0 podium podium 4412 154 false com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.215+00 2021-01-26 10:14:47.215+00 0 podium podium 4413 12 0 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.215+00 2021-01-26 10:14:47.215+00 0 podium podium 4414 21 0 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.216+00 2021-01-26 10:14:47.216+00 0 podium podium 4415 31 1 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.216+00 2021-01-26 10:14:47.216+00 0 podium podium 4416 27 UTF_8 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.217+00 2021-01-26 10:14:47.217+00 0 podium podium 4417 35 false com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.217+00 2021-01-26 10:14:47.217+00 0 podium podium 4418 288 \N com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.217+00 2021-01-26 10:14:47.217+00 0 podium podium 4419 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.218+00 2021-01-26 10:14:47.218+00 0 podium podium 4420 258 0 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.219+00 2021-01-26 10:14:47.219+00 0 podium podium 4421 38 " com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.219+00 2021-01-26 10:14:47.219+00 0 podium podium 4422 28 0.00 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.22+00 2021-01-26 10:14:47.22+00 0 podium podium 4423 5 SELECT `EmployeeID`,`TitleOfCourtesy`,`Photo`,`LastName`,`FirstName`,`Title`,`BirthDate`,`HireDate`,`Address`,`City`,`Region`,`PostalCode`,`Country`,`HomePhone`,`Extension`,`Notes`,`ReportsTo` FROM `sales-errors`.`employees` com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.22+00 2021-01-26 10:14:47.22+00 0 podium podium 4424 152 0 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.221+00 2021-01-26 10:14:47.221+00 0 podium podium 4425 18 "EmployeeID","TitleOfCourtesy","Photo","LastName","FirstName","Title","BirthDate","HireDate","Address","City","Region","PostalCode","Country","HomePhone","Extension","Notes","ReportsTo"\\r\\n com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.221+00 2021-01-26 10:14:47.221+00 0 podium podium 4426 34 , com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.222+00 2021-01-26 10:14:47.222+00 0 podium podium 4427 293 \N com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.222+00 2021-01-26 10:14:47.222+00 0 podium podium 4428 33 \\r\\n com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.223+00 2021-01-26 10:14:47.223+00 0 podium podium 4429 24 false com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.223+00 2021-01-26 10:14:47.223+00 0 podium podium 4430 320 0 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.223+00 2021-01-26 10:14:47.223+00 0 podium podium 4431 14 false com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.224+00 2021-01-26 10:14:47.224+00 0 podium podium 4432 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.224+00 2021-01-26 10:14:47.224+00 0 podium podium 4433 202 MANAGED com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.225+00 2021-01-26 10:14:47.225+00 0 podium podium 4434 259 0 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.225+00 2021-01-26 10:14:47.225+00 0 podium podium 4435 156 true com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.226+00 2021-01-26 10:14:47.226+00 0 podium podium 4436 17 false com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.226+00 2021-01-26 10:14:47.226+00 0 podium podium 4437 13 1 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.227+00 2021-01-26 10:14:47.227+00 0 podium podium 4438 20 0 com.nvs.core.model.meta.DataEntity 51 2021-01-26 10:14:47.227+00 2021-01-26 10:14:47.227+00 0 podium podium 4439 77 \N com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.26+00 2021-01-26 10:14:47.26+00 0 podium podium 4440 28 0.00 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.261+00 2021-01-26 10:14:47.261+00 0 podium podium 4441 14 false com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.261+00 2021-01-26 10:14:47.261+00 0 podium podium 4442 32 262144 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.262+00 2021-01-26 10:14:47.262+00 0 podium podium 4443 13 1 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.262+00 2021-01-26 10:14:47.262+00 0 podium podium 4444 152 0 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.263+00 2021-01-26 10:14:47.263+00 0 podium podium 4445 259 0 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.263+00 2021-01-26 10:14:47.263+00 0 podium podium 4446 153 0 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.264+00 2021-01-26 10:14:47.264+00 0 podium podium 4447 5 SELECT `odID`,`OrderID`,`ProductID`,`UnitPrice`,`Quantity`,`Discount`,`Category` FROM `sales-errors`.`order_details` com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.264+00 2021-01-26 10:14:47.264+00 0 podium podium 4448 21 0 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.265+00 2021-01-26 10:14:47.265+00 0 podium podium 4449 18 "odID","OrderID","ProductID","UnitPrice","Quantity","Discount","Category"\\r\\n com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.265+00 2021-01-26 10:14:47.265+00 0 podium podium 4450 31 1 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.266+00 2021-01-26 10:14:47.266+00 0 podium podium 4451 34 , com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.266+00 2021-01-26 10:14:47.266+00 0 podium podium 4452 35 false com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.267+00 2021-01-26 10:14:47.267+00 0 podium podium 4453 37 " com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.267+00 2021-01-26 10:14:47.267+00 0 podium podium 4454 114 Snapshot com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.268+00 2021-01-26 10:14:47.268+00 0 podium podium 4455 154 false com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.268+00 2021-01-26 10:14:47.268+00 0 podium podium 4456 293 \N com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.269+00 2021-01-26 10:14:47.269+00 0 podium podium 4457 155 true com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.269+00 2021-01-26 10:14:47.269+00 0 podium podium 4458 258 0 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.27+00 2021-01-26 10:14:47.27+00 0 podium podium 4459 27 UTF_8 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.27+00 2021-01-26 10:14:47.27+00 0 podium podium 4460 288 \N com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.271+00 2021-01-26 10:14:47.271+00 0 podium podium 4461 320 0 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.271+00 2021-01-26 10:14:47.271+00 0 podium podium 4462 12 0 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.272+00 2021-01-26 10:14:47.272+00 0 podium podium 4463 38 " com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.272+00 2021-01-26 10:14:47.272+00 0 podium podium 4464 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.272+00 2021-01-26 10:14:47.272+00 0 podium podium 4465 17 false com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.273+00 2021-01-26 10:14:47.273+00 0 podium podium 4466 20 0 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.273+00 2021-01-26 10:14:47.273+00 0 podium podium 4467 156 true com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.274+00 2021-01-26 10:14:47.274+00 0 podium podium 4468 94 order_details com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.274+00 2021-01-26 10:14:47.274+00 0 podium podium 4469 92 0 com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.275+00 2021-01-26 10:14:47.275+00 0 podium podium 4470 33 \\r\\n com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.275+00 2021-01-26 10:14:47.275+00 0 podium podium 4471 24 false com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.276+00 2021-01-26 10:14:47.276+00 0 podium podium 4472 202 MANAGED com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.276+00 2021-01-26 10:14:47.276+00 0 podium podium 4473 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 47 2021-01-26 10:14:47.277+00 2021-01-26 10:14:47.277+00 0 podium podium 4474 27 UTF_8 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.308+00 2021-01-26 10:14:47.308+00 0 podium podium 4475 13 1 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.309+00 2021-01-26 10:14:47.309+00 0 podium podium 4476 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.309+00 2021-01-26 10:14:47.309+00 0 podium podium 4477 155 true com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.31+00 2021-01-26 10:14:47.31+00 0 podium podium 4478 293 \N com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.31+00 2021-01-26 10:14:47.31+00 0 podium podium 4479 28 0.00 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.311+00 2021-01-26 10:14:47.311+00 0 podium podium 4480 320 0 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.311+00 2021-01-26 10:14:47.311+00 0 podium podium 4481 21 0 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.312+00 2021-01-26 10:14:47.312+00 0 podium podium 4482 156 true com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.312+00 2021-01-26 10:14:47.312+00 0 podium podium 4483 17 false com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.312+00 2021-01-26 10:14:47.312+00 0 podium podium 4484 14 false com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.313+00 2021-01-26 10:14:47.313+00 0 podium podium 4485 33 \\r\\n com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.313+00 2021-01-26 10:14:47.313+00 0 podium podium 4486 37 " com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.314+00 2021-01-26 10:14:47.314+00 0 podium podium 4487 5 SELECT `ProductID`,`ProductName`,`SupplierID`,`CategoryID`,`QuantityPerUnit`,`UnitPrice`,`UnitsInStock`,`UnitsOnOrder`,`ReorderLevel`,`Discontinued` FROM `sales-errors`.`products` com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.314+00 2021-01-26 10:14:47.314+00 0 podium podium 4488 31 1 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.315+00 2021-01-26 10:14:47.315+00 0 podium podium 4489 259 0 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.315+00 2021-01-26 10:14:47.315+00 0 podium podium 4490 32 262144 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.316+00 2021-01-26 10:14:47.316+00 0 podium podium 4491 92 0 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.316+00 2021-01-26 10:14:47.316+00 0 podium podium 4492 94 products com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.317+00 2021-01-26 10:14:47.317+00 0 podium podium 4493 12 0 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.317+00 2021-01-26 10:14:47.317+00 0 podium podium 4494 114 Snapshot com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.318+00 2021-01-26 10:14:47.318+00 0 podium podium 4495 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.318+00 2021-01-26 10:14:47.318+00 0 podium podium 4496 258 0 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.318+00 2021-01-26 10:14:47.318+00 0 podium podium 4497 18 "ProductID","ProductName","SupplierID","CategoryID","QuantityPerUnit","UnitPrice","UnitsInStock","UnitsOnOrder","ReorderLevel","Discontinued"\\r\\n com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.319+00 2021-01-26 10:14:47.319+00 0 podium podium 4498 77 \N com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.319+00 2021-01-26 10:14:47.319+00 0 podium podium 4499 34 , com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.32+00 2021-01-26 10:14:47.32+00 0 podium podium 4500 152 0 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.32+00 2021-01-26 10:14:47.32+00 0 podium podium 4501 153 0 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.321+00 2021-01-26 10:14:47.321+00 0 podium podium 4502 288 \N com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.321+00 2021-01-26 10:14:47.321+00 0 podium podium 4503 202 MANAGED com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.322+00 2021-01-26 10:14:47.322+00 0 podium podium 4504 24 false com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.322+00 2021-01-26 10:14:47.322+00 0 podium podium 4505 35 false com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.323+00 2021-01-26 10:14:47.323+00 0 podium podium 4506 154 false com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.323+00 2021-01-26 10:14:47.323+00 0 podium podium 4507 20 0 com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.324+00 2021-01-26 10:14:47.324+00 0 podium podium 4508 38 " com.nvs.core.model.meta.DataEntity 48 2021-01-26 10:14:47.324+00 2021-01-26 10:14:47.324+00 0 podium podium 4509 155 true com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.384+00 2021-01-26 10:14:47.384+00 0 podium podium 4510 94 suppliers com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.385+00 2021-01-26 10:14:47.385+00 0 podium podium 4511 259 0 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.385+00 2021-01-26 10:14:47.385+00 0 podium podium 4512 32 262144 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.386+00 2021-01-26 10:14:47.386+00 0 podium podium 4513 38 " com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.386+00 2021-01-26 10:14:47.386+00 0 podium podium 4514 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.387+00 2021-01-26 10:14:47.387+00 0 podium podium 4515 92 0 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.387+00 2021-01-26 10:14:47.387+00 0 podium podium 4516 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.388+00 2021-01-26 10:14:47.388+00 0 podium podium 4517 152 0 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.388+00 2021-01-26 10:14:47.388+00 0 podium podium 4518 18 "SupplierID","CompanyName","ContactName","ContactTitle","Address","City","Region","PostalCode","Country","Phone","Fax","HomePage"\\r\\n com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.389+00 2021-01-26 10:14:47.389+00 0 podium podium 4519 14 false com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.389+00 2021-01-26 10:14:47.389+00 0 podium podium 4520 77 \N com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.39+00 2021-01-26 10:14:47.39+00 0 podium podium 4521 156 true com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.39+00 2021-01-26 10:14:47.39+00 0 podium podium 4522 31 1 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.391+00 2021-01-26 10:14:47.391+00 0 podium podium 4523 293 \N com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.391+00 2021-01-26 10:14:47.391+00 0 podium podium 4524 24 false com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.392+00 2021-01-26 10:14:47.392+00 0 podium podium 4525 37 " com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.393+00 2021-01-26 10:14:47.393+00 0 podium podium 4526 28 0.00 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.393+00 2021-01-26 10:14:47.393+00 0 podium podium 4527 320 0 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.394+00 2021-01-26 10:14:47.394+00 0 podium podium 4528 33 \\r\\n com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.394+00 2021-01-26 10:14:47.394+00 0 podium podium 4529 21 0 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.395+00 2021-01-26 10:14:47.395+00 0 podium podium 4530 20 0 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.395+00 2021-01-26 10:14:47.395+00 0 podium podium 4531 12 0 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.396+00 2021-01-26 10:14:47.396+00 0 podium podium 4532 27 UTF_8 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.396+00 2021-01-26 10:14:47.396+00 0 podium podium 4533 153 0 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.397+00 2021-01-26 10:14:47.397+00 0 podium podium 4534 288 \N com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.397+00 2021-01-26 10:14:47.397+00 0 podium podium 4535 35 false com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.398+00 2021-01-26 10:14:47.398+00 0 podium podium 4536 154 false com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.398+00 2021-01-26 10:14:47.398+00 0 podium podium 4537 17 false com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.399+00 2021-01-26 10:14:47.399+00 0 podium podium 4538 5 SELECT `SupplierID`,`CompanyName`,`ContactName`,`ContactTitle`,`Address`,`City`,`Region`,`PostalCode`,`Country`,`Phone`,`Fax`,`HomePage` FROM `sales`.`suppliers` com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.399+00 2021-01-26 10:14:47.399+00 0 podium podium 4539 34 , com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.4+00 2021-01-26 10:14:47.4+00 0 podium podium 4540 114 Snapshot com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.4+00 2021-01-26 10:14:47.4+00 0 podium podium 4541 258 0 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.401+00 2021-01-26 10:14:47.401+00 0 podium podium 4542 202 MANAGED com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.401+00 2021-01-26 10:14:47.401+00 0 podium podium 4543 13 1 com.nvs.core.model.meta.DataEntity 36 2021-01-26 10:14:47.402+00 2021-01-26 10:14:47.402+00 0 podium podium 4544 154 false com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.438+00 2021-01-26 10:14:47.438+00 0 podium podium 4545 92 0 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.439+00 2021-01-26 10:14:47.439+00 0 podium podium 4546 38 " com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.439+00 2021-01-26 10:14:47.439+00 0 podium podium 4547 34 , com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.439+00 2021-01-26 10:14:47.439+00 0 podium podium 4548 17 false com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.44+00 2021-01-26 10:14:47.44+00 0 podium podium 4549 20 0 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.44+00 2021-01-26 10:14:47.44+00 0 podium podium 4550 14 false com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.441+00 2021-01-26 10:14:47.441+00 0 podium podium 4551 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.441+00 2021-01-26 10:14:47.441+00 0 podium podium 4552 18 "ShipperID","CompanyName","Phone"\\r\\n com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.442+00 2021-01-26 10:14:47.442+00 0 podium podium 4553 12 0 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.442+00 2021-01-26 10:14:47.442+00 0 podium podium 4554 33 \\r\\n com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.443+00 2021-01-26 10:14:47.443+00 0 podium podium 4555 320 0 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.443+00 2021-01-26 10:14:47.443+00 0 podium podium 4556 24 false com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.443+00 2021-01-26 10:14:47.443+00 0 podium podium 4557 293 \N com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.444+00 2021-01-26 10:14:47.444+00 0 podium podium 4558 153 0 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.444+00 2021-01-26 10:14:47.444+00 0 podium podium 4559 155 true com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.445+00 2021-01-26 10:14:47.445+00 0 podium podium 4560 35 false com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.445+00 2021-01-26 10:14:47.445+00 0 podium podium 4561 31 1 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.446+00 2021-01-26 10:14:47.446+00 0 podium podium 4562 21 0 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.446+00 2021-01-26 10:14:47.446+00 0 podium podium 4563 77 \N com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.446+00 2021-01-26 10:14:47.446+00 0 podium podium 4564 156 true com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.447+00 2021-01-26 10:14:47.447+00 0 podium podium 4565 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.447+00 2021-01-26 10:14:47.447+00 0 podium podium 4566 152 0 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.448+00 2021-01-26 10:14:47.448+00 0 podium podium 4567 28 0.00 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.448+00 2021-01-26 10:14:47.448+00 0 podium podium 4568 202 MANAGED com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.449+00 2021-01-26 10:14:47.449+00 0 podium podium 4569 288 \N com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.449+00 2021-01-26 10:14:47.449+00 0 podium podium 4626 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.538+00 2021-01-26 10:14:47.538+00 0 podium podium 4570 5 SELECT `ShipperID`,`CompanyName`,`Phone` FROM `sales`.`shippers` com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.45+00 2021-01-26 10:14:47.45+00 0 podium podium 4571 94 shippers com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.45+00 2021-01-26 10:14:47.45+00 0 podium podium 4572 258 0 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.45+00 2021-01-26 10:14:47.45+00 0 podium podium 4573 114 Snapshot com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.451+00 2021-01-26 10:14:47.451+00 0 podium podium 4574 32 262144 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.451+00 2021-01-26 10:14:47.451+00 0 podium podium 4575 27 UTF_8 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.452+00 2021-01-26 10:14:47.452+00 0 podium podium 4576 259 0 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.452+00 2021-01-26 10:14:47.452+00 0 podium podium 4577 37 " com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.453+00 2021-01-26 10:14:47.453+00 0 podium podium 4578 13 1 com.nvs.core.model.meta.DataEntity 32 2021-01-26 10:14:47.453+00 2021-01-26 10:14:47.453+00 0 podium podium 4579 92 0 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.483+00 2021-01-26 10:14:47.483+00 0 podium podium 4580 34 , com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.484+00 2021-01-26 10:14:47.484+00 0 podium podium 4581 156 true com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.484+00 2021-01-26 10:14:47.484+00 0 podium podium 4582 258 0 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.484+00 2021-01-26 10:14:47.484+00 0 podium podium 4583 293 \N com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.485+00 2021-01-26 10:14:47.485+00 0 podium podium 4584 14 false com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.485+00 2021-01-26 10:14:47.485+00 0 podium podium 4585 13 1 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.486+00 2021-01-26 10:14:47.486+00 0 podium podium 4586 12 0 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.486+00 2021-01-26 10:14:47.486+00 0 podium podium 4587 21 0 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.487+00 2021-01-26 10:14:47.487+00 0 podium podium 4588 154 false com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.487+00 2021-01-26 10:14:47.487+00 0 podium podium 4589 202 MANAGED com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.488+00 2021-01-26 10:14:47.488+00 0 podium podium 4590 5 SELECT `OrderID`,`CustomerID`,`EmployeeID`,`OrderDate`,`RequiredDate`,`ShippedDate`,`ShipVia`,`Freight`,`ShipName`,`ShipAddress`,`ShipCity`,`ShipRegion`,`ShipPostalCode`,`ShipCountry` FROM `sales`.`orders` com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.488+00 2021-01-26 10:14:47.488+00 0 podium podium 4591 38 " com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.488+00 2021-01-26 10:14:47.488+00 0 podium podium 4592 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.489+00 2021-01-26 10:14:47.489+00 0 podium podium 4593 153 0 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.49+00 2021-01-26 10:14:47.49+00 0 podium podium 4594 259 0 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.49+00 2021-01-26 10:14:47.49+00 0 podium podium 4595 32 262144 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.491+00 2021-01-26 10:14:47.491+00 0 podium podium 4596 320 0 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.491+00 2021-01-26 10:14:47.491+00 0 podium podium 4597 31 1 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.492+00 2021-01-26 10:14:47.492+00 0 podium podium 4598 28 0.00 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.492+00 2021-01-26 10:14:47.492+00 0 podium podium 4599 77 \N com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.493+00 2021-01-26 10:14:47.493+00 0 podium podium 4600 155 true com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.493+00 2021-01-26 10:14:47.493+00 0 podium podium 4601 17 false com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.494+00 2021-01-26 10:14:47.494+00 0 podium podium 4602 20 0 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.494+00 2021-01-26 10:14:47.494+00 0 podium podium 4603 37 " com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.495+00 2021-01-26 10:14:47.495+00 0 podium podium 4604 152 0 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.495+00 2021-01-26 10:14:47.495+00 0 podium podium 4605 35 false com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.496+00 2021-01-26 10:14:47.496+00 0 podium podium 4606 114 Snapshot com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.496+00 2021-01-26 10:14:47.496+00 0 podium podium 4607 288 \N com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.497+00 2021-01-26 10:14:47.497+00 0 podium podium 4608 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.497+00 2021-01-26 10:14:47.497+00 0 podium podium 4609 33 \\r\\n com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.498+00 2021-01-26 10:14:47.498+00 0 podium podium 4610 24 false com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.499+00 2021-01-26 10:14:47.499+00 0 podium podium 4611 94 orders com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.499+00 2021-01-26 10:14:47.499+00 0 podium podium 4612 27 UTF_8 com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.5+00 2021-01-26 10:14:47.5+00 0 podium podium 4613 18 "OrderID","CustomerID","EmployeeID","OrderDate","RequiredDate","ShippedDate","ShipVia","Freight","ShipName","ShipAddress","ShipCity","ShipRegion","ShipPostalCode","ShipCountry"\\r\\n com.nvs.core.model.meta.DataEntity 29 2021-01-26 10:14:47.5+00 2021-01-26 10:14:47.5+00 0 podium podium 4614 38 " com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.533+00 2021-01-26 10:14:47.533+00 0 podium podium 4615 35 false com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.533+00 2021-01-26 10:14:47.533+00 0 podium podium 4616 258 0 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.534+00 2021-01-26 10:14:47.534+00 0 podium podium 4617 34 , com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.534+00 2021-01-26 10:14:47.534+00 0 podium podium 4618 152 0 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.535+00 2021-01-26 10:14:47.535+00 0 podium podium 4619 37 " com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.535+00 2021-01-26 10:14:47.535+00 0 podium podium 4620 155 true com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.536+00 2021-01-26 10:14:47.536+00 0 podium podium 4621 77 \N com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.536+00 2021-01-26 10:14:47.536+00 0 podium podium 4622 202 MANAGED com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.536+00 2021-01-26 10:14:47.536+00 0 podium podium 4623 92 0 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.537+00 2021-01-26 10:14:47.537+00 0 podium podium 4624 31 1 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.537+00 2021-01-26 10:14:47.537+00 0 podium podium 4625 24 false com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.538+00 2021-01-26 10:14:47.538+00 0 podium podium 4627 114 Snapshot com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.539+00 2021-01-26 10:14:47.539+00 0 podium podium 4628 14 false com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.539+00 2021-01-26 10:14:47.539+00 0 podium podium 4629 21 0 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.54+00 2021-01-26 10:14:47.54+00 0 podium podium 4630 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.54+00 2021-01-26 10:14:47.54+00 0 podium podium 4631 32 262144 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.541+00 2021-01-26 10:14:47.541+00 0 podium podium 4632 288 \N com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.541+00 2021-01-26 10:14:47.541+00 0 podium podium 4633 27 UTF_8 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.542+00 2021-01-26 10:14:47.542+00 0 podium podium 4634 259 0 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.542+00 2021-01-26 10:14:47.542+00 0 podium podium 4635 18 "CustomerID","CompanyName","ContactName","ContactTitle","Address","City","Region","PostalCode","Country","Phone","Fax"\\r\\n com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.543+00 2021-01-26 10:14:47.543+00 0 podium podium 4636 28 0.00 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.543+00 2021-01-26 10:14:47.543+00 0 podium podium 4637 20 0 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.544+00 2021-01-26 10:14:47.544+00 0 podium podium 4638 13 1 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.544+00 2021-01-26 10:14:47.544+00 0 podium podium 4639 320 0 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.544+00 2021-01-26 10:14:47.544+00 0 podium podium 4640 17 false com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.545+00 2021-01-26 10:14:47.545+00 0 podium podium 4641 33 \\r\\n com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.545+00 2021-01-26 10:14:47.545+00 0 podium podium 4642 154 false com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.546+00 2021-01-26 10:14:47.546+00 0 podium podium 4643 12 0 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.546+00 2021-01-26 10:14:47.546+00 0 podium podium 4644 94 customers com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.547+00 2021-01-26 10:14:47.547+00 0 podium podium 4645 293 \N com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.547+00 2021-01-26 10:14:47.547+00 0 podium podium 4646 153 0 com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.548+00 2021-01-26 10:14:47.548+00 0 podium podium 4647 5 SELECT `CustomerID`,`CompanyName`,`ContactName`,`ContactTitle`,`Address`,`City`,`Region`,`PostalCode`,`Country`,`Phone`,`Fax` FROM `sales`.`customers` com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.548+00 2021-01-26 10:14:47.548+00 0 podium podium 4648 156 true com.nvs.core.model.meta.DataEntity 35 2021-01-26 10:14:47.549+00 2021-01-26 10:14:47.549+00 0 podium podium 4649 156 true com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.581+00 2021-01-26 10:14:47.581+00 0 podium podium 4650 152 0 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.582+00 2021-01-26 10:14:47.582+00 0 podium podium 4651 18 "CategoryID","Picture","CategoryName","Description","categoriescol"\\r\\n com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.582+00 2021-01-26 10:14:47.582+00 0 podium podium 4652 20 0 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.583+00 2021-01-26 10:14:47.583+00 0 podium podium 4653 155 true com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.584+00 2021-01-26 10:14:47.584+00 0 podium podium 4654 24 false com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.584+00 2021-01-26 10:14:47.584+00 0 podium podium 4655 154 false com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.585+00 2021-01-26 10:14:47.585+00 0 podium podium 4656 12 0 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.585+00 2021-01-26 10:14:47.585+00 0 podium podium 4657 28 0.00 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.586+00 2021-01-26 10:14:47.586+00 0 podium podium 4658 320 0 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.586+00 2021-01-26 10:14:47.586+00 0 podium podium 4659 37 " com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.587+00 2021-01-26 10:14:47.587+00 0 podium podium 4660 258 0 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.587+00 2021-01-26 10:14:47.587+00 0 podium podium 4661 293 \N com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.588+00 2021-01-26 10:14:47.588+00 0 podium podium 4662 27 UTF_8 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.588+00 2021-01-26 10:14:47.588+00 0 podium podium 4663 13 1 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.589+00 2021-01-26 10:14:47.589+00 0 podium podium 4664 202 MANAGED com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.589+00 2021-01-26 10:14:47.589+00 0 podium podium 4665 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.59+00 2021-01-26 10:14:47.59+00 0 podium podium 4666 114 Snapshot com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.59+00 2021-01-26 10:14:47.59+00 0 podium podium 4667 31 1 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.591+00 2021-01-26 10:14:47.591+00 0 podium podium 4668 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.591+00 2021-01-26 10:14:47.591+00 0 podium podium 4669 5 SELECT `CategoryID`,`Picture`,`CategoryName`,`Description`,`categoriescol` FROM `sales`.`categories` com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.592+00 2021-01-26 10:14:47.592+00 0 podium podium 4670 32 262144 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.592+00 2021-01-26 10:14:47.592+00 0 podium podium 4671 38 " com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.593+00 2021-01-26 10:14:47.593+00 0 podium podium 4672 33 \\r\\n com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.593+00 2021-01-26 10:14:47.593+00 0 podium podium 4673 259 0 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.594+00 2021-01-26 10:14:47.594+00 0 podium podium 4674 94 categories com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.595+00 2021-01-26 10:14:47.595+00 0 podium podium 4675 34 , com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.595+00 2021-01-26 10:14:47.595+00 0 podium podium 4676 17 false com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.596+00 2021-01-26 10:14:47.596+00 0 podium podium 4677 21 0 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.596+00 2021-01-26 10:14:47.596+00 0 podium podium 4678 153 0 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.597+00 2021-01-26 10:14:47.597+00 0 podium podium 4679 288 \N com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.597+00 2021-01-26 10:14:47.597+00 0 podium podium 4680 92 0 com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.598+00 2021-01-26 10:14:47.598+00 0 podium podium 4681 35 false com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.599+00 2021-01-26 10:14:47.599+00 0 podium podium 4682 77 \N com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.599+00 2021-01-26 10:14:47.599+00 0 podium podium 4683 14 false com.nvs.core.model.meta.DataEntity 34 2021-01-26 10:14:47.6+00 2021-01-26 10:14:47.6+00 0 podium podium 4684 288 \N com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.637+00 2021-01-26 10:14:47.637+00 0 podium podium 4685 154 false com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.637+00 2021-01-26 10:14:47.637+00 0 podium podium 4686 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.638+00 2021-01-26 10:14:47.638+00 0 podium podium 4687 259 0 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.638+00 2021-01-26 10:14:47.638+00 0 podium podium 4688 114 Snapshot com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.639+00 2021-01-26 10:14:47.639+00 0 podium podium 4689 24 false com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.639+00 2021-01-26 10:14:47.639+00 0 podium podium 4690 35 false com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.64+00 2021-01-26 10:14:47.64+00 0 podium podium 4691 28 0.00 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.641+00 2021-01-26 10:14:47.641+00 0 podium podium 4692 27 UTF_8 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.641+00 2021-01-26 10:14:47.641+00 0 podium podium 4693 12 0 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.642+00 2021-01-26 10:14:47.642+00 0 podium podium 4694 37 " com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.642+00 2021-01-26 10:14:47.642+00 0 podium podium 4695 5 SELECT `EmployeeID`,`TitleOfCourtesy`,`Photo`,`LastName`,`FirstName`,`Title`,`BirthDate`,`HireDate`,`Address`,`City`,`Region`,`PostalCode`,`Country`,`HomePhone`,`Extension`,`Notes`,`ReportsTo` FROM `sales`.`employees` com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.643+00 2021-01-26 10:14:47.643+00 0 podium podium 4696 320 0 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.643+00 2021-01-26 10:14:47.643+00 0 podium podium 4697 156 true com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.644+00 2021-01-26 10:14:47.644+00 0 podium podium 4698 20 0 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.644+00 2021-01-26 10:14:47.644+00 0 podium podium 4699 33 \\r\\n com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.645+00 2021-01-26 10:14:47.645+00 0 podium podium 4700 155 true com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.645+00 2021-01-26 10:14:47.645+00 0 podium podium 4701 13 1 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.646+00 2021-01-26 10:14:47.646+00 0 podium podium 4702 258 0 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.646+00 2021-01-26 10:14:47.646+00 0 podium podium 4703 293 \N com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.647+00 2021-01-26 10:14:47.647+00 0 podium podium 4704 18 "EmployeeID","TitleOfCourtesy","Photo","LastName","FirstName","Title","BirthDate","HireDate","Address","City","Region","PostalCode","Country","HomePhone","Extension","Notes","ReportsTo"\\r\\n com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.647+00 2021-01-26 10:14:47.647+00 0 podium podium 4705 153 0 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.648+00 2021-01-26 10:14:47.648+00 0 podium podium 4706 32 262144 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.648+00 2021-01-26 10:14:47.648+00 0 podium podium 4707 14 false com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.649+00 2021-01-26 10:14:47.649+00 0 podium podium 4708 21 0 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.649+00 2021-01-26 10:14:47.649+00 0 podium podium 4709 77 \N com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.65+00 2021-01-26 10:14:47.65+00 0 podium podium 4710 38 " com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.65+00 2021-01-26 10:14:47.65+00 0 podium podium 4711 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.651+00 2021-01-26 10:14:47.651+00 0 podium podium 4712 152 0 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.651+00 2021-01-26 10:14:47.651+00 0 podium podium 4713 31 1 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.652+00 2021-01-26 10:14:47.652+00 0 podium podium 4714 94 employees com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.653+00 2021-01-26 10:14:47.653+00 0 podium podium 4715 17 false com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.653+00 2021-01-26 10:14:47.653+00 0 podium podium 4716 92 0 com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.654+00 2021-01-26 10:14:47.654+00 0 podium podium 4717 202 MANAGED com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.654+00 2021-01-26 10:14:47.654+00 0 podium podium 4718 34 , com.nvs.core.model.meta.DataEntity 30 2021-01-26 10:14:47.655+00 2021-01-26 10:14:47.655+00 0 podium podium 4719 17 false com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.688+00 2021-01-26 10:14:47.688+00 0 podium podium 4720 27 UTF_8 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.688+00 2021-01-26 10:14:47.688+00 0 podium podium 4721 13 1 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.689+00 2021-01-26 10:14:47.689+00 0 podium podium 4722 293 \N com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.689+00 2021-01-26 10:14:47.689+00 0 podium podium 4723 92 0 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.69+00 2021-01-26 10:14:47.69+00 0 podium podium 4724 153 0 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.691+00 2021-01-26 10:14:47.691+00 0 podium podium 4725 152 0 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.691+00 2021-01-26 10:14:47.691+00 0 podium podium 4726 114 Snapshot com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.692+00 2021-01-26 10:14:47.692+00 0 podium podium 4727 18 "odID","OrderID","ProductID","UnitPrice","Quantity","Discount","Category"\\r\\n com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.692+00 2021-01-26 10:14:47.692+00 0 podium podium 4728 33 \\r\\n com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.693+00 2021-01-26 10:14:47.693+00 0 podium podium 4729 77 \N com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.693+00 2021-01-26 10:14:47.693+00 0 podium podium 4730 21 0 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.694+00 2021-01-26 10:14:47.694+00 0 podium podium 4731 14 false com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.695+00 2021-01-26 10:14:47.695+00 0 podium podium 4732 202 MANAGED com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.695+00 2021-01-26 10:14:47.695+00 0 podium podium 4733 31 1 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.696+00 2021-01-26 10:14:47.696+00 0 podium podium 4734 288 \N com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.696+00 2021-01-26 10:14:47.696+00 0 podium podium 4735 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.697+00 2021-01-26 10:14:47.697+00 0 podium podium 4736 259 0 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.697+00 2021-01-26 10:14:47.697+00 0 podium podium 4737 38 " com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.698+00 2021-01-26 10:14:47.698+00 0 podium podium 4738 5 SELECT `odID`,`OrderID`,`ProductID`,`UnitPrice`,`Quantity`,`Discount`,`Category` FROM `sales`.`order_details` com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.699+00 2021-01-26 10:14:47.699+00 0 podium podium 4739 37 " com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.699+00 2021-01-26 10:14:47.699+00 0 podium podium 4740 34 , com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.7+00 2021-01-26 10:14:47.7+00 0 podium podium 4741 12 0 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.7+00 2021-01-26 10:14:47.7+00 0 podium podium 4742 155 true com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.701+00 2021-01-26 10:14:47.701+00 0 podium podium 4743 28 0.00 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.701+00 2021-01-26 10:14:47.701+00 0 podium podium 4744 156 true com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.702+00 2021-01-26 10:14:47.702+00 0 podium podium 4745 320 0 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.703+00 2021-01-26 10:14:47.703+00 0 podium podium 4746 24 false com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.703+00 2021-01-26 10:14:47.703+00 0 podium podium 4747 154 false com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.704+00 2021-01-26 10:14:47.704+00 0 podium podium 4748 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.704+00 2021-01-26 10:14:47.704+00 0 podium podium 4749 258 0 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.705+00 2021-01-26 10:14:47.705+00 0 podium podium 4750 32 262144 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.706+00 2021-01-26 10:14:47.706+00 0 podium podium 4751 20 0 com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.706+00 2021-01-26 10:14:47.706+00 0 podium podium 4752 94 order_details com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.707+00 2021-01-26 10:14:47.707+00 0 podium podium 4753 35 false com.nvs.core.model.meta.DataEntity 31 2021-01-26 10:14:47.707+00 2021-01-26 10:14:47.707+00 0 podium podium 4754 94 products com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.742+00 2021-01-26 10:14:47.742+00 0 podium podium 4755 259 0 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.743+00 2021-01-26 10:14:47.743+00 0 podium podium 4756 14 false com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.744+00 2021-01-26 10:14:47.744+00 0 podium podium 4757 155 true com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.744+00 2021-01-26 10:14:47.744+00 0 podium podium 4758 258 0 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.745+00 2021-01-26 10:14:47.745+00 0 podium podium 4759 154 false com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.745+00 2021-01-26 10:14:47.745+00 0 podium podium 4760 33 \\r\\n com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.746+00 2021-01-26 10:14:47.746+00 0 podium podium 4761 32 262144 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.746+00 2021-01-26 10:14:47.746+00 0 podium podium 4762 20 0 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.747+00 2021-01-26 10:14:47.747+00 0 podium podium 4763 37 " com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.747+00 2021-01-26 10:14:47.747+00 0 podium podium 4764 13 1 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.748+00 2021-01-26 10:14:47.748+00 0 podium podium 4765 288 \N com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.748+00 2021-01-26 10:14:47.748+00 0 podium podium 4766 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.749+00 2021-01-26 10:14:47.749+00 0 podium podium 4767 5 SELECT `ProductID`,`ProductName`,`SupplierID`,`CategoryID`,`QuantityPerUnit`,`UnitPrice`,`UnitsInStock`,`UnitsOnOrder`,`ReorderLevel`,`Discontinued` FROM `sales`.`products` com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.749+00 2021-01-26 10:14:47.749+00 0 podium podium 4768 114 Snapshot com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.75+00 2021-01-26 10:14:47.75+00 0 podium podium 4769 202 MANAGED com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.75+00 2021-01-26 10:14:47.75+00 0 podium podium 4770 153 0 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.751+00 2021-01-26 10:14:47.751+00 0 podium podium 4771 156 true com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.751+00 2021-01-26 10:14:47.751+00 0 podium podium 4772 293 \N com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.752+00 2021-01-26 10:14:47.752+00 0 podium podium 4773 27 UTF_8 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.752+00 2021-01-26 10:14:47.752+00 0 podium podium 4774 12 0 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.753+00 2021-01-26 10:14:47.753+00 0 podium podium 4775 320 0 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.753+00 2021-01-26 10:14:47.753+00 0 podium podium 4776 28 0.00 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.754+00 2021-01-26 10:14:47.754+00 0 podium podium 4777 31 1 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.754+00 2021-01-26 10:14:47.754+00 0 podium podium 4778 77 \N com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.755+00 2021-01-26 10:14:47.755+00 0 podium podium 4779 38 " com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.755+00 2021-01-26 10:14:47.755+00 0 podium podium 4780 18 "ProductID","ProductName","SupplierID","CategoryID","QuantityPerUnit","UnitPrice","UnitsInStock","UnitsOnOrder","ReorderLevel","Discontinued"\\r\\n com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.756+00 2021-01-26 10:14:47.756+00 0 podium podium 4781 34 , com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.756+00 2021-01-26 10:14:47.756+00 0 podium podium 4782 17 false com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.757+00 2021-01-26 10:14:47.757+00 0 podium podium 4783 152 0 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.757+00 2021-01-26 10:14:47.757+00 0 podium podium 4784 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.758+00 2021-01-26 10:14:47.758+00 0 podium podium 4785 21 0 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.759+00 2021-01-26 10:14:47.759+00 0 podium podium 4786 24 false com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.759+00 2021-01-26 10:14:47.759+00 0 podium podium 4787 35 false com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.76+00 2021-01-26 10:14:47.76+00 0 podium podium 4788 92 0 com.nvs.core.model.meta.DataEntity 33 2021-01-26 10:14:47.76+00 2021-01-26 10:14:47.76+00 0 podium podium 6712 294 {"79":{"bad":0,"expected":0,"ugly":0,"chaffed":0,"good":2473,"sample":35}} com.nvs.core.model.PrepareExecutionWorkOrder 7 2021-01-27 11:15:23.609+00 2021-01-27 11:15:23.609+00 0 ANONYMOUS ANONYMOUS 7008 5 SELECT `officeCode`,`city`,`phone`,`addressLine1`,`addressLine2`,`state`,`country`,`postalCode`,`territory`,`officeLocation` FROM `classic-models-errors`.`offices` com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.341+00 2021-01-28 10:28:37.341+00 0 podium podium 7009 17 false com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.342+00 2021-01-28 10:28:37.342+00 0 podium podium 7010 38 " com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.342+00 2021-01-28 10:28:37.342+00 0 podium podium 7011 259 0 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.343+00 2021-01-28 10:28:37.343+00 0 podium podium 7012 20 0 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.343+00 2021-01-28 10:28:37.343+00 0 podium podium 7013 77 \N com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.344+00 2021-01-28 10:28:37.344+00 0 podium podium 7014 114 Snapshot com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.344+00 2021-01-28 10:28:37.344+00 0 podium podium 7015 94 offices com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.345+00 2021-01-28 10:28:37.345+00 0 podium podium 7016 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.345+00 2021-01-28 10:28:37.345+00 0 podium podium 7017 24 false com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.346+00 2021-01-28 10:28:37.346+00 0 podium podium 7018 288 \N com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.346+00 2021-01-28 10:28:37.346+00 0 podium podium 7019 12 0 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.347+00 2021-01-28 10:28:37.347+00 0 podium podium 7020 13 1 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.347+00 2021-01-28 10:28:37.347+00 0 podium podium 7021 14 false com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.348+00 2021-01-28 10:28:37.348+00 0 podium podium 7022 34 , com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.348+00 2021-01-28 10:28:37.348+00 0 podium podium 7023 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.349+00 2021-01-28 10:28:37.349+00 0 podium podium 7024 27 UTF_8 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.349+00 2021-01-28 10:28:37.349+00 0 podium podium 7025 92 0 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.35+00 2021-01-28 10:28:37.35+00 0 podium podium 6431 277 true com.nvs.core.model.prepare.Bundle 3000 2021-01-26 10:41:47.242+00 2021-01-26 10:41:47.242+00 0 podium podium 6432 277 true com.nvs.core.model.PrepareExecutionWorkOrder 1 2021-01-26 10:42:03.383+00 2021-01-26 10:42:03.383+00 0 podium podium 6433 253 false com.nvs.core.model.PrepareExecutionWorkOrder 1 2021-01-26 10:42:03.388+00 2021-01-26 10:42:03.388+00 0 podium podium 6434 127 LOCAL com.nvs.core.model.PrepareExecutionWorkOrder 1 2021-01-26 10:42:03.394+00 2021-01-26 10:42:03.394+00 0 podium podium 6435 166 UNCOMPRESSED com.nvs.core.model.PrepareExecutionWorkOrder 1 2021-01-26 10:42:29.386+00 2021-01-26 10:42:29.386+00 0 ANONYMOUS ANONYMOUS 6436 128 73 com.nvs.core.model.PrepareExecutionWorkOrder 1 2021-01-26 10:42:29.45+00 2021-01-26 10:42:29.45+00 0 ANONYMOUS ANONYMOUS 6437 129 75 com.nvs.core.model.PrepareExecutionWorkOrder 1 2021-01-26 10:42:29.504+00 2021-01-26 10:42:29.504+00 0 ANONYMOUS ANONYMOUS 6438 266 {"mapreduce.jobtracker.address":"local","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","ipc.client.connection.maxidletime":"10000","mapreduce.cluster.acls.enabled":"false","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","mapreduce.job.ubertask.maxmaps":"9","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","yarn.nodemanager.container-manager.thread-count":"20","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","fs.s3a.metadatastore.authoritative":"false","mapreduce.app-submission.cross-platform":"false","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.markreset.buffer.percent":"0.0","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","mapreduce.job.ubertask.enable":"false","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.am.max-attempts":"2","mapreduce.jobtracker.heartbeats.in.second":"100","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.security.instrumentation.requires.admin":"false","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.registry.zk.retry.ceiling.ms":"60000","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","yarn.app.mapreduce.client.job.max-retries":"3","mapreduce.jobhistory.cleaner.enable":"true","fs.s3a.s3guard.ddb.table.capacity.write":"100","ha.failover-controller.graceful-fence.connection.retries":"1","mapreduce.tasktracker.http.address":"0.0.0.0:50060","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","fs.s3a.max.total.tasks":"5","mapreduce.reduce.maxattempts":"4","mapreduce.client.submit.file.replication":"10","mapreduce.shuffle.port":"13562","yarn.resourcemanager.resource-tracker.client.thread-count":"50","yarn.fail-fast":"false","yarn.nodemanager.delete.thread-count":"4","fs.hdfs.impl.disable.cache":"true","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","s3native.client-write-packet-size":"65536","file.bytes-per-checksum":"512","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","mapreduce.jobtracker.taskcache.levels":"2","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.job.jvm.numtasks":"1","mapreduce.jobtracker.tasktracker.maxblacklists":"4","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.security.group.mapping.ldap.search.attr.member":"member","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","hadoop.security.credential.clear-text-fallback":"true","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","ha.failover-controller.new-active.rpc-timeout.ms":"60000","mapreduce.map.memory.mb":"-1","hadoop.ssl.hostname.verifier":"DEFAULT","mapreduce.tasktracker.healthchecker.interval":"60000","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","s3native.blocksize":"67108864","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","hadoop.registry.zk.retry.times":"5","mapreduce.job.running.reduce.limit":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.task.io.sort.factor":"10","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.s3a.paging.maximum":"5000","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","hadoop.shell.missing.defaultFs.warning":"true","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","fs.s3a.s3guard.ddb.background.sleep":"25","mapreduce.tasktracker.http.threads":"40","mapreduce.tasktracker.dns.nameserver":"default","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.job.maxtaskfailures.per.tracker":"3","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","mapreduce.shuffle.max.connections":"0","mapreduce.jobhistory.loadedjobs.cache.size":"5","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","mapreduce.client.output.filter":"FAILED","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","mapreduce.jobtracker.persist.jobstatus.hours":"1","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","mapreduce.job.speculative.retry-after-no-speculate":"1000","fs.s3a.attempts.maximum":"20","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","mapreduce.task.io.sort.mb":"100","yarn.app.mapreduce.client-am.ipc.max-retries":"3","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","adl.http.timeout":"5000","mapreduce.job.speculative.retry-after-speculate":"15000","mapreduce.jobtracker.restart.recover":"false","ipc.client.connect.max.retries":"10","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.security.kms.client.timeout":"60","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","yarn.resourcemanager.ha.automatic-failover.embedded":"true","hadoop.security.kms.client.failover.sleep.base.millis":"100","mapreduce.job.heap.memory-mb.ratio":"0.8","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","mapreduce.task.exit.timeout.check-interval-ms":"20000","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","yarn.resourcemanager.keytab":"/etc/krb5.keytab","mapreduce.map.log.level":"INFO","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","mapreduce.tasktracker.local.dir.minspacestart":"0","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","ha.health-monitor.check-interval.ms":"1000","mapreduce.reduce.shuffle.merge.percent":"0.66","ipc.client.connect.timeout":"20000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","yarn.nodemanager.recovery.enabled":"false","io.native.lib.available":"true","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","mapreduce.job.running.map.limit":"0","mapreduce.reduce.input.buffer.percent":"0.0","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","yarn.app.attempt.diagnostics.limit.kc":"64","hadoop.security.group.mapping.ldap.ssl":"false","fs.defaultFS":"file:///","fs.s3a.multipart.size":"64M","yarn.app.mapreduce.am.job.committer.commit-window":"10000","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.ifile.readahead":"true","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","s3native.replication":"3","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","fs.s3a.s3guard.ddb.table.create":"false","yarn.nodemanager.health-checker.interval-ms":"600000","s3.stream-buffer-size":"4096","ftp.client-write-packet-size":"65536","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","yarn.timeline-service.keytab":"/etc/krb5.keytab","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","ha.zookeeper.session-timeout.ms":"5000","fs.s3a.connection.ssl.enabled":"true","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","ipc.server.max.connections":"0","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.app.mapreduce.am.resource.mb":"1536","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","hadoop.security.groups.cache.secs":"300","mapreduce.job.speculative.minimum-allowed-tasks":"10","yarn.nodemanager.container-monitor.interval-ms":"3000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","s3.client-write-packet-size":"65536","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","mapreduce.job.reduces":"1","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","mapreduce.job.acl-modify-job":" ","hadoop.registry.zk.session.timeout.ms":"60000","fs.automatic.close":"true","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","fs.s3.block.size":"67108864","hadoop.http.authentication.token.validity":"36000","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.tasktracker.local.dir.minspacekill":"0","mapreduce.jobhistory.cleaner.interval-ms":"86400000","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","mapreduce.jobtracker.http.address":"0.0.0.0:50030","yarn.nodemanager.recovery.compaction-interval-secs":"3600","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","mapreduce.tasktracker.report.address":"127.0.0.1:0","hadoop.kerberos.kinit.command":"kinit","yarn.timeline-service.http-authentication.type":"simple","yarn.log-aggregation.retain-seconds":"-1","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","ipc.client.connect.max.retries.on.timeouts":"45","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","io.file.buffer.size":"4096","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","io.mapfile.bloom.size":"1048576","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","ipc.client.connect.retry.interval":"1000","hadoop.security.kms.client.authentication.retry-count":"1","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","yarn.app.mapreduce.shuffle.log.backups":"0","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","ftp.blocksize":"67108864","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","yarn.resourcemanager.scheduler.monitor.enable":"false","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","hadoop.http.authentication.simple.anonymous.allowed":"true","yarn.client.nodemanager-connect.retry-interval-ms":"10000","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","mapreduce.task.files.preserve.failedtasks":"false","mapreduce.job.reduce.slowstart.completedmaps":"0.05","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.jobhistory.minicluster.fixed.ports":"false","file.replication":"1","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","io.mapfile.bloom.error.rate":"0.005","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","mapreduce.map.cpu.vcores":"1","yarn.resourcemanager.zk-retry-interval-ms":"1000","ftp.bytes-per-checksum":"512","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.pmem-check-enabled":"true","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","fs.s3a.s3guard.cli.prune.age":"86400000","hadoop.registry.zk.root":"/registry","hadoop.jetty.logs.serve.aliases":"true","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","mapreduce.reduce.merge.inmem.threshold":"1000","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","mapreduce.job.token.tracking.ids.enabled":"false","yarn.nodemanager.localizer.client.thread-count":"5","hadoop.security.kms.client.failover.sleep.max.millis":"2000","mapreduce.jobhistory.move.thread-count":"3","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","rpc.metrics.quantile.enable":"false","mapreduce.jobtracker.expire.trackers.interval":"600000","io.bytes.per.checksum":"512","mapreduce.jobhistory.loadedjob.tasks.max":"-1","mapreduce.task.timeout":"600000","yarn.app.mapreduce.client.max-retries":"3","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","mapreduce.framework.name":"local","mapreduce.fileoutputcommitter.algorithm.version":"1","yarn.resourcemanager.connect.max-wait.ms":"900000","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","ipc.client.ping":"true","mapreduce.input.lineinputformat.linespermap":"1","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","hadoop.security.uid.cache.secs":"14400","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","mapreduce.tasktracker.dns.interface":"default","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","yarn.resourcemanager.ha.enabled":"false","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","fs.s3a.multipart.threshold":"128M","io.map.index.skip":"0","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","mapreduce.job.hdfs-servers":"${fs.defaultFS}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","mapreduce.task.merge.progress.records":"10000","map.sort.class":"org.apache.hadoop.util.QuickSort","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","fs.s3a.socket.send.buffer":"8192","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","hadoop.registry.zk.quorum":"localhost:2181","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","fs.s3a.fast.upload.active.blocks":"4","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","mapreduce.reduce.memory.mb":"-1","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","yarn.client.failover-retries-on-socket-timeouts":"0","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","hadoop.treat.subject.external":"false","mapreduce.client.completion.pollinterval":"5000","ipc.server.log.slow.rpc":"false","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10","yarn.nodemanager.vmem-pmem-ratio":"2.1"} com.nvs.core.model.PrepareExecutionWorkOrder 1 2021-01-26 10:42:34.576+00 2021-01-26 10:42:34.576+00 0 ANONYMOUS ANONYMOUS 6439 130 -- podium data script generator prologue\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3003) \n\npdpg_6 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/products/20210126010000/good' AS (productCode:chararray,productName:chararray,productScale:chararray,productVendor:chararray,productDescription:chararray,quantityInStock:long,buyPrice:double,MSRP:double,productLine:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3003) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3004) \n\npdpg_7 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/productlines/20210126010000/good' AS (productLine:chararray,textDescription:chararray,htmlDescription:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3004) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3002) \n\npdpg_5_temp = JOIN pdpg_6 BY productLine, pdpg_7 BY productLine ;\npdpg_5 = FOREACH pdpg_5_temp GENERATE pdpg_6::productCode AS productCode, pdpg_6::productName AS productName, pdpg_6::productScale AS productScale, pdpg_6::productVendor AS productVendor, pdpg_6::productDescription AS productDescription, pdpg_6::quantityInStock AS quantityInStock, pdpg_6::buyPrice AS buyPrice, pdpg_6::MSRP AS MSRP, pdpg_6::productLine AS productLine, pdpg_7::textDescription AS textDescription, pdpg_7::htmlDescription AS htmlDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3002) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3001) \n\npdpg_2 = FOREACH pdpg_5 GENERATE (chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3001) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Store (id:3005) \n\nSTORE pdpg_2 INTO 'file:///usr/local/qdc/data/loadingdock/classic_models/products_full/20210125230000' ;\n\n-- end script for com.nvs.core.model.prepare.pkg.Store (id:3005) \n\n-- podium data script generator epilogue\n com.nvs.core.model.PrepareExecutionWorkOrder 1 2021-01-26 10:42:34.592+00 2021-01-26 10:42:34.592+00 0 ANONYMOUS ANONYMOUS 6440 294 {"75":{"bad":0,"expected":0,"ugly":0,"chaffed":0,"good":110,"sample":11}} com.nvs.core.model.PrepareExecutionWorkOrder 1 2021-01-26 10:42:42.132+00 2021-01-26 10:42:42.132+00 0 ANONYMOUS ANONYMOUS 6726 166 UNCOMPRESSED com.nvs.core.model.PrepareExecutionWorkOrder 8 2021-01-27 11:18:08.29+00 2021-01-27 11:18:08.29+00 0 ANONYMOUS ANONYMOUS 6727 128 71 com.nvs.core.model.PrepareExecutionWorkOrder 8 2021-01-27 11:18:08.382+00 2021-01-27 11:18:08.382+00 0 ANONYMOUS ANONYMOUS 6728 129 79 com.nvs.core.model.PrepareExecutionWorkOrder 8 2021-01-27 11:18:08.45+00 2021-01-27 11:18:08.45+00 0 ANONYMOUS ANONYMOUS 6729 266 {"mapreduce.jobtracker.address":"local","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","ipc.client.connection.maxidletime":"10000","mapreduce.cluster.acls.enabled":"false","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","mapreduce.job.ubertask.maxmaps":"9","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","yarn.nodemanager.container-manager.thread-count":"20","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","fs.s3a.metadatastore.authoritative":"false","mapreduce.app-submission.cross-platform":"false","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.markreset.buffer.percent":"0.0","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","mapreduce.job.ubertask.enable":"false","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.am.max-attempts":"2","mapreduce.jobtracker.heartbeats.in.second":"100","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.security.instrumentation.requires.admin":"false","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.registry.zk.retry.ceiling.ms":"60000","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","yarn.app.mapreduce.client.job.max-retries":"3","mapreduce.jobhistory.cleaner.enable":"true","fs.s3a.s3guard.ddb.table.capacity.write":"100","ha.failover-controller.graceful-fence.connection.retries":"1","mapreduce.tasktracker.http.address":"0.0.0.0:50060","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","fs.s3a.max.total.tasks":"5","mapreduce.reduce.maxattempts":"4","mapreduce.client.submit.file.replication":"10","mapreduce.shuffle.port":"13562","yarn.resourcemanager.resource-tracker.client.thread-count":"50","yarn.fail-fast":"false","yarn.nodemanager.delete.thread-count":"4","fs.hdfs.impl.disable.cache":"true","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","s3native.client-write-packet-size":"65536","file.bytes-per-checksum":"512","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","mapreduce.jobtracker.taskcache.levels":"2","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.job.jvm.numtasks":"1","mapreduce.jobtracker.tasktracker.maxblacklists":"4","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.security.group.mapping.ldap.search.attr.member":"member","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","hadoop.security.credential.clear-text-fallback":"true","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","ha.failover-controller.new-active.rpc-timeout.ms":"60000","mapreduce.map.memory.mb":"-1","hadoop.ssl.hostname.verifier":"DEFAULT","mapreduce.tasktracker.healthchecker.interval":"60000","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","s3native.blocksize":"67108864","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","hadoop.registry.zk.retry.times":"5","mapreduce.job.running.reduce.limit":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.task.io.sort.factor":"10","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.s3a.paging.maximum":"5000","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","hadoop.shell.missing.defaultFs.warning":"true","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","fs.s3a.s3guard.ddb.background.sleep":"25","mapreduce.tasktracker.http.threads":"40","mapreduce.tasktracker.dns.nameserver":"default","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.job.maxtaskfailures.per.tracker":"3","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","mapreduce.shuffle.max.connections":"0","mapreduce.jobhistory.loadedjobs.cache.size":"5","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","mapreduce.client.output.filter":"FAILED","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","mapreduce.jobtracker.persist.jobstatus.hours":"1","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","mapreduce.job.speculative.retry-after-no-speculate":"1000","fs.s3a.attempts.maximum":"20","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","mapreduce.task.io.sort.mb":"100","yarn.app.mapreduce.client-am.ipc.max-retries":"3","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","adl.http.timeout":"5000","mapreduce.job.speculative.retry-after-speculate":"15000","mapreduce.jobtracker.restart.recover":"false","ipc.client.connect.max.retries":"10","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.security.kms.client.timeout":"60","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","yarn.resourcemanager.ha.automatic-failover.embedded":"true","hadoop.security.kms.client.failover.sleep.base.millis":"100","mapreduce.job.heap.memory-mb.ratio":"0.8","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","mapreduce.task.exit.timeout.check-interval-ms":"20000","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","yarn.resourcemanager.keytab":"/etc/krb5.keytab","mapreduce.map.log.level":"INFO","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","mapreduce.tasktracker.local.dir.minspacestart":"0","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","ha.health-monitor.check-interval.ms":"1000","mapreduce.reduce.shuffle.merge.percent":"0.66","ipc.client.connect.timeout":"20000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","yarn.nodemanager.recovery.enabled":"false","io.native.lib.available":"true","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","mapreduce.job.running.map.limit":"0","mapreduce.reduce.input.buffer.percent":"0.0","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","yarn.app.attempt.diagnostics.limit.kc":"64","hadoop.security.group.mapping.ldap.ssl":"false","fs.defaultFS":"file:///","fs.s3a.multipart.size":"64M","yarn.app.mapreduce.am.job.committer.commit-window":"10000","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.ifile.readahead":"true","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","s3native.replication":"3","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","fs.s3a.s3guard.ddb.table.create":"false","yarn.nodemanager.health-checker.interval-ms":"600000","s3.stream-buffer-size":"4096","ftp.client-write-packet-size":"65536","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","yarn.timeline-service.keytab":"/etc/krb5.keytab","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","ha.zookeeper.session-timeout.ms":"5000","fs.s3a.connection.ssl.enabled":"true","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","ipc.server.max.connections":"0","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.app.mapreduce.am.resource.mb":"1536","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","hadoop.security.groups.cache.secs":"300","mapreduce.job.speculative.minimum-allowed-tasks":"10","yarn.nodemanager.container-monitor.interval-ms":"3000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","s3.client-write-packet-size":"65536","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","mapreduce.job.reduces":"1","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","mapreduce.job.acl-modify-job":" ","hadoop.registry.zk.session.timeout.ms":"60000","fs.automatic.close":"true","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","fs.s3.block.size":"67108864","hadoop.http.authentication.token.validity":"36000","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.tasktracker.local.dir.minspacekill":"0","mapreduce.jobhistory.cleaner.interval-ms":"86400000","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","mapreduce.jobtracker.http.address":"0.0.0.0:50030","yarn.nodemanager.recovery.compaction-interval-secs":"3600","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","mapreduce.tasktracker.report.address":"127.0.0.1:0","hadoop.kerberos.kinit.command":"kinit","yarn.timeline-service.http-authentication.type":"simple","yarn.log-aggregation.retain-seconds":"-1","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","ipc.client.connect.max.retries.on.timeouts":"45","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","io.file.buffer.size":"4096","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","io.mapfile.bloom.size":"1048576","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","ipc.client.connect.retry.interval":"1000","hadoop.security.kms.client.authentication.retry-count":"1","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","yarn.app.mapreduce.shuffle.log.backups":"0","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","ftp.blocksize":"67108864","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","yarn.resourcemanager.scheduler.monitor.enable":"false","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","hadoop.http.authentication.simple.anonymous.allowed":"true","yarn.client.nodemanager-connect.retry-interval-ms":"10000","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","mapreduce.task.files.preserve.failedtasks":"false","mapreduce.job.reduce.slowstart.completedmaps":"0.05","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.jobhistory.minicluster.fixed.ports":"false","file.replication":"1","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","io.mapfile.bloom.error.rate":"0.005","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","mapreduce.map.cpu.vcores":"1","yarn.resourcemanager.zk-retry-interval-ms":"1000","ftp.bytes-per-checksum":"512","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.pmem-check-enabled":"true","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","fs.s3a.s3guard.cli.prune.age":"86400000","hadoop.registry.zk.root":"/registry","hadoop.jetty.logs.serve.aliases":"true","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","mapreduce.reduce.merge.inmem.threshold":"1000","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","mapreduce.job.token.tracking.ids.enabled":"false","yarn.nodemanager.localizer.client.thread-count":"5","hadoop.security.kms.client.failover.sleep.max.millis":"2000","mapreduce.jobhistory.move.thread-count":"3","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","rpc.metrics.quantile.enable":"false","mapreduce.jobtracker.expire.trackers.interval":"600000","io.bytes.per.checksum":"512","mapreduce.jobhistory.loadedjob.tasks.max":"-1","mapreduce.task.timeout":"600000","yarn.app.mapreduce.client.max-retries":"3","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","mapreduce.framework.name":"local","mapreduce.fileoutputcommitter.algorithm.version":"1","yarn.resourcemanager.connect.max-wait.ms":"900000","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","ipc.client.ping":"true","mapreduce.input.lineinputformat.linespermap":"1","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","hadoop.security.uid.cache.secs":"14400","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","mapreduce.tasktracker.dns.interface":"default","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","yarn.resourcemanager.ha.enabled":"false","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","fs.s3a.multipart.threshold":"128M","io.map.index.skip":"0","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","mapreduce.job.hdfs-servers":"${fs.defaultFS}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","mapreduce.task.merge.progress.records":"10000","map.sort.class":"org.apache.hadoop.util.QuickSort","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","fs.s3a.socket.send.buffer":"8192","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","hadoop.registry.zk.quorum":"localhost:2181","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","fs.s3a.fast.upload.active.blocks":"4","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","mapreduce.reduce.memory.mb":"-1","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","yarn.client.failover-retries-on-socket-timeouts":"0","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","hadoop.treat.subject.external":"false","mapreduce.client.completion.pollinterval":"5000","ipc.server.log.slow.rpc":"false","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10","yarn.nodemanager.vmem-pmem-ratio":"2.1"} com.nvs.core.model.PrepareExecutionWorkOrder 8 2021-01-27 11:18:13.56+00 2021-01-27 11:18:13.56+00 0 ANONYMOUS ANONYMOUS 6730 130 -- podium data script generator prologue\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3026) \n\npdpg_45 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/customers/20210126010000/good' AS (customerNumber:long,customerName:chararray,contactLastName:chararray,contactFirstName:chararray,phone:chararray,addressLine1:chararray,addressLine2:chararray,city:chararray,state:chararray,postalCode:chararray,country:chararray,salesRepEmployeeNumber:long,creditLimit:double,customerLocation:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3026) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3027) \n\npdpg_46 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/salesorders/20210126010000/good' AS (orderNumber:long,orderDate:chararray,requiredDate:chararray,shippedDate:chararray,status:chararray,customerNumber:long,orderLineNumber:long,priceEach:double,quantityOrdered:long,productCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3027) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3028) \n\npdpg_47 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/employees/20210126010000/good' AS (employeeNumber:long,lastName:chararray,firstName:chararray,extension:chararray,email:chararray,reportsTo:long,jobTitle:chararray,officeCode:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3028) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Loader (id:3029) \n\npdpg_48 = LOAD 'file:///usr/local/qdc/data/receiving/classic_models/products_full/20210125230000/good' AS (productCode:chararray,productName:chararray,productScale:chararray,productVendor:chararray,productDescription:chararray,quantityInStock:long,buyPrice:double,MSRP:double,productLine:chararray,textDescription:chararray);\n\n-- end script for com.nvs.core.model.prepare.pkg.Loader (id:3029) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3023) \n\npdpg_38_temp = JOIN pdpg_46 BY productCode, pdpg_48 BY productCode ;\npdpg_38 = FOREACH pdpg_38_temp GENERATE pdpg_46::orderNumber AS orderNumber, pdpg_46::orderDate AS orderDate, pdpg_46::requiredDate AS requiredDate, pdpg_46::shippedDate AS shippedDate, pdpg_46::status AS status, pdpg_46::customerNumber AS customerNumber, pdpg_46::orderLineNumber AS orderLineNumber, pdpg_46::priceEach AS priceEach, pdpg_46::quantityOrdered AS quantityOrdered, pdpg_46::productCode AS productCode, pdpg_48::productName AS productName, pdpg_48::productScale AS productScale, pdpg_48::productVendor AS productVendor, pdpg_48::productDescription AS productDescription, pdpg_48::quantityInStock AS quantityInStock, pdpg_48::buyPrice AS buyPrice, pdpg_48::MSRP AS MSRP, pdpg_48::productLine AS productLine, pdpg_48::textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3023) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3020) \n\npdpg_31 = FOREACH pdpg_38 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3020) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3024) \n\npdpg_41_temp = JOIN pdpg_31 BY customerNumber, pdpg_45 BY customerNumber ;\npdpg_41 = FOREACH pdpg_41_temp GENERATE pdpg_31::orderNumber AS orderNumber, pdpg_31::orderDate AS orderDate, pdpg_31::requiredDate AS requiredDate, pdpg_31::shippedDate AS shippedDate, pdpg_31::status AS status, pdpg_31::customerNumber AS customerNumber, pdpg_31::orderLineNumber AS orderLineNumber, pdpg_31::priceEach AS priceEach, pdpg_31::quantityOrdered AS quantityOrdered, pdpg_31::productCode AS productCode, pdpg_31::productName AS productName, pdpg_31::productScale AS productScale, pdpg_31::productVendor AS productVendor, pdpg_31::productDescription AS productDescription, pdpg_31::quantityInStock AS quantityInStock, pdpg_31::buyPrice AS buyPrice, pdpg_31::MSRP AS MSRP, pdpg_31::productLine AS productLine, pdpg_31::textDescription AS textDescription, pdpg_45::customerName AS customerName, pdpg_45::contactLastName AS contactLastName, pdpg_45::contactFirstName AS contactFirstName, pdpg_45::phone AS phone, pdpg_45::addressLine1 AS addressLine1, pdpg_45::addressLine2 AS addressLine2, pdpg_45::city AS city, pdpg_45::state AS state, pdpg_45::postalCode AS postalCode, pdpg_45::country AS country, pdpg_45::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_45::creditLimit AS creditLimit, pdpg_45::customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3024) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3021) \n\npdpg_33 = FOREACH pdpg_41 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(double) buyPrice AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(double) creditLimit AS creditLimit,(chararray) customerLocation AS customerLocation;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3021) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Joiner (id:3025) \n\npdpg_44_temp = JOIN pdpg_33 BY salesRepEmployeeNumber, pdpg_47 BY employeeNumber ;\npdpg_44 = FOREACH pdpg_44_temp GENERATE pdpg_33::orderNumber AS orderNumber, pdpg_33::orderDate AS orderDate, pdpg_33::requiredDate AS requiredDate, pdpg_33::shippedDate AS shippedDate, pdpg_33::status AS status, pdpg_33::customerNumber AS customerNumber, pdpg_33::orderLineNumber AS orderLineNumber, pdpg_33::priceEach AS priceEach, pdpg_33::quantityOrdered AS quantityOrdered, pdpg_33::productCode AS productCode, pdpg_33::productName AS productName, pdpg_33::productScale AS productScale, pdpg_33::productVendor AS productVendor, pdpg_33::productDescription AS productDescription, pdpg_33::quantityInStock AS quantityInStock, pdpg_33::buyPrice AS buyPrice, pdpg_33::MSRP AS MSRP, pdpg_33::productLine AS productLine, pdpg_33::textDescription AS textDescription, pdpg_33::customerName AS customerName, pdpg_33::contactLastName AS contactLastName, pdpg_33::contactFirstName AS contactFirstName, pdpg_33::phone AS phone, pdpg_33::addressLine1 AS addressLine1, pdpg_33::addressLine2 AS addressLine2, pdpg_33::city AS city, pdpg_33::state AS state, pdpg_33::postalCode AS postalCode, pdpg_33::country AS country, pdpg_33::salesRepEmployeeNumber AS salesRepEmployeeNumber, pdpg_33::creditLimit AS creditLimit, pdpg_33::customerLocation AS customerLocation, pdpg_47::lastName AS lastName, pdpg_47::firstName AS firstName, pdpg_47::extension AS extension, pdpg_47::email AS email, pdpg_47::reportsTo AS reportsTo, pdpg_47::jobTitle AS jobTitle, pdpg_47::officeCode AS officeCode;\n\n-- end script for com.nvs.core.model.prepare.pkg.Joiner (id:3025) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Transformer (id:3022) \n\npdpg_35 = FOREACH pdpg_44 GENERATE (long) orderNumber AS orderNumber,(chararray) orderDate AS orderDate,(chararray) requiredDate AS requiredDate,(chararray) shippedDate AS shippedDate,(chararray) status AS status,(long) customerNumber AS customerNumber,(long) orderLineNumber AS orderLineNumber,(double) priceEach AS priceEach,(long) quantityOrdered AS quantityOrdered,(chararray) productCode AS productCode,(chararray) productName AS productName,(chararray) productScale AS productScale,(chararray) productVendor AS productVendor,(chararray) productDescription AS productDescription,(long) quantityInStock AS quantityInStock,(chararray) (com.podiumdata.pigudf.obfuscation.Obfuscate(buyPrice,'Digest SHA256 Lower')) AS buyPrice,(double) MSRP AS MSRP,(chararray) productLine AS productLine,(chararray) textDescription AS textDescription,(chararray) customerName AS customerName,(chararray) contactLastName AS contactLastName,(chararray) contactFirstName AS contactFirstName,(chararray) phone AS phone,(chararray) addressLine1 AS addressLine1,(chararray) addressLine2 AS addressLine2,(chararray) city AS city,(chararray) state AS state,(chararray) postalCode AS postalCode,(chararray) country AS country,(long) salesRepEmployeeNumber AS salesRepEmployeeNumber,(chararray) (com.podiumdata.pigudf.obfuscation.Obfuscate(creditLimit,'Digest MD5 Upper x2')) AS creditLimit,(chararray) customerLocation AS customerLocation,(chararray) lastName AS lastName,(chararray) firstName AS firstName,(chararray) extension AS extension,(chararray) email AS email,(long) reportsTo AS reportsTo,(chararray) jobTitle AS jobTitle,(chararray) officeCode AS officeCode,(bigdecimal) (com.podiumdata.pigudf.number.TO_DECIMAL(priceEach * quantityOrdered)) AS orderTotal;\n\n-- end script for com.nvs.core.model.prepare.pkg.Transformer (id:3022) \n\n-- begin script for com.nvs.core.model.prepare.pkg.Store (id:3031) \n\nSTORE pdpg_35 INTO 'file:///usr/local/qdc/data/loadingdock/classic_models/sales_full_masked/20210127111737' ;\n\n-- end script for com.nvs.core.model.prepare.pkg.Store (id:3031) \n\n-- podium data script generator epilogue\n com.nvs.core.model.PrepareExecutionWorkOrder 8 2021-01-27 11:18:13.589+00 2021-01-27 11:18:13.589+00 0 ANONYMOUS ANONYMOUS 7026 32 262144 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.35+00 2021-01-28 10:28:37.35+00 0 podium podium 7027 37 " com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.351+00 2021-01-28 10:28:37.351+00 0 podium podium 7028 35 false com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.351+00 2021-01-28 10:28:37.351+00 0 podium podium 7029 33 \\r\\n com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.352+00 2021-01-28 10:28:37.352+00 0 podium podium 7030 28 0.00 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.352+00 2021-01-28 10:28:37.352+00 0 podium podium 7031 320 0 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.353+00 2021-01-28 10:28:37.353+00 0 podium podium 7032 258 0 com.nvs.core.model.meta.DataEntity 17 2021-01-28 10:28:37.353+00 2021-01-28 10:28:37.353+00 0 podium podium 7295 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.425+00 2021-01-28 10:28:39.425+00 0 podium podium 7296 34 , com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.426+00 2021-01-28 10:28:39.426+00 0 podium podium 7297 94 offices com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.426+00 2021-01-28 10:28:39.426+00 0 podium podium 7298 13 1 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.427+00 2021-01-28 10:28:39.427+00 0 podium podium 7299 152 0 com.nvs.core.model.meta.DataEntity 63 2021-01-28 10:28:39.427+00 2021-01-28 10:28:39.427+00 0 podium podium 7300 32 262144 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.605+00 2021-01-28 10:28:39.605+00 0 podium podium 7301 293 \N com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.606+00 2021-01-28 10:28:39.606+00 0 podium podium 7302 154 false com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.606+00 2021-01-28 10:28:39.606+00 0 podium podium 7303 320 0 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.607+00 2021-01-28 10:28:39.607+00 0 podium podium 7304 21 0 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.607+00 2021-01-28 10:28:39.607+00 0 podium podium 7305 17 false com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.608+00 2021-01-28 10:28:39.608+00 0 podium podium 7306 38 " com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.608+00 2021-01-28 10:28:39.608+00 0 podium podium 7307 5 SELECT `customerNumber`,`customerName`,`contactLastName`,`contactFirstName`,`phone`,`addressLine1`,`addressLine2`,`city`,`state`,`postalCode`,`country`,`salesRepEmployeeNumber`,`creditLimit`,`customerLocation` FROM `classic-models`.`customers` com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.609+00 2021-01-28 10:28:39.609+00 0 podium podium 7308 155 true com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.609+00 2021-01-28 10:28:39.609+00 0 podium podium 7309 20 0 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.61+00 2021-01-28 10:28:39.61+00 0 podium podium 7310 259 0 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.611+00 2021-01-28 10:28:39.611+00 0 podium podium 7327 94 customers com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.618+00 2021-01-28 10:28:39.618+00 0 podium podium 7328 24 false com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.619+00 2021-01-28 10:28:39.619+00 0 podium podium 7329 12 0 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.619+00 2021-01-28 10:28:39.619+00 0 podium podium 7330 31 1 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.62+00 2021-01-28 10:28:39.62+00 0 podium podium 7331 156 true com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.62+00 2021-01-28 10:28:39.62+00 0 podium podium 7332 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.62+00 2021-01-28 10:28:39.62+00 0 podium podium 7333 92 0 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.621+00 2021-01-28 10:28:39.621+00 0 podium podium 7334 33 \\r\\n com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.621+00 2021-01-28 10:28:39.621+00 0 podium podium 7335 27 UTF_8 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.622+00 2021-01-28 10:28:39.622+00 0 podium podium 7336 288 com.nvs.core.model.meta.DataEntity 64 2021-01-28 10:28:39.622+00 2021-01-28 10:28:39.622+00 0 podium podium 7337 259 0 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.881+00 2021-01-28 10:28:39.881+00 0 podium podium 7338 156 true com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.882+00 2021-01-28 10:28:39.882+00 0 podium podium 7339 12 0 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.882+00 2021-01-28 10:28:39.882+00 0 podium podium 7340 24 false com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.883+00 2021-01-28 10:28:39.883+00 0 podium podium 7341 293 \N com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.884+00 2021-01-28 10:28:39.884+00 0 podium podium 7342 154 false com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.884+00 2021-01-28 10:28:39.884+00 0 podium podium 7343 153 0 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.885+00 2021-01-28 10:28:39.885+00 0 podium podium 7344 17 false com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.885+00 2021-01-28 10:28:39.885+00 0 podium podium 7345 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.886+00 2021-01-28 10:28:39.886+00 0 podium podium 7346 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.886+00 2021-01-28 10:28:39.886+00 0 podium podium 7347 35 false com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.887+00 2021-01-28 10:28:39.887+00 0 podium podium 7348 14 false com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.887+00 2021-01-28 10:28:39.887+00 0 podium podium 7349 114 Snapshot com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.888+00 2021-01-28 10:28:39.888+00 0 podium podium 7350 152 0 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.889+00 2021-01-28 10:28:39.889+00 0 podium podium 7351 77 \N com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.889+00 2021-01-28 10:28:39.889+00 0 podium podium 7352 27 UTF_8 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.89+00 2021-01-28 10:28:39.89+00 0 podium podium 7353 288 \N com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.89+00 2021-01-28 10:28:39.89+00 0 podium podium 7354 31 1 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.891+00 2021-01-28 10:28:39.891+00 0 podium podium 7355 320 0 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.892+00 2021-01-28 10:28:39.892+00 0 podium podium 7356 13 1 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.893+00 2021-01-28 10:28:39.893+00 0 podium podium 7357 37 " com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.893+00 2021-01-28 10:28:39.893+00 0 podium podium 7358 21 0 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.894+00 2021-01-28 10:28:39.894+00 0 podium podium 7359 258 0 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.895+00 2021-01-28 10:28:39.895+00 0 podium podium 7360 32 262144 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.895+00 2021-01-28 10:28:39.895+00 0 podium podium 7361 34 , com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.895+00 2021-01-28 10:28:39.895+00 0 podium podium 7362 18 "productLine","textDescription","htmlDescription"\\r\\n com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.896+00 2021-01-28 10:28:39.896+00 0 podium podium 7363 155 true com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.896+00 2021-01-28 10:28:39.896+00 0 podium podium 7364 33 \\r\\n com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.897+00 2021-01-28 10:28:39.897+00 0 podium podium 7365 28 0.00 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.897+00 2021-01-28 10:28:39.897+00 0 podium podium 7366 92 0 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.898+00 2021-01-28 10:28:39.898+00 0 podium podium 7367 202 MANAGED com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.898+00 2021-01-28 10:28:39.898+00 0 podium podium 7368 5 SELECT `productLine`,`textDescription`,`htmlDescription` FROM `classic-models`.`productlines` com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.899+00 2021-01-28 10:28:39.899+00 0 podium podium 7369 94 productlines com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.899+00 2021-01-28 10:28:39.899+00 0 podium podium 7370 20 0 com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.9+00 2021-01-28 10:28:39.9+00 0 podium podium 7371 38 " com.nvs.core.model.meta.DataEntity 67 2021-01-28 10:28:39.9+00 2021-01-28 10:28:39.9+00 0 podium podium 7372 33 \\r\\n com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.969+00 2021-01-28 10:28:39.969+00 0 podium podium 7373 156 true com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.969+00 2021-01-28 10:28:39.969+00 0 podium podium 7374 34 , com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.97+00 2021-01-28 10:28:39.97+00 0 podium podium 7375 293 \N com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.97+00 2021-01-28 10:28:39.97+00 0 podium podium 7376 5 SELECT `employeeNumber`,`lastName`,`firstName`,`extension`,`email`,`reportsTo`,`jobTitle`,`officeCode` FROM `classic-models`.`employees` com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.971+00 2021-01-28 10:28:39.971+00 0 podium podium 7377 27 UTF_8 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.971+00 2021-01-28 10:28:39.971+00 0 podium podium 7378 94 employees com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.972+00 2021-01-28 10:28:39.972+00 0 podium podium 7379 77 \N com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.972+00 2021-01-28 10:28:39.972+00 0 podium podium 7380 14 false com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.972+00 2021-01-28 10:28:39.972+00 0 podium podium 7381 114 Snapshot com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.973+00 2021-01-28 10:28:39.973+00 0 podium podium 7382 13 1 com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.973+00 2021-01-28 10:28:39.973+00 0 podium podium 7383 154 false com.nvs.core.model.meta.DataEntity 62 2021-01-28 10:28:39.974+00 2021-01-28 10:28:39.974+00 0 podium podium 7416 32 262144 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.134+00 2021-01-28 10:28:40.134+00 0 podium podium 7417 156 true com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.134+00 2021-01-28 10:28:40.134+00 0 podium podium 7418 38 " com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.134+00 2021-01-28 10:28:40.134+00 0 podium podium 7419 17 false com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.135+00 2021-01-28 10:28:40.135+00 0 podium podium 7420 31 1 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.135+00 2021-01-28 10:28:40.135+00 0 podium podium 7421 258 0 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.136+00 2021-01-28 10:28:40.136+00 0 podium podium 7422 147 true com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.136+00 2021-01-28 10:28:40.136+00 0 podium podium 7423 13 1 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.136+00 2021-01-28 10:28:40.136+00 0 podium podium 7424 293 \N com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.137+00 2021-01-28 10:28:40.137+00 0 podium podium 7425 28 0.00 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.137+00 2021-01-28 10:28:40.137+00 0 podium podium 7426 20 0 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.138+00 2021-01-28 10:28:40.138+00 0 podium podium 7427 152 0 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.138+00 2021-01-28 10:28:40.138+00 0 podium podium 7428 77 \N com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.138+00 2021-01-28 10:28:40.138+00 0 podium podium 7429 14 false com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.139+00 2021-01-28 10:28:40.139+00 0 podium podium 7430 21 0 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.139+00 2021-01-28 10:28:40.139+00 0 podium podium 7431 155 true com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.14+00 2021-01-28 10:28:40.14+00 0 podium podium 7432 34 , com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.14+00 2021-01-28 10:28:40.14+00 0 podium podium 7433 37 " com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.141+00 2021-01-28 10:28:40.141+00 0 podium podium 7434 5 SELECT `productCode`,`productName`,`productScale`,`productVendor`,`productDescription`,`quantityInStock`,`buyPrice`,`MSRP`,`productLine` FROM `classic-models`.`products` com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.141+00 2021-01-28 10:28:40.141+00 0 podium podium 7435 18 "productCode","productName","productScale","productVendor","productDescription","quantityInStock","buyPrice","MSRP","productLine"\\r\\n com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.142+00 2021-01-28 10:28:40.142+00 0 podium podium 7436 29 VARIABLE_CHAR_LENGTH_TERMINATED com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.142+00 2021-01-28 10:28:40.142+00 0 podium podium 7437 92 0 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.143+00 2021-01-28 10:28:40.143+00 0 podium podium 7438 12 0 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.144+00 2021-01-28 10:28:40.144+00 0 podium podium 7439 259 0 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.144+00 2021-01-28 10:28:40.144+00 0 podium podium 7440 150 DOUBLE_EMBEDDED_ENCLOSURE com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.145+00 2021-01-28 10:28:40.145+00 0 podium podium 7441 320 0 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.145+00 2021-01-28 10:28:40.145+00 0 podium podium 7442 288 com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.146+00 2021-01-28 10:28:40.146+00 0 podium podium 7443 154 false com.nvs.core.model.meta.DataEntity 66 2021-01-28 10:28:40.146+00 2021-01-28 10:28:40.146+00 0 podium podium 7444 94 salesorders com.nvs.core.model.meta.DataEntity 70 2021-01-28 10:28:40.288+00 2021-01-28 10:28:40.288+00 0 podium podium 7445 202 MANAGED com.nvs.core.model.meta.DataEntity 70 2021-01-28 10:28:40.289+00 2021-01-28 10:28:40.289+00 0 podium podium 7446 202 MANAGED com.nvs.core.model.meta.DataEntity 74 2021-01-28 10:28:40.453+00 2021-01-28 10:28:40.453+00 0 podium podium 7447 94 payments com.nvs.core.model.meta.DataEntity 74 2021-01-28 10:28:40.454+00 2021-01-28 10:28:40.454+00 0 podium podium 7448 94 offices com.nvs.core.model.meta.DataEntity 68 2021-01-28 10:28:40.531+00 2021-01-28 10:28:40.531+00 0 podium podium 7449 202 MANAGED com.nvs.core.model.meta.DataEntity 68 2021-01-28 10:28:40.531+00 2021-01-28 10:28:40.531+00 0 podium podium 7450 94 customers com.nvs.core.model.meta.DataEntity 69 2021-01-28 10:28:40.696+00 2021-01-28 10:28:40.696+00 0 podium podium 7451 202 MANAGED com.nvs.core.model.meta.DataEntity 69 2021-01-28 10:28:40.697+00 2021-01-28 10:28:40.697+00 0 podium podium 7452 202 MANAGED com.nvs.core.model.meta.DataEntity 73 2021-01-28 10:28:40.948+00 2021-01-28 10:28:40.948+00 0 podium podium 7453 94 productlines com.nvs.core.model.meta.DataEntity 73 2021-01-28 10:28:40.948+00 2021-01-28 10:28:40.948+00 0 podium podium 7454 94 employees com.nvs.core.model.meta.DataEntity 71 2021-01-28 10:28:41.011+00 2021-01-28 10:28:41.011+00 0 podium podium 7455 202 MANAGED com.nvs.core.model.meta.DataEntity 71 2021-01-28 10:28:41.011+00 2021-01-28 10:28:41.011+00 0 podium podium 7456 94 products com.nvs.core.model.meta.DataEntity 72 2021-01-28 10:28:41.148+00 2021-01-28 10:28:41.148+00 0 podium podium 7457 202 MANAGED com.nvs.core.model.meta.DataEntity 72 2021-01-28 10:28:41.148+00 2021-01-28 10:28:41.148+00 0 podium podium \. -- -- Data for Name: pd_prop_type; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_prop_type (nid, sname, type_class, validation_argument, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 4 BOOLEAN BOOLEAN ^1|0|[Tt][Rr][Uu][Ee]|[Ff][Aa][Ll][Ss][Ee]|[Yy][Ee][Ss]|[Nn][Oo]|[Tt]|[Ff]|[Nn]|[Yy]$ 2020-11-13 17:33:35.229078+00 2020-11-13 17:33:35.229078+00 0 podium podium 5 SAMPLE_ENUM ENUM MONDAY|TUESDAY|WEDNESDAY|THURSDAY|FRIDAY|SATURDAY|SUNDAY 2020-11-13 17:33:35.229078+00 2020-11-13 17:33:35.229078+00 0 podium podium 6 SAMPLE_REGEX REGEX \\(\\d{3}\\) \\d{3}-\\d{4} 2020-11-13 17:33:35.229078+00 2020-11-13 17:33:35.229078+00 0 podium podium 3 DECIMAL DECIMAL ^\\d*(\\.\\d*)?|\\.\\d+$ 2020-11-13 17:33:35.229078+00 2020-11-13 17:33:35.229078+00 0 podium podium 7 AUTHORIZATION_POLICY_ENUM ENUM NEVER_SYNCED|UP_TO_DATE|FAILED 2020-11-13 17:33:36.095505+00 2020-11-13 17:33:36.095505+00 0 podium podium 11 EMBEDDED_ENCLOSURE_SCHEME_ENUM ENUM NONE|DOUBLE_EMBEDDED_ENCLOSURE 2020-11-13 17:33:36.095505+00 2020-11-13 17:33:36.095505+00 0 podium podium 12 INCIDENCE_ENUM ENUM NEVER|OPTIONAL|ALWAYS 2020-11-13 17:33:36.095505+00 2020-11-13 17:33:36.095505+00 0 podium podium 14 CHAR_ENCODING_ENUM ENUM US_ASCII|EBCDIC_037|LATIN_1|WINDOWS_1252|UTF_8|UTF_16LE|UTF_16BE|UTF_32LE|UTF_32BE|UTF_8_OR_LATIN_1 2020-11-13 17:33:36.095505+00 2020-11-13 17:33:36.095505+00 0 podium podium 15 BYTE_ORDER_MARK_ENUM ENUM UTF_32LE_BOM|UTF_32BE_BOM|UTF_8_BOM|UTF_16LE_BOM|UTF_16BE_BOM 2020-11-13 17:33:36.095505+00 2020-11-13 17:33:36.095505+00 0 podium podium 16 FIELD_ENCLOSURE_ENUM FLEXIBLE_ENUM "|'|>> 2020-11-13 17:33:36.095505+00 2020-11-13 17:33:36.095505+00 0 podium podium 17 FIELD_DELIMETER_ENUM FLEXIBLE_ENUM ,|:|;|\\t|\\x01|\\x20|%7C|%7C%7C|%7C~ 2020-11-13 17:33:36.095505+00 2020-11-13 17:33:36.095505+00 0 podium podium 18 FIELD_OPEN_ENUM FLEXIBLE_ENUM "|'|<< 2020-11-13 17:33:36.095505+00 2020-11-13 17:33:36.095505+00 0 podium podium 19 RECORD_TERMINATOR_ENUM FLEXIBLE_ENUM ANY_NEWLINE|\\n|\\r?\\n|\\r\\n 2020-11-13 17:33:36.095505+00 2020-11-13 17:33:36.095505+00 0 podium podium 20 LEVEL ENUM MANAGED|REGISTERED|ADDRESSED 2020-11-13 17:33:36.235635+00 2020-11-13 17:33:36.235635+00 0 SYSTEM SYSTEM 21 LEVEL_ACTION ENUM PROMOTE|ON_DEMAND 2020-11-13 17:33:36.235635+00 2020-11-13 17:33:36.235635+00 0 SYSTEM SYSTEM 22 PROBABILITY REGEX ^0(\\.\\d+)?|1(\\.0+)?$ 2020-11-13 17:33:36.424264+00 2020-11-13 17:33:36.424264+00 0 podium podium 8 TRI_STATE_BOOLEAN_ENUM ENUM |true|false 2020-11-13 17:33:36.095505+00 2020-11-13 17:33:36.150352+00 1 podium podium 1 STRING STRING ^[\\s\\S]*$ 2020-11-13 17:33:35.229078+00 2020-11-13 17:33:35.229078+00 0 podium podium 10 PACKING_SLIP_ITEM_EXTRACTION_ENUM ENUM NONE|PATH_NAME_REGEX|FILE_NAME_REGEX|HEADER_REGEX|TRAILER_REGEX|MANIFEST_REGEX|HEADER_ENTIRELY|TRAILER_ENTIRELY|MANIFEST_ENTIRELY|HEADER_DELIMITED_COLUMN_INDEX|TRAILER_DELIMITED_COLUMN_INDEX|MANIFEST_DELIMITED_COLUMN_INDEX|COBOL_HEADER_FIELD|COBOL_TRAILER_FIELD|XML_ELEMENT|QVD_HEADER_ELEMENT 2020-11-13 17:33:36.095505+00 2020-11-13 17:33:41.120087+00 2 podium podium 9 DATE_TIME_EXTRACTION_METHOD_ENUM ENUM NONE|PATH_NAME_REGEX|FILE_NAME_REGEX|HEADER_REGEX|TRAILER_REGEX|MANIFEST_REGEX|HEADER_ENTIRELY|TRAILER_ENTIRELY|MANIFEST_ENTIRELY|HEADER_DELIMITED_COLUMN_INDEX|TRAILER_DELIMITED_COLUMN_INDEX|MANIFEST_DELIMITED_COLUMN_INDEX|COBOL_HEADER_FIELD|COBOL_TRAILER_FIELD|QVD_HEADER_ELEMENT 2020-11-13 17:33:36.095505+00 2020-11-13 17:33:41.237203+00 2 SYSTEM podium 2 INTEGER INTEGER ^-?[0-9]*$ 2020-11-13 17:33:35.229078+00 2020-11-13 17:33:41.929983+00 1 podium podium 13 RECORD_LAYOUT_ENUM ENUM FIXED_BYTE_LENGTH|FIXED_BYTE_LENGTH_TERMINATED|VARIABLE_CHAR_LENGTH_TERMINATED|MAINFRAME_VARIABLE_BDW_RDW|MAINFRAME_VARIABLE_RDW_ONLY|PARQUET|AVRO|ORC 2020-11-13 17:33:36.095505+00 2020-11-13 17:33:36.095505+00 0 podium podium 23 POSITIVE INTEGER INTEGER ^[0-9]*$ 2020-11-13 17:33:42.605919+00 2020-11-13 17:33:42.605919+00 0 podium podium 24 KAFKA OFFSET STRING (?:\\bEND\\b|\\bBEGINNING\\b)|\\b[0-9]*$ 2020-11-13 17:33:42.605919+00 2020-11-13 17:33:42.605919+00 0 podium podium \. -- -- Data for Name: pd_publish; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_publish (nid, sname, description, dataset_nid, target_nid, state, createdby, modifiedby, created_ttz, modified_ttz, version) FROM stdin; \. -- -- Data for Name: pd_publish_prop; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_publish_prop (nid, publish_nid, prop_name, prop_value, createdby, modifiedby, created_ttz, modified_ttz, version) FROM stdin; \. -- -- Data for Name: pd_qs_conn_path_def; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_qs_conn_path_def (nid, createdby, created_ttz, modifiedby, modified_ttz, version, path, user_defined_path, linux_path, ext_source_nid, int_source_nid) FROM stdin; \. -- -- Data for Name: pd_qs_connector_info; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_qs_connector_info (nid, sname, install_id, createdby, created_ttz, modifiedby, modified_ttz, version, hostname, user_directory, username, certificates_path, base_dir_path, default_mount_point, default_level, is_autoload_qvd_data) FROM stdin; \. -- -- Data for Name: pd_qs_data_conn_def; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_qs_data_conn_def (nid, sname, createdby, created_ttz, modifiedby, modified_ttz, version, qs_contr_id, conn_guid) FROM stdin; \. -- -- Data for Name: pd_qs_data_conn_path_mapping; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_qs_data_conn_path_mapping (conn_def_nid, path_def_nid) FROM stdin; \. -- -- Data for Name: pd_qvd_entity_load; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_qvd_entity_load (nid, scan_metric_nid, entity_nid, work_order_nid, modification_type, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_qvd_file_record; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_qvd_file_record (nid, full_path, file_name, base_path, relative_path, file_size, file_last_modified, file_created, file_last_accessed, file_status, last_event_time, scan_run_id, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_qvd_scan_metrics; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_qvd_scan_metrics (nid, scan_monitor_nid, root_path, scan_start_dt, scan_end_dt, total_scanned, additions_detected, additions_processed, updates_detected, updates_processed, deletions_detected, deletions_processed, total_failures, status, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_qvd_scan_monitor; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_qvd_scan_monitor (nid, qs_connector_id, scan_master_start_dt, scan_master_end_dt, status_log, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby, is_terminated) FROM stdin; \. -- -- Data for Name: pd_relation_inference; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_relation_inference (nid, sname, class_name, argument_str, relation_weight, is_enabled, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby) FROM stdin; 1 CASE_INSENSITIVE_FIELD_NAME_MATCH com.nvs.core.service.relations.impl.FieldNamesMatcher 1.0 t \N 2020-11-13 17:33:40.106727+00 \N 2020-11-13 17:33:40.106727+00 0 podium podium \. -- -- Data for Name: pd_role; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_role (nid, sname, access_mask, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 1 MASTER_ANALYST_OBFUSCATOR 2551811 2020-11-13 17:33:34.374773+00 2020-11-13 17:33:34.435067+00 0 SYSTEM SYSTEM 3 DATA_ANALYST 393217 2020-11-13 17:33:41.69826+00 2020-11-13 17:33:41.69826+00 0 SYSTEM SYSTEM 4 DATA_STEWARD 393219 2020-11-13 17:33:41.69826+00 2020-11-13 17:33:41.69826+00 0 SYSTEM SYSTEM 2 QVD_ADMIN 29362303 2020-11-13 17:33:41.69826+00 2020-11-13 17:33:41.69826+00 0 SYSTEM SYSTEM 5 SUPER 9223372036854775807 2020-11-13 17:34:10.595+00 2020-11-13 17:34:10.595+00 0 ANONYMOUS ANONYMOUS 6 ADMIN 1072103391 2020-11-13 17:34:10.621+00 2020-11-13 17:34:10.621+00 0 ANONYMOUS ANONYMOUS 7 ANALYST 135169 2020-11-13 17:34:10.646+00 2020-11-13 17:34:10.646+00 0 ANONYMOUS ANONYMOUS 8 MASTER_ANALYST 454659 2020-11-13 17:34:10.661+00 2020-11-13 17:34:10.661+00 0 ANONYMOUS ANONYMOUS \. -- -- Data for Name: pd_scheduled_job; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_scheduled_job (nid, entity_nid, cron_expression, job_handler_name, is_enabled, last_run_at, next_run_at, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 1 \N 0 0 3 * * ? maintenanceSvc T 2021-01-28 03:00:01+00 2021-01-29 03:00:00+00 2020-11-13 17:33:32.796113+00 2021-01-28 03:00:01.038+00 5 ANONYMOUS \N 2 \N 0 0/5 * * * ? garbageCollectorSvc T 2021-01-28 13:40:01+00 2021-01-28 13:45:00+00 2020-11-13 17:33:36.571159+00 2021-01-28 13:40:01.013+00 646 ANONYMOUS \N 3 \N 0 * * * * ? podiumDeadJobCleanerSvc T 2021-01-28 13:40:01+00 2021-01-28 13:41:00+00 \N 2021-01-28 13:40:01.023+00 3202 ANONYMOUS \N 5 \N 0 0 * ? * * * publishToQlikPurgingSvc T 2021-01-28 13:00:01+00 2021-01-28 14:00:00+00 2020-11-13 17:33:42.075796+00 2021-01-28 13:00:01.022+00 57 ANONYMOUS \N \. -- -- Data for Name: pd_scheduled_job_prop; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_scheduled_job_prop (nid, scheduled_job_nid, prop_name, prop_value, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 1 1 schedule.type Custom Schedule 2020-11-13 17:33:32.911116+00 2020-11-13 17:33:32.911116+00 0 \N \N 2 1 maintenance.info.tasks 2020-11-13 17:33:32.911116+00 2020-11-13 17:33:32.911116+00 0 \N \N \. -- -- Data for Name: pd_schema_version; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_schema_version (version_rank, installed_rank, version, description, type, script, checksum, installed_by, installed_on, execution_time, success) FROM stdin; 1 1 0 Base Podium Install INIT core_ddl \N base installer 2020-11-13 17:28:27.501215+00 0 t 2 2 1 pdUpgrade SQL V1__pdUpgrade.sql -1222859865 podium_md 2020-11-13 17:33:32.072139+00 76 t 3 3 2 pdUpgrade SQL V2__pdUpgrade.sql -200509532 podium_md 2020-11-13 17:33:32.172715+00 5 t 4 4 3 pdUpgrade SQL V3__pdUpgrade.sql -125886103 podium_md 2020-11-13 17:33:32.194129+00 2 t 5 5 4 pdUpgrade SQL V4__pdUpgrade.sql -689272708 podium_md 2020-11-13 17:33:32.213221+00 58 t 6 6 5 pdUpgrade SQL V5__pdUpgrade.sql 576266615 podium_md 2020-11-13 17:33:32.287525+00 41 t 7 7 6 pdUpgrade SQL V6__pdUpgrade.sql -1366847632 podium_md 2020-11-13 17:33:32.343081+00 49 t 8 8 7 pdUpgrade SQL V7__pdUpgrade.sql 2054123795 podium_md 2020-11-13 17:33:32.40323+00 24 t 9 9 8 pdUpgrade SQL V8__pdUpgrade.sql -1575786586 podium_md 2020-11-13 17:33:32.438839+00 35 t 10 10 9 pdUpgrade SQL V9__pdUpgrade.sql 906492843 podium_md 2020-11-13 17:33:32.489349+00 3 t 11 11 10 pdUpgrade SQL V10__pdUpgrade.sql 675659763 podium_md 2020-11-13 17:33:32.503364+00 118 t 12 12 11 pdUpgrade SQL V11__pdUpgrade.sql 596670511 podium_md 2020-11-13 17:33:32.632808+00 5 t 13 13 12 pdUpgrade SQL V12__pdUpgrade.sql -824191578 podium_md 2020-11-13 17:33:32.652598+00 2 t 14 14 13 pdUpgrade SQL V13__pdUpgrade.sql 511274092 podium_md 2020-11-13 17:33:32.668764+00 4 t 15 15 14 pdUpgrade SQL V14__pdUpgrade.sql 1795039600 podium_md 2020-11-13 17:33:32.686703+00 15 t 16 16 15 pdUpgrade SQL V15__pdUpgrade.sql 1077845622 podium_md 2020-11-13 17:33:32.715866+00 22 t 17 17 16 pdUpgrade SQL V16__pdUpgrade.sql 617157319 podium_md 2020-11-13 17:33:32.752241+00 1 t 18 18 17 pdUpgrade SQL V17__pdUpgrade.sql -2095812094 podium_md 2020-11-13 17:33:32.764039+00 9 t 19 19 18 pdUpgrade SQL V18__pdUpgrade.sql -380491491 podium_md 2020-11-13 17:33:32.784362+00 35 t 20 20 19 pdUpgrade SQL V19__pdUpgrade.sql 1400424938 podium_md 2020-11-13 17:33:32.834814+00 3 t 21 21 20 pdUpgrade SQL V20__pdUpgrade.sql -1069040903 podium_md 2020-11-13 17:33:32.851677+00 4 t 22 22 21 pdUpgrade SQL V21__pdUpgrade.sql 767509131 podium_md 2020-11-13 17:33:32.868576+00 9 t 23 23 22 pdUpgrade SQL V22__pdUpgrade.sql 199472990 podium_md 2020-11-13 17:33:32.891142+00 2 t 24 24 23 pdUpgrade SQL V23__pdUpgrade.sql -1819607265 podium_md 2020-11-13 17:33:32.904683+00 7 t 25 25 24 pdUpgrade SQL V24__pdUpgrade.sql -847167097 podium_md 2020-11-13 17:33:32.923119+00 35 t 26 26 25 pdUpgrade SQL V25__pdUpgrade.sql -2078295009 podium_md 2020-11-13 17:33:32.969617+00 0 t 27 27 26 pdUpgrade SQL V26__pdUpgrade.sql -89445570 podium_md 2020-11-13 17:33:32.983086+00 39 t 28 28 27 pdUpgrade SQL V27__pdUpgrade.sql 2055929948 podium_md 2020-11-13 17:33:33.03206+00 3 t 29 29 28 pdUpgrade SQL V28__pdUpgrade.sql -164279408 podium_md 2020-11-13 17:33:33.047132+00 7 t 30 30 29 pdUpgrade SQL V29__pdUpgrade.sql 2128871578 podium_md 2020-11-13 17:33:33.067626+00 4 t 31 31 30 pdUpgrade SQL V30__pdUpgrade.sql -369828909 podium_md 2020-11-13 17:33:33.0831+00 5 t 32 32 31 pdUpgrade SQL V31__pdUpgrade.sql 993069085 podium_md 2020-11-13 17:33:33.097136+00 1 t 33 33 32 pdUpgrade SQL V32__pdUpgrade.sql 1934525114 podium_md 2020-11-13 17:33:33.108585+00 4 t 34 34 33 pdUpgrade SQL V33__pdUpgrade.sql -16092987 podium_md 2020-11-13 17:33:33.123272+00 10 t 35 35 34 pdUpgrade SQL V34__pdUpgrade.sql -1425615988 podium_md 2020-11-13 17:33:33.145818+00 0 t 36 36 35 pdUpgrade SQL V35__pdUpgrade.sql -1194560510 podium_md 2020-11-13 17:33:33.158328+00 1 t 37 37 36 pdUpgrade SQL V36__pdUpgrade.sql 1389909534 podium_md 2020-11-13 17:33:33.170649+00 36 t 38 38 37 pdUpgrade SQL V37__pdUpgrade.sql -1410323747 podium_md 2020-11-13 17:33:33.21798+00 5 t 39 39 38 pdUpgrade SQL V38__pdUpgrade.sql -1733845364 podium_md 2020-11-13 17:33:33.233619+00 23 t 40 40 39 pdUpgrade SQL V39__pdUpgrade.sql 1369374767 podium_md 2020-11-13 17:33:33.268732+00 3 t 41 41 40 pdUpgrade SQL V40__pdUpgrade.sql 2052652125 podium_md 2020-11-13 17:33:33.28142+00 1 t 42 42 41 pdUpgrade SQL V41__pdUpgrade.sql 1276597657 podium_md 2020-11-13 17:33:33.291639+00 21 t 43 43 42 pdUpgrade SQL V42__pdUpgrade.sql -527180801 podium_md 2020-11-13 17:33:33.322299+00 27 t 44 44 43 pdUpgrade SQL V43__pdUpgrade.sql -945567364 podium_md 2020-11-13 17:33:33.358758+00 4 t 45 45 44 pdUpgrade SQL V44__pdUpgrade.sql -1635421801 podium_md 2020-11-13 17:33:33.373071+00 29 t 46 46 45 pdUpgrade SQL V45__pdUpgrade.sql -180622466 podium_md 2020-11-13 17:33:33.412345+00 11 t 47 47 46 pdUpgrade SQL V46__pdUpgrade.sql 1649884653 podium_md 2020-11-13 17:33:33.432974+00 5 t 48 48 47 pdUpgrade SQL V47__pdUpgrade.sql 1416680515 podium_md 2020-11-13 17:33:33.44878+00 60 t 49 49 48 pdUpgrade SQL V48__pdUpgrade.sql 1967575859 podium_md 2020-11-13 17:33:33.521066+00 24 t 50 50 49 pdUpgrade SQL V49__pdUpgrade.sql 604629957 podium_md 2020-11-13 17:33:33.555587+00 36 t 51 51 50 pdUpgrade SQL V50__pdUpgrade.sql 1882988300 podium_md 2020-11-13 17:33:33.603389+00 3 t 52 52 51 pdUpgrade SQL V51__pdUpgrade.sql 1589250495 podium_md 2020-11-13 17:33:33.61876+00 154 t 53 53 52 pdUpgrade SPRING_JDBC com.nvs.core.init.schema.postgresql.V52__pdUpgrade \N podium_md 2020-11-13 17:33:33.785619+00 15 t 54 54 53 pdUpgrade SQL V53__pdUpgrade.sql 1258611045 podium_md 2020-11-13 17:33:33.81658+00 35 t 55 55 54 pdUpgrade SQL V54__pdUpgrade.sql 510527755 podium_md 2020-11-13 17:33:33.86614+00 7 t 56 56 55 pdUpgrade SQL V55__pdUpgrade.sql 1001450996 podium_md 2020-11-13 17:33:33.886294+00 35 t 57 57 56 pdUpgrade SQL V56__pdUpgrade.sql 897108241 podium_md 2020-11-13 17:33:33.933911+00 3 t 58 58 57 pdUpgrade SQL V57__pdUpgrade.sql 240557388 podium_md 2020-11-13 17:33:33.947003+00 2 t 59 59 58 pdUpgrade SQL V58__pdUpgrade.sql -2016826479 podium_md 2020-11-13 17:33:33.964774+00 6 t 60 60 59 pdUpgrade SQL V59__pdUpgrade.sql -1208861365 podium_md 2020-11-13 17:33:33.981645+00 1 t 61 61 60 pdUpgrade SQL V60__pdUpgrade.sql 554464319 podium_md 2020-11-13 17:33:33.993561+00 1 t 62 62 61 pdUpgrade SQL V61__pdUpgrade.sql -1627946131 podium_md 2020-11-13 17:33:34.006355+00 3 t 63 63 62 pdUpgrade SQL V62__pdUpgrade.sql 1407211554 podium_md 2020-11-13 17:33:34.021229+00 0 t 64 64 63 pdUpgrade SQL V63__pdUpgrade.sql 869211793 podium_md 2020-11-13 17:33:34.035666+00 58 t 65 65 64 pdUpgrade SQL V64__pdUpgrade.sql 2011998079 podium_md 2020-11-13 17:33:34.10439+00 38 t 66 66 65 pdUpgrade SQL V65__pdUpgrade.sql 1978343364 podium_md 2020-11-13 17:33:34.155563+00 8 t 67 67 66 pdUpgrade SQL V66__pdUpgrade.sql 55186924 podium_md 2020-11-13 17:33:34.173895+00 38 t 68 68 67 pdUpgrade SQL V67__pdUpgrade.sql 7073757 podium_md 2020-11-13 17:33:34.224017+00 1 t 69 69 68 pdUpgrade SQL V68__pdUpgrade.sql -384180209 podium_md 2020-11-13 17:33:34.240133+00 2 t 70 70 69 pdUpgrade SQL V69__pdUpgrade.sql 1099535689 podium_md 2020-11-13 17:33:34.255709+00 39 t 71 71 70 pdUpgrade SQL V70__pdUpgrade.sql -1886115616 podium_md 2020-11-13 17:33:34.305054+00 4 t 72 72 71 pdUpgrade SQL V71__pdUpgrade.sql 486625909 podium_md 2020-11-13 17:33:34.319429+00 5 t 73 73 72 pdUpgrade SQL V72__pdUpgrade.sql 1012773480 podium_md 2020-11-13 17:33:34.335052+00 4 t 74 74 73 pdUpgrade SQL V73__pdUpgrade.sql 870453253 podium_md 2020-11-13 17:33:34.35167+00 3 t 75 75 74 pdUpgrade SQL V74__pdUpgrade.sql -60059267 podium_md 2020-11-13 17:33:34.366925+00 3 t 76 76 75 pdUpgrade SQL V75__pdUpgrade.sql -1204349890 podium_md 2020-11-13 17:33:34.384053+00 1 t 77 77 76 pdUpgrade SQL V76__pdUpgrade.sql 2017142584 podium_md 2020-11-13 17:33:34.399169+00 1 t 78 78 77 pdUpgrade SQL V77__pdUpgrade.sql 1893944103 podium_md 2020-11-13 17:33:34.41443+00 3 t 79 79 78 pdUpgrade SQL V78__pdUpgrade.sql -396446235 podium_md 2020-11-13 17:33:34.428188+00 4 t 80 80 79 pdUpgrade SQL V79__pdUpgrade.sql -1516386359 podium_md 2020-11-13 17:33:34.443359+00 8 t 81 81 80 pdUpgrade SQL V80__pdUpgrade.sql -792847426 podium_md 2020-11-13 17:33:34.463135+00 6 t 82 82 81 pdUpgrade SQL V81__pdUpgrade.sql -27305356 podium_md 2020-11-13 17:33:34.481965+00 1 t 83 83 82 pdUpgrade SQL V82__pdUpgrade.sql 1079770987 podium_md 2020-11-13 17:33:34.495136+00 5 t 84 84 83 pdUpgrade SQL V83__pdUpgrade.sql -2100782712 podium_md 2020-11-13 17:33:34.513568+00 35 t 85 85 84 pdUpgrade SQL V84__pdUpgrade.sql 314295583 podium_md 2020-11-13 17:33:34.562944+00 118 t 86 86 85 pdUpgrade SQL V85__pdUpgrade.sql 309134928 podium_md 2020-11-13 17:33:34.692863+00 4 t 87 87 86 pdUpgrade SQL V86__pdUpgrade.sql 1428341949 podium_md 2020-11-13 17:33:34.709931+00 5 t 88 88 87 pdUpgrade SQL V87__pdUpgrade.sql -568339359 podium_md 2020-11-13 17:33:34.728085+00 0 t 89 89 88 pdUpgrade SQL V88__pdUpgrade.sql -1445287247 podium_md 2020-11-13 17:33:34.742055+00 27 t 90 90 89 pdUpgrade SQL V89__pdUpgrade.sql 1134178615 podium_md 2020-11-13 17:33:34.780576+00 36 t 91 91 90 pdUpgrade SQL V90__pdUpgrade.sql -1823330321 podium_md 2020-11-13 17:33:34.828256+00 3 t 92 92 91 pdUpgrade SQL V91__pdUpgrade.sql -968841759 podium_md 2020-11-13 17:33:34.84086+00 3 t 93 93 92 pdUpgrade SQL V92__pdUpgrade.sql -744341677 podium_md 2020-11-13 17:33:34.853941+00 6 t 94 94 93 pdUpgrade SQL V93__pdUpgrade.sql 2045821073 podium_md 2020-11-13 17:33:34.869071+00 14 t 95 95 94 pdUpgrade SQL V94__pdUpgrade.sql -1122229354 podium_md 2020-11-13 17:33:34.892959+00 6 t 96 96 95 pdUpgrade SQL V95__pdUpgrade.sql 1599961799 podium_md 2020-11-13 17:33:34.910799+00 6 t 97 97 96 pdUpgrade SQL V96__pdUpgrade.sql -1846858215 podium_md 2020-11-13 17:33:34.928588+00 14 t 98 98 97 pdUpgrage SQL V97__pdUpgrage.sql -1586140789 podium_md 2020-11-13 17:33:34.953279+00 9 t 99 99 98 pdUpgrage SQL V98__pdUpgrage.sql -1935692574 podium_md 2020-11-13 17:33:34.973546+00 1 t 100 100 99 pdUpgrage SQL V99__pdUpgrage.sql 664279261 podium_md 2020-11-13 17:33:34.987762+00 4 t 101 101 100 pdUpgrage SQL V100__pdUpgrage.sql 1418540419 podium_md 2020-11-13 17:33:35.002772+00 37 t 102 102 101 pdUpgrage SQL V101__pdUpgrage.sql 1090627691 podium_md 2020-11-13 17:33:35.050558+00 8 t 103 103 102 pdUpgrage SQL V102__pdUpgrage.sql -795668444 podium_md 2020-11-13 17:33:35.068448+00 10 t 104 104 103 pdUpgrage SQL V103__pdUpgrage.sql -2070203145 podium_md 2020-11-13 17:33:35.089116+00 19 t 105 105 104 pdUpgrage SQL V104__pdUpgrage.sql 848501969 podium_md 2020-11-13 17:33:35.117831+00 5 t 106 106 105 pdUpgrage SQL V105__pdUpgrage.sql -1934400561 podium_md 2020-11-13 17:33:35.133128+00 7 t 107 107 106 pdUpgrade SQL V106__pdUpgrade.sql -1665807597 podium_md 2020-11-13 17:33:35.154322+00 49 t 108 108 107 pdUpgrade SQL V107__pdUpgrade.sql -100111864 podium_md 2020-11-13 17:33:35.220168+00 20 t 109 109 108 pdUpgrade SQL V108__pdUpgrade.sql 1244073645 podium_md 2020-11-13 17:33:35.252671+00 50 t 110 110 109 pdUpgrade SQL V109__pdUpgrade.sql -1258664607 podium_md 2020-11-13 17:33:35.316091+00 5 t 111 111 110 pdUpgrage SQL V110__pdUpgrage.sql 483160815 podium_md 2020-11-13 17:33:35.331358+00 7 t 112 112 111 pdUpgrade SQL V111__pdUpgrade.sql -838587333 podium_md 2020-11-13 17:33:35.347541+00 0 t 113 113 112 pdUpgrade SQL V112__pdUpgrade.sql 2010457380 podium_md 2020-11-13 17:33:35.362078+00 1 t 114 114 113 pdUpgrade SQL V113__pdUpgrade.sql 1975196946 podium_md 2020-11-13 17:33:35.371797+00 4 t 115 115 114 pdUpgrade SQL V114__pdUpgrade.sql -825861577 podium_md 2020-11-13 17:33:35.385727+00 4 t 116 116 115 pdUpgrade SQL V115__pdUpgrade.sql 1680926833 podium_md 2020-11-13 17:33:35.404185+00 5 t 117 117 116 pdUpgrade SQL V116__pdUpgrade.sql -1549248579 podium_md 2020-11-13 17:33:35.422072+00 4 t 118 118 117 pdUpgrade SQL V117__pdUpgrade.sql -1116714854 podium_md 2020-11-13 17:33:35.43878+00 1 t 119 119 118 pdUpgrade SQL V118__pdUpgrade.sql -728074977 podium_md 2020-11-13 17:33:35.449716+00 3 t 120 120 119 pdUpgrade SQL V119__pdUpgrade.sql 88886615 podium_md 2020-11-13 17:33:35.46297+00 4 t 121 121 120 pdUpgrade SQL V120__pdUpgrade.sql 929096092 podium_md 2020-11-13 17:33:35.47602+00 1 t 122 122 121 pdUpgrade SQL V121__pdUpgrade.sql -749828208 podium_md 2020-11-13 17:33:35.486486+00 6 t 123 123 122 pdUpgrade SQL V122__pdUpgrade.sql -1423239947 podium_md 2020-11-13 17:33:35.501982+00 4 t 124 124 123 pdUpgrade SQL V123__pdUpgrade.sql 2048897163 podium_md 2020-11-13 17:33:35.515954+00 20 t 125 125 124 pdUpgrade SQL V124__pdUpgrade.sql 1314113184 podium_md 2020-11-13 17:33:35.54598+00 4 t 126 126 125 pdUpgrade SQL V125__pdUpgrade.sql -1345006992 podium_md 2020-11-13 17:33:35.560711+00 7 t 127 127 126 pdUpgrade SQL V126__pdUpgrade.sql -1987499698 podium_md 2020-11-13 17:33:35.57864+00 5 t 128 128 127 pdUpgrade SQL V127__pdUpgrade.sql -798665926 podium_md 2020-11-13 17:33:35.593416+00 6 t 129 129 128 pdUpgrade SQL V128__pdUpgrade.sql 812333540 podium_md 2020-11-13 17:33:35.608641+00 17 t 130 130 129 pdUpgrade SPRING_JDBC com.nvs.core.init.schema.postgresql.V129__pdUpgrade \N podium_md 2020-11-13 17:33:35.636512+00 12 t 131 131 130 pdUpgrade SQL V130__pdUpgrade.sql 320654177 podium_md 2020-11-13 17:33:35.658671+00 36 t 132 132 131 pdUpgrade SQL V131__pdUpgrade.sql 337253157 podium_md 2020-11-13 17:33:35.705402+00 21 t 133 133 132 pdUpgrade SQL V132__pdUpgrade.sql -960434552 podium_md 2020-11-13 17:33:35.737694+00 19 t 134 134 133 pdUpgrade SQL V133__pdUpgrade.sql -827995778 podium_md 2020-11-13 17:33:35.765846+00 21 t 135 135 134 pdUpgrade SQL V134__pdUpgrade.sql -45505926 podium_md 2020-11-13 17:33:35.797667+00 4 t 136 136 135 pdUpgrade SQL V135__pdUpgrade.sql 1287375462 podium_md 2020-11-13 17:33:35.812842+00 17 t 137 137 136 pdUpgrade SQL V136__pdUpgrade.sql 193833140 podium_md 2020-11-13 17:33:35.84293+00 4 t 138 138 137 pdUpgrade SQL V137__pdUpgrade.sql 537005131 podium_md 2020-11-13 17:33:35.861493+00 36 t 139 139 138 pdUpgrade SQL V138__pdUpgrade.sql 11402712 podium_md 2020-11-13 17:33:35.910862+00 6 t 140 140 139 pdUpgrade SQL V139__pdUpgrade.sql 939398106 podium_md 2020-11-13 17:33:35.928129+00 8 t 141 141 140 pdUpgrade SQL V140__pdUpgrade.sql -77634949 podium_md 2020-11-13 17:33:35.946332+00 4 t 142 142 141 pdUpgrade SQL V141__pdUpgrade.sql 770197957 podium_md 2020-11-13 17:33:35.961039+00 18 t 143 143 142 pdUpgrade SQL V142__pdUpgrade.sql 270829896 podium_md 2020-11-13 17:33:35.990426+00 7 t 144 144 143 pdUpgrade SQL V143__pdUpgrade.sql 2015739716 podium_md 2020-11-13 17:33:36.008239+00 6 t 145 145 144 pdUpgrade SQL V144__pdUpgrade.sql 47202308 podium_md 2020-11-13 17:33:36.028366+00 15 t 146 146 145 pdUpgrade SQL V145__pdUpgrade.sql 535931791 podium_md 2020-11-13 17:33:36.056186+00 15 t 147 147 146 pdUpgrade SQL V146__pdUpgrade.sql -1594087155 podium_md 2020-11-13 17:33:36.083731+00 22 t 148 148 147 pdUpgrade SQL V147__pdUpgrade.sql 1772714961 podium_md 2020-11-13 17:33:36.119653+00 1 t 149 149 148 pdUpgrade SQL V148__pdUpgrade.sql -12216144 podium_md 2020-11-13 17:33:36.132001+00 3 t 150 150 149 pdUpgrade SQL V149__pdUpgrade.sql 1981685761 podium_md 2020-11-13 17:33:36.144962+00 5 t 151 151 150 pdUpgrade SQL V150__pdUpgrade.sql 1188626047 podium_md 2020-11-13 17:33:36.160108+00 1 t 152 152 151 pdUpgrade SQL V151__pdUpgrade.sql 1833654122 podium_md 2020-11-13 17:33:36.169989+00 3 t 153 153 152 pdUpgrade SQL V152__pdUpgrade.sql 636538779 podium_md 2020-11-13 17:33:36.183408+00 10 t 154 154 153 pdUpgrade SQL V153__pdUpgrade.sql 909225292 podium_md 2020-11-13 17:33:36.20354+00 10 t 155 155 154 pdUpgrade SQL V154__pdUpgrade.sql 201500447 podium_md 2020-11-13 17:33:36.228419+00 12 t 156 156 155 pdUpgrade SQL V155__pdUpgrade.sql 994718750 podium_md 2020-11-13 17:33:36.251021+00 8 t 157 157 156 pdUpgrade SQL V156__pdUpgrade.sql -1545043486 podium_md 2020-11-13 17:33:36.270282+00 7 t 158 158 157 pdUpgrade SQL V157__pdUpgrade.sql -88308905 podium_md 2020-11-13 17:33:36.287536+00 5 t 159 159 158 pdUpgrade SQL V158__pdUpgrade.sql 1285542461 podium_md 2020-11-13 17:33:36.302134+00 16 t 160 160 159 pdUpgrade SQL V159__pdUpgrade.sql 284031072 podium_md 2020-11-13 17:33:36.328273+00 6 t 161 161 160 pdUpgrade SQL V160__pdUpgrade.sql -450911365 podium_md 2020-11-13 17:33:36.344114+00 4 t 162 162 161 pdUpgrade SQL V161__pdUpgrade.sql -123702676 podium_md 2020-11-13 17:33:36.358096+00 11 t 163 163 162 pdUpgrade SQL V162__pdUpgrade.sql 1888462913 podium_md 2020-11-13 17:33:36.379222+00 4 t 164 164 163 pdUpgrade SQL V163__pdUpgrade.sql 1541928265 podium_md 2020-11-13 17:33:36.392539+00 8 t 165 165 164 pdUpgrade SQL V164__pdUpgrade.sql -916215185 podium_md 2020-11-13 17:33:36.41806+00 4 t 166 166 165 pdUpgrade SQL V165__pdUpgrade.sql -907636548 podium_md 2020-11-13 17:33:36.432868+00 26 t 167 167 166 pdUpgrade SQL V166__pdUpgrade.sql 1039194271 podium_md 2020-11-13 17:33:36.469381+00 5 t 168 168 167 pdUpgrade SQL V167__pdUpgrade.sql 200714512 podium_md 2020-11-13 17:33:36.485188+00 21 t 169 169 168 pdUpgrade SQL V168__pdUpgrade.sql -1079969639 podium_md 2020-11-13 17:33:36.5171+00 3 t 170 170 169 pdUpgrade SQL V169__pdUpgrade.sql -852365464 podium_md 2020-11-13 17:33:36.531517+00 13 t 171 171 170 pdUpgrade SQL V170__pdUpgrade.sql -50182868 podium_md 2020-11-13 17:33:36.555919+00 62 t 172 172 171 pdUpgrade SQL V171__pdUpgrade.sql 1998216496 podium_md 2020-11-13 17:33:36.629909+00 5 t 173 173 172 pdUpgrade SQL V172__pdUpgrade.sql -1234200362 podium_md 2020-11-13 17:33:36.648281+00 6 t 174 174 173 pdUpgrade SQL V173__pdUpgrade.sql -1055732867 podium_md 2020-11-13 17:33:36.667355+00 12 t 175 175 174 pdUpgrade SQL V174__pdUpgrade.sql -444995206 podium_md 2020-11-13 17:33:36.692574+00 5 t 176 176 175 pdUpgrade SQL V175__pdUpgrade.sql -1316058284 podium_md 2020-11-13 17:33:36.707381+00 0 t 177 177 176 pdUpgrade SQL V176__pdUpgrade.sql -1028683166 podium_md 2020-11-13 17:33:36.718788+00 4 t 178 178 177 pdUpgrade SQL V177__pdUpgrade.sql 466281653 podium_md 2020-11-13 17:33:36.733069+00 12 t 179 179 178 pdUpgrade SQL V178__pdUpgrade.sql -2026285459 podium_md 2020-11-13 17:33:36.755658+00 3 t 180 180 179 pdUpgrade SQL V179__pdUpgrade.sql -1225231083 podium_md 2020-11-13 17:33:36.768848+00 4 t 181 181 180 pdUpgrade SQL V180__pdUpgrade.sql -1884292651 podium_md 2020-11-13 17:33:36.783191+00 4 t 182 182 181 pdUpgrade SQL V181__pdUpgrade.sql -382381852 podium_md 2020-11-13 17:33:36.797196+00 6 t 183 183 182 pdUpgrade SQL V182__pdUpgrade.sql -1124987959 podium_md 2020-11-13 17:33:36.813054+00 5 t 184 184 183 pdUpgrade SQL V183__pdUpgrade.sql -1029810435 podium_md 2020-11-13 17:33:36.828079+00 4 t 185 185 184 pdUpgrade SQL V184__pdUpgrade.sql 1582900068 podium_md 2020-11-13 17:33:36.841751+00 6 t 186 186 185 pdUpgrade SQL V185__pdUpgrade.sql 657405985 podium_md 2020-11-13 17:33:36.858062+00 32 t 187 187 186 pdUpgrade SQL V186__pdUpgrade.sql -6439798 podium_md 2020-11-13 17:33:36.900732+00 7 t 188 188 187 pdUpgrade SQL V187__pdUpgrade.sql -903626902 podium_md 2020-11-13 17:33:36.921925+00 5 t 189 189 188 pdUpgrade SQL V188__pdUpgrade.sql 2054235657 podium_md 2020-11-13 17:33:36.947099+00 7 t 190 190 189 pdUpgrade SQL V189__pdUpgrade.sql -1121466487 podium_md 2020-11-13 17:33:36.965001+00 5 t 191 191 190 pdUpgrade SPRING_JDBC com.nvs.core.init.schema.postgresql.V190__pdUpgrade \N podium_md 2020-11-13 17:33:36.988102+00 136 t 192 192 191 pdUpgrade SQL V191__pdUpgrade.sql 1073599680 podium_md 2020-11-13 17:33:37.136845+00 4 t 193 193 192 pdUpgrade SQL V192__pdUpgrade.sql 321410351 podium_md 2020-11-13 17:33:37.154115+00 12 t 194 194 193 pdUpgrade SQL V193__pdUpgrade.sql -784567300 podium_md 2020-11-13 17:33:37.180136+00 5 t 195 195 194 pdUpgrade SPRING_JDBC com.nvs.core.init.schema.postgresql.V194__pdUpgrade \N podium_md 2020-11-13 17:33:37.195208+00 916 t 196 196 195 pdUpgrade SQL V195__pdUpgrade.sql 989644038 podium_md 2020-11-13 17:33:38.12419+00 6 t 197 197 196 pdUpgrade SQL V196__pdUpgrade.sql 952599216 podium_md 2020-11-13 17:33:38.141733+00 6 t 198 198 197 pdUpgrade SQL V197__pdUpgrade.sql 1397324394 podium_md 2020-11-13 17:33:38.15858+00 38 t 199 199 198 pdUpgrade SPRING_JDBC com.nvs.core.init.schema.postgresql.V198__pdUpgrade \N podium_md 2020-11-13 17:33:38.207717+00 86 t 200 200 199 pdUpgrade SQL V199__pdUpgrade.sql 1861431047 podium_md 2020-11-13 17:33:38.306463+00 7 t 201 201 200 pdUpgrade SQL V200__pdUpgrade.sql 1972188095 podium_md 2020-11-13 17:33:38.325544+00 3 t 202 202 201 pdUpgrade SQL V201__pdUpgrade.sql -1538879034 podium_md 2020-11-13 17:33:38.342417+00 17 t 203 203 202 pdUpgrade SQL V202__pdUpgrade.sql -911456886 podium_md 2020-11-13 17:33:38.373787+00 6 t 204 204 203 pdUpgrade SQL V203__pdUpgrade.sql 1740349292 podium_md 2020-11-13 17:33:38.392265+00 4 t 205 205 204 pdUpgrade SQL V204__pdUpgrade.sql 2037164091 podium_md 2020-11-13 17:33:38.408445+00 5 t 206 206 205 pdUpgrade SQL V205__pdUpgrade.sql 392409087 podium_md 2020-11-13 17:33:38.426285+00 3 t 207 207 206 pdUpgrade SQL V206__pdUpgrade.sql -1893595077 podium_md 2020-11-13 17:33:38.441634+00 7 t 208 208 207 pdUpgrade SQL V207__pdUpgrade.sql -1119199660 podium_md 2020-11-13 17:33:38.45898+00 4 t 209 209 208 pdUpgrade SQL V208__pdUpgrade.sql -375619990 podium_md 2020-11-13 17:33:38.471783+00 4 t 210 210 209 pdUpgrade SQL V209__pdUpgrade.sql 466466875 podium_md 2020-11-13 17:33:38.485237+00 4 t 211 211 210 pdUpgrade SQL V210__pdUpgrade.sql -1880700647 podium_md 2020-11-13 17:33:38.498586+00 70 t 212 212 211 pdUpgrade SQL V211__pdUpgrade.sql -1604775162 podium_md 2020-11-13 17:33:38.579468+00 4 t 213 213 212 pdUpgrade SQL V212__pdUpgrade.sql -528850595 podium_md 2020-11-13 17:33:38.595464+00 33 t 214 214 213 pdUpgrade SQL V213__pdUpgrade.sql 888677214 podium_md 2020-11-13 17:33:38.638528+00 3 t 215 215 214 pdUpgrade SQL V214__pdUpgrade.sql -1797482106 podium_md 2020-11-13 17:33:38.652444+00 4 t 216 216 215 pdUpgrade SQL V215__pdUpgrade.sql -1790319866 podium_md 2020-11-13 17:33:38.666869+00 2 t 217 217 216 pdUpgrade SQL V216__pdUpgrade.sql -34024832 podium_md 2020-11-13 17:33:38.681108+00 86 t 218 218 217 pdUpgrade SQL V217__pdUpgrade.sql -2062399908 podium_md 2020-11-13 17:33:38.779052+00 14 t 219 219 218 pdUpgrade SQL V218__pdUpgrade.sql -2089126232 podium_md 2020-11-13 17:33:38.802922+00 62 t 220 220 219 pdUpgrade SQL V219__pdUpgrade.sql -271115864 podium_md 2020-11-13 17:33:38.875812+00 11 t 221 221 220 pdUpgrade SQL V220__pdUpgrade.sql -207048293 podium_md 2020-11-13 17:33:38.898244+00 3 t 222 222 221 pdUpgrade SQL V221__pdUpgrade.sql -2022773645 podium_md 2020-11-13 17:33:38.911539+00 1 t 223 223 222 pdUpgrade SQL V222__pdUpgrade.sql 1489338305 podium_md 2020-11-13 17:33:38.923351+00 4 t 224 224 223 pdUpgrade SQL V223__pdUpgrade.sql -1687379642 podium_md 2020-11-13 17:33:38.938319+00 7 t 225 225 224 pdUpgrade SQL V224__pdUpgrade.sql -571815277 podium_md 2020-11-13 17:33:38.956079+00 7 t 226 226 225 pdUpgrade SQL V225__pdUpgrade.sql -326945076 podium_md 2020-11-13 17:33:38.973252+00 4 t 227 227 226 pdUpgrade SQL V226__pdUpgrade.sql 1991873472 podium_md 2020-11-13 17:33:38.987177+00 5 t 228 228 227 pdUpgrade SQL V227__pdUpgrade.sql -237523250 podium_md 2020-11-13 17:33:39.001649+00 31 t 229 229 228 pdUpgrade SQL V228__pdUpgrade.sql 218286632 podium_md 2020-11-13 17:33:39.043462+00 5 t 230 230 229 pdUpgrade SQL V229__pdUpgrade.sql 820266810 podium_md 2020-11-13 17:33:39.059916+00 8 t 231 231 230 pdUpgrade SQL V230__pdUpgrade.sql -1928855844 podium_md 2020-11-13 17:33:39.077763+00 7 t 232 232 231 pdUpgrade SQL V231__pdUpgrade.sql -1966171683 podium_md 2020-11-13 17:33:39.095036+00 7 t 233 233 232 pdUpgrade SQL V232__pdUpgrade.sql -1743803972 podium_md 2020-11-13 17:33:39.11248+00 7 t 234 234 233 pdUpgrade SQL V233__pdUpgrade.sql 256773997 podium_md 2020-11-13 17:33:39.13019+00 6 t 235 235 234 pdUpgrade SQL V234__pdUpgrade.sql -1271895941 podium_md 2020-11-13 17:33:39.147144+00 16 t 236 236 235 pdUpgrade SQL V235__pdUpgrade.sql 516736478 podium_md 2020-11-13 17:33:39.173614+00 12 t 237 237 235.1 pdUpgrade SQL V235.1__pdUpgrade.sql -920965729 podium_md 2020-11-13 17:33:39.196542+00 4 t 238 238 236 pdUpgrade SQL V236__pdUpgrade.sql 1377057377 podium_md 2020-11-13 17:33:39.211386+00 3 t 239 239 237 pdUpgrade SQL V237__pdUpgrade.sql 2011702432 podium_md 2020-11-13 17:33:39.226279+00 4 t 240 240 238 pdUpgrade SQL V238__pdUpgrade.sql -1402352133 podium_md 2020-11-13 17:33:39.240989+00 6 t 241 241 239 pdUpgrade SPRING_JDBC com.nvs.core.init.schema.ansisql.V239__pdUpgrade \N podium_md 2020-11-13 17:33:39.260672+00 8 t 242 242 240 pdUpgrade SQL V240__pdUpgrade.sql 1861681017 podium_md 2020-11-13 17:33:39.279063+00 72 t 243 243 241 pdUpgrade SQL V241__pdUpgrade.sql 257697885 podium_md 2020-11-13 17:33:39.362336+00 6 t 244 244 242 pdUpgrade SQL V242__pdUpgrade.sql -155862983 podium_md 2020-11-13 17:33:39.377668+00 6 t 245 245 243 pdUpgrade SQL V243__pdUpgrade.sql -1031335468 podium_md 2020-11-13 17:33:39.393359+00 5 t 246 246 244 pdUpgrade SQL V244__pdUpgrade.sql 405118829 podium_md 2020-11-13 17:33:39.408296+00 17 t 247 247 245 pdUpgrade SQL V245__pdUpgrade.sql -540842512 podium_md 2020-11-13 17:33:39.436275+00 12 t 248 248 246 pdUpgrade SQL V246__pdUpgrade.sql 1823000876 podium_md 2020-11-13 17:33:39.459653+00 4 t 249 249 247 pdUpgrade SQL V247__pdUpgrade.sql 1514674977 podium_md 2020-11-13 17:33:39.474973+00 3 t 250 250 248 pdUpgrade SQL V248__pdUpgrade.sql -1396656371 podium_md 2020-11-13 17:33:39.488153+00 5 t 251 251 249 pdUpgrade SQL V249__pdUpgrade.sql 31273440 podium_md 2020-11-13 17:33:39.504685+00 4 t 252 252 250 pdUpgrade SQL V250__pdUpgrade.sql 112256447 podium_md 2020-11-13 17:33:39.518532+00 7 t 253 253 251 pdUpgrade SQL V251__pdUpgrade.sql -1519015948 podium_md 2020-11-13 17:33:39.537617+00 4 t 254 254 252 pdUpgrade SQL V252__pdUpgrade.sql 41489258 podium_md 2020-11-13 17:33:39.551931+00 13 t 255 255 253 pdUpgrade SQL V253__pdUpgrade.sql 2106118995 podium_md 2020-11-13 17:33:39.578272+00 4 t 256 256 254 pdUpgrade SQL V254__pdUpgrade.sql -888198952 podium_md 2020-11-13 17:33:39.593572+00 29 t 257 257 255 pdUpgrade SQL V255__pdUpgrade.sql 816947404 podium_md 2020-11-13 17:33:39.633871+00 5 t 258 258 256 pdUpgrade SQL V256__pdUpgrade.sql 1000219539 podium_md 2020-11-13 17:33:39.650184+00 3 t 259 259 257 pdUpgrade SQL V257__pdUpgrade.sql 1215446446 podium_md 2020-11-13 17:33:39.664764+00 4 t 260 260 258 pdUpgrade SQL V258__pdUpgrade.sql 1351607170 podium_md 2020-11-13 17:33:39.678886+00 4 t 261 261 259 pdUpgrade SQL V259__pdUpgrade.sql 716409812 podium_md 2020-11-13 17:33:39.693356+00 6 t 262 262 260 pdUpgrade SQL V260__pdUpgrade.sql -1646067277 podium_md 2020-11-13 17:33:39.709559+00 14 t 263 263 261 pdUpgrade SQL V261__pdUpgrade.sql 652963905 podium_md 2020-11-13 17:33:39.733982+00 12 t 264 264 262 pdUpgrade SQL V262__pdUpgrade.sql -964863243 podium_md 2020-11-13 17:33:39.755945+00 15 t 265 265 263 pdUpgrade SQL V263__pdUpgrade.sql 1141877341 podium_md 2020-11-13 17:33:39.784234+00 4 t 266 266 264 pdUpgrade SQL V264__pdUpgrade.sql 1032655133 podium_md 2020-11-13 17:33:39.798888+00 4 t 267 267 265 pdUpgrade SQL V265__pdUpgrade.sql 2094900590 podium_md 2020-11-13 17:33:39.815939+00 6 t 268 268 266 pdUpgrade SQL V266__pdUpgrade.sql -1749647840 podium_md 2020-11-13 17:33:39.830445+00 8 t 269 269 267 pdUpgrade SQL V267__pdUpgrade.sql 1837698699 podium_md 2020-11-13 17:33:39.848055+00 17 t 270 270 268 pdUpgrade SQL V268__pdUpgrade.sql -574567177 podium_md 2020-11-13 17:33:39.874331+00 3 t 271 271 269 pdUpgrade SQL V269__pdUpgrade.sql -519696858 podium_md 2020-11-13 17:33:39.888238+00 5 t 272 272 270 pdUpgrade SQL V270__pdUpgrade.sql 868543390 podium_md 2020-11-13 17:33:39.905223+00 4 t 273 273 271 pdUpgrade SQL V271__pdUpgrade.sql -804361263 podium_md 2020-11-13 17:33:39.920146+00 4 t 274 274 272 pdUpgrade SQL V272__pdUpgrade.sql -870404805 podium_md 2020-11-13 17:33:39.938053+00 6 t 275 275 273 pdUpgrade SQL V273__pdUpgrade.sql -1664364770 podium_md 2020-11-13 17:33:39.955071+00 5 t 276 276 274 pdUpgrade SQL V274__pdUpgrade.sql -634929891 podium_md 2020-11-13 17:33:39.970912+00 4 t 277 277 275 pdUpgrade SQL V275__pdUpgrade.sql 1128131924 podium_md 2020-11-13 17:33:39.986442+00 3 t 278 278 276 pdUpgrade SQL V276__pdUpgrade.sql -912752937 podium_md 2020-11-13 17:33:40.001131+00 32 t 279 279 277 pdUpgrade SQL V277__pdUpgrade.sql 1442319986 podium_md 2020-11-13 17:33:40.044566+00 9 t 280 280 278 pdUpgrade SQL V278__pdUpgrade.sql 2076964630 podium_md 2020-11-13 17:33:40.065308+00 21 t 281 281 279 pdUpgrade SQL V279__pdUpgrade.sql -392225568 podium_md 2020-11-13 17:33:40.098113+00 24 t 282 282 280 pdUpgrade SQL V280__pdUpgrade.sql -1159243852 podium_md 2020-11-13 17:33:40.133386+00 3 t 283 283 281 pdUpgrade SQL V281__pdUpgrade.sql -1089373270 podium_md 2020-11-13 17:33:40.14815+00 2 t 284 284 282 pdUpgrade SQL V282__pdUpgrade.sql -1055107695 podium_md 2020-11-13 17:33:40.161428+00 5 t 285 285 283 pdUpgrade SQL V283__pdUpgrade.sql 1406966623 podium_md 2020-11-13 17:33:40.178215+00 5 t 286 286 284 pdUpgrade SQL V284__pdUpgrade.sql 944025704 podium_md 2020-11-13 17:33:40.193961+00 4 t 287 287 285 pdUpgrade SQL V285__pdUpgrade.sql -748812335 podium_md 2020-11-13 17:33:40.20896+00 4 t 288 288 286 pdUpgrade SQL V286__pdUpgrade.sql -1143846352 podium_md 2020-11-13 17:33:40.22462+00 10 t 289 289 287 pdUpgrade SQL V287__pdUpgrade.sql 1049163 podium_md 2020-11-13 17:33:40.246801+00 11 t 290 290 288 pdUpgrade SQL V288__pdUpgrade.sql 642858408 podium_md 2020-11-13 17:33:40.268874+00 4 t 291 291 289 pdUpgrade SQL V289__pdUpgrade.sql 386282285 podium_md 2020-11-13 17:33:40.28405+00 20 t 292 292 290 pdUpgrade SQL V290__pdUpgrade.sql 1208279000 podium_md 2020-11-13 17:33:40.316714+00 21 t 293 293 291 pdUpgrade SQL V291__pdUpgrade.sql 2019245367 podium_md 2020-11-13 17:33:40.349995+00 9 t 294 294 292 pdUpgrade SQL V292__pdUpgrade.sql -1046778481 podium_md 2020-11-13 17:33:40.37013+00 4 t 295 295 293 pdUpgrade SQL V293__pdUpgrade.sql 1624731234 podium_md 2020-11-13 17:33:40.385591+00 20 t 296 296 294 pdUpgrade SQL V294__pdUpgrade.sql -1293354388 podium_md 2020-11-13 17:33:40.417804+00 11 t 297 297 295 pdUpgrade SQL V295__pdUpgrade.sql 1692230583 podium_md 2020-11-13 17:33:40.440217+00 22 t 298 298 296 pdUpgrade SQL V296__pdUpgrade.sql 540876382 podium_md 2020-11-13 17:33:40.479574+00 21 t 299 299 297 pdUpgrade SQL V297__pdUpgrade.sql -352171547 podium_md 2020-11-13 17:33:40.511072+00 22 t 300 300 298 pdUpgrade SQL V298__pdUpgrade.sql 1489735548 podium_md 2020-11-13 17:33:40.544689+00 5 t 301 301 299 pdUpgrade SQL V299__pdUpgrade.sql 2066749254 podium_md 2020-11-13 17:33:40.56142+00 69 t 302 302 300 pdUpgrade SQL V300__pdUpgrade.sql -880307391 podium_md 2020-11-13 17:33:40.640992+00 7 t 303 303 301 pdUpgrade SQL V301__pdUpgrade.sql -1155963410 podium_md 2020-11-13 17:33:40.659884+00 4 t 304 304 302 pdUpgrade SQL V302__pdUpgrade.sql 1339758318 podium_md 2020-11-13 17:33:40.675214+00 21 t 305 305 303 pdUpgrade SQL V303__pdUpgrade.sql 1200139989 podium_md 2020-11-13 17:33:40.707682+00 4 t 306 306 304 pdUpgrade SQL V304__pdUpgrade.sql 1310546076 podium_md 2020-11-13 17:33:40.723305+00 43 t 307 307 305 pdUpgrade SQL V305__pdUpgrade.sql -1631217191 podium_md 2020-11-13 17:33:40.780706+00 22 t 308 308 306 pdUpgrade SQL V306__pdUpgrade.sql -1199116402 podium_md 2020-11-13 17:33:40.814062+00 23 t 309 309 307 pdUpgrade SQL V307__pdUpgrade.sql 359656465 podium_md 2020-11-13 17:33:40.848482+00 8 t 310 310 308 pdUpgrade SQL V308__pdUpgrade.sql 910709737 podium_md 2020-11-13 17:33:40.868157+00 6 t 311 311 309 pdUpgrade SQL V309__pdUpgrade.sql 421486084 podium_md 2020-11-13 17:33:40.885307+00 1 t 312 312 310 pdUpgrade SQL V310__pdUpgrade.sql 1958827510 podium_md 2020-11-13 17:33:40.896949+00 1 t 313 313 311 pdUpgrade SQL V311__pdUpgrade.sql -175867639 podium_md 2020-11-13 17:33:40.910283+00 24 t 314 314 312 pdUpgrade SQL V312__pdUpgrade.sql -1959636266 podium_md 2020-11-13 17:33:40.977031+00 18 t 315 315 313 pdUpgrade SQL V313__pdUpgrade.sql -108877458 podium_md 2020-11-13 17:33:41.008386+00 37 t 316 316 314 pdUpgrade SQL V314__pdUpgrade.sql -1299150895 podium_md 2020-11-13 17:33:41.056133+00 17 t 317 317 315 pdUpgrade SQL V315__pdUpgrade.sql 1256322402 podium_md 2020-11-13 17:33:41.085181+00 16 t 318 318 316 pdUpgrade SQL V316__pdUpgrade.sql 1071889039 podium_md 2020-11-13 17:33:41.113004+00 5 t 319 319 317 pdUpgrade SQL V317__pdUpgrade.sql -1511604790 podium_md 2020-11-13 17:33:41.128559+00 5 t 320 320 318 pdUpgrade SQL V318__pdUpgrade.sql 648134751 podium_md 2020-11-13 17:33:41.143709+00 4 t 321 321 319 pdUpgrade SQL V319__pdUpgrade.sql 1469239766 podium_md 2020-11-13 17:33:41.158883+00 27 t 322 322 320 pdUpgrade SQL V320__pdUpgrade.sql 541851660 podium_md 2020-11-13 17:33:41.198811+00 4 t 323 323 321 pdUpgrade SQL V321__pdUpgrade.sql -540262874 podium_md 2020-11-13 17:33:41.214099+00 4 t 324 324 322 pdUpgrade SQL V322__pdUpgrade.sql -146878964 podium_md 2020-11-13 17:33:41.22912+00 6 t 325 325 323 pdUpgrade SQL V323__pdUpgrade.sql -1766343991 podium_md 2020-11-13 17:33:41.247388+00 8 t 326 326 324 pdUpgrade SQL V324__pdUpgrade.sql -1471860361 podium_md 2020-11-13 17:33:41.267091+00 6 t 327 327 325 pdUpgrade SQL V325__pdUpgrade.sql 356467052 podium_md 2020-11-13 17:33:41.28381+00 4 t 328 328 326 pdUpgrade SQL V326__pdUpgrade.sql 1589361898 podium_md 2020-11-13 17:33:41.299363+00 5 t 329 329 327 pdUpgrade SQL V327__pdUpgrade.sql -1489071017 podium_md 2020-11-13 17:33:41.315286+00 18 t 330 330 328 pdUpgrade SQL V328__pdUpgrade.sql 1352606046 podium_md 2020-11-13 17:33:41.344866+00 73 t 331 331 329 pdUpgrade SQL V329__pdUpgrade.sql 1463445293 podium_md 2020-11-13 17:33:41.429165+00 4 t 332 332 330 pdUpgrade SQL V330__pdUpgrade.sql -461011469 podium_md 2020-11-13 17:33:41.444864+00 5 t 333 333 331 pdUpgrade SQL V331__pdUpgrade.sql -528818503 podium_md 2020-11-13 17:33:41.462071+00 1 t 334 334 332 pdUpgrade SQL V332__pdUpgrade.sql 327548217 podium_md 2020-11-13 17:33:41.476571+00 4 t 335 335 333 pdUpgrade SQL V333__pdUpgrade.sql 101825117 podium_md 2020-11-13 17:33:41.494668+00 5 t 336 336 334 pdUpgrade SQL V334__pdUpgrade.sql 495442739 podium_md 2020-11-13 17:33:41.512611+00 4 t 337 337 335 pdUpgrade SQL V335__pdUpgrade.sql -1204820006 podium_md 2020-11-13 17:33:41.527245+00 4 t 338 338 336 pdUpgrade SQL V336__pdUpgrade.sql -776295474 podium_md 2020-11-13 17:33:41.541959+00 1 t 339 339 337 pdUpgrade SQL V337__pdUpgrade.sql 940898576 podium_md 2020-11-13 17:33:41.554457+00 9 t 340 340 338 pdUpgrade SQL V338__pdUpgrade.sql 1468800967 podium_md 2020-11-13 17:33:41.573606+00 5 t 341 341 339 pdUpgrade SQL V339__pdUpgrade.sql 238575854 podium_md 2020-11-13 17:33:41.589462+00 18 t 342 342 340 pdUpgrade SQL V340__pdUpgrade.sql -1770769722 podium_md 2020-11-13 17:33:41.618507+00 1 t 343 343 341 pdUpgrade SQL V341__pdUpgrade.sql -25889504 podium_md 2020-11-13 17:33:41.63136+00 15 t 344 344 342 pdUpgrade SQL V342__pdUpgrade.sql 965461715 podium_md 2020-11-13 17:33:41.656975+00 5 t 345 345 343 pdUpgrade SQL V343__pdUpgrade.sql 399727626 podium_md 2020-11-13 17:33:41.676875+00 3 t 346 346 344 pdUpgrade SQL V344__pdUpgrade.sql 1058440729 podium_md 2020-11-13 17:33:41.690785+00 5 t 347 347 345 pdUpgrade SQL V345__pdUpgrade.sql -1321631771 podium_md 2020-11-13 17:33:41.706153+00 5 t 348 348 346 pdUpgrade SQL V346__pdUpgrade.sql 1191852645 podium_md 2020-11-13 17:33:41.722062+00 1 t 349 349 347 pdUpgrade SQL V347__pdUpgrade.sql 1878728584 podium_md 2020-11-13 17:33:41.734554+00 4 t 350 350 348 pdUpgrade SQL V348__pdUpgrade.sql -1911377226 podium_md 2020-11-13 17:33:41.750374+00 4 t 351 351 349 pdUpgrade SQL V349__pdUpgrade.sql 1285986147 podium_md 2020-11-13 17:33:41.766362+00 5 t 352 352 350 pdUpgrade SQL V350__pdUpgrade.sql -1603350648 podium_md 2020-11-13 17:33:41.783689+00 6 t 353 353 351 pdUpgrade SQL V351__pdUpgrade.sql -392209218 podium_md 2020-11-13 17:33:41.801462+00 4 t 354 354 352 pdUpgrade SQL V352__pdUpgrade.sql -1153322068 podium_md 2020-11-13 17:33:41.815758+00 1 t 355 355 353 pdUpgrade SQL V353__pdUpgrade.sql 1452373582 podium_md 2020-11-13 17:33:41.828797+00 8 t 356 356 354 pdUpgrade SQL V354__pdUpgrade.sql 1616118983 podium_md 2020-11-13 17:33:41.847449+00 14 t 357 357 355 pdUpgrade SQL V355__pdUpgrade.sql -330936133 podium_md 2020-11-13 17:33:41.872285+00 4 t 358 358 356 pdUpgrade SQL V356__pdUpgrade.sql 846803853 podium_md 2020-11-13 17:33:41.888806+00 3 t 359 359 357 pdUpgrade SQL V357__pdUpgrade.sql 96090446 podium_md 2020-11-13 17:33:41.903715+00 9 t 360 360 357.1 pdUpgrade SQL V357.1__pdUpgrade.sql 1309200300 podium_md 2020-11-13 17:33:41.923277+00 6 t 361 361 358 pdUpgrade SQL V358__pdUpgrade.sql -781554121 podium_md 2020-11-13 17:33:41.940538+00 5 t 362 362 359 pdUpgrade SQL V359__pdUpgrade.sql -2059257888 podium_md 2020-11-13 17:33:41.956303+00 5 t 363 363 360 pdUpgrade SQL V360__pdUpgrade.sql -1372636961 podium_md 2020-11-13 17:33:41.973923+00 4 t 364 364 361 pdUpgrade SPRING_JDBC com.nvs.core.init.schema.ansisql.V361__pdUpgrade \N podium_md 2020-11-13 17:33:41.988476+00 1 t 365 365 362 pdUpgrade SQL V362__pdUpgrade.sql -323506572 podium_md 2020-11-13 17:33:42.001962+00 8 t 366 366 363 pdUpgrade SQL V363__pdUpgrade.sql 1065590241 podium_md 2020-11-13 17:33:42.021659+00 23 t 367 367 364 pdUpgrade SQL V364__pdUpgrade.sql -1337561686 podium_md 2020-11-13 17:33:42.055174+00 2 t 368 368 365 pdUpgrade SQL V365__pdUpgrade.sql 1085702474 podium_md 2020-11-13 17:33:42.068448+00 4 t 369 369 366 pdUpgrade SQL V366__pdUpgrade.sql -1544650585 podium_md 2020-11-13 17:33:42.08396+00 30 t 370 370 367 pdUpgrade SQL V367__pdUpgrade.sql -1205079238 podium_md 2020-11-13 17:33:42.126472+00 6 t 371 371 368 pdUpgrade SQL V368__pdUpgrade.sql 607291425 podium_md 2020-11-13 17:33:42.143217+00 4 t 372 372 369 pdUpgrade SQL V369__pdUpgrade.sql 625171137 podium_md 2020-11-13 17:33:42.157967+00 101 t 373 373 370 pdUpgrade SQL V370__pdUpgrade.sql -1650629344 podium_md 2020-11-13 17:33:42.270968+00 11 t 374 374 371 pdUpgrade SQL V371__pdUpgrade.sql -2140244917 podium_md 2020-11-13 17:33:42.294106+00 4 t 375 375 372 pdUpgrade SQL V372__pdUpgrade.sql 1882020648 podium_md 2020-11-13 17:33:42.309589+00 11 t 376 376 373 pdUpgrade SQL V373__pdUpgrade.sql 717740550 podium_md 2020-11-13 17:33:42.340268+00 5 t 377 377 374 pdUpgrade SQL V374__pdUpgrade.sql -1825178793 podium_md 2020-11-13 17:33:42.357567+00 5 t 378 378 375 pdUpgrade SQL V375__pdUpgrade.sql -928077253 podium_md 2020-11-13 17:33:42.374865+00 5 t 379 379 376 pdUpgrade SQL V376__pdUpgrade.sql -783658171 podium_md 2020-11-13 17:33:42.391059+00 5 t 380 380 377 pdUpgrade SQL V377__pdUpgrade.sql 1221310616 podium_md 2020-11-13 17:33:42.406713+00 5 t 381 381 378 pdUpgrade SQL V378__pdUpgrade.sql -2032970641 podium_md 2020-11-13 17:33:42.422368+00 1 t 382 382 379 pdUpgrade SQL V379__pdUpgrade.sql 171272400 podium_md 2020-11-13 17:33:42.436225+00 5 t 383 383 380 pdUpgrade SQL V380__pdUpgrade.sql -770044114 podium_md 2020-11-13 17:33:42.452373+00 5 t 384 384 381 pdUpgrade SQL V381__pdUpgrade.sql -1907112567 podium_md 2020-11-13 17:33:42.468459+00 19 t 385 385 382 pdUpgrade SQL V382__pdUpgrade.sql -189664260 podium_md 2020-11-13 17:33:42.499006+00 5 t 386 386 383 pdUpgrade SQL V383__pdUpgrade.sql -639018076 podium_md 2020-11-13 17:33:42.515578+00 20 t 387 387 384 pdUpgrade SQL V384__pdUpgrade.sql -1949867478 podium_md 2020-11-13 17:33:42.549254+00 4 t 388 388 385 pdUpgrade SQL V385__pdUpgrade.sql -778421233 podium_md 2020-11-13 17:33:42.565262+00 1 t 389 389 386 pdUpgrade SQL V386__pdUpgrade.sql 1702523208 podium_md 2020-11-13 17:33:42.579121+00 7 t 390 390 387 pdUpgrade SQL V387__pdUpgrade.sql 1272463552 podium_md 2020-11-13 17:33:42.598349+00 5 t 391 391 388 pdUpgrade SQL V388__pdUpgrade.sql 526197982 podium_md 2020-11-13 17:33:42.615146+00 53 t 392 392 389 pdUpgrade SQL V389__pdUpgrade.sql -1281121593 podium_md 2020-11-13 17:33:42.680006+00 1 t 393 393 390 pdUpgrade SQL V390__pdUpgrade.sql -659741243 podium_md 2020-11-13 17:33:42.693676+00 5 t 394 394 391 pdUpgrade SQL V391__pdUpgrade.sql -1624292828 podium_md 2020-11-13 17:33:42.708468+00 2 t 395 395 392 pdUpgrade SQL V392__pdUpgrade.sql -1640635152 podium_md 2020-11-13 17:33:42.722313+00 6 t 396 396 393 pdUpgrade SQL V393__pdUpgrade.sql 1885268855 podium_md 2020-11-13 17:33:42.740138+00 4 t 397 397 394 pdUpgrade SQL V394__pdUpgrade.sql -212008393 podium_md 2020-11-13 17:33:42.756294+00 7 t 398 398 395 pdUpgrade SQL V395__pdUpgrade.sql 608416751 podium_md 2020-11-13 17:33:42.775025+00 5 t 399 399 396 pdUpgrade SQL V396__pdUpgrade.sql 441751322 podium_md 2020-11-13 17:33:42.791668+00 13 t \. -- -- Data for Name: pd_seq_task_type; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_seq_task_type (nid, sname, createdby, created_ttz, modifiedby, modified_ttz, version) FROM stdin; 1 DATA_PUBLISH SYSTEM 2020-11-13 17:33:35.82114+00 SYSTEM 2020-11-13 17:33:35.82114+00 0 2 DATA_LOAD SYSTEM 2020-11-13 17:33:35.82114+00 SYSTEM 2020-11-13 17:33:35.82114+00 0 3 PODIUM_API SYSTEM 2020-11-13 17:33:35.82114+00 SYSTEM 2020-11-13 17:33:35.82114+00 0 4 CUSTOM SYSTEM 2020-11-13 17:33:35.82114+00 SYSTEM 2020-11-13 17:33:35.82114+00 0 \. -- -- Data for Name: pd_source; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_source (nid, source_hier_nid, sname, source_type, source_inbound_protocol, business_name, business_desc, created_ttz, modified_ttz, version, modifiedby, createdby, base_directory, source_conn_nid, cluster_nid, source_sub_type) FROM stdin; 1 3 USER_VIEWS PODIUM_INTERNAL JDBC \N \N 2020-11-13 17:34:08.854+00 2020-11-13 17:34:08.854+00 0 ANONYMOUS ANONYMOUS \N 1 \N \N 4 5 classic-models-errors JDBC_SOURCE JDBC Classic Models Database The classicmodels database (with errors) is a retailer of scale models of classic cars database. It contains typical business data such as customers, products, sales orders, sales order line items, etc. 2021-01-26 10:03:15.38+00 2021-01-26 10:04:03.544+00 1 podium podium /usr/local/qdc/data 9 1 \N 8 6 sales-errors JDBC_SOURCE JDBC Sales database A generic sales database (with errors) 2021-01-26 10:04:59.241+00 2021-01-26 10:14:46.894+00 1 podium podium /usr/local/qdc/data 11 1 \N 6 6 sales JDBC_SOURCE JDBC Sales database A generic sales database 2021-01-26 10:04:32.449+00 2021-01-26 10:14:47.349+00 2 podium podium /usr/local/qdc/data 10 \N \N 10 5 classic-models JDBC_SOURCE JDBC Classic Models Database The classicmodels database is a retailer of scale models of classic cars database. It contains typical business data such as customers, products, sales orders, sales order line items, etc. 2021-01-26 10:32:10.677+00 2021-01-26 10:38:54.068+00 1 podium podium /usr/local/qdc/data 8 1 \N 5 5 classic_models_errors PODIUM_INTERNAL JDBC Classic Models Database The classicmodels database (with errors) is a retailer of scale models of classic cars database. It contains typical business data such as customers, products, sales orders, sales order line items, etc. 2021-01-26 10:03:16.061+00 2021-01-26 10:44:00.426+00 1 podium podium /usr/local/qdc/data 1 1 \N 11 5 classic_models PODIUM_INTERNAL JDBC Classic Models Database The classicmodels database is a retailer of scale models of classic cars database. It contains typical business data such as customers, products, sales orders, sales order line items, etc. 2021-01-26 10:32:11.132+00 2021-01-26 10:44:00.798+00 1 podium podium /usr/local/qdc/data 1 1 \N 9 6 sales_errors PODIUM_INTERNAL JDBC Sales database A generic sales database (with errors) 2021-01-26 10:04:59.888+00 2021-01-28 08:20:55.95+00 1 podium podium /usr/local/qdc/data 1 1 \N 7 6 sales PODIUM_INTERNAL JDBC Sales database A generic sales database 2021-01-26 10:04:33.205+00 2021-01-28 08:20:56.13+00 2 podium podium /usr/local/qdc/data 1 1 \N \. -- -- Data for Name: pd_source_conn; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_source_conn (nid, sname, comm_protocol, conn_type, business_name, business_desc, createdby, created_ttz, modifiedby, modified_ttz, version) FROM stdin; 1 internal_source_connection JDBC JDBC \N \N \N 2020-11-13 17:33:35.643508+00 \N 2020-11-13 17:33:35.643508+00 0 3 XML_LOCALFILE_CONNECTION LOCALFILE XML \N \N \N 2020-11-13 17:33:35.715222+00 \N 2020-11-13 17:33:35.715222+00 0 4 MAINFRAME_LOCALFILE_CONNECTION LOCALFILE MAINFRAME \N \N \N 2020-11-13 17:33:35.715222+00 \N 2020-11-13 17:33:35.715222+00 0 5 FILE_LOCALFILE_CONNECTION LOCALFILE FILE \N \N \N 2020-11-13 17:33:35.715222+00 \N 2020-11-13 17:33:35.715222+00 0 6 PODIUM_METADATA_CONNECTION JDBC JDBC \N \N SYSTEM 2020-11-13 17:33:39.266895+00 SYSTEM 2020-11-13 17:33:39.266895+00 0 7 JSON_LOCALFILE_CONNECTION LOCALFILE JSON JSON Connection Default JSON Local file connection SYSTEM 2020-11-13 17:33:39.699724+00 SYSTEM 2020-11-13 17:33:39.699724+00 0 8 MYSQL_CLASSICMODELS_CONNECTION JDBC JDBC \N Connection to classicmodels database on MySQL podium 2021-01-26 09:51:44.603+00 podium 2021-01-26 09:51:44.603+00 0 9 MYSQL_CLASSICMODELS_E_CONNECTION JDBC JDBC \N Connection to classicmodels (with errors) database on MySQL podium 2021-01-26 09:54:14.789+00 podium 2021-01-26 09:54:14.789+00 0 10 MYSQL_SALES_CONNECTION JDBC JDBC \N Connection to sales database on MySQL podium 2021-01-26 09:54:48.873+00 podium 2021-01-26 09:54:48.873+00 0 11 MYSQL_SALES_E_CONNECTION JDBC JDBC \N Connection to sales (with errors) database on MySQL podium 2021-01-26 09:55:23.22+00 podium 2021-01-26 09:55:23.22+00 0 \. -- -- Data for Name: pd_source_conn_tmp; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_source_conn_tmp (nid, sname, comm_protocol, conn_type, business_name, business_desc, createdby, created_ttz, modifiedby, modified_ttz, version, conn_str, conn_username, conn_pass, conn_jdbc, new_conn) FROM stdin; 1 internal_source_connection JDBC JDBC \N \N \N 2020-11-13 17:33:35.643508+00 \N 2020-11-13 17:33:35.643508+00 0 jdbc:postgresql://localhost:5432/podium_dist podium_dist #0{SI+N1xR0xF2wqNPsHxih6w==} HIVE f 2 PODIUM_POSTGRES_CONNECTION JDBC JDBC \N \N \N 2020-11-13 17:33:35.643508+00 \N 2020-11-13 17:33:35.643508+00 0 jdbc:postgresql://localhost:5432/podium_md podium_md #0{SI+N1xR0xF2wqNPsHxih6w==} POSTGRESQL f 3 XML_LOCALFILE_CONNECTION LOCALFILE XML \N \N \N \N \N \N 0 file:/ #0{poirSryuYZZfbLCCpaewJw==} \N t 4 MAINFRAME_LOCALFILE_CONNECTION LOCALFILE MAINFRAME \N \N \N \N \N \N 0 file:/ #0{poirSryuYZZfbLCCpaewJw==} \N t 5 FILE_LOCALFILE_CONNECTION LOCALFILE FILE \N \N \N \N \N \N 0 file:/ #0{poirSryuYZZfbLCCpaewJw==} \N t \. -- -- Data for Name: pd_source_hier; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_source_hier (nid, parent_nid, source_hier_short_name, sname, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 1 \N \N QDI 2020-11-13 17:33:42.382094+00 2020-11-13 17:33:42.382094+00 0 podium podium 2 \N \N DEFAULT 2020-11-13 17:34:08.74+00 2020-11-13 17:34:08.74+00 0 ANONYMOUS ANONYMOUS 3 \N \N CUSTOM 2020-11-13 17:34:08.767+00 2020-11-13 17:34:08.767+00 0 ANONYMOUS ANONYMOUS 4 \N \N DEMO 2021-01-26 09:58:15.356+00 2021-01-26 09:59:24.901+00 1 podium podium 6 4 \N SALES 2021-01-26 09:58:51.733+00 2021-01-26 10:05:00.218+00 2 podium podium 5 4 \N CLASSICMODELS 2021-01-26 09:58:43.179+00 2021-01-26 10:32:11.359+00 4 podium podium \. -- -- Data for Name: pd_source_prop_bk; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_source_prop_bk (nid, source_nid, prop_name, prop_value, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_source_tag; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_source_tag (nid, source_nid, tag, created_ttz, modified_ttz, version, modifiedby, createdby, is_external) FROM stdin; 1 4 payments 2021-01-26 10:04:03.541+00 2021-01-26 10:04:03.541+00 0 podium podium f 2 4 customers 2021-01-26 10:04:03.543+00 2021-01-26 10:04:03.543+00 0 podium podium f 3 4 sales 2021-01-26 10:04:03.543+00 2021-01-26 10:04:03.543+00 0 podium podium f 7 8 customers 2021-01-26 10:14:46.891+00 2021-01-26 10:14:46.891+00 0 podium podium f 8 8 sales 2021-01-26 10:14:46.892+00 2021-01-26 10:14:46.892+00 0 podium podium f 9 8 products 2021-01-26 10:14:46.893+00 2021-01-26 10:14:46.893+00 0 podium podium f 10 6 customers 2021-01-26 10:14:47.347+00 2021-01-26 10:14:47.347+00 0 podium podium f 11 6 sales 2021-01-26 10:14:47.348+00 2021-01-26 10:14:47.348+00 0 podium podium f 12 6 products 2021-01-26 10:14:47.349+00 2021-01-26 10:14:47.349+00 0 podium podium f 13 10 sales 2021-01-26 10:38:54.066+00 2021-01-26 10:38:54.066+00 0 podium podium f 14 10 payments 2021-01-26 10:38:54.067+00 2021-01-26 10:38:54.067+00 0 podium podium f 15 10 customers 2021-01-26 10:38:54.067+00 2021-01-26 10:38:54.067+00 0 podium podium f 16 5 sales 2021-01-26 10:44:00.423+00 2021-01-26 10:44:00.423+00 0 podium podium f 17 5 payments 2021-01-26 10:44:00.424+00 2021-01-26 10:44:00.424+00 0 podium podium f 18 5 customers 2021-01-26 10:44:00.425+00 2021-01-26 10:44:00.425+00 0 podium podium f 19 11 sales 2021-01-26 10:44:00.796+00 2021-01-26 10:44:00.796+00 0 podium podium f 20 11 customers 2021-01-26 10:44:00.796+00 2021-01-26 10:44:00.796+00 0 podium podium f 21 11 payments 2021-01-26 10:44:00.797+00 2021-01-26 10:44:00.797+00 0 podium podium f 22 9 products 2021-01-28 08:20:55.941+00 2021-01-28 08:20:55.941+00 0 podium podium f 23 9 sales 2021-01-28 08:20:55.942+00 2021-01-28 08:20:55.942+00 0 podium podium f 24 9 customers 2021-01-28 08:20:55.942+00 2021-01-28 08:20:55.942+00 0 podium podium f 25 7 products 2021-01-28 08:20:56.128+00 2021-01-28 08:20:56.128+00 0 podium podium f 26 7 sales 2021-01-28 08:20:56.129+00 2021-01-28 08:20:56.129+00 0 podium podium f 27 7 customers 2021-01-28 08:20:56.129+00 2021-01-28 08:20:56.129+00 0 podium podium f \. -- -- Data for Name: pd_target; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_target (nid, sname, target_type, target_inbound_protocol, business_name, business_desc, created_ttz, modified_ttz, version, modifiedby, createdby, format_nid) FROM stdin; 1 Qlik Cloud Services - S3 QCS_S3 S3 Qlik Cloud Services - S3 2020-11-13 17:33:42.091196+00 2020-11-13 17:33:42.091196+00 0 system system 1 2 Qlik Sense App QLIK HTTPS \N \N 2020-11-13 17:34:11.228+00 2020-11-13 17:34:11.228+00 0 ANONYMOUS ANONYMOUS \N 3 POWERBI POWERBI HTTPS \N \N 2020-11-13 17:34:22.481+00 2020-11-13 17:34:22.481+00 0 ANONYMOUS ANONYMOUS \N 4 Local LOCALFILE LOCALFILE Local Server Local Server 2021-01-27 13:30:25.592+00 2021-01-27 13:30:33.679+00 1 podium podium 2 \. -- -- Data for Name: pd_target_prop; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_target_prop (nid, target_nid, prop_name, prop_value, created_user_nid, created_ttz, modified_user_nid, modified_ttz, version, modifiedby, createdby) FROM stdin; 147 2 qlik.sense.record.count.threshold.for.data.load 20000 \N 2021-01-28 11:52:08.926+00 \N 2021-01-28 11:52:08.926+00 0 ANONYMOUS ANONYMOUS 148 2 qlik.sense.proxyPort 4243 \N 2021-01-28 11:52:08.97+00 \N 2021-01-28 11:52:08.97+00 0 ANONYMOUS ANONYMOUS 149 2 qlik.sense.enginePort 4747 \N 2021-01-28 11:52:08.976+00 \N 2021-01-28 11:52:08.976+00 0 ANONYMOUS ANONYMOUS 150 2 qlik.sense.active.directory.name EC \N 2021-01-28 11:52:08.982+00 \N 2021-01-28 11:52:08.982+00 0 ANONYMOUS ANONYMOUS 151 2 qlik.sense.redirect.url \N 2021-01-28 11:52:08.989+00 \N 2021-01-28 11:52:08.989+00 0 ANONYMOUS ANONYMOUS 152 2 podium.qlik.qsockclient.script.directory /usr/local/qdc/qlikpublish/ \N 2021-01-28 11:52:09.019+00 \N 2021-01-28 11:52:09.019+00 0 ANONYMOUS ANONYMOUS 153 2 podium.qlik.username \N 2021-01-28 11:52:09.029+00 \N 2021-01-28 11:52:09.029+00 0 ANONYMOUS ANONYMOUS 154 2 podium.qlik.dataconnection.name qdc \N 2021-01-28 11:52:09.041+00 \N 2021-01-28 11:52:09.041+00 0 ANONYMOUS ANONYMOUS 155 2 podium.qlik.appcreation.nodecommand node \N 2021-01-28 11:52:09.054+00 \N 2021-01-28 11:52:09.054+00 0 ANONYMOUS ANONYMOUS 156 2 podium.qlik.dataconnection.sql.openquote.char " \N 2021-01-28 11:52:09.07+00 \N 2021-01-28 11:52:09.07+00 0 ANONYMOUS ANONYMOUS 157 2 podium.qlik.dataconnection.sql.closequote.char " \N 2021-01-28 11:52:09.08+00 \N 2021-01-28 11:52:09.08+00 0 ANONYMOUS ANONYMOUS 158 2 qlik.sense.url https:///sense/app/ \N 2021-01-28 11:52:09.092+00 \N 2021-01-28 11:52:09.092+00 0 ANONYMOUS ANONYMOUS 159 2 extract.username.from.ntlm @.* \N 2021-01-28 11:52:09.103+00 \N 2021-01-28 11:52:09.103+00 0 ANONYMOUS ANONYMOUS 92 4 username \N \N 2021-01-27 13:30:25.607+00 \N 2021-01-27 13:30:25.607+00 0 podium podium 93 4 uri file:///usr/local/qdc/publish \N 2021-01-27 13:30:25.608+00 \N 2021-01-27 13:30:25.608+00 0 podium podium 94 4 password \N \N 2021-01-27 13:30:25.609+00 \N 2021-01-27 13:30:25.609+00 0 podium podium \. -- -- Data for Name: pd_user; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_user (nid, email, first_name, last_name, department, login_name, password, is_enabled, created_ttz, modified_ttz, version, actor_name, modifiedby, createdby, ad_connection_nid, origin) FROM stdin; 1 \N podium podium \N podium {bcrypt}$2a$04$E82XQilCEtltW52jd6/t/.gQbH2OX.SdgJBMvGVLloPqHN2k6iJAu T 2020-11-13 17:34:10.96+00 2020-11-13 17:34:10.96+00 0 \N ANONYMOUS ANONYMOUS \N local 3 businessuser@company.com Business User Business User Dept. business {bcrypt}$2a$12$oFGRhZTgS0O2NKVeWrzFCOm17I.EQIOGiOdNpQgLa33x/wac3YAK2 T 2021-01-27 13:40:40.878+00 2021-01-27 13:45:15.129+00 2 \N podium podium \N local 2 poweruser@company.com Power User Power User Dept. power {bcrypt}$2a$12$FZ1ZCwascqucEXpNBUsa9OeICzhd4z0az70mjmU3oqiFHa27Ty6.K T 2021-01-27 13:40:10.832+00 2021-01-27 13:45:26.439+00 1 \N podium podium \N local 4 maskeduser@company.com Masked User Masked User Dept. masked {bcrypt}$2a$12$ChIiZOl/DM/NY41MQiE8B.1ZxOrAV6X2RBOmtC0hJk.oofV8SIlxq T 2021-01-27 13:47:22.196+00 2021-01-27 13:47:22.196+00 0 \N podium podium \N local \. -- -- Data for Name: pd_user_global_pref; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_user_global_pref (user_nid, globalpreferences_key, globalpreferences) FROM stdin; 2 PUBLISH_TO_QS_STARTING_VIEW INSIGHT_ADVISOR 3 PUBLISH_TO_QS_STARTING_VIEW INSIGHT_ADVISOR 4 PUBLISH_TO_QS_STARTING_VIEW INSIGHT_ADVISOR \. -- -- Data for Name: pd_user_grid_column_pref; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_user_grid_column_pref (nid, sname, display_name, sort_order, is_hidden, is_default_sort, user_grid_pref_nid, created_ttz, modified_ttz, version, is_sortable, modifiedby, createdby, type) FROM stdin; \. -- -- Data for Name: pd_user_grid_pref; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_user_grid_pref (nid, sname, display_name, sort_dir, display_length, user_nid, created_ttz, modified_ttz, version, row_selection_type, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_user_notification_setting; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_user_notification_setting (nid, address, content, is_enabled, user_nid, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; \. -- -- Data for Name: pd_vadd_rule; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_vadd_rule (nid, sname, val_add_rule_sh_name, val_add_rule_lng_name, created_ttz, modified_ttz, version, vadd_rule_id, modifiedby, createdby) FROM stdin; 1 PREPARE PREPARE PREPARE 2020-11-13 17:33:32.642223+00 2020-11-13 17:33:32.642223+00 0 \N \N \N 2 FOREIGN_KEY Foreign Key Foreign Key 2020-11-13 17:33:39.203237+00 2020-11-13 17:33:39.203237+00 0 \N podium podium 3 INFERRED Inferred Relationship Inferred Relationship 2020-11-13 17:33:40.106727+00 2020-11-13 17:33:40.106727+00 0 \N podium podium 4 COPY \N \N 2020-11-13 17:34:08.796+00 2020-11-13 17:34:08.796+00 0 \N ANONYMOUS ANONYMOUS 5 CUSTOM \N \N 2020-11-13 17:34:08.817+00 2020-11-13 17:34:08.817+00 0 \N ANONYMOUS ANONYMOUS \. -- -- Data for Name: pd_workflow_execution_wo; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_workflow_execution_wo (nid, graph_nid, delivery_time, start_time, end_time, workorder_status, status_log, detailed_status_log, actor_name, record_count, createdby, created_ttz, modifiedby, modified_ttz, version, run_time) FROM stdin; \. -- -- Data for Name: pd_workflow_graph; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_workflow_graph (nid, sname, createdby, created_ttz, modifiedby, modified_ttz, version, description, long_desc, status, sequencer_graph_gui_state_nid, event_type) FROM stdin; \. -- -- Data for Name: pd_workflow_graph_gui_state; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_workflow_graph_gui_state (nid, gui_state, createdby, created_ttz, modifiedby, modified_ttz, version) FROM stdin; \. -- -- Data for Name: pd_workflow_task; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_workflow_task (nid, sname, task_type, graph_nid, createdby, created_ttz, modifiedby, modified_ttz, version) FROM stdin; \. -- -- Data for Name: pd_workflow_task_parameter; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_workflow_task_parameter (task_nid, parameters, parameters_key) FROM stdin; \. -- -- Data for Name: pd_workflow_task_relation; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_workflow_task_relation (nid, pre_task_nid, post_task_nid, branch_flag, createdby, created_ttz, modifiedby, modified_ttz, version) FROM stdin; \. -- -- Data for Name: pd_workorder; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_workorder (nid, entity_nid, source_nid, delivery_time, start_time, end_time, order_size, record_count, good_count, bad_count, ugly_count, workorder_status, delivery_id, status_log, detailed_status_log, created_ttz, modified_ttz, version, chaff_count, expected_count, actor_name, modifiedby, createdby, sample_count, load_type, partition_name) FROM stdin; 11 16 4 2021-01-26 00:00:00+00 2021-01-26 10:21:36.117+00 2021-01-26 10:21:39.537+00 0 110 110 0 0 FINISHED classic_models_errors.products.20210126000000 2021-01-26 10:21:36.117: Starting job: classic_models_errors.products.20210126102136\n2021-01-26 10:21:36.123: Started loading into dock.\n2021-01-26 10:21:36.125: Watching for process completion/termination.\n2021-01-26 10:21:36.240: Finished loading into dock.\n2021-01-26 10:21:36.240: Started loading into receiving.\n2021-01-26 10:21:36.437: Receiving data with load type: OVERWRITE\n2021-01-26 10:21:37.704: Finished loading into receiving.\n2021-01-26 10:21:37.704: Started reconciling partitions.\n2021-01-26 10:21:37.752: Finished reconciling partitions.\n2021-01-26 10:21:37.752: Started profile merging.\n2021-01-26 10:21:39.031: Finished profile merging.\n2021-01-26 10:21:39.031: Started profile persistence.\n2021-01-26 10:21:39.079: Profile record counts: good=110, bad=0, ugly=0, filtered=0, total=110.\n2021-01-26 10:21:39.079: Finished profile persistence.\n2021-01-26 10:21:39.079: Started record count reconciliation.\n2021-01-26 10:21:39.079: Finished record count reconciliation.\n2021-01-26 10:21:39.080: Started dataset date update.\n2021-01-26 10:21:39.080: Finished dataset date update.\n2021-01-26 10:21:39.080: Started setting posix permissions.\n2021-01-26 10:21:39.095: Finished setting posix permissions.\n2021-01-26 10:21:39.095: Creating distribution tables for entity products.\n2021-01-26 10:21:39.188: Scripts for partition created.\n2021-01-26 10:21:39.188: Finished exposing data via partition addition.\n2021-01-26 10:21:39.188: Starting cleanup operation.\n2021-01-26 10:21:39.205: Data file from loading dock directory for current load deleted.\n2021-01-26 10:21:39.205: Started committing data consumption.\n2021-01-26 10:21:39.205: Finished committing data consumption.\n2021-01-26 10:21:39.206: Running postprocessing rules.\n2021-01-26 10:21:39.244: Finished running postprocessing rules.\n2021-01-26 10:21:39.244: Running metrics computation.\n2021-01-26 10:21:39.536: Finished metrics computation.\n2021-01-26 10:21:39.537: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:21:39.537: Finished job: classic_models_errors.products.20210126102136\n \N 2021-01-26 10:21:36.042+00 2021-01-26 10:21:39.543+00 4 0 0 podium ANONYMOUS podium 10 OVERWRITE 20210126000000 12 19 4 2021-01-26 00:00:00+00 2021-01-26 10:23:31.986+00 2021-01-26 10:23:35.19+00 0 23 20 0 3 FINISHED classic_models_errors.employees.20210126000000 2021-01-26 10:23:31.986: Starting job: classic_models_errors.employees.20210126000000\n2021-01-26 10:23:31.991: Watching for process completion/termination.\n2021-01-26 10:23:31.998: Started loading into dock.\n2021-01-26 10:23:32.067: Finished loading into dock.\n2021-01-26 10:23:32.068: Started loading into receiving.\n2021-01-26 10:23:32.223: Receiving data with load type: DATA\n2021-01-26 10:23:33.433: Finished loading into receiving.\n2021-01-26 10:23:33.433: Started profile merging.\n2021-01-26 10:23:34.699: Finished profile merging.\n2021-01-26 10:23:34.699: Started profile persistence.\n2021-01-26 10:23:34.748: Profile record counts: good=20, bad=0, ugly=3, filtered=0, total=23.\n2021-01-26 10:23:34.748: Finished profile persistence.\n2021-01-26 10:23:34.748: Started record count reconciliation.\n2021-01-26 10:23:34.748: Finished record count reconciliation.\n2021-01-26 10:23:34.748: Started dataset date update.\n2021-01-26 10:23:34.748: Finished dataset date update.\n2021-01-26 10:23:34.748: Started setting posix permissions.\n2021-01-26 10:23:34.764: Finished setting posix permissions.\n2021-01-26 10:23:34.764: Creating distribution tables for entity employees.\n2021-01-26 10:23:34.895: Scripts for partition created.\n2021-01-26 10:23:34.895: Finished exposing data via partition addition.\n2021-01-26 10:23:34.896: Starting cleanup operation.\n2021-01-26 10:23:34.914: Data file from loading dock directory for current load deleted.\n2021-01-26 10:23:34.914: Started committing data consumption.\n2021-01-26 10:23:34.915: Finished committing data consumption.\n2021-01-26 10:23:34.915: Running postprocessing rules.\n2021-01-26 10:23:34.953: Finished running postprocessing rules.\n2021-01-26 10:23:34.953: Running metrics computation.\n2021-01-26 10:23:35.189: Finished metrics computation.\n2021-01-26 10:23:35.190: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:23:35.190: Finished job: classic_models_errors.employees.20210126000000\n \N 2021-01-26 10:23:31.928+00 2021-01-26 10:23:35.194+00 4 0 0 podium ANONYMOUS podium 10 DATA 20210126000000 10 16 4 2021-01-26 00:00:00+00 2021-01-26 10:20:44.423+00 2021-01-26 10:20:47.911+00 0 110 110 0 0 FINISHED classic_models_errors.products.20210126000000 2021-01-26 10:20:44.423: Starting job: classic_models_errors.products.20210126000000\n2021-01-26 10:20:44.429: Watching for process completion/termination.\n2021-01-26 10:20:44.437: Started loading into dock.\n2021-01-26 10:20:44.556: Finished loading into dock.\n2021-01-26 10:20:44.557: Started loading into receiving.\n2021-01-26 10:20:44.750: Receiving data with load type: DATA\n2021-01-26 10:20:46.011: Finished loading into receiving.\n2021-01-26 10:20:46.011: Started profile merging.\n2021-01-26 10:20:47.306: Finished profile merging.\n2021-01-26 10:20:47.306: Started profile persistence.\n2021-01-26 10:20:47.365: Profile record counts: good=105, bad=0, ugly=5, filtered=0, total=110.\n2021-01-26 10:20:47.365: Finished profile persistence.\n2021-01-26 10:20:47.365: Started record count reconciliation.\n2021-01-26 10:20:47.365: Finished record count reconciliation.\n2021-01-26 10:20:47.365: Started dataset date update.\n2021-01-26 10:20:47.365: Finished dataset date update.\n2021-01-26 10:20:47.366: Started setting posix permissions.\n2021-01-26 10:20:47.383: Finished setting posix permissions.\n2021-01-26 10:20:47.383: Creating distribution tables for entity products.\n2021-01-26 10:20:47.543: Scripts for partition created.\n2021-01-26 10:20:47.544: Finished exposing data via partition addition.\n2021-01-26 10:20:47.544: Starting cleanup operation.\n2021-01-26 10:20:47.568: Data file from loading dock directory for current load deleted.\n2021-01-26 10:20:47.569: Started committing data consumption.\n2021-01-26 10:20:47.569: Finished committing data consumption.\n2021-01-26 10:20:47.570: Running postprocessing rules.\n2021-01-26 10:20:47.622: Finished running postprocessing rules.\n2021-01-26 10:20:47.623: Running metrics computation.\n2021-01-26 10:20:47.911: Finished metrics computation.\n2021-01-26 10:20:47.911: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:20:47.911: Finished job: classic_models_errors.products.20210126000000\n \N 2021-01-26 10:20:44.343+00 2021-01-26 10:21:39.073+00 5 0 0 podium ANONYMOUS podium 10 DATA 20210126000000 17 21 4 2021-01-26 00:00:00+00 2021-01-26 10:29:55.865+00 2021-01-26 10:29:59.083+00 0 122 117 0 5 FINISHED classic_models_errors.customers.20210126000000 2021-01-26 10:29:55.865: Starting job: classic_models_errors.customers.20210126102955\n2021-01-26 10:29:55.867: Watching for process completion/termination.\n2021-01-26 10:29:55.871: Started loading into dock.\n2021-01-26 10:29:55.924: Finished loading into dock.\n2021-01-26 10:29:55.925: Started loading into receiving.\n2021-01-26 10:29:56.058: Receiving data with load type: OVERWRITE\n2021-01-26 10:29:57.369: Finished loading into receiving.\n2021-01-26 10:29:57.369: Started reconciling partitions.\n2021-01-26 10:29:57.417: Finished reconciling partitions.\n2021-01-26 10:29:57.417: Started profile merging.\n2021-01-26 10:29:58.652: Finished profile merging.\n2021-01-26 10:29:58.652: Started profile persistence.\n2021-01-26 10:29:58.698: Profile record counts: good=117, bad=0, ugly=5, filtered=0, total=122.\n2021-01-26 10:29:58.698: Finished profile persistence.\n2021-01-26 10:29:58.699: Started record count reconciliation.\n2021-01-26 10:29:58.699: Finished record count reconciliation.\n2021-01-26 10:29:58.699: Started dataset date update.\n2021-01-26 10:29:58.699: Finished dataset date update.\n2021-01-26 10:29:58.699: Started setting posix permissions.\n2021-01-26 10:29:58.713: Finished setting posix permissions.\n2021-01-26 10:29:58.713: Creating distribution tables for entity customers.\n2021-01-26 10:29:58.811: Scripts for partition created.\n2021-01-26 10:29:58.811: Finished exposing data via partition addition.\n2021-01-26 10:29:58.812: Starting cleanup operation.\n2021-01-26 10:29:58.828: Data file from loading dock directory for current load deleted.\n2021-01-26 10:29:58.828: Started committing data consumption.\n2021-01-26 10:29:58.828: Finished committing data consumption.\n2021-01-26 10:29:58.829: Running postprocessing rules.\n2021-01-26 10:29:58.877: Finished running postprocessing rules.\n2021-01-26 10:29:58.877: Running metrics computation.\n2021-01-26 10:29:59.082: Finished metrics computation.\n2021-01-26 10:29:59.083: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:29:59.083: Finished job: classic_models_errors.customers.20210126102955\n \N 2021-01-26 10:29:55.808+00 2021-01-26 10:29:59.087+00 4 0 0 podium ANONYMOUS podium 10 OVERWRITE 20210126000000 14 21 4 2021-01-26 00:00:00+00 2021-01-26 10:26:55.58+00 2021-01-26 10:26:58.692+00 0 122 117 0 5 FINISHED classic_models_errors.customers.20210126000000 2021-01-26 10:26:55.580: Starting job: classic_models_errors.customers.20210126000000\n2021-01-26 10:26:55.582: Watching for process completion/termination.\n2021-01-26 10:26:55.586: Started loading into dock.\n2021-01-26 10:26:55.659: Finished loading into dock.\n2021-01-26 10:26:55.659: Started loading into receiving.\n2021-01-26 10:26:55.806: Receiving data with load type: DATA\n2021-01-26 10:26:56.992: Finished loading into receiving.\n2021-01-26 10:26:56.993: Started profile merging.\n2021-01-26 10:26:58.225: Finished profile merging.\n2021-01-26 10:26:58.225: Started profile persistence.\n2021-01-26 10:26:58.265: Profile record counts: good=117, bad=0, ugly=5, filtered=0, total=122.\n2021-01-26 10:26:58.265: Finished profile persistence.\n2021-01-26 10:26:58.265: Started record count reconciliation.\n2021-01-26 10:26:58.265: Finished record count reconciliation.\n2021-01-26 10:26:58.265: Started dataset date update.\n2021-01-26 10:26:58.265: Finished dataset date update.\n2021-01-26 10:26:58.265: Started setting posix permissions.\n2021-01-26 10:26:58.281: Finished setting posix permissions.\n2021-01-26 10:26:58.281: Creating distribution tables for entity customers.\n2021-01-26 10:26:58.398: Scripts for partition created.\n2021-01-26 10:26:58.398: Finished exposing data via partition addition.\n2021-01-26 10:26:58.398: Starting cleanup operation.\n2021-01-26 10:26:58.418: Data file from loading dock directory for current load deleted.\n2021-01-26 10:26:58.418: Started committing data consumption.\n2021-01-26 10:26:58.419: Finished committing data consumption.\n2021-01-26 10:26:58.419: Running postprocessing rules.\n2021-01-26 10:26:58.464: Finished running postprocessing rules.\n2021-01-26 10:26:58.465: Running metrics computation.\n2021-01-26 10:26:58.692: Finished metrics computation.\n2021-01-26 10:26:58.692: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:26:58.692: Finished job: classic_models_errors.customers.20210126000000\n \N 2021-01-26 10:26:55.527+00 2021-01-26 10:29:58.694+00 5 0 0 podium ANONYMOUS podium 10 DATA 20210126000000 13 20 4 2021-01-26 00:00:00+00 2021-01-26 10:24:58.585+00 2021-01-26 10:25:01.764+00 0 7 7 0 0 FINISHED classic_models_errors.productlines.20210126000000 2021-01-26 10:24:58.585: Starting job: classic_models_errors.productlines.20210126000000\n2021-01-26 10:24:58.587: Watching for process completion/termination.\n2021-01-26 10:24:58.591: Started loading into dock.\n2021-01-26 10:24:58.643: Finished loading into dock.\n2021-01-26 10:24:58.643: Started loading into receiving.\n2021-01-26 10:24:58.770: Receiving data with load type: DATA\n2021-01-26 10:25:00.034: Finished loading into receiving.\n2021-01-26 10:25:00.034: Started profile merging.\n2021-01-26 10:25:01.258: Finished profile merging.\n2021-01-26 10:25:01.258: Started profile persistence.\n2021-01-26 10:25:01.309: Profile record counts: good=7, bad=0, ugly=0, filtered=0, total=7.\n2021-01-26 10:25:01.309: Finished profile persistence.\n2021-01-26 10:25:01.310: Started record count reconciliation.\n2021-01-26 10:25:01.310: Finished record count reconciliation.\n2021-01-26 10:25:01.310: Started dataset date update.\n2021-01-26 10:25:01.310: Finished dataset date update.\n2021-01-26 10:25:01.310: Started setting posix permissions.\n2021-01-26 10:25:01.327: Finished setting posix permissions.\n2021-01-26 10:25:01.327: Creating distribution tables for entity productlines.\n2021-01-26 10:25:01.457: Scripts for partition created.\n2021-01-26 10:25:01.457: Finished exposing data via partition addition.\n2021-01-26 10:25:01.457: Starting cleanup operation.\n2021-01-26 10:25:01.473: Data file from loading dock directory for current load deleted.\n2021-01-26 10:25:01.474: Started committing data consumption.\n2021-01-26 10:25:01.474: Finished committing data consumption.\n2021-01-26 10:25:01.474: Running postprocessing rules.\n2021-01-26 10:25:01.513: Finished running postprocessing rules.\n2021-01-26 10:25:01.514: Running metrics computation.\n2021-01-26 10:25:01.764: Finished metrics computation.\n2021-01-26 10:25:01.764: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:25:01.764: Finished job: classic_models_errors.productlines.20210126000000\n \N 2021-01-26 10:24:58.525+00 2021-01-26 10:25:01.771+00 4 0 0 podium ANONYMOUS podium 7 DATA 20210126000000 15 17 4 2021-01-26 00:00:00+00 2021-01-26 10:27:52.387+00 2021-01-26 10:27:55.579+00 0 7 7 0 0 FINISHED classic_models_errors.offices.20210126000000 2021-01-26 10:27:52.387: Starting job: classic_models_errors.offices.20210126000000\n2021-01-26 10:27:52.389: Watching for process completion/termination.\n2021-01-26 10:27:52.391: Started loading into dock.\n2021-01-26 10:27:52.446: Finished loading into dock.\n2021-01-26 10:27:52.447: Started loading into receiving.\n2021-01-26 10:27:52.568: Receiving data with load type: DATA\n2021-01-26 10:27:53.824: Finished loading into receiving.\n2021-01-26 10:27:53.824: Started profile merging.\n2021-01-26 10:27:55.079: Finished profile merging.\n2021-01-26 10:27:55.079: Started profile persistence.\n2021-01-26 10:27:55.155: Profile record counts: good=7, bad=0, ugly=0, filtered=0, total=7.\n2021-01-26 10:27:55.155: Finished profile persistence.\n2021-01-26 10:27:55.155: Started record count reconciliation.\n2021-01-26 10:27:55.155: Finished record count reconciliation.\n2021-01-26 10:27:55.155: Started dataset date update.\n2021-01-26 10:27:55.155: Finished dataset date update.\n2021-01-26 10:27:55.155: Started setting posix permissions.\n2021-01-26 10:27:55.170: Finished setting posix permissions.\n2021-01-26 10:27:55.170: Creating distribution tables for entity offices.\n2021-01-26 10:27:55.299: Scripts for partition created.\n2021-01-26 10:27:55.299: Finished exposing data via partition addition.\n2021-01-26 10:27:55.300: Starting cleanup operation.\n2021-01-26 10:27:55.319: Data file from loading dock directory for current load deleted.\n2021-01-26 10:27:55.319: Started committing data consumption.\n2021-01-26 10:27:55.319: Finished committing data consumption.\n2021-01-26 10:27:55.319: Running postprocessing rules.\n2021-01-26 10:27:55.356: Finished running postprocessing rules.\n2021-01-26 10:27:55.357: Running metrics computation.\n2021-01-26 10:27:55.579: Finished metrics computation.\n2021-01-26 10:27:55.579: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:27:55.579: Finished job: classic_models_errors.offices.20210126000000\n \N 2021-01-26 10:27:52.335+00 2021-01-26 10:27:55.584+00 4 0 0 podium ANONYMOUS podium 7 DATA 20210126000000 16 18 4 2021-01-26 00:00:00+00 2021-01-26 10:28:59.226+00 2021-01-26 10:29:02.385+00 0 273 273 0 0 FINISHED classic_models_errors.payments.20210126000000 2021-01-26 10:28:59.226: Starting job: classic_models_errors.payments.20210126000000\n2021-01-26 10:28:59.231: Watching for process completion/termination.\n2021-01-26 10:28:59.231: Started loading into dock.\n2021-01-26 10:28:59.303: Finished loading into dock.\n2021-01-26 10:28:59.304: Started loading into receiving.\n2021-01-26 10:28:59.432: Receiving data with load type: DATA\n2021-01-26 10:29:00.716: Finished loading into receiving.\n2021-01-26 10:29:00.716: Started profile merging.\n2021-01-26 10:29:01.964: Finished profile merging.\n2021-01-26 10:29:01.965: Started profile persistence.\n2021-01-26 10:29:02.005: Profile record counts: good=273, bad=0, ugly=0, filtered=0, total=273.\n2021-01-26 10:29:02.005: Finished profile persistence.\n2021-01-26 10:29:02.005: Started record count reconciliation.\n2021-01-26 10:29:02.005: Finished record count reconciliation.\n2021-01-26 10:29:02.005: Started dataset date update.\n2021-01-26 10:29:02.005: Finished dataset date update.\n2021-01-26 10:29:02.006: Started setting posix permissions.\n2021-01-26 10:29:02.020: Finished setting posix permissions.\n2021-01-26 10:29:02.020: Creating distribution tables for entity payments.\n2021-01-26 10:29:02.118: Scripts for partition created.\n2021-01-26 10:29:02.118: Finished exposing data via partition addition.\n2021-01-26 10:29:02.119: Starting cleanup operation.\n2021-01-26 10:29:02.133: Data file from loading dock directory for current load deleted.\n2021-01-26 10:29:02.134: Started committing data consumption.\n2021-01-26 10:29:02.134: Finished committing data consumption.\n2021-01-26 10:29:02.134: Running postprocessing rules.\n2021-01-26 10:29:02.166: Finished running postprocessing rules.\n2021-01-26 10:29:02.167: Running metrics computation.\n2021-01-26 10:29:02.385: Finished metrics computation.\n2021-01-26 10:29:02.385: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:29:02.385: Finished job: classic_models_errors.payments.20210126000000\n \N 2021-01-26 10:28:59.168+00 2021-01-26 10:29:02.39+00 4 0 0 podium ANONYMOUS podium 12 DATA 20210126000000 18 15 4 2021-01-26 00:00:00+00 2021-01-26 10:31:02.884+00 2021-01-26 10:31:06.112+00 0 2473 2470 0 3 FINISHED classic_models_errors.salesorders.20210126000000 2021-01-26 10:31:02.884: Starting job: classic_models_errors.salesorders.20210126000000\n2021-01-26 10:31:02.886: Watching for process completion/termination.\n2021-01-26 10:31:02.889: Started loading into dock.\n2021-01-26 10:31:03.010: Finished loading into dock.\n2021-01-26 10:31:03.010: Started loading into receiving.\n2021-01-26 10:31:03.178: Receiving data with load type: DATA\n2021-01-26 10:31:04.457: Finished loading into receiving.\n2021-01-26 10:31:04.458: Started profile merging.\n2021-01-26 10:31:05.681: Finished profile merging.\n2021-01-26 10:31:05.681: Started profile persistence.\n2021-01-26 10:31:05.720: Profile record counts: good=2470, bad=0, ugly=3, filtered=0, total=2473.\n2021-01-26 10:31:05.720: Finished profile persistence.\n2021-01-26 10:31:05.720: Started record count reconciliation.\n2021-01-26 10:31:05.720: Finished record count reconciliation.\n2021-01-26 10:31:05.721: Started dataset date update.\n2021-01-26 10:31:05.721: Finished dataset date update.\n2021-01-26 10:31:05.721: Started setting posix permissions.\n2021-01-26 10:31:05.735: Finished setting posix permissions.\n2021-01-26 10:31:05.735: Creating distribution tables for entity salesorders.\n2021-01-26 10:31:05.852: Scripts for partition created.\n2021-01-26 10:31:05.852: Finished exposing data via partition addition.\n2021-01-26 10:31:05.853: Starting cleanup operation.\n2021-01-26 10:31:05.869: Data file from loading dock directory for current load deleted.\n2021-01-26 10:31:05.869: Started committing data consumption.\n2021-01-26 10:31:05.869: Finished committing data consumption.\n2021-01-26 10:31:05.870: Running postprocessing rules.\n2021-01-26 10:31:05.908: Finished running postprocessing rules.\n2021-01-26 10:31:05.909: Running metrics computation.\n2021-01-26 10:31:06.111: Finished metrics computation.\n2021-01-26 10:31:06.112: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:31:06.112: Finished job: classic_models_errors.salesorders.20210126000000\n \N 2021-01-26 10:31:02.836+00 2021-01-26 10:31:06.116+00 4 0 0 podium ANONYMOUS podium 35 DATA 20210126000000 26 64 10 2021-01-26 01:00:00+00 2021-01-26 10:35:38.337+00 2021-01-26 10:35:41.433+00 0 122 122 0 0 FINISHED classic_models.customers.20210126010000 2021-01-26 10:35:38.337: Starting job: classic_models.customers.20210126010000\n2021-01-26 10:35:38.339: Watching for process completion/termination.\n2021-01-26 10:35:38.341: Started loading into dock.\n2021-01-26 10:35:38.398: Finished loading into dock.\n2021-01-26 10:35:38.398: Started loading into receiving.\n2021-01-26 10:35:38.536: Receiving data with load type: DATA\n2021-01-26 10:35:39.784: Finished loading into receiving.\n2021-01-26 10:35:39.784: Started profile merging.\n2021-01-26 10:35:41.002: Finished profile merging.\n2021-01-26 10:35:41.002: Started profile persistence.\n2021-01-26 10:35:41.040: Profile record counts: good=121, bad=0, ugly=1, filtered=0, total=122.\n2021-01-26 10:35:41.040: Finished profile persistence.\n2021-01-26 10:35:41.040: Started record count reconciliation.\n2021-01-26 10:35:41.040: Finished record count reconciliation.\n2021-01-26 10:35:41.040: Started dataset date update.\n2021-01-26 10:35:41.040: Finished dataset date update.\n2021-01-26 10:35:41.041: Started setting posix permissions.\n2021-01-26 10:35:41.055: Finished setting posix permissions.\n2021-01-26 10:35:41.055: Creating distribution tables for entity customers.\n2021-01-26 10:35:41.173: Scripts for partition created.\n2021-01-26 10:35:41.173: Finished exposing data via partition addition.\n2021-01-26 10:35:41.174: Starting cleanup operation.\n2021-01-26 10:35:41.190: Data file from loading dock directory for current load deleted.\n2021-01-26 10:35:41.190: Started committing data consumption.\n2021-01-26 10:35:41.190: Finished committing data consumption.\n2021-01-26 10:35:41.190: Running postprocessing rules.\n2021-01-26 10:35:41.225: Finished running postprocessing rules.\n2021-01-26 10:35:41.225: Running metrics computation.\n2021-01-26 10:35:41.432: Finished metrics computation.\n2021-01-26 10:35:41.433: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:35:41.433: Finished job: classic_models.customers.20210126010000\n \N 2021-01-26 10:35:38.278+00 2021-01-26 10:38:18.61+00 5 0 0 podium ANONYMOUS podium 10 DATA 20210126010000 19 67 10 2021-01-26 01:00:00+00 2021-01-26 10:32:18.418+00 2021-01-26 10:32:21.479+00 0 7 7 0 0 FINISHED classic_models.productlines.20210126010000 2021-01-26 10:32:18.418: Starting job: classic_models.productlines.20210126010000\n2021-01-26 10:32:18.421: Started loading into dock.\n2021-01-26 10:32:18.424: Watching for process completion/termination.\n2021-01-26 10:32:18.472: Finished loading into dock.\n2021-01-26 10:32:18.473: Started loading into receiving.\n2021-01-26 10:32:18.585: Receiving data with load type: DATA\n2021-01-26 10:32:19.783: Finished loading into receiving.\n2021-01-26 10:32:19.783: Started profile merging.\n2021-01-26 10:32:21.035: Finished profile merging.\n2021-01-26 10:32:21.035: Started profile persistence.\n2021-01-26 10:32:21.075: Profile record counts: good=7, bad=0, ugly=0, filtered=0, total=7.\n2021-01-26 10:32:21.075: Finished profile persistence.\n2021-01-26 10:32:21.075: Started record count reconciliation.\n2021-01-26 10:32:21.075: Finished record count reconciliation.\n2021-01-26 10:32:21.076: Started dataset date update.\n2021-01-26 10:32:21.076: Finished dataset date update.\n2021-01-26 10:32:21.076: Started setting posix permissions.\n2021-01-26 10:32:21.090: Finished setting posix permissions.\n2021-01-26 10:32:21.090: Creating distribution tables for entity productlines.\n2021-01-26 10:32:21.202: Scripts for partition created.\n2021-01-26 10:32:21.202: Finished exposing data via partition addition.\n2021-01-26 10:32:21.202: Starting cleanup operation.\n2021-01-26 10:32:21.226: Data file from loading dock directory for current load deleted.\n2021-01-26 10:32:21.226: Started committing data consumption.\n2021-01-26 10:32:21.227: Finished committing data consumption.\n2021-01-26 10:32:21.227: Running postprocessing rules.\n2021-01-26 10:32:21.263: Finished running postprocessing rules.\n2021-01-26 10:32:21.263: Running metrics computation.\n2021-01-26 10:32:21.478: Finished metrics computation.\n2021-01-26 10:32:21.479: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:32:21.479: Finished job: classic_models.productlines.20210126010000\n \N 2021-01-26 10:32:18.37+00 2021-01-26 10:32:21.483+00 4 0 0 podium ANONYMOUS podium 7 DATA 20210126010000 20 65 10 2021-01-26 01:00:00+00 2021-01-26 10:32:45.172+00 2021-01-26 10:32:48.28+00 0 2473 2473 0 0 FINISHED classic_models.salesorders.20210126010000 2021-01-26 10:32:45.172: Starting job: classic_models.salesorders.20210126010000\n2021-01-26 10:32:45.173: Watching for process completion/termination.\n2021-01-26 10:32:45.178: Started loading into dock.\n2021-01-26 10:32:45.268: Finished loading into dock.\n2021-01-26 10:32:45.268: Started loading into receiving.\n2021-01-26 10:32:45.390: Receiving data with load type: DATA\n2021-01-26 10:32:46.603: Finished loading into receiving.\n2021-01-26 10:32:46.603: Started profile merging.\n2021-01-26 10:32:47.844: Finished profile merging.\n2021-01-26 10:32:47.844: Started profile persistence.\n2021-01-26 10:32:47.882: Profile record counts: good=2473, bad=0, ugly=0, filtered=0, total=2473.\n2021-01-26 10:32:47.882: Finished profile persistence.\n2021-01-26 10:32:47.883: Started record count reconciliation.\n2021-01-26 10:32:47.883: Finished record count reconciliation.\n2021-01-26 10:32:47.883: Started dataset date update.\n2021-01-26 10:32:47.883: Finished dataset date update.\n2021-01-26 10:32:47.883: Started setting posix permissions.\n2021-01-26 10:32:47.898: Finished setting posix permissions.\n2021-01-26 10:32:47.898: Creating distribution tables for entity salesorders.\n2021-01-26 10:32:48.013: Scripts for partition created.\n2021-01-26 10:32:48.013: Finished exposing data via partition addition.\n2021-01-26 10:32:48.013: Starting cleanup operation.\n2021-01-26 10:32:48.029: Data file from loading dock directory for current load deleted.\n2021-01-26 10:32:48.029: Started committing data consumption.\n2021-01-26 10:32:48.029: Finished committing data consumption.\n2021-01-26 10:32:48.030: Running postprocessing rules.\n2021-01-26 10:32:48.065: Finished running postprocessing rules.\n2021-01-26 10:32:48.066: Running metrics computation.\n2021-01-26 10:32:48.280: Finished metrics computation.\n2021-01-26 10:32:48.280: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:32:48.280: Finished job: classic_models.salesorders.20210126010000\n \N 2021-01-26 10:32:45.121+00 2021-01-26 10:32:48.284+00 4 0 0 podium ANONYMOUS podium 23 DATA 20210126010000 24 61 10 2021-01-26 01:00:00+00 2021-01-26 10:33:33.523+00 2021-01-26 10:33:37.421+00 0 273 273 0 0 FINISHED classic_models.payments.20210126010000 2021-01-26 10:33:33.523: Starting job: classic_models.payments.20210126010000\n2021-01-26 10:33:33.530: Watching for process completion/termination.\n2021-01-26 10:33:33.563: Started loading into dock.\n2021-01-26 10:33:33.747: Finished loading into dock.\n2021-01-26 10:33:33.752: Started loading into receiving.\n2021-01-26 10:33:33.982: Receiving data with load type: DATA\n2021-01-26 10:33:35.508: Finished loading into receiving.\n2021-01-26 10:33:35.508: Started profile merging.\n2021-01-26 10:33:36.839: Finished profile merging.\n2021-01-26 10:33:36.839: Started profile persistence.\n2021-01-26 10:33:36.908: Profile record counts: good=273, bad=0, ugly=0, filtered=0, total=273.\n2021-01-26 10:33:36.908: Finished profile persistence.\n2021-01-26 10:33:36.908: Started record count reconciliation.\n2021-01-26 10:33:36.908: Finished record count reconciliation.\n2021-01-26 10:33:36.908: Started dataset date update.\n2021-01-26 10:33:36.908: Finished dataset date update.\n2021-01-26 10:33:36.908: Started setting posix permissions.\n2021-01-26 10:33:36.923: Finished setting posix permissions.\n2021-01-26 10:33:36.923: Creating distribution tables for entity payments.\n2021-01-26 10:33:37.075: Scripts for partition created.\n2021-01-26 10:33:37.075: Finished exposing data via partition addition.\n2021-01-26 10:33:37.076: Starting cleanup operation.\n2021-01-26 10:33:37.096: Data file from loading dock directory for current load deleted.\n2021-01-26 10:33:37.096: Started committing data consumption.\n2021-01-26 10:33:37.096: Finished committing data consumption.\n2021-01-26 10:33:37.097: Running postprocessing rules.\n2021-01-26 10:33:37.145: Finished running postprocessing rules.\n2021-01-26 10:33:37.147: Running metrics computation.\n2021-01-26 10:33:37.421: Finished metrics computation.\n2021-01-26 10:33:37.421: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:33:37.421: Finished job: classic_models.payments.20210126010000\n \N 2021-01-26 10:33:33.341+00 2021-01-26 10:33:37.43+00 4 0 0 podium ANONYMOUS podium 11 DATA 20210126010000 23 62 10 2021-01-26 01:00:00+00 2021-01-26 10:33:33.195+00 2021-01-26 10:33:37.347+00 0 23 23 0 0 FINISHED classic_models.employees.20210126010000 2021-01-26 10:33:33.195: Starting job: classic_models.employees.20210126010000\n2021-01-26 10:33:33.197: Watching for process completion/termination.\n2021-01-26 10:33:33.209: Started loading into dock.\n2021-01-26 10:33:33.333: Finished loading into dock.\n2021-01-26 10:33:33.337: Started loading into receiving.\n2021-01-26 10:33:33.684: Receiving data with load type: DATA\n2021-01-26 10:33:35.308: Finished loading into receiving.\n2021-01-26 10:33:35.308: Started profile merging.\n2021-01-26 10:33:36.740: Finished profile merging.\n2021-01-26 10:33:36.741: Started profile persistence.\n2021-01-26 10:33:36.793: Profile record counts: good=23, bad=0, ugly=0, filtered=0, total=23.\n2021-01-26 10:33:36.793: Finished profile persistence.\n2021-01-26 10:33:36.794: Started record count reconciliation.\n2021-01-26 10:33:36.794: Finished record count reconciliation.\n2021-01-26 10:33:36.795: Started dataset date update.\n2021-01-26 10:33:36.795: Finished dataset date update.\n2021-01-26 10:33:36.795: Started setting posix permissions.\n2021-01-26 10:33:36.813: Finished setting posix permissions.\n2021-01-26 10:33:36.813: Creating distribution tables for entity employees.\n2021-01-26 10:33:37.001: Scripts for partition created.\n2021-01-26 10:33:37.001: Finished exposing data via partition addition.\n2021-01-26 10:33:37.001: Starting cleanup operation.\n2021-01-26 10:33:37.026: Data file from loading dock directory for current load deleted.\n2021-01-26 10:33:37.031: Started committing data consumption.\n2021-01-26 10:33:37.031: Finished committing data consumption.\n2021-01-26 10:33:37.032: Running postprocessing rules.\n2021-01-26 10:33:37.077: Finished running postprocessing rules.\n2021-01-26 10:33:37.077: Running metrics computation.\n2021-01-26 10:33:37.346: Finished metrics computation.\n2021-01-26 10:33:37.347: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:33:37.347: Finished job: classic_models.employees.20210126010000\n \N 2021-01-26 10:33:33.118+00 2021-01-26 10:33:37.358+00 4 0 0 podium ANONYMOUS podium 10 DATA 20210126010000 27 64 10 2021-01-26 01:00:00+00 2021-01-26 10:38:15.922+00 2021-01-26 10:38:18.992+00 0 122 122 0 0 FINISHED classic_models.customers.20210126010000 2021-01-26 10:38:15.922: Starting job: classic_models.customers.20210126103815\n2021-01-26 10:38:15.924: Watching for process completion/termination.\n2021-01-26 10:38:15.927: Started loading into dock.\n2021-01-26 10:38:15.981: Finished loading into dock.\n2021-01-26 10:38:15.981: Started loading into receiving.\n2021-01-26 10:38:16.107: Receiving data with load type: OVERWRITE\n2021-01-26 10:38:17.295: Finished loading into receiving.\n2021-01-26 10:38:17.295: Started reconciling partitions.\n2021-01-26 10:38:17.345: Finished reconciling partitions.\n2021-01-26 10:38:17.345: Started profile merging.\n2021-01-26 10:38:18.570: Finished profile merging.\n2021-01-26 10:38:18.570: Started profile persistence.\n2021-01-26 10:38:18.616: Profile record counts: good=122, bad=0, ugly=0, filtered=0, total=122.\n2021-01-26 10:38:18.616: Finished profile persistence.\n2021-01-26 10:38:18.616: Started record count reconciliation.\n2021-01-26 10:38:18.616: Finished record count reconciliation.\n2021-01-26 10:38:18.617: Started dataset date update.\n2021-01-26 10:38:18.617: Finished dataset date update.\n2021-01-26 10:38:18.617: Started setting posix permissions.\n2021-01-26 10:38:18.631: Finished setting posix permissions.\n2021-01-26 10:38:18.631: Creating distribution tables for entity customers.\n2021-01-26 10:38:18.735: Scripts for partition created.\n2021-01-26 10:38:18.735: Finished exposing data via partition addition.\n2021-01-26 10:38:18.735: Starting cleanup operation.\n2021-01-26 10:38:18.753: Data file from loading dock directory for current load deleted.\n2021-01-26 10:38:18.754: Started committing data consumption.\n2021-01-26 10:38:18.754: Finished committing data consumption.\n2021-01-26 10:38:18.754: Running postprocessing rules.\n2021-01-26 10:38:18.790: Finished running postprocessing rules.\n2021-01-26 10:38:18.790: Running metrics computation.\n2021-01-26 10:38:18.991: Finished metrics computation.\n2021-01-26 10:38:18.992: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:38:18.992: Finished job: classic_models.customers.20210126103815\n \N 2021-01-26 10:38:15.86+00 2021-01-26 10:38:18.996+00 4 0 0 podium ANONYMOUS podium 10 OVERWRITE 20210126010000 25 66 10 2021-01-26 01:00:00+00 2021-01-26 10:34:34.047+00 2021-01-26 10:34:37.118+00 0 110 110 0 0 FINISHED classic_models.products.20210126010000 2021-01-26 10:34:34.047: Starting job: classic_models.products.20210126103433\n2021-01-26 10:34:34.053: Started loading into dock.\n2021-01-26 10:34:34.054: Watching for process completion/termination.\n2021-01-26 10:34:34.107: Finished loading into dock.\n2021-01-26 10:34:34.107: Started loading into receiving.\n2021-01-26 10:34:34.218: Receiving data with load type: OVERWRITE\n2021-01-26 10:34:35.425: Finished loading into receiving.\n2021-01-26 10:34:35.425: Started reconciling partitions.\n2021-01-26 10:34:35.473: Finished reconciling partitions.\n2021-01-26 10:34:35.473: Started profile merging.\n2021-01-26 10:34:36.690: Finished profile merging.\n2021-01-26 10:34:36.690: Started profile persistence.\n2021-01-26 10:34:36.735: Profile record counts: good=110, bad=0, ugly=0, filtered=0, total=110.\n2021-01-26 10:34:36.735: Finished profile persistence.\n2021-01-26 10:34:36.735: Started record count reconciliation.\n2021-01-26 10:34:36.735: Finished record count reconciliation.\n2021-01-26 10:34:36.735: Started dataset date update.\n2021-01-26 10:34:36.735: Finished dataset date update.\n2021-01-26 10:34:36.735: Started setting posix permissions.\n2021-01-26 10:34:36.750: Finished setting posix permissions.\n2021-01-26 10:34:36.750: Creating distribution tables for entity products.\n2021-01-26 10:34:36.832: Scripts for partition created.\n2021-01-26 10:34:36.832: Finished exposing data via partition addition.\n2021-01-26 10:34:36.832: Starting cleanup operation.\n2021-01-26 10:34:36.855: Data file from loading dock directory for current load deleted.\n2021-01-26 10:34:36.856: Started committing data consumption.\n2021-01-26 10:34:36.856: Finished committing data consumption.\n2021-01-26 10:34:36.856: Running postprocessing rules.\n2021-01-26 10:34:36.895: Finished running postprocessing rules.\n2021-01-26 10:34:36.895: Running metrics computation.\n2021-01-26 10:34:37.118: Finished metrics computation.\n2021-01-26 10:34:37.118: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:34:37.118: Finished job: classic_models.products.20210126103433\n \N 2021-01-26 10:34:33.98+00 2021-01-26 10:34:37.122+00 4 0 0 podium ANONYMOUS podium 13 OVERWRITE 20210126010000 22 63 10 2021-01-26 01:00:00+00 2021-01-26 10:33:33.088+00 2021-01-26 10:33:37.143+00 0 7 7 0 0 FINISHED classic_models.offices.20210126010000 2021-01-26 10:33:33.088: Starting job: classic_models.offices.20210126010000\n2021-01-26 10:33:33.092: Watching for process completion/termination.\n2021-01-26 10:33:33.097: Started loading into dock.\n2021-01-26 10:33:33.235: Finished loading into dock.\n2021-01-26 10:33:33.235: Started loading into receiving.\n2021-01-26 10:33:33.512: Receiving data with load type: DATA\n2021-01-26 10:33:35.191: Finished loading into receiving.\n2021-01-26 10:33:35.191: Started profile merging.\n2021-01-26 10:33:36.600: Finished profile merging.\n2021-01-26 10:33:36.600: Started profile persistence.\n2021-01-26 10:33:36.640: Profile record counts: good=7, bad=0, ugly=0, filtered=0, total=7.\n2021-01-26 10:33:36.640: Finished profile persistence.\n2021-01-26 10:33:36.640: Started record count reconciliation.\n2021-01-26 10:33:36.640: Finished record count reconciliation.\n2021-01-26 10:33:36.640: Started dataset date update.\n2021-01-26 10:33:36.640: Finished dataset date update.\n2021-01-26 10:33:36.640: Started setting posix permissions.\n2021-01-26 10:33:36.661: Finished setting posix permissions.\n2021-01-26 10:33:36.661: Creating distribution tables for entity offices.\n2021-01-26 10:33:36.788: Scripts for partition created.\n2021-01-26 10:33:36.788: Finished exposing data via partition addition.\n2021-01-26 10:33:36.789: Starting cleanup operation.\n2021-01-26 10:33:36.806: Data file from loading dock directory for current load deleted.\n2021-01-26 10:33:36.806: Started committing data consumption.\n2021-01-26 10:33:36.807: Finished committing data consumption.\n2021-01-26 10:33:36.807: Running postprocessing rules.\n2021-01-26 10:33:36.878: Finished running postprocessing rules.\n2021-01-26 10:33:36.878: Running metrics computation.\n2021-01-26 10:33:37.142: Finished metrics computation.\n2021-01-26 10:33:37.142: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:33:37.143: Finished job: classic_models.offices.20210126010000\n \N 2021-01-26 10:33:32.998+00 2021-01-26 10:33:37.147+00 4 0 0 podium ANONYMOUS podium 7 DATA 20210126010000 21 66 10 2021-01-26 01:00:00+00 2021-01-26 10:33:32.966+00 2021-01-26 10:33:36.847+00 0 110 110 0 0 FINISHED classic_models.products.20210126010000 2021-01-26 10:33:32.966: Starting job: classic_models.products.20210126010000\n2021-01-26 10:33:32.971: Watching for process completion/termination.\n2021-01-26 10:33:32.975: Started loading into dock.\n2021-01-26 10:33:33.109: Finished loading into dock.\n2021-01-26 10:33:33.114: Started loading into receiving.\n2021-01-26 10:33:33.398: Receiving data with load type: DATA\n2021-01-26 10:33:35.087: Finished loading into receiving.\n2021-01-26 10:33:35.087: Started profile merging.\n2021-01-26 10:33:36.381: Finished profile merging.\n2021-01-26 10:33:36.381: Started profile persistence.\n2021-01-26 10:33:36.419: Profile record counts: good=105, bad=0, ugly=5, filtered=0, total=110.\n2021-01-26 10:33:36.419: Finished profile persistence.\n2021-01-26 10:33:36.419: Started record count reconciliation.\n2021-01-26 10:33:36.419: Finished record count reconciliation.\n2021-01-26 10:33:36.419: Started dataset date update.\n2021-01-26 10:33:36.419: Finished dataset date update.\n2021-01-26 10:33:36.419: Started setting posix permissions.\n2021-01-26 10:33:36.432: Finished setting posix permissions.\n2021-01-26 10:33:36.433: Creating distribution tables for entity products.\n2021-01-26 10:33:36.544: Scripts for partition created.\n2021-01-26 10:33:36.544: Finished exposing data via partition addition.\n2021-01-26 10:33:36.544: Starting cleanup operation.\n2021-01-26 10:33:36.560: Data file from loading dock directory for current load deleted.\n2021-01-26 10:33:36.561: Started committing data consumption.\n2021-01-26 10:33:36.561: Finished committing data consumption.\n2021-01-26 10:33:36.561: Running postprocessing rules.\n2021-01-26 10:33:36.598: Finished running postprocessing rules.\n2021-01-26 10:33:36.598: Running metrics computation.\n2021-01-26 10:33:36.846: Finished metrics computation.\n2021-01-26 10:33:36.847: Not inferring entity relations because it is turned off globally.\n2021-01-26 10:33:36.847: Finished job: classic_models.products.20210126010000\n \N 2021-01-26 10:33:32.892+00 2021-01-26 10:34:36.73+00 5 0 0 podium ANONYMOUS podium 13 DATA 20210126010000 \. -- -- Data for Name: pd_workorder_prop; Type: TABLE DATA; Schema: podium_core; Owner: podium_md -- COPY podium_core.pd_workorder_prop (nid, workorder_nid, prop_name, prop_value, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 113 11 workorder.parent.id 10 2021-01-26 10:21:36.043+00 2021-01-26 10:21:36.043+00 0 podium podium 114 11 source.entity.props [{"id":866,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":868,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":869,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":867,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":865,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models-errors"},{"id":4840,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":4854,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.allow.control.chars","value":"true"},{"id":4850,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":4851,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":4852,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":4838,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":4857,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":4864,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":4837,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":4844,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":""},{"id":4855,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":4858,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":4846,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":4863,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":4870,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":4859,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":4862,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"productCode\\",\\"productName\\",\\"productScale\\",\\"productVendor\\",\\"productDescription\\",\\"quantityInStock\\",\\"buyPrice\\",\\"MSRP\\",\\"productLine\\"\\\\r\\\\n"},{"id":4865,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":4839,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":4842,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"products"},{"id":4853,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":4861,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":4849,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":4836,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":4856,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":4867,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":4843,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":4848,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":4869,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":4845,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":4866,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":4835,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `productCode`,`productName`,`productScale`,`productVendor`,`productDescription`,`quantityInStock`,`buyPrice`,`MSRP`,`productLine` FROM `classic-models-errors`.`products`"},{"id":4847,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":4860,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":4841,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":4868,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:21:36.044+00 2021-01-26 10:21:36.044+00 0 podium podium 115 11 enable.profiling true 2021-01-26 10:21:36.045+00 2021-01-26 10:21:36.045+00 0 podium podium 116 11 enable.validation true 2021-01-26 10:21:36.046+00 2021-01-26 10:21:36.046+00 0 podium podium 172 16 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models_errors/payments/20210126000000/* 2021-01-26 10:29:02.172+00 2021-01-26 10:29:02.172+00 0 ANONYMOUS ANONYMOUS 173 16 receiving.uri file:///usr/local/qdc/data/receiving/classic_models_errors/payments/20210126000000 2021-01-26 10:29:02.173+00 2021-01-26 10:29:02.173+00 0 ANONYMOUS ANONYMOUS 174 16 source.file.count 1 2021-01-26 10:29:02.174+00 2021-01-26 10:29:02.174+00 0 ANONYMOUS ANONYMOUS 175 16 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:29:02.175+00 2021-01-26 10:29:02.175+00 0 ANONYMOUS ANONYMOUS 176 16 parquet.compression UNCOMPRESSED 2021-01-26 10:29:02.177+00 2021-01-26 10:29:02.177+00 0 ANONYMOUS ANONYMOUS 177 16 source.first.path.name jdbc:mysql://localhost:3306/classic-models-errors 2021-01-26 10:29:02.178+00 2021-01-26 10:29:02.178+00 0 ANONYMOUS ANONYMOUS 178 16 receiving.job.stats {"job_local1242775402_0031":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":207,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":29952069,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":274,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":128,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":17484748,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:29:02.179+00 2021-01-26 10:29:02.179+00 0 ANONYMOUS ANONYMOUS 179 16 profilemerge.job.stats {"job_local973617877_0032":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":161,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":30853727,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":18051010,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:29:02.18+00 2021-01-26 10:29:02.18+00 0 ANONYMOUS ANONYMOUS 184 17 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:29:58.879+00 2021-01-26 10:29:58.879+00 0 ANONYMOUS ANONYMOUS 185 17 receiving.uri file:///usr/local/qdc/data/receiving/classic_models_errors/customers/20210126000000 2021-01-26 10:29:58.882+00 2021-01-26 10:29:58.882+00 0 ANONYMOUS ANONYMOUS 186 17 source.file.count 1 2021-01-26 10:29:58.882+00 2021-01-26 10:29:58.882+00 0 ANONYMOUS ANONYMOUS 187 17 receiving.job.stats {"job_local784902382_0033":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":208,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":31918642,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":123,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":176,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":18595925,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:29:58.883+00 2021-01-26 10:29:58.883+00 0 ANONYMOUS ANONYMOUS 188 17 profilemerge.job.stats {"job_local117373677_0034":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":162,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":32890587,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":19229920,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:29:58.884+00 2021-01-26 10:29:58.884+00 0 ANONYMOUS ANONYMOUS 189 17 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models_errors/customers/20210126102955/* 2021-01-26 10:29:58.884+00 2021-01-26 10:29:58.884+00 0 ANONYMOUS ANONYMOUS 190 17 source.first.path.name jdbc:mysql://localhost:3306/classic-models-errors 2021-01-26 10:29:58.885+00 2021-01-26 10:29:58.885+00 0 ANONYMOUS ANONYMOUS 117 11 source.file.count 1 2021-01-26 10:21:36.133+00 2021-01-26 10:21:36.133+00 0 ANONYMOUS ANONYMOUS 118 11 source.first.path.name jdbc:mysql://localhost:3306/classic-models-errors 2021-01-26 10:21:36.134+00 2021-01-26 10:21:36.134+00 0 ANONYMOUS ANONYMOUS 180 17 enable.profiling true 2021-01-26 10:29:55.808+00 2021-01-26 10:29:55.808+00 0 podium podium 181 17 workorder.parent.id 14 2021-01-26 10:29:55.809+00 2021-01-26 10:29:55.809+00 0 podium podium 182 17 source.entity.props [{"id":866,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":868,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":869,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":867,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":865,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models-errors"},{"id":4950,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":4973,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.allow.control.chars","value":"true"},{"id":4943,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.allow.non.ascii.chars","value":"true"},{"id":4966,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":4965,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":4963,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":4969,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":4962,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":4941,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":4946,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":4944,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":""},{"id":4952,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":4958,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":4972,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":4971,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":4948,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":4974,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":4945,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"customerNumber\\",\\"customerName\\",\\"contactLastName\\",\\"contactFirstName\\",\\"phone\\",\\"addressLine1\\",\\"addressLine2\\",\\"city\\",\\"state\\",\\"postalCode\\",\\"country\\",\\"salesRepEmployeeNumber\\",\\"creditLimit\\",\\"customerLocation\\"\\\\r\\\\n"},{"id":4955,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":4938,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":4949,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"customers"},{"id":4968,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":4951,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":4967,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":4959,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":4942,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":4953,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":4964,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":4961,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":4940,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":4970,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":4956,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":4947,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `customerNumber`,`customerName`,`contactLastName`,`contactFirstName`,`phone`,`addressLine1`,`addressLine2`,`city`,`state`,`postalCode`,`country`,`salesRepEmployeeNumber`,`creditLimit`,`customerLocation` FROM `classic-models-errors`.`customers`"},{"id":4939,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":4954,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":4960,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":4957,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:29:55.81+00 2021-01-26 10:29:55.81+00 0 podium podium 183 17 enable.validation true 2021-01-26 10:29:55.81+00 2021-01-26 10:29:55.81+00 0 podium podium 192 18 enable.profiling true 2021-01-26 10:31:02.837+00 2021-01-26 10:31:02.837+00 0 podium podium 193 18 source.entity.props [{"id":866,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":868,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":869,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":867,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":865,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models-errors"},{"id":1685,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":1692,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":1682,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":1669,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":1690,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":1693,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":1670,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":1694,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":1676,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":null},{"id":1668,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":1699,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":1697,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":1689,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":1673,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":1681,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":1687,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"orderNumber\\",\\"orderDate\\",\\"requiredDate\\",\\"shippedDate\\",\\"status\\",\\"customerNumber\\",\\"orderLineNumber\\",\\"priceEach\\",\\"quantityOrdered\\",\\"productCode\\"\\\\r\\\\n"},{"id":1695,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":1684,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":1672,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"salesorders"},{"id":1679,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":1688,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":1675,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":1666,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":1698,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":1686,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":1696,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":1674,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":1677,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":1678,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":1691,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":1680,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `orderNumber`,`orderDate`,`requiredDate`,`shippedDate`,`status`,`customerNumber`,`orderLineNumber`,`priceEach`,`quantityOrdered`,`productCode` FROM `classic-models-errors`.`salesorders`"},{"id":1667,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":1700,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":1683,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":1671,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:31:02.838+00 2021-01-26 10:31:02.838+00 0 podium podium 194 18 enable.validation true 2021-01-26 10:31:02.839+00 2021-01-26 10:31:02.839+00 0 podium podium 215 20 source.entity.props [{"id":5003,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":5004,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":5005,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":5006,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":5007,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models"},{"id":5085,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":5127,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":5008,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":5105,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":5136,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":5121,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":5138,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":5012,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":5022,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":null},{"id":5220,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":5229,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":5061,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":5054,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":5114,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":5128,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":5021,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"orderNumber\\",\\"orderDate\\",\\"requiredDate\\",\\"shippedDate\\",\\"status\\",\\"customerNumber\\",\\"orderLineNumber\\",\\"priceEach\\",\\"quantityOrdered\\",\\"productCode\\"\\\\r\\\\n"},{"id":5232,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":5172,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":5240,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"salesorders"},{"id":5174,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":5213,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":5103,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":5029,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":5170,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":5015,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":5078,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":5087,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":5140,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":5028,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":5158,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":5211,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `orderNumber`,`orderDate`,`requiredDate`,`shippedDate`,`status`,`customerNumber`,`orderLineNumber`,`priceEach`,`quantityOrdered`,`productCode` FROM `classic-models`.`salesorders`"},{"id":5131,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":5076,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":5226,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":5035,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:32:45.123+00 2021-01-26 10:32:45.123+00 0 podium podium 216 20 enable.validation true 2021-01-26 10:32:45.124+00 2021-01-26 10:32:45.124+00 0 podium podium 225 21 enable.profiling true 2021-01-26 10:33:32.893+00 2021-01-26 10:33:32.893+00 0 podium podium 226 21 enable.validation true 2021-01-26 10:33:32.894+00 2021-01-26 10:33:32.894+00 0 podium podium 227 21 source.entity.props [{"id":5003,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":5004,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":5005,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":5006,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":5007,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models"},{"id":5227,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":5183,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":5094,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":5039,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":5073,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":5153,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":5180,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":5250,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":5090,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":null},{"id":5148,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":5147,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":5030,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":5009,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":5115,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":5234,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":5155,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"productCode\\",\\"productName\\",\\"productScale\\",\\"productVendor\\",\\"productDescription\\",\\"quantityInStock\\",\\"buyPrice\\",\\"MSRP\\",\\"productLine\\"\\\\r\\\\n"},{"id":5156,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":5168,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":5055,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"products"},{"id":5109,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":5038,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":5122,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":5071,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":5104,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":5162,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":5221,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":5184,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":5051,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":5016,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":5151,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":5247,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `productCode`,`productName`,`productScale`,`productVendor`,`productDescription`,`quantityInStock`,`buyPrice`,`MSRP`,`productLine` FROM `classic-models`.`products`"},{"id":5144,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":5161,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":5165,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":5058,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:33:32.894+00 2021-01-26 10:33:32.894+00 0 podium podium 228 22 enable.profiling true 2021-01-26 10:33:32.999+00 2021-01-26 10:33:32.999+00 0 podium podium 229 22 source.entity.props [{"id":5003,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":5004,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":5005,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":5006,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":5007,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models"},{"id":5113,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":5218,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":5239,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":5060,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":5075,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":5013,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":5134,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":5137,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":5067,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":null},{"id":5112,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":5146,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":5027,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":5187,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":5189,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":5119,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":5248,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"officeCode\\",\\"city\\",\\"phone\\",\\"addressLine1\\",\\"addressLine2\\",\\"state\\",\\"country\\",\\"postalCode\\",\\"territory\\",\\"officeLocation\\"\\\\r\\\\n"},{"id":5192,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":5177,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":5167,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"offices"},{"id":5228,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":5222,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":5083,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":5064,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":5154,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":5072,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":5096,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":5198,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":5203,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":5175,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":5110,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":5043,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `officeCode`,`city`,`phone`,`addressLine1`,`addressLine2`,`state`,`country`,`postalCode`,`territory`,`officeLocation` FROM `classic-models`.`offices`"},{"id":5041,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":5169,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":5010,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":5034,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:33:33+00 2021-01-26 10:33:33+00 0 podium podium 230 22 enable.validation true 2021-01-26 10:33:33+00 2021-01-26 10:33:33+00 0 podium podium 119 11 parquet.compression UNCOMPRESSED 2021-01-26 10:21:39.246+00 2021-01-26 10:21:39.246+00 0 ANONYMOUS ANONYMOUS 120 11 receiving.uri file:///usr/local/qdc/data/receiving/classic_models_errors/products/20210126000000 2021-01-26 10:21:39.248+00 2021-01-26 10:21:39.248+00 0 ANONYMOUS ANONYMOUS 121 11 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models_errors/products/20210126102136/* 2021-01-26 10:21:39.249+00 2021-01-26 10:21:39.249+00 0 ANONYMOUS ANONYMOUS 122 11 receiving.job.stats {"job_local1793341002_0021":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":207,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":20605519,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":111,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":256,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":11996374,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:21:39.25+00 2021-01-26 10:21:39.25+00 0 ANONYMOUS ANONYMOUS 123 11 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:21:39.251+00 2021-01-26 10:21:39.251+00 0 ANONYMOUS ANONYMOUS 124 11 profilemerge.job.stats {"job_local1238220080_0022":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":161,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":21513050,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":12566018,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:21:39.254+00 2021-01-26 10:21:39.254+00 0 ANONYMOUS ANONYMOUS 128 12 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:23:34.96+00 2021-01-26 10:23:34.96+00 0 ANONYMOUS ANONYMOUS 129 12 receiving.uri file:///usr/local/qdc/data/receiving/classic_models_errors/employees/20210126000000 2021-01-26 10:23:34.963+00 2021-01-26 10:23:34.963+00 0 ANONYMOUS ANONYMOUS 130 12 parquet.compression UNCOMPRESSED 2021-01-26 10:23:34.964+00 2021-01-26 10:23:34.964+00 0 ANONYMOUS ANONYMOUS 131 12 source.first.path.name jdbc:mysql://localhost:3306/classic-models-errors 2021-01-26 10:23:34.965+00 2021-01-26 10:23:34.965+00 0 ANONYMOUS ANONYMOUS 132 12 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models_errors/employees/20210126000000/* 2021-01-26 10:23:34.966+00 2021-01-26 10:23:34.966+00 0 ANONYMOUS ANONYMOUS 133 12 profilemerge.job.stats {"job_local2091000399_0024":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":162,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":23333606,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":13637313,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:23:34.967+00 2021-01-26 10:23:34.967+00 0 ANONYMOUS ANONYMOUS 134 12 source.file.count 1 2021-01-26 10:23:34.967+00 2021-01-26 10:23:34.967+00 0 ANONYMOUS ANONYMOUS 135 12 receiving.job.stats {"job_local1005016792_0023":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":208,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":22447995,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":24,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":28,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":13089726,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:23:34.968+00 2021-01-26 10:23:34.968+00 0 ANONYMOUS ANONYMOUS 139 13 source.file.count 1 2021-01-26 10:25:01.515+00 2021-01-26 10:25:01.515+00 0 ANONYMOUS ANONYMOUS 140 13 parquet.compression UNCOMPRESSED 2021-01-26 10:25:01.516+00 2021-01-26 10:25:01.516+00 0 ANONYMOUS ANONYMOUS 141 13 receiving.job.stats {"job_local1174132619_0025":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":211,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":24246031,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":8,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":36,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":14163568,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:25:01.517+00 2021-01-26 10:25:01.517+00 0 ANONYMOUS ANONYMOUS 142 13 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:25:01.518+00 2021-01-26 10:25:01.518+00 0 ANONYMOUS ANONYMOUS 143 13 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models_errors/productlines/20210126000000/* 2021-01-26 10:25:01.521+00 2021-01-26 10:25:01.521+00 0 ANONYMOUS ANONYMOUS 144 13 source.first.path.name jdbc:mysql://localhost:3306/classic-models-errors 2021-01-26 10:25:01.522+00 2021-01-26 10:25:01.522+00 0 ANONYMOUS ANONYMOUS 125 12 source.entity.props [{"id":866,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":868,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":869,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":867,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":865,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models-errors"},{"id":4892,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":4896,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.allow.control.chars","value":"true"},{"id":4901,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.allow.non.ascii.chars","value":"true"},{"id":4893,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":4890,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":4907,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":4877,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":4880,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":4897,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":4881,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":4900,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":""},{"id":4874,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":4904,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":4872,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":4885,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":4899,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":4879,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":4883,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"employeeNumber\\",\\"lastName\\",\\"firstName\\",\\"extension\\",\\"email\\",\\"reportsTo\\",\\"jobTitle\\",\\"officeCode\\"\\\\r\\\\n"},{"id":4903,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":4889,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":4895,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"employees"},{"id":4898,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":4902,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":4884,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":4886,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":4906,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":4894,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":4873,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":4876,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":4905,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":4882,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":4888,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":4891,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `employeeNumber`,`lastName`,`firstName`,`extension`,`email`,`reportsTo`,`jobTitle`,`officeCode` FROM `classic-models-errors`.`employees`"},{"id":4878,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":4887,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":4871,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":4875,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:23:31.929+00 2021-01-26 10:23:31.929+00 0 podium podium 126 12 enable.validation true 2021-01-26 10:23:31.93+00 2021-01-26 10:23:31.93+00 0 podium podium 127 12 enable.profiling true 2021-01-26 10:23:31.931+00 2021-01-26 10:23:31.931+00 0 podium podium 147 14 enable.profiling true 2021-01-26 10:26:55.528+00 2021-01-26 10:26:55.528+00 0 podium podium 148 14 enable.validation true 2021-01-26 10:26:55.528+00 2021-01-26 10:26:55.528+00 0 podium podium 149 14 source.entity.props [{"id":866,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":868,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":869,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":867,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":865,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models-errors"},{"id":4950,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":4973,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.allow.control.chars","value":"true"},{"id":4943,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.allow.non.ascii.chars","value":"true"},{"id":4966,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":4965,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":4963,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":4969,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":4962,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":4941,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":4946,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":4944,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":""},{"id":4952,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":4958,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":4972,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":4971,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":4948,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":4974,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":4945,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"customerNumber\\",\\"customerName\\",\\"contactLastName\\",\\"contactFirstName\\",\\"phone\\",\\"addressLine1\\",\\"addressLine2\\",\\"city\\",\\"state\\",\\"postalCode\\",\\"country\\",\\"salesRepEmployeeNumber\\",\\"creditLimit\\",\\"customerLocation\\"\\\\r\\\\n"},{"id":4955,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":4938,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":4949,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"customers"},{"id":4968,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":4951,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":4967,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":4959,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":4942,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":4953,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":4964,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":4961,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":4940,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":4970,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":4956,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":4947,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `customerNumber`,`customerName`,`contactLastName`,`contactFirstName`,`phone`,`addressLine1`,`addressLine2`,`city`,`state`,`postalCode`,`country`,`salesRepEmployeeNumber`,`creditLimit`,`customerLocation` FROM `classic-models-errors`.`customers`"},{"id":4939,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":4954,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":4960,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":4957,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:26:55.529+00 2021-01-26 10:26:55.529+00 0 podium podium 158 15 enable.validation true 2021-01-26 10:27:52.336+00 2021-01-26 10:27:52.336+00 0 podium podium 159 15 enable.profiling true 2021-01-26 10:27:52.336+00 2021-01-26 10:27:52.336+00 0 podium podium 160 15 source.entity.props [{"id":866,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":868,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":869,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":867,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":865,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models-errors"},{"id":1745,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":1743,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":1753,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":1749,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":1738,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":1752,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":1747,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":1754,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":1759,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":null},{"id":1739,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":1746,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":1758,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":1767,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":1768,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":1769,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":1765,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"officeCode\\",\\"city\\",\\"phone\\",\\"addressLine1\\",\\"addressLine2\\",\\"state\\",\\"country\\",\\"postalCode\\",\\"territory\\",\\"officeLocation\\"\\\\r\\\\n"},{"id":1756,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":1757,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":1760,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"offices"},{"id":1766,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":1737,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":1762,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":1761,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":1770,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":1763,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":1742,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":1741,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":1751,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":1736,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":1764,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":1748,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `officeCode`,`city`,`phone`,`addressLine1`,`addressLine2`,`state`,`country`,`postalCode`,`territory`,`officeLocation` FROM `classic-models-errors`.`offices`"},{"id":1740,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":1755,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":1744,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":1750,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:27:52.337+00 2021-01-26 10:27:52.337+00 0 podium podium 191 17 parquet.compression UNCOMPRESSED 2021-01-26 10:29:58.886+00 2021-01-26 10:29:58.886+00 0 ANONYMOUS ANONYMOUS 195 18 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:31:05.91+00 2021-01-26 10:31:05.91+00 0 ANONYMOUS ANONYMOUS 196 18 parquet.compression UNCOMPRESSED 2021-01-26 10:31:05.912+00 2021-01-26 10:31:05.912+00 0 ANONYMOUS ANONYMOUS 197 18 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models_errors/salesorders/20210126000000/* 2021-01-26 10:31:05.913+00 2021-01-26 10:31:05.913+00 0 ANONYMOUS ANONYMOUS 198 18 source.first.path.name jdbc:mysql://localhost:3306/classic-models-errors 2021-01-26 10:31:05.914+00 2021-01-26 10:31:05.914+00 0 ANONYMOUS ANONYMOUS 199 18 profilemerge.job.stats {"job_local440929362_0036":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":164,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":35260323,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":20604780,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:31:05.914+00 2021-01-26 10:31:05.914+00 0 ANONYMOUS ANONYMOUS 200 18 receiving.job.stats {"job_local1035563004_0035":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":210,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":34304437,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":2474,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":1796,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":19986110,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:31:05.915+00 2021-01-26 10:31:05.915+00 0 ANONYMOUS ANONYMOUS 201 18 receiving.uri file:///usr/local/qdc/data/receiving/classic_models_errors/salesorders/20210126000000 2021-01-26 10:31:05.916+00 2021-01-26 10:31:05.916+00 0 ANONYMOUS ANONYMOUS 202 18 source.file.count 1 2021-01-26 10:31:05.917+00 2021-01-26 10:31:05.917+00 0 ANONYMOUS ANONYMOUS 136 13 enable.profiling true 2021-01-26 10:24:58.526+00 2021-01-26 10:24:58.526+00 0 podium podium 137 13 enable.validation true 2021-01-26 10:24:58.526+00 2021-01-26 10:24:58.526+00 0 podium podium 138 13 source.entity.props [{"id":866,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":868,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":869,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":867,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":865,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models-errors"},{"id":1818,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":1831,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":1821,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":1825,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":1823,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":1820,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":1826,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":1835,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":1830,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":null},{"id":1829,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":1840,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":1808,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":1828,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":1813,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":1812,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":1836,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"productLine\\",\\"textDescription\\",\\"htmlDescription\\"\\\\r\\\\n"},{"id":1811,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":1822,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":1810,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"productlines"},{"id":1827,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":1809,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":1834,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":1832,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":1816,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":1824,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":1807,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":1814,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":1837,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":1806,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":1815,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":1817,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `productLine`,`textDescription`,`htmlDescription` FROM `classic-models-errors`.`productlines`"},{"id":1819,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":1838,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":1833,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":1839,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:24:58.527+00 2021-01-26 10:24:58.527+00 0 podium podium 206 19 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models/productlines/20210126010000/* 2021-01-26 10:32:21.269+00 2021-01-26 10:32:21.269+00 0 ANONYMOUS ANONYMOUS 207 19 receiving.job.stats {"job_local465012884_0037":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":197,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":36170832,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":8,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":36,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":21131577,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:32:21.27+00 2021-01-26 10:32:21.27+00 0 ANONYMOUS ANONYMOUS 208 19 receiving.uri file:///usr/local/qdc/data/receiving/classic_models/productlines/20210126010000 2021-01-26 10:32:21.271+00 2021-01-26 10:32:21.271+00 0 ANONYMOUS ANONYMOUS 209 19 profilemerge.job.stats {"job_local1509424345_0038":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":158,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":37034884,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":21659258,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:32:21.272+00 2021-01-26 10:32:21.272+00 0 ANONYMOUS ANONYMOUS 210 19 source.file.count 1 2021-01-26 10:32:21.272+00 2021-01-26 10:32:21.272+00 0 ANONYMOUS ANONYMOUS 211 19 parquet.compression UNCOMPRESSED 2021-01-26 10:32:21.273+00 2021-01-26 10:32:21.273+00 0 ANONYMOUS ANONYMOUS 212 19 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:32:21.274+00 2021-01-26 10:32:21.274+00 0 ANONYMOUS ANONYMOUS 213 19 source.first.path.name jdbc:mysql://localhost:3306/classic-models 2021-01-26 10:32:21.277+00 2021-01-26 10:32:21.277+00 0 ANONYMOUS ANONYMOUS 217 20 receiving.uri file:///usr/local/qdc/data/receiving/classic_models/salesorders/20210126010000 2021-01-26 10:32:48.067+00 2021-01-26 10:32:48.067+00 0 ANONYMOUS ANONYMOUS 218 20 parquet.compression UNCOMPRESSED 2021-01-26 10:32:48.068+00 2021-01-26 10:32:48.068+00 0 ANONYMOUS ANONYMOUS 219 20 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:32:48.069+00 2021-01-26 10:32:48.069+00 0 ANONYMOUS ANONYMOUS 220 20 profilemerge.job.stats {"job_local813823668_0040":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":157,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":39403596,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":23033479,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:32:48.071+00 2021-01-26 10:32:48.071+00 0 ANONYMOUS ANONYMOUS 221 20 source.file.count 1 2021-01-26 10:32:48.072+00 2021-01-26 10:32:48.072+00 0 ANONYMOUS ANONYMOUS 222 20 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models/salesorders/20210126010000/* 2021-01-26 10:32:48.073+00 2021-01-26 10:32:48.073+00 0 ANONYMOUS ANONYMOUS 223 20 receiving.job.stats {"job_local1830147121_0039":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":196,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":38447522,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":2474,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":1796,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":22414583,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:32:48.073+00 2021-01-26 10:32:48.073+00 0 ANONYMOUS ANONYMOUS 224 20 source.first.path.name jdbc:mysql://localhost:3306/classic-models 2021-01-26 10:32:48.074+00 2021-01-26 10:32:48.074+00 0 ANONYMOUS ANONYMOUS 237 21 parquet.compression UNCOMPRESSED 2021-01-26 10:33:36.6+00 2021-01-26 10:33:36.6+00 0 ANONYMOUS ANONYMOUS 145 13 profilemerge.job.stats {"job_local1042278665_0026":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":165,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":25110132,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":14691256,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:25:01.523+00 2021-01-26 10:25:01.523+00 0 ANONYMOUS ANONYMOUS 146 13 receiving.uri file:///usr/local/qdc/data/receiving/classic_models_errors/productlines/20210126000000 2021-01-26 10:25:01.524+00 2021-01-26 10:25:01.524+00 0 ANONYMOUS ANONYMOUS 150 14 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:26:58.467+00 2021-01-26 10:26:58.467+00 0 ANONYMOUS ANONYMOUS 151 14 source.file.count 1 2021-01-26 10:26:58.469+00 2021-01-26 10:26:58.469+00 0 ANONYMOUS ANONYMOUS 152 14 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models_errors/customers/20210126000000/* 2021-01-26 10:26:58.47+00 2021-01-26 10:26:58.47+00 0 ANONYMOUS ANONYMOUS 153 14 receiving.job.stats {"job_local1638505368_0027":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":208,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":26176768,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":123,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":176,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":15235867,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:26:58.471+00 2021-01-26 10:26:58.471+00 0 ANONYMOUS ANONYMOUS 154 14 profilemerge.job.stats {"job_local1134885732_0028":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":162,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":27150343,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":15869862,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:26:58.472+00 2021-01-26 10:26:58.472+00 0 ANONYMOUS ANONYMOUS 155 14 source.first.path.name jdbc:mysql://localhost:3306/classic-models-errors 2021-01-26 10:26:58.472+00 2021-01-26 10:26:58.472+00 0 ANONYMOUS ANONYMOUS 156 14 parquet.compression UNCOMPRESSED 2021-01-26 10:26:58.473+00 2021-01-26 10:26:58.473+00 0 ANONYMOUS ANONYMOUS 157 14 receiving.uri file:///usr/local/qdc/data/receiving/classic_models_errors/customers/20210126000000 2021-01-26 10:26:58.474+00 2021-01-26 10:26:58.474+00 0 ANONYMOUS ANONYMOUS 161 15 profilemerge.job.stats {"job_local673119452_0030":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":160,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":28982085,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":16946104,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:27:55.358+00 2021-01-26 10:27:55.358+00 0 ANONYMOUS ANONYMOUS 162 15 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:27:55.359+00 2021-01-26 10:27:55.359+00 0 ANONYMOUS ANONYMOUS 163 15 receiving.uri file:///usr/local/qdc/data/receiving/classic_models_errors/offices/20210126000000 2021-01-26 10:27:55.361+00 2021-01-26 10:27:55.361+00 0 ANONYMOUS ANONYMOUS 164 15 parquet.compression UNCOMPRESSED 2021-01-26 10:27:55.362+00 2021-01-26 10:27:55.362+00 0 ANONYMOUS ANONYMOUS 165 15 receiving.job.stats {"job_local1890839487_0029":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":206,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":28091277,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":8,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":16,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":16391866,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:27:55.362+00 2021-01-26 10:27:55.362+00 0 ANONYMOUS ANONYMOUS 166 15 source.first.path.name jdbc:mysql://localhost:3306/classic-models-errors 2021-01-26 10:27:55.363+00 2021-01-26 10:27:55.363+00 0 ANONYMOUS ANONYMOUS 167 15 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models_errors/offices/20210126000000/* 2021-01-26 10:27:55.364+00 2021-01-26 10:27:55.364+00 0 ANONYMOUS ANONYMOUS 168 15 source.file.count 1 2021-01-26 10:27:55.364+00 2021-01-26 10:27:55.364+00 0 ANONYMOUS ANONYMOUS 231 23 enable.profiling true 2021-01-26 10:33:33.12+00 2021-01-26 10:33:33.12+00 0 podium podium 253 23 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:33:37.086+00 2021-01-26 10:33:37.086+00 0 ANONYMOUS ANONYMOUS 169 16 source.entity.props [{"id":866,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":868,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":869,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":867,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":865,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models-errors"},{"id":1720,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":1714,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":1717,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":1721,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":1719,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":1713,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":1732,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":1734,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":1728,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":null},{"id":1711,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":1716,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":1727,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":1710,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":1705,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":1708,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":1722,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"checkNumber\\",\\"paymentDate\\",\\"amount\\",\\"customerNumber\\"\\\\r\\\\n"},{"id":1731,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":1735,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":1707,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"payments"},{"id":1704,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":1706,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":1702,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":1715,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":1730,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":1726,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":1733,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":1729,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":1712,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":1703,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":1709,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":1723,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `checkNumber`,`paymentDate`,`amount`,`customerNumber` FROM `classic-models-errors`.`payments`"},{"id":1725,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":1724,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":1701,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":1718,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:28:59.169+00 2021-01-26 10:28:59.169+00 0 podium podium 170 16 enable.profiling true 2021-01-26 10:28:59.17+00 2021-01-26 10:28:59.17+00 0 podium podium 171 16 enable.validation true 2021-01-26 10:28:59.17+00 2021-01-26 10:28:59.17+00 0 podium podium 203 19 enable.profiling true 2021-01-26 10:32:18.371+00 2021-01-26 10:32:18.371+00 0 podium podium 204 19 source.entity.props [{"id":5003,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":5004,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":5005,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":5006,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":5007,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models"},{"id":5194,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":5179,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":5132,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":5142,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":5093,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":5130,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":5160,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":5246,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":5123,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":null},{"id":5056,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":5141,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":5197,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":5095,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":5166,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":5080,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":5046,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"productLine\\",\\"textDescription\\",\\"htmlDescription\\"\\\\r\\\\n"},{"id":5111,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":5199,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":5092,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"productlines"},{"id":5057,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":5036,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":5106,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":5124,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":5216,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":5098,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":5037,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":5214,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":5133,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":5024,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":5205,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":5241,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `productLine`,`textDescription`,`htmlDescription` FROM `classic-models`.`productlines`"},{"id":5201,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":5143,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":5243,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":5212,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:32:18.371+00 2021-01-26 10:32:18.371+00 0 podium podium 205 19 enable.validation true 2021-01-26 10:32:18.372+00 2021-01-26 10:32:18.372+00 0 podium podium 102 10 enable.validation true 2021-01-26 10:20:44.345+00 2021-01-26 10:20:44.345+00 0 podium podium 103 10 source.entity.props [{"id":866,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":868,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":869,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":867,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":865,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models-errors"},{"id":1896,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":1894,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":1910,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":1891,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":1885,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":1876,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":1895,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":1905,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":1888,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":null},{"id":1899,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":1897,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":1890,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":1881,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":1886,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":1901,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":1887,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"productCode\\",\\"productName\\",\\"productScale\\",\\"productVendor\\",\\"productDescription\\",\\"quantityInStock\\",\\"buyPrice\\",\\"MSRP\\",\\"productLine\\"\\\\r\\\\n"},{"id":1878,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":1906,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":1893,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"products"},{"id":1904,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":1892,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":1900,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":1902,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":1903,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":1909,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":1908,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":1907,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":1884,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":1880,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":1882,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":1879,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `productCode`,`productName`,`productScale`,`productVendor`,`productDescription`,`quantityInStock`,`buyPrice`,`MSRP`,`productLine` FROM `classic-models-errors`.`products`"},{"id":1883,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":1898,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":1889,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":1877,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:20:44.345+00 2021-01-26 10:20:44.345+00 0 podium podium 104 10 enable.profiling true 2021-01-26 10:20:44.347+00 2021-01-26 10:20:44.347+00 0 podium podium 105 10 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models_errors/products/20210126000000/* 2021-01-26 10:20:47.625+00 2021-01-26 10:20:47.625+00 0 ANONYMOUS ANONYMOUS 106 10 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:20:47.626+00 2021-01-26 10:20:47.626+00 0 ANONYMOUS ANONYMOUS 107 10 profilemerge.job.stats {"job_local994287120_0020":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":161,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":19588182,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":11441095,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:20:47.629+00 2021-01-26 10:20:47.629+00 0 ANONYMOUS ANONYMOUS 108 10 parquet.compression UNCOMPRESSED 2021-01-26 10:20:47.63+00 2021-01-26 10:20:47.63+00 0 ANONYMOUS ANONYMOUS 109 10 receiving.uri file:///usr/local/qdc/data/receiving/classic_models_errors/products/20210126000000 2021-01-26 10:20:47.631+00 2021-01-26 10:20:47.631+00 0 ANONYMOUS ANONYMOUS 110 10 receiving.job.stats {"job_local1812311396_0019":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":207,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":18683280,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":111,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":256,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":10872450,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:20:47.632+00 2021-01-26 10:20:47.632+00 0 ANONYMOUS ANONYMOUS 111 10 source.file.count 1 2021-01-26 10:20:47.633+00 2021-01-26 10:20:47.633+00 0 ANONYMOUS ANONYMOUS 112 10 source.first.path.name jdbc:mysql://localhost:3306/classic-models-errors 2021-01-26 10:20:47.634+00 2021-01-26 10:20:47.634+00 0 ANONYMOUS ANONYMOUS 214 20 enable.profiling true 2021-01-26 10:32:45.122+00 2021-01-26 10:32:45.122+00 0 podium podium 238 21 receiving.uri file:///usr/local/qdc/data/receiving/classic_models/products/20210126010000 2021-01-26 10:33:36.601+00 2021-01-26 10:33:36.601+00 0 ANONYMOUS ANONYMOUS 239 21 source.first.path.name jdbc:mysql://localhost:3306/classic-models 2021-01-26 10:33:36.601+00 2021-01-26 10:33:36.601+00 0 ANONYMOUS ANONYMOUS 232 23 source.entity.props [{"id":5003,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":5004,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":5005,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":5006,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":5007,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models"},{"id":5032,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":5188,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":5186,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":5230,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":5242,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":5233,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":5245,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":5152,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":5066,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":null},{"id":5149,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":5018,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":5159,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":5235,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":5129,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":5048,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":5097,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"employeeNumber\\",\\"lastName\\",\\"firstName\\",\\"extension\\",\\"email\\",\\"reportsTo\\",\\"jobTitle\\",\\"officeCode\\"\\\\r\\\\n"},{"id":5209,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":5237,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":5251,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"employees"},{"id":5116,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":5120,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":5145,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":5088,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":5089,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":5117,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":5126,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":5176,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":5052,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":5074,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":5181,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":5244,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `employeeNumber`,`lastName`,`firstName`,`extension`,`email`,`reportsTo`,`jobTitle`,`officeCode` FROM `classic-models`.`employees`"},{"id":5026,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":5101,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":5031,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":5249,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:33:33.122+00 2021-01-26 10:33:33.122+00 0 podium podium 233 23 enable.validation true 2021-01-26 10:33:33.124+00 2021-01-26 10:33:33.124+00 0 podium podium 234 24 source.entity.props [{"id":5003,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":5004,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":5005,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":5006,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":5007,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models"},{"id":5045,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":5108,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":5100,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":5195,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":5215,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":5252,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":5196,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":5047,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":5023,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":null},{"id":5070,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":5224,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":5125,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":5217,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":5185,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":5077,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":5171,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"checkNumber\\",\\"paymentDate\\",\\"amount\\",\\"customerNumber\\"\\\\r\\\\n"},{"id":5231,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":5208,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":5062,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"payments"},{"id":5157,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":5017,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":5099,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":5163,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":5050,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":5049,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":5014,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":5182,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":5081,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":5068,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":5193,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":5063,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `checkNumber`,`paymentDate`,`amount`,`customerNumber` FROM `classic-models`.`payments`"},{"id":5238,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":5236,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":5042,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":5178,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:33:33.343+00 2021-01-26 10:33:33.343+00 0 podium podium 235 24 enable.validation true 2021-01-26 10:33:33.345+00 2021-01-26 10:33:33.345+00 0 podium podium 236 24 enable.profiling true 2021-01-26 10:33:33.347+00 2021-01-26 10:33:33.347+00 0 podium podium 240 21 profilemerge.job.stats {"job_local2087164271_0045":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":154,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":44679837,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":26226227,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:33:36.602+00 2021-01-26 10:33:36.602+00 0 ANONYMOUS ANONYMOUS 241 21 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models/products/20210126010000/* 2021-01-26 10:33:36.603+00 2021-01-26 10:33:36.603+00 0 ANONYMOUS ANONYMOUS 242 21 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:33:36.604+00 2021-01-26 10:33:36.604+00 0 ANONYMOUS ANONYMOUS 243 21 receiving.job.stats {"job_local883713271_0041":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":192,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":42775545,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":111,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":256,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":25129593,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":38}} 2021-01-26 10:33:36.606+00 2021-01-26 10:33:36.606+00 0 ANONYMOUS ANONYMOUS 244 21 source.file.count 1 2021-01-26 10:33:36.607+00 2021-01-26 10:33:36.607+00 0 ANONYMOUS ANONYMOUS 245 22 profilemerge.job.stats {"job_local635092593_0046":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":153,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":45570651,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":26780458,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:33:36.88+00 2021-01-26 10:33:36.88+00 0 ANONYMOUS ANONYMOUS 246 22 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:33:36.88+00 2021-01-26 10:33:36.88+00 0 ANONYMOUS ANONYMOUS 247 22 receiving.uri file:///usr/local/qdc/data/receiving/classic_models/offices/20210126010000 2021-01-26 10:33:36.883+00 2021-01-26 10:33:36.883+00 0 ANONYMOUS ANONYMOUS 248 22 source.first.path.name jdbc:mysql://localhost:3306/classic-models 2021-01-26 10:33:36.884+00 2021-01-26 10:33:36.884+00 0 ANONYMOUS ANONYMOUS 249 22 parquet.compression UNCOMPRESSED 2021-01-26 10:33:36.884+00 2021-01-26 10:33:36.884+00 0 ANONYMOUS ANONYMOUS 250 22 receiving.job.stats {"job_local295061949_0042":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":191,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":42778833,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":8,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":16,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":25131740,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:33:36.885+00 2021-01-26 10:33:36.885+00 0 ANONYMOUS ANONYMOUS 251 22 source.file.count 1 2021-01-26 10:33:36.886+00 2021-01-26 10:33:36.886+00 0 ANONYMOUS ANONYMOUS 252 22 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models/offices/20210126010000/* 2021-01-26 10:33:36.887+00 2021-01-26 10:33:36.887+00 0 ANONYMOUS ANONYMOUS 254 23 profilemerge.job.stats {"job_local255002986_0047":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":155,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":46577492,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":27328819,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:33:37.09+00 2021-01-26 10:33:37.09+00 0 ANONYMOUS ANONYMOUS 255 23 source.file.count 1 2021-01-26 10:33:37.091+00 2021-01-26 10:33:37.091+00 0 ANONYMOUS ANONYMOUS 256 23 parquet.compression UNCOMPRESSED 2021-01-26 10:33:37.092+00 2021-01-26 10:33:37.092+00 0 ANONYMOUS ANONYMOUS 257 23 source.first.path.name jdbc:mysql://localhost:3306/classic-models 2021-01-26 10:33:37.093+00 2021-01-26 10:33:37.093+00 0 ANONYMOUS ANONYMOUS 258 23 receiving.uri file:///usr/local/qdc/data/receiving/classic_models/employees/20210126010000 2021-01-26 10:33:37.094+00 2021-01-26 10:33:37.094+00 0 ANONYMOUS ANONYMOUS 259 23 receiving.job.stats {"job_local364225121_0043":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":194,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":42960398,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":24,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":28,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":25131740,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:33:37.095+00 2021-01-26 10:33:37.095+00 0 ANONYMOUS ANONYMOUS 260 23 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models/employees/20210126010000/* 2021-01-26 10:33:37.095+00 2021-01-26 10:33:37.095+00 0 ANONYMOUS ANONYMOUS 261 24 receiving.uri file:///usr/local/qdc/data/receiving/classic_models/payments/20210126010000 2021-01-26 10:33:37.158+00 2021-01-26 10:33:37.158+00 0 ANONYMOUS ANONYMOUS 262 24 source.first.path.name jdbc:mysql://localhost:3306/classic-models 2021-01-26 10:33:37.159+00 2021-01-26 10:33:37.159+00 0 ANONYMOUS ANONYMOUS 263 24 source.file.count 1 2021-01-26 10:33:37.16+00 2021-01-26 10:33:37.16+00 0 ANONYMOUS ANONYMOUS 264 24 profilemerge.job.stats {"job_local1709132537_0048":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":154,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":46843864,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":27384588,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:33:37.161+00 2021-01-26 10:33:37.161+00 0 ANONYMOUS ANONYMOUS 265 24 parquet.compression UNCOMPRESSED 2021-01-26 10:33:37.162+00 2021-01-26 10:33:37.162+00 0 ANONYMOUS ANONYMOUS 266 24 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:33:37.163+00 2021-01-26 10:33:37.163+00 0 ANONYMOUS ANONYMOUS 267 24 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models/payments/20210126010000/* 2021-01-26 10:33:37.166+00 2021-01-26 10:33:37.166+00 0 ANONYMOUS ANONYMOUS 268 24 receiving.job.stats {"job_local1524938507_0044":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":192,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":43258670,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":274,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":128,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":25147103,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:33:37.167+00 2021-01-26 10:33:37.167+00 0 ANONYMOUS ANONYMOUS 269 25 source.entity.props [{"id":5003,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":5004,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":5005,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":5006,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":5007,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models"},{"id":5874,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":5854,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.allow.control.chars","value":"true"},{"id":5850,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.allow.non.ascii.chars","value":"true"},{"id":5866,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":5853,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":5871,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":5858,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":5868,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":5869,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":5841,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":5857,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":""},{"id":5870,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":5852,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":5861,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":5855,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":5844,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":5843,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":5875,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"productCode\\",\\"productName\\",\\"productScale\\",\\"productVendor\\",\\"productDescription\\",\\"quantityInStock\\",\\"buyPrice\\",\\"MSRP\\",\\"productLine\\"\\\\r\\\\n"},{"id":5865,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":5849,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":5847,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"products"},{"id":5845,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":5860,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":5848,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":5863,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":5856,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":5877,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":5867,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":5872,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":5864,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":5876,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":5851,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":5859,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `productCode`,`productName`,`productScale`,`productVendor`,`productDescription`,`quantityInStock`,`buyPrice`,`MSRP`,`productLine` FROM `classic-models`.`products`"},{"id":5873,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":5846,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":5862,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":5842,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:34:33.981+00 2021-01-26 10:34:33.981+00 0 podium podium 270 25 enable.profiling true 2021-01-26 10:34:33.982+00 2021-01-26 10:34:33.982+00 0 podium podium 271 25 workorder.parent.id 21 2021-01-26 10:34:33.983+00 2021-01-26 10:34:33.983+00 0 podium podium 272 25 enable.validation true 2021-01-26 10:34:33.983+00 2021-01-26 10:34:33.983+00 0 podium podium 273 25 source.first.path.name jdbc:mysql://localhost:3306/classic-models 2021-01-26 10:34:36.897+00 2021-01-26 10:34:36.897+00 0 ANONYMOUS ANONYMOUS 274 25 source.file.count 1 2021-01-26 10:34:36.898+00 2021-01-26 10:34:36.898+00 0 ANONYMOUS ANONYMOUS 275 25 receiving.uri file:///usr/local/qdc/data/receiving/classic_models/products/20210126010000 2021-01-26 10:34:36.899+00 2021-01-26 10:34:36.899+00 0 ANONYMOUS ANONYMOUS 276 25 profilemerge.job.stats {"job_local1755649461_0050":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":154,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":48768259,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":28535193,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:34:36.9+00 2021-01-26 10:34:36.9+00 0 ANONYMOUS ANONYMOUS 277 25 parquet.compression UNCOMPRESSED 2021-01-26 10:34:36.9+00 2021-01-26 10:34:36.9+00 0 ANONYMOUS ANONYMOUS 278 25 receiving.job.stats {"job_local289494914_0049":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":192,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":47860777,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":111,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":256,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":27965556,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:34:36.901+00 2021-01-26 10:34:36.901+00 0 ANONYMOUS ANONYMOUS 279 25 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models/products/20210126103433/* 2021-01-26 10:34:36.902+00 2021-01-26 10:34:36.902+00 0 ANONYMOUS ANONYMOUS 280 25 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:34:36.903+00 2021-01-26 10:34:36.903+00 0 ANONYMOUS ANONYMOUS 281 26 source.entity.props [{"id":5003,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":5004,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":5005,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":5006,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":5007,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models"},{"id":5905,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":5893,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.allow.control.chars","value":"true"},{"id":5884,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.allow.non.ascii.chars","value":"true"},{"id":5881,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":5899,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":5887,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":5913,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":5883,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":5907,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":5895,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":5908,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":""},{"id":5898,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":5892,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":5891,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":5896,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":5894,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":5909,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":5903,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"customerNumber\\",\\"customerName\\",\\"contactLastName\\",\\"contactFirstName\\",\\"phone\\",\\"addressLine1\\",\\"addressLine2\\",\\"city\\",\\"state\\",\\"postalCode\\",\\"country\\",\\"salesRepEmployeeNumber\\",\\"creditLimit\\",\\"customerLocation\\"\\\\r\\\\n"},{"id":5888,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":5886,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":5904,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"customers"},{"id":5912,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":5911,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":5902,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":5878,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":5906,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":5890,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":5897,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":5910,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":5879,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":5914,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":5901,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":5885,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `customerNumber`,`customerName`,`contactLastName`,`contactFirstName`,`phone`,`addressLine1`,`addressLine2`,`city`,`state`,`postalCode`,`country`,`salesRepEmployeeNumber`,`creditLimit`,`customerLocation` FROM `classic-models`.`customers`"},{"id":5882,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":5880,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":5889,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":5900,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:35:38.278+00 2021-01-26 10:35:38.278+00 0 podium podium 282 26 enable.validation true 2021-01-26 10:35:38.279+00 2021-01-26 10:35:38.279+00 0 podium podium 283 26 enable.profiling true 2021-01-26 10:35:38.28+00 2021-01-26 10:35:38.28+00 0 podium podium 284 26 receiving.uri file:///usr/local/qdc/data/receiving/classic_models/customers/20210126010000 2021-01-26 10:35:41.227+00 2021-01-26 10:35:41.227+00 0 ANONYMOUS ANONYMOUS 285 26 profilemerge.job.stats {"job_local300166508_0052":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":155,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":50810143,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":29716161,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:35:41.228+00 2021-01-26 10:35:41.228+00 0 ANONYMOUS ANONYMOUS 286 26 receiving.job.stats {"job_local1059910271_0051":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":194,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":49836231,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":123,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":176,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":29080157,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:35:41.228+00 2021-01-26 10:35:41.228+00 0 ANONYMOUS ANONYMOUS 287 26 source.first.path.name jdbc:mysql://localhost:3306/classic-models 2021-01-26 10:35:41.229+00 2021-01-26 10:35:41.229+00 0 ANONYMOUS ANONYMOUS 288 26 parquet.compression UNCOMPRESSED 2021-01-26 10:35:41.23+00 2021-01-26 10:35:41.23+00 0 ANONYMOUS ANONYMOUS 289 26 source.file.count 1 2021-01-26 10:35:41.23+00 2021-01-26 10:35:41.23+00 0 ANONYMOUS ANONYMOUS 290 26 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models/customers/20210126010000/* 2021-01-26 10:35:41.231+00 2021-01-26 10:35:41.231+00 0 ANONYMOUS ANONYMOUS 291 26 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:35:41.232+00 2021-01-26 10:35:41.232+00 0 ANONYMOUS ANONYMOUS 296 27 receiving.uri file:///usr/local/qdc/data/receiving/classic_models/customers/20210126010000 2021-01-26 10:38:18.791+00 2021-01-26 10:38:18.791+00 0 ANONYMOUS ANONYMOUS 292 27 source.entity.props [{"id":5003,"version":null,"timeZoneOffset":0,"name":"sourceProp.default.entity.level","value":"MANAGED"},{"id":5004,"version":null,"timeZoneOffset":0,"name":"sourceProp.distribution.excludes","value":null},{"id":5005,"version":null,"timeZoneOffset":0,"name":"sourceProp.enable.distribution","value":null},{"id":5006,"version":null,"timeZoneOffset":0,"name":"sourceProp.mapred.job.arguments","value":null},{"id":5007,"version":null,"timeZoneOffset":0,"name":"sourceProp.originalSourceName","value":"classic-models"},{"id":5905,"version":null,"timeZoneOffset":0,"name":"entityProp.dataset.expected.record.count.adjustment","value":"0"},{"id":5893,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.allow.control.chars","value":"true"},{"id":5884,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.allow.non.ascii.chars","value":"true"},{"id":5881,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.embedded.enclosure.scheme","value":"DOUBLE_EMBEDDED_ENCLOSURE"},{"id":5899,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.max.legal.char.length","value":"0"},{"id":5887,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.min.legal.char.length","value":"0"},{"id":5913,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.nullif.pattern.is.regex","value":"false"},{"id":5883,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.left","value":"true"},{"id":5907,"version":null,"timeZoneOffset":0,"name":"entityProp.default.field.trim.right","value":"true"},{"id":5895,"version":null,"timeZoneOffset":0,"name":"entityProp.distribution.excludes","value":null},{"id":5908,"version":null,"timeZoneOffset":0,"name":"entityProp.enable.distribution","value":""},{"id":5898,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.base.type","value":"Snapshot"},{"id":5892,"version":null,"timeZoneOffset":0,"name":"entityProp.entity.level","value":"MANAGED"},{"id":5891,"version":null,"timeZoneOffset":0,"name":"entityProp.header.byte.count","value":"0"},{"id":5896,"version":null,"timeZoneOffset":0,"name":"entityProp.header.defines.field.names","value":"false"},{"id":5894,"version":null,"timeZoneOffset":0,"name":"entityProp.header.line.count","value":"1"},{"id":5909,"version":null,"timeZoneOffset":0,"name":"entityProp.header.record.count","value":"0"},{"id":5903,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern","value":"\\"customerNumber\\",\\"customerName\\",\\"contactLastName\\",\\"contactFirstName\\",\\"phone\\",\\"addressLine1\\",\\"addressLine2\\",\\"city\\",\\"state\\",\\"postalCode\\",\\"country\\",\\"salesRepEmployeeNumber\\",\\"creditLimit\\",\\"customerLocation\\"\\\\r\\\\n"},{"id":5888,"version":null,"timeZoneOffset":0,"name":"entityProp.header.validation.pattern.is.regex","value":"false"},{"id":5886,"version":null,"timeZoneOffset":0,"name":"entityProp.mapred.job.arguments","value":null},{"id":5904,"version":null,"timeZoneOffset":0,"name":"entityProp.original.name","value":"customers"},{"id":5912,"version":null,"timeZoneOffset":0,"name":"entityProp.qs.publish.count","value":"0"},{"id":5911,"version":null,"timeZoneOffset":0,"name":"entityProp.record.characterset","value":"UTF_8"},{"id":5902,"version":null,"timeZoneOffset":0,"name":"entityProp.record.charencoding.confidence","value":"0.00"},{"id":5878,"version":null,"timeZoneOffset":0,"name":"entityProp.record.close.quote","value":"\\""},{"id":5906,"version":null,"timeZoneOffset":0,"name":"entityProp.record.field.delimiter","value":","},{"id":5890,"version":null,"timeZoneOffset":0,"name":"entityProp.record.last.field.has.delimiter","value":"false"},{"id":5897,"version":null,"timeZoneOffset":0,"name":"entityProp.record.layout","value":"VARIABLE_CHAR_LENGTH_TERMINATED"},{"id":5910,"version":null,"timeZoneOffset":0,"name":"entityProp.record.max.byte.count","value":"262144"},{"id":5879,"version":null,"timeZoneOffset":0,"name":"entityProp.record.min.byte.count","value":"1"},{"id":5914,"version":null,"timeZoneOffset":0,"name":"entityProp.record.open.quote","value":"\\""},{"id":5901,"version":null,"timeZoneOffset":0,"name":"entityProp.record.record.terminator","value":"\\\\r\\\\n"},{"id":5885,"version":null,"timeZoneOffset":0,"name":"entityProp.src.file.glob","value":"SELECT `customerNumber`,`customerName`,`contactLastName`,`contactFirstName`,`phone`,`addressLine1`,`addressLine2`,`city`,`state`,`postalCode`,`country`,`salesRepEmployeeNumber`,`creditLimit`,`customerLocation` FROM `classic-models`.`customers`"},{"id":5882,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.byte.count","value":"0"},{"id":5880,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.line.count","value":"0"},{"id":5889,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.record.count","value":"0"},{"id":5900,"version":null,"timeZoneOffset":0,"name":"entityProp.trailer.validation.pattern.is.regex","value":"false"}] 2021-01-26 10:38:15.861+00 2021-01-26 10:38:15.861+00 0 podium podium 293 27 enable.validation true 2021-01-26 10:38:15.862+00 2021-01-26 10:38:15.862+00 0 podium podium 294 27 workorder.parent.id 26 2021-01-26 10:38:15.862+00 2021-01-26 10:38:15.862+00 0 podium podium 295 27 enable.profiling true 2021-01-26 10:38:15.863+00 2021-01-26 10:38:15.863+00 0 podium podium 297 27 source.first.path.name jdbc:mysql://localhost:3306/classic-models 2021-01-26 10:38:18.792+00 2021-01-26 10:38:18.792+00 0 ANONYMOUS ANONYMOUS 298 27 receiving.job.stats {"job_local831859291_0053":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":194,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":51877184,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":123,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":176,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":30261675,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:38:18.793+00 2021-01-26 10:38:18.793+00 0 ANONYMOUS ANONYMOUS 299 27 source.file.count 1 2021-01-26 10:38:18.793+00 2021-01-26 10:38:18.793+00 0 ANONYMOUS ANONYMOUS 300 27 mapred.job.config {"mapreduce.jobtracker.address":"local","dfs.namenode.resource.check.interval":"5000","hadoop.security.group.mapping.ldap.posix.attr.uid.name":"uidNumber","mapreduce.jobhistory.client.thread-count":"10","yarn.admin.acl":"*","yarn.app.mapreduce.am.job.committer.cancel-timeout":"60000","mapreduce.job.emit-timeline-data":"false","dfs.journalnode.rpc-address":"0.0.0.0:8485","dfs.disk.balancer.max.disk.throughputInMBperSec":"10","ipc.client.connection.maxidletime":"10000","yarn.nodemanager.process-kill-wait.ms":"2000","mapreduce.jobtracker.handler.count":"10","io.map.index.interval":"128","dfs.namenode.https-address":"0.0.0.0:50470","dfs.mover.max-no-move-interval":"60000","fs.s3n.multipart.uploads.enabled":"false","io.seqfile.sorter.recordlimit":"1000000","mapreduce.task.profile.reduces":"0-2","hadoop.util.hash.type":"murmur","mapreduce.tasktracker.tasks.sleeptimebeforesigkill":"5000","dfs.namenode.replication.min":"1","fs.s3a.path.style.access":"false","mapreduce.jobtracker.jobhistory.block.size":"3145728","dfs.namenode.fs-limits.min-block-size":"1048576","fs.AbstractFileSystem.file.impl":"org.apache.hadoop.fs.local.LocalFs","net.topology.script.number.args":"100","yarn.resourcemanager.container-tokens.master-key-rolling-interval-secs":"86400","mapreduce.map.output.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","hadoop.security.group.mapping":"org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback","mapreduce.input.fileinputformat.split.minsize":"0","mapreduce.jobtracker.system.dir":"${hadoop.tmp.dir}/mapred/system","mapreduce.job.end-notification.max.attempts":"5","mapreduce.reduce.speculative":"true","yarn.nodemanager.localizer.cache.cleanup.interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.start-time-read-cache-size":"10000","dfs.namenode.replication.interval":"3","yarn.resourcemanager.admin.address":"${yarn.resourcemanager.hostname}:8033","mapreduce.job.maps":"2","mapreduce.job.ubertask.enable":"false","dfs.client.use.datanode.hostname":"false","mapreduce.am.max-attempts":"2","yarn.resourcemanager.zk-num-retries":"1000","s3.blocksize":"67108864","dfs.datanode.data.dir":"file://${hadoop.tmp.dir}/dfs/data","mapreduce.reduce.shuffle.parallelcopies":"5","adl.feature.ownerandgroup.enableupn":"false","fs.s3.buffer.dir":"${hadoop.tmp.dir}/s3","hadoop.registry.zk.retry.ceiling.ms":"60000","dfs.datanode.data.dir.perm":"700","yarn.nodemanager.env-whitelist":"JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,HADOOP_YARN_HOME","dfs.namenode.xattrs.enabled":"true","dfs.datanode.bp-ready.timeout":"20","dfs.datanode.transfer.socket.send.buffer.size":"0","yarn.app.mapreduce.client.job.max-retries":"3","fs.s3a.s3guard.ddb.table.capacity.write":"100","yarn.nodemanager.linux-container-executor.cgroups.hierarchy":"/hadoop-yarn","yarn.resourcemanager.recovery.enabled":"false","yarn.app.mapreduce.am.container.log.backups":"0","yarn.nodemanager.disk-health-checker.interval-ms":"120000","dfs.namenode.list.cache.directives.num.responses":"100","fs.s3a.max.total.tasks":"5","yarn.resourcemanager.resource-tracker.client.thread-count":"50","mapreduce.shuffle.port":"13562","mapreduce.reduce.maxattempts":"4","dfs.namenode.replication.considerLoad":"true","yarn.nodemanager.delete.thread-count":"4","yarn.nodemanager.admin-env":"MALLOC_ARENA_MAX=$MALLOC_ARENA_MAX","mapreduce.job.speculative.speculative-cap-total-tasks":"0.01","yarn.resourcemanager.proxy-user-privileges.enabled":"false","ftp.replication":"3","mapreduce.job.speculative.slowtaskthreshold":"1.0","file.bytes-per-checksum":"512","s3native.client-write-packet-size":"65536","dfs.datanode.slow.io.warning.threshold.ms":"300","io.seqfile.lazydecompress":"true","mapreduce.task.skip.start.attempts":"2","yarn.nodemanager.default-container-executor.log-dirs.permissions":"710","hadoop.security.dns.log-slow-lookups.threshold.ms":"1000","dfs.namenode.reject-unresolved-dn-topology-mapping":"false","mapreduce.jobtracker.taskcache.levels":"2","mapreduce.job.jvm.numtasks":"1","dfs.namenode.top.num.users":"10","yarn.nodemanager.linux-container-executor.cgroups.mount":"false","mapreduce.job.classloader":"false","mapreduce.reduce.shuffle.fetch.retry.interval-ms":"1000","yarn.resourcemanager.nodemanager.minimum.version":"NONE","yarn.log-aggregation-enable":"false","hadoop.security.kms.client.encrypted.key.cache.size":"500","mapreduce.output.fileoutputformat.compress.type":"RECORD","hadoop.hdfs.configuration.version":"1","yarn.nodemanager.log.retain-seconds":"10800","mapreduce.job.end-notification.retry.interval":"1000","yarn.nodemanager.local-cache.max-files-per-directory":"8192","ha.failover-controller.new-active.rpc-timeout.ms":"60000","hadoop.ssl.hostname.verifier":"DEFAULT","dfs.client.read.shortcircuit":"false","s3native.blocksize":"67108864","dfs.client.failover.sleep.base.millis":"500","dfs.permissions.superusergroup":"supergroup","hadoop.registry.zk.retry.times":"5","dfs.client.socket.send.buffer.size":"0","dfs.blockreport.initialDelay":"0","yarn.scheduler.maximum-allocation-mb":"8192","mapreduce.task.io.sort.factor":"10","dfs.client.failover.sleep.max.millis":"15000","fs.s3.sleepTimeSeconds":"10","ha.health-monitor.rpc-timeout.ms":"45000","yarn.nodemanager.linux-container-executor.nonsecure-mode.limit-users":"true","fs.AbstractFileSystem.viewfs.impl":"org.apache.hadoop.fs.viewfs.ViewFs","fs.ftp.host":"0.0.0.0","fs.adl.oauth2.access.token.provider.type":"ClientCredential","yarn.nodemanager.linux-container-executor.nonsecure-mode.local-user":"nobody","fs.s3a.impl":"org.apache.hadoop.fs.s3a.S3AFileSystem","fs.s3a.s3guard.ddb.background.sleep":"25","dfs.namenode.fs-limits.max-blocks-per-file":"1048576","mapreduce.tasktracker.http.threads":"40","yarn.resourcemanager.am-rm-tokens.master-key-rolling-interval-secs":"86400","dfs.namenode.hosts.provider.classname":"org.apache.hadoop.hdfs.server.blockmanagement.HostFileManager","dfs.balancer.keytab.enabled":"false","io.compression.codec.bzip2.library":"system-native","mapreduce.map.skip.maxrecords":"0","ipc.ping.interval":"60000","mapreduce.jobhistory.loadedjobs.cache.size":"5","dfs.storage.policy.enabled":"true","mapreduce.client.output.filter":"FAILED","mapreduce.jobtracker.persist.jobstatus.hours":"1","dfs.datanode.block-pinning.enabled":"false","mapreduce.job.speculative.retry-after-no-speculate":"1000","yarn.resourcemanager.webapp.delegation-token-auth-filter.enabled":"true","s3native.stream-buffer-size":"4096","io.seqfile.local.dir":"${hadoop.tmp.dir}/io/local","dfs.encrypt.data.transfer.cipher.key.bitlength":"128","dfs.datanode.sync.behind.writes":"false","dfs.namenode.stale.datanode.interval":"30000","mapreduce.task.io.sort.mb":"100","yarn.resourcemanager.zk-state-store.parent-path":"/rmstore","fs.client.resolve.remote.symlinks":"true","hadoop.ssl.enabled.protocols":"TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2","mapreduce.reduce.cpu.vcores":"1","mapreduce.jobhistory.address":"0.0.0.0:10020","yarn.client.failover-retries":"0","hadoop.ssl.enabled":"false","dfs.namenode.name.dir":"file://${hadoop.tmp.dir}/dfs/name","dfs.block.access.token.enable":"false","adl.http.timeout":"5000","dfs.namenode.reencrypt.sleep.interval":"1m","mapreduce.job.speculative.retry-after-speculate":"15000","dfs.datanode.address":"0.0.0.0:50010","ipc.client.connect.max.retries":"10","hadoop.security.kms.client.timeout":"60","dfs.short.circuit.shared.memory.watcher.interrupt.check.ms":"60000","yarn.resourcemanager.ha.automatic-failover.embedded":"true","dfs.datanode.handler.count":"10","mapreduce.job.heap.memory-mb.ratio":"0.8","mapreduce.task.profile.map.params":"${mapreduce.task.profile.params}","yarn.resourcemanager.nodemanagers.heartbeat-interval-ms":"1000","dfs.namenode.block-placement-policy.default.prefer-local-node":"true","dfs.namenode.resource.checked.volumes.minimum":"1","yarn.resourcemanager.keytab":"/etc/krb5.keytab","yarn.client.max-cached-nodemanagers-proxies":"0","fs.trash.checkpoint.interval":"0","dfs.journalnode.http-address":"0.0.0.0:8480","yarn.app.mapreduce.am.staging-dir":"/tmp/hadoop-yarn/staging","yarn.nm.liveness-monitor.expiry-interval-ms":"600000","mapreduce.reduce.shuffle.merge.percent":"0.66","dfs.namenode.retrycache.heap.percent":"0.03f","ipc.client.connect.timeout":"20000","dfs.image.transfer-bootstrap-standby.bandwidthPerSec":"0","yarn.nodemanager.local-dirs":"${hadoop.tmp.dir}/nm-local-dir","dfs.balancer.block-move.timeout":"0","yarn.nodemanager.recovery.enabled":"false","s3.replication":"3","yarn.resourcemanager.am.max-attempts":"2","hadoop.kerberos.min.seconds.before.relogin":"60","yarn.am.blacklisting.disable-failure-threshold":"0.8f","dfs.image.compress":"false","yarn.app.attempt.diagnostics.limit.kc":"64","dfs.datanode.available-space-volume-choosing-policy.balanced-space-preference-fraction":"0.75f","dfs.namenode.edit.log.autoroll.multiplier.threshold":"2.0","hadoop.security.group.mapping.ldap.ssl":"false","dfs.namenode.checkpoint.check.period":"60","fs.defaultFS":"file:///","hadoop.security.group.mapping.ldap.search.attr.group.name":"cn","yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage":"90.0","yarn.nodemanager.container-monitor.procfs-tree.smaps-based-rss.enabled":"false","dfs.namenode.service.handler.count":"10","mapreduce.map.sort.spill.percent":"0.80","hadoop.security.crypto.codec.classes.aes.ctr.nopadding":"org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec,org.apache.hadoop.crypto.JceAesCtrCryptoCodec","dfs.namenode.http-address":"0.0.0.0:50070","fs.s3a.metadatastore.impl":"org.apache.hadoop.fs.s3a.s3guard.NullMetadataStore","hadoop.security.groups.negative-cache.secs":"30","hadoop.ssl.server.conf":"ssl-server.xml","mapreduce.jobtracker.staging.root.dir":"${hadoop.tmp.dir}/mapred/staging","yarn.client.nodemanager-client-async.thread-pool-max-size":"500","mapreduce.jobhistory.admin.address":"0.0.0.0:10033","dfs.namenode.startup.delay.block.deletion.sec":"0","yarn.nodemanager.health-checker.interval-ms":"600000","dfs.namenode.checkpoint.max-retries":"3","ftp.client-write-packet-size":"65536","yarn.timeline-service.keytab":"/etc/krb5.keytab","mapreduce.reduce.shuffle.fetch.retry.enabled":"${yarn.nodemanager.recovery.enabled}","yarn.app.mapreduce.task.container.log.backups":"0","dfs.heartbeat.interval":"3","ha.zookeeper.session-timeout.ms":"5000","hadoop.http.authentication.signature.secret.file":"${user.home}/hadoop-http-auth-signature-secret","yarn.nodemanager.log-aggregation.compression-type":"none","yarn.resourcemanager.work-preserving-recovery.scheduling-wait-ms":"10000","yarn.nodemanager.log-dirs":"${yarn.log.dir}/userlogs","mapreduce.job.speculative.minimum-allowed-tasks":"10","dfs.datanode.cache.revocation.timeout.ms":"900000","mapreduce.jobhistory.recovery.store.class":"org.apache.hadoop.mapreduce.v2.hs.HistoryServerFileSystemStateStoreService","mapreduce.task.combine.progress.records":"10000","mapreduce.jobtracker.instrumentation":"org.apache.hadoop.mapred.JobTrackerMetricsInst","yarn.nodemanager.address":"${yarn.nodemanager.hostname}:0","mapreduce.job.reduces":"1","hadoop.security.kms.client.encrypted.key.cache.expiry":"43200000","yarn.resourcemanager.configuration.provider-class":"org.apache.hadoop.yarn.LocalConfigurationProvider","yarn.timeline-service.address":"${yarn.timeline-service.hostname}:10200","tfile.io.chunk.size":"1048576","hadoop.registry.zk.session.timeout.ms":"60000","ha.health-monitor.sleep-after-disconnect.ms":"1000","mapreduce.tasktracker.reduce.tasks.maximum":"2","dfs.datanode.directoryscan.threads":"1","dfs.datanode.directoryscan.interval":"21600","hadoop.http.authentication.token.validity":"36000","mapreduce.tasktracker.local.dir.minspacekill":"0","ha.failover-controller.graceful-fence.rpc-timeout.ms":"5000","mapreduce.jobhistory.cleaner.interval-ms":"86400000","dfs.namenode.datanode.registration.ip-hostname-check":"true","mapreduce.jobtracker.http.address":"0.0.0.0:50030","dfs.namenode.backup.http-address":"0.0.0.0:50105","mapreduce.tasktracker.outofband.heartbeat":"false","hadoop.security.crypto.buffer.size":"8192","mapreduce.reduce.shuffle.read.timeout":"180000","fs.ftp.transfer.mode":"BLOCK_TRANSFER_MODE","mapreduce.ifile.readahead.bytes":"4194304","hadoop.registry.secure":"false","dfs.namenode.safemode.min.datanodes":"0","mapreduce.tasktracker.report.address":"127.0.0.1:0","yarn.timeline-service.http-authentication.type":"simple","dfs.namenode.snapshot.skip.capture.accesstime-only-change":"false","dfs.webhdfs.enabled":"true","yarn.log-aggregation.retain-seconds":"-1","dfs.namenode.avoid.write.stale.datanode":"false","mapreduce.job.complete.cancel.delegation.tokens":"true","fs.s3a.multiobjectdelete.enable":"true","yarn.resourcemanager.fail-fast":"${yarn.fail-fast}","mapreduce.shuffle.connection-keep-alive.timeout":"5","yarn.scheduler.minimum-allocation-vcores":"1","yarn.timeline-service.client.max-retries":"30","yarn.timeline-service.client.retry-interval-ms":"1000","nfs.exports.allowed.hosts":"* rw","mapreduce.shuffle.max.threads":"0","dfs.client.mmap.cache.size":"256","io.file.buffer.size":"4096","dfs.ha.zkfc.nn.http.timeout.ms":"20000","yarn.nodemanager.container-metrics.unregister-delay-ms":"10000","ipc.client.connect.retry.interval":"1000","dfs.namenode.checkpoint.txns":"1000000","mapreduce.reduce.shuffle.connect.timeout":"180000","yarn.resourcemanager.fs.state-store.uri":"${hadoop.tmp.dir}/yarn/system/rmstore","fs.AbstractFileSystem.adl.impl":"org.apache.hadoop.fs.adl.Adl","hadoop.registry.zk.connection.timeout.ms":"15000","dfs.namenode.list.openfiles.num.responses":"1000","dfs.cachereport.intervalMsec":"10000","dfs.ha.tail-edits.rolledits.timeout":"60","yarn.app.mapreduce.am.container.log.limit.kb":"0","yarn.nodemanager.resourcemanager.minimum.version":"NONE","yarn.resourcemanager.address":"${yarn.resourcemanager.hostname}:8032","file.stream-buffer-size":"4096","mapreduce.job.ubertask.maxreduces":"1","yarn.resourcemanager.nodemanager-connect-retries":"10","ipc.client.idlethreshold":"4000","yarn.nodemanager.logaggregation.threadpool-size-max":"100","ftp.stream-buffer-size":"4096","dfs.client.failover.connection.retries.on.timeouts":"0","hadoop.http.authentication.simple.anonymous.allowed":"true","dfs.namenode.replication.work.multiplier.per.iteration":"2","yarn.client.nodemanager-connect.retry-interval-ms":"10000","yarn.nodemanager.linux-container-executor.resources-handler.class":"org.apache.hadoop.yarn.server.nodemanager.util.DefaultLCEResourcesHandler","yarn.timeline-service.leveldb-timeline-store.read-cache-size":"104857600","hadoop.security.authentication":"simple","dfs.image.compression.codec":"org.apache.hadoop.io.compress.DefaultCodec","mapreduce.task.files.preserve.failedtasks":"false","dfs.client.read.shortcircuit.streams.cache.size":"256","file.replication":"1","mapreduce.jobhistory.joblist.cache.size":"20000","yarn.resourcemanager.work-preserving-recovery.enabled":"false","dfs.namenode.fs-limits.max-xattrs-per-inode":"32","dfs.image.transfer.timeout":"60000","nfs.wtmax":"1048576","fs.s3a.multipart.purge":"false","fs.s3a.connection.establish.timeout":"5000","dfs.secondary.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","dfs.stream-buffer-size":"4096","dfs.namenode.invalidate.work.pct.per.iteration":"0.32f","fs.s3a.multipart.purge.age":"86400","yarn.resourcemanager.scheduler.client.thread-count":"50","tfile.fs.input.buffer.size":"262144","hadoop.http.authentication.type":"simple","dfs.namenode.list.encryption.zones.num.responses":"100","mapreduce.map.cpu.vcores":"1","dfs.namenode.decommission.interval":"30","ftp.bytes-per-checksum":"512","dfs.user.home.dir.prefix":"/user","yarn.nodemanager.pmem-check-enabled":"true","dfs.namenode.inotify.max.events.per.rpc":"1000","mapreduce.task.profile.maps":"0-2","mapreduce.shuffle.ssl.file.buffer.size":"65536","yarn.timeline-service.webapp.https.address":"${yarn.timeline-service.hostname}:8190","dfs.datanode.transfer.socket.recv.buffer.size":"0","yarn.app.mapreduce.am.command-opts":"-Xmx1024m","yarn.resourcemanager.amlauncher.thread-count":"50","dfs.lock.suppress.warning.interval":"10s","hadoop.registry.zk.root":"/registry","yarn.client.failover-proxy-provider":"org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider","yarn.nodemanager.remote-app-log-dir-suffix":"logs","mapreduce.jobhistory.principal":"jhs/_HOST@REALM.TLD","nfs.mountd.port":"4242","mapreduce.reduce.merge.inmem.threshold":"1000","mapreduce.jobtracker.jobhistory.lru.cache.size":"5","dfs.namenode.num.checkpoints.retained":"2","mapreduce.job.queuename":"default","mapreduce.jobhistory.max-age-ms":"604800000","yarn.nodemanager.localizer.client.thread-count":"5","dfs.namenode.fslock.fair":"true","dfs.blockreport.split.threshold":"1000000","dfs.datanode.balance.bandwidthPerSec":"10485760","dfs.block.scanner.volume.bytes.per.second":"1048576","ipc.client.rpc-timeout.ms":"0","yarn.resourcemanager.amlauncher.log.command":"false","dfs.default.chunk.view.size":"32768","dfs.disk.balancer.plan.threshold.percent":"10","mapreduce.task.profile.params":"-agentlib:hprof=cpu=samples,heap=sites,force=n,thread=y,verbose=n,file=%s","mapreduce.jobhistory.datestring.cache.size":"200000","dfs.disk.balancer.max.disk.errors":"5","dfs.namenode.handler.count":"10","dfs.image.transfer.bandwidthPerSec":"0","mapreduce.jobtracker.expire.trackers.interval":"600000","mapreduce.jobhistory.loadedjob.tasks.max":"-1","yarn.app.mapreduce.client.max-retries":"3","ipc.server.listen.queue.size":"128","fs.s3a.threads.max":"10","yarn.timeline-service.handler-thread-count":"10","yarn.resourcemanager.connect.max-wait.ms":"900000","dfs.client.block.write.replace-datanode-on-failure.min-replication":"0","mapreduce.job.max.split.locations":"10","yarn.resourcemanager.scheduler.class":"org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler","dfs.blocksize":"134217728","fs.s3a.threads.keepalivetime":"60","mapreduce.shuffle.connection-keep-alive.enable":"false","ha.failover-controller.cli-check.rpc-timeout.ms":"20000","ha.zookeeper.acl":"world:anyone:rwcda","dfs.namenode.write.stale.datanode.ratio":"0.5f","dfs.encrypt.data.transfer":"false","dfs.datanode.shared.file.descriptor.paths":"/dev/shm,/tmp","mapreduce.input.lineinputformat.linespermap":"1","yarn.nodemanager.localizer.fetch.thread-count":"4","yarn.resourcemanager.scheduler.address":"${yarn.resourcemanager.hostname}:8030","yarn.timeline-service.leveldb-timeline-store.start-time-write-cache-size":"10000","dfs.client.read.shortcircuit.skip.checksum":"false","mapreduce.shuffle.ssl.enabled":"false","mapreduce.reduce.log.level":"INFO","hadoop.registry.rm.enabled":"false","dfs.namenode.quota.init-threads":"4","yarn.resourcemanager.system-metrics-publisher.dispatcher.pool-size":"10","dfs.webhdfs.acl.provider.permission.pattern":"^(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?(,(default:)?(user|group|mask|other):[[A-Za-z_][A-Za-z0-9._-]]*:([rwx-]{3})?)*$","dfs.datanode.use.datanode.hostname":"false","yarn.resourcemanager.ha.enabled":"false","dfs.balancer.address":"0.0.0.0:0","fs.s3a.multipart.threshold":"128M","mapreduce.reduce.shuffle.memory.limit.percent":"0.25","dfs.https.server.keystore.resource":"ssl-server.xml","dfs.namenode.kerberos.internal.spnego.principal":"${dfs.web.authentication.kerberos.principal}","yarn.resourcemanager.state-store.max-completed-applications":"${yarn.resourcemanager.max-completed-applications}","map.sort.class":"org.apache.hadoop.util.QuickSort","dfs.datanode.dns.interface":"default","fs.s3a.buffer.dir":"${hadoop.tmp.dir}/s3a","mapreduce.reduce.shuffle.retry-delay.max.ms":"60000","yarn.app.mapreduce.shuffle.log.limit.kb":"0","mapreduce.client.progressmonitor.pollinterval":"1000","dfs.datanode.max.locked.memory":"0","dfs.namenode.retrycache.expirytime.millis":"600000","dfs.ha.fencing.ssh.connect-timeout":"30000","mapreduce.jobhistory.move.interval-ms":"180000","dfs.client.block.write.replace-datanode-on-failure.best-effort":"false","dfs.datanode.scan.period.hours":"504","yarn.nodemanager.log-aggregation.roll-monitoring-interval-seconds":"-1","dfs.namenode.fs-limits.max-component-length":"255","dfs.datanode.ipc.address":"0.0.0.0:50020","hadoop.security.crypto.cipher.suite":"AES/CTR/NoPadding","dfs.client.block.write.replace-datanode-on-failure.policy":"DEFAULT","dfs.namenode.path.based.cache.retry.interval.ms":"30000","fs.s3a.fast.upload.active.blocks":"4","dfs.ha.tail-edits.period":"60","yarn.resourcemanager.hostname":"0.0.0.0","hadoop.registry.jaas.context":"Client","hadoop.security.group.mapping.ldap.search.filter.group":"(objectClass=group)","hadoop.security.group.mapping.ldap.search.filter.user":"(&(objectClass=user)(sAMAccountName={0}))","dfs.namenode.edits.dir":"${dfs.namenode.name.dir}","yarn.client.failover-retries-on-socket-timeouts":"0","dfs.namenode.decommission.max.concurrent.tracked.nodes":"100","ipc.server.log.slow.rpc":"false","dfs.namenode.list.reencryption.status.num.responses":"100","yarn.nodemanager.vmem-pmem-ratio":"2.1","dfs.namenode.checkpoint.period":"3600","dfs.ha.automatic-failover.enabled":"false","yarn.resourcemanager.scheduler.monitor.policies":"org.apache.hadoop.yarn.server.resourcemanager.monitor.capacity.ProportionalCapacityPreemptionPolicy","yarn.app.mapreduce.am.containerlauncher.threadpool-initial-size":"10","mapreduce.jobtracker.retiredjobs.cache.size":"1000","dfs.client.https.need-auth":"false","dfs.namenode.write-lock-reporting-threshold-ms":"5000","fs.ftp.host.port":"21","fs.s3a.block.size":"32M","dfs.namenode.avoid.read.stale.datanode":"false","mapreduce.job.end-notification.retry.attempts":"0","yarn.timeline-service.leveldb-timeline-store.ttl-interval-ms":"300000","yarn.ipc.rpc.class":"org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC","dfs.namenode.lease-recheck-interval-ms":"2000","mapreduce.cluster.acls.enabled":"false","mapreduce.job.ubertask.maxmaps":"9","yarn.nodemanager.container-manager.thread-count":"20","mapreduce.app-submission.cross-platform":"false","fs.s3a.metadatastore.authoritative":"false","mapreduce.job.reducer.preempt.delay.sec":"0","s3native.bytes-per-checksum":"512","dfs.namenode.path.based.cache.block.map.allocation.percent":"0.25","mapreduce.reduce.markreset.buffer.percent":"0.0","dfs.datanode.cache.revocation.polling.ms":"500","dfs.namenode.lazypersist.file.scrub.interval.sec":"300","mapreduce.jobhistory.recovery.store.fs.uri":"${hadoop.tmp.dir}/mapred/history/recoverystore","hadoop.registry.zk.retry.interval.ms":"1000","yarn.nodemanager.keytab":"/etc/krb5.keytab","nfs.dump.dir":"/tmp/.hdfs-nfs","yarn.am.blacklisting.enabled":"true","mapreduce.jobtracker.maxtasks.perjob":"-1","yarn.resourcemanager.fs.state-store.retry-policy-spec":"2000, 500","yarn.nodemanager.delete.debug-delay-sec":"0","yarn.timeline-service.ttl-enable":"true","mapreduce.reduce.skip.maxgroups":"0","fs.trash.interval":"0","mapreduce.jobtracker.heartbeats.in.second":"100","mapreduce.jobtracker.persist.jobstatus.active":"true","mapreduce.jobhistory.done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done","hadoop.security.instrumentation.requires.admin":"false","nfs.rtmax":"1048576","yarn.resourcemanager.container.liveness-monitor.interval-ms":"600000","dfs.namenode.backup.address":"0.0.0.0:50100","dfs.namenode.max-lock-hold-to-release-lease-ms":"25","dfs.datanode.readahead.bytes":"4194304","mapreduce.jobhistory.cleaner.enable":"true","dfs.client.block.write.retries":"3","mapreduce.tasktracker.http.address":"0.0.0.0:50060","ha.failover-controller.graceful-fence.connection.retries":"1","httpfs.buffer.size":"4096","dfs.namenode.safemode.threshold-pct":"0.999f","hadoop.security.java.secure.random.algorithm":"SHA1PRNG","mapreduce.cluster.temp.dir":"${hadoop.tmp.dir}/mapred/temp","dfs.datanode.dns.nameserver":"default","mapreduce.client.submit.file.replication":"10","yarn.fail-fast":"false","dfs.namenode.edits.journal-plugin.qjournal":"org.apache.hadoop.hdfs.qjournal.client.QuorumJournalManager","dfs.client.write.exclude.nodes.cache.expiry.interval.millis":"600000","dfs.client.mmap.cache.timeout.ms":"3600000","dfs.namenode.reencrypt.throttle.limit.handler.ratio":"1.0","fs.hdfs.impl.disable.cache":"true","io.skip.checksum.errors":"false","yarn.timeline-service.hostname":"0.0.0.0","yarn.acl.enable":"false","fs.s3a.fast.upload":"false","file.blocksize":"67108864","hadoop.rpc.socket.factory.class.default":"org.apache.hadoop.net.StandardSocketFactory","hadoop.common.configuration.version":"0.23.0","yarn.resourcemanager.client.thread-count":"50","dfs.datanode.drop.cache.behind.reads":"false","yarn.nodemanager.linux-container-executor.nonsecure-mode.user-pattern":"^[_.A-Za-z0-9][-@_.A-Za-z0-9]{0,255}?[$]?$","yarn.resourcemanager.zk-timeout-ms":"10000","mapreduce.task.tmp.dir":"./tmp","yarn.resourcemanager.max-completed-applications":"10000","mapreduce.jobtracker.tasktracker.maxblacklists":"4","mapreduce.job.end-notification.max.retry.interval":"5000","mapreduce.job.acl-view-job":" ","yarn.app.mapreduce.am.job.task.listener.thread-count":"30","yarn.app.mapreduce.am.resource.cpu-vcores":"1","dfs.namenode.edit.log.autoroll.check.interval.ms":"300000","hadoop.security.group.mapping.ldap.search.attr.member":"member","hadoop.ssl.client.conf":"ssl-client.xml","hadoop.security.groups.cache.background.reload":"false","dfs.journalnode.https-address":"0.0.0.0:8481","mapreduce.reduce.shuffle.fetch.retry.timeout-ms":"30000","dfs.bytes-per-checksum":"512","mapreduce.tasktracker.instrumentation":"org.apache.hadoop.mapred.TaskTrackerMetricsInst","dfs.namenode.max.objects":"0","hadoop.security.credential.clear-text-fallback":"true","dfs.datanode.max.transfer.threads":"4096","mapreduce.jobtracker.jobhistory.task.numberprogresssplits":"12","dfs.block.access.key.update.interval":"600","mapreduce.map.memory.mb":"-1","dfs.datanode.directoryscan.throttle.limit.ms.per.sec":"1000","dfs.datanode.hdfs-blocks-metadata.enabled":"false","mapreduce.tasktracker.healthchecker.interval":"60000","dfs.image.transfer.chunksize":"65536","mapreduce.tasktracker.taskmemorymanager.monitoringinterval":"5000","mapreduce.jobhistory.jhist.format":"json","yarn.resourcemanager.connect.retry-interval.ms":"30000","yarn.timeline-service.webapp.address":"${yarn.timeline-service.hostname}:8188","dfs.client.https.keystore.resource":"ssl-client.xml","yarn.scheduler.minimum-allocation-mb":"1024","net.topology.impl":"org.apache.hadoop.net.NetworkTopology","io.seqfile.compress.blocksize":"1000000","dfs.namenode.checkpoint.edits.dir":"${dfs.namenode.checkpoint.dir}","mapreduce.job.running.reduce.limit":"0","dfs.namenode.safemode.extension":"30000","mapreduce.job.reduce.shuffle.consumer.plugin.class":"org.apache.hadoop.mapreduce.task.reduce.Shuffle","mapreduce.jobtracker.persist.jobstatus.dir":"/jobtracker/jobsInfo","yarn.nodemanager.vmem-check-enabled":"false","dfs.namenode.delegation.key.update-interval":"86400000","hadoop.rpc.protection":"authentication","fs.permissions.umask-mode":"022","hadoop.http.staticuser.user":"dr.who","fs.s3a.connection.maximum":"100","fs.s3a.paging.maximum":"5000","hadoop.shell.missing.defaultFs.warning":"true","hadoop.http.authentication.kerberos.keytab":"${user.home}/hadoop.keytab","mapreduce.tasktracker.dns.nameserver":"default","dfs.client.block.write.replace-datanode-on-failure.enable":"true","dfs.namenode.checkpoint.dir":"file://${hadoop.tmp.dir}/dfs/namesecondary","dfs.client.use.legacy.blockreader.local":"false","dfs.namenode.top.windows.minutes":"1,5,25","mapreduce.job.maxtaskfailures.per.tracker":"3","mapreduce.shuffle.max.connections":"0","net.topology.node.switch.mapping.impl":"org.apache.hadoop.net.ScriptBasedMapping","yarn.client.application-client-protocol.poll-interval-ms":"200","yarn.nodemanager.localizer.address":"${yarn.nodemanager.hostname}:8040","dfs.namenode.list.cache.pools.num.responses":"100","nfs.server.port":"2049","fs.s3a.readahead.range":"64K","ha.zookeeper.parent-znode":"/hadoop-ha","yarn.nodemanager.resource.cpu-vcores":"8","mapreduce.jobhistory.http.policy":"HTTP_ONLY","fs.s3a.attempts.maximum":"20","yarn.log-aggregation.retain-check-interval-seconds":"-1","fs.s3n.multipart.copy.block.size":"5368709120","yarn.resourcemanager.zk-acl":"world:anyone:rwcda","hadoop.ssl.keystores.factory.class":"org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory","mapreduce.job.split.metainfo.maxsize":"10000000","fs.s3.maxRetries":"4","hadoop.security.random.device.file.path":"/dev/urandom","yarn.client.nodemanager-connect.max-wait-ms":"180000","yarn.app.mapreduce.client-am.ipc.max-retries":"3","dfs.namenode.snapshotdiff.allow.snap-root-descendant":"true","yarn.nodemanager.linux-container-executor.cgroups.strict-resource-usage":"false","dfs.replication.max":"512","dfs.datanode.https.address":"0.0.0.0:50475","ipc.client.kill.max":"10","mapreduce.job.committer.setup.cleanup.needed":"true","dfs.client.domain.socket.data.traffic":"false","yarn.nodemanager.localizer.cache.target-size-mb":"10240","yarn.resourcemanager.admin.client.thread-count":"1","mapreduce.jobtracker.restart.recover":"false","yarn.timeline-service.store-class":"org.apache.hadoop.yarn.server.timeline.LeveldbTimelineStore","hadoop.tmp.dir":"/tmp/hadoop-${user.name}","dfs.domain.socket.disable.interval.seconds":"1","hadoop.security.kms.client.failover.sleep.base.millis":"100","yarn.timeline-service.ttl-ms":"604800000","mapreduce.task.exit.timeout.check-interval-ms":"20000","mapreduce.map.speculative":"true","yarn.nodemanager.recovery.dir":"${hadoop.tmp.dir}/yarn-nm-recovery","mapreduce.job.counters.max":"120","dfs.namenode.max.full.block.report.leases":"6","dfs.namenode.max.extra.edits.segments.retained":"10000","dfs.webhdfs.user.provider.user.pattern":"^[A-Za-z_][A-Za-z0-9._-]*[$]?$","dfs.client.mmap.enabled":"true","mapreduce.map.log.level":"INFO","dfs.client.file-block-storage-locations.timeout.millis":"1000","yarn.app.mapreduce.am.scheduler.heartbeat.interval-ms":"1000","hadoop.fuse.timer.period":"5","mapreduce.tasktracker.local.dir.minspacestart":"0","ha.health-monitor.check-interval.ms":"1000","yarn.nodemanager.docker-container-executor.exec-name":"/usr/bin/docker","mapreduce.output.fileoutputformat.compress":"false","io.native.lib.available":"true","fs.AbstractFileSystem.har.impl":"org.apache.hadoop.fs.HarFs","yarn.nodemanager.webapp.address":"${yarn.nodemanager.hostname}:8042","mapreduce.reduce.input.buffer.percent":"0.0","mapreduce.job.running.map.limit":"0","fs.s3a.multipart.size":"64M","dfs.client.slow.io.warning.threshold.ms":"30000","yarn.app.mapreduce.am.job.committer.commit-window":"10000","dfs.namenode.edits.asynclogging":"true","mapreduce.ifile.readahead":"true","s3native.replication":"3","fs.s3a.s3guard.ddb.table.create":"false","s3.stream-buffer-size":"4096","fs.s3a.socket.recv.buffer":"8192","mapreduce.output.fileoutputformat.compress.codec":"org.apache.hadoop.io.compress.DefaultCodec","dfs.datanode.fsdatasetcache.max.threads.per.volume":"4","dfs.namenode.reencrypt.batch.size":"1000","fs.adl.impl":"org.apache.hadoop.fs.adl.AdlFileSystem","mapreduce.jobhistory.webapp.address":"0.0.0.0:19888","mapreduce.task.userlog.limit.kb":"0","fs.s3a.connection.ssl.enabled":"true","hadoop.fuse.connection.timeout":"300","ipc.server.max.connections":"0","yarn.app.mapreduce.am.resource.mb":"1536","hadoop.security.groups.cache.secs":"300","yarn.nodemanager.container-monitor.interval-ms":"3000","s3.client-write-packet-size":"65536","dfs.replication":"3","mapreduce.shuffle.transfer.buffer.size":"131072","hadoop.security.group.mapping.ldap.directory.search.timeout":"10000","dfs.datanode.available-space-volume-choosing-policy.balanced-space-threshold":"10737418240","hadoop.work.around.non.threadsafe.getpwuid":"false","yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts":"3","mapreduce.tasktracker.taskcontroller":"org.apache.hadoop.mapred.DefaultTaskController","mapreduce.tasktracker.indexcache.mb":"10","yarn.scheduler.maximum-allocation-vcores":"4","yarn.nodemanager.sleep-delay-before-sigkill.ms":"250","mapreduce.job.acl-modify-job":" ","fs.automatic.close":"true","dfs.namenode.reencrypt.edek.threads":"10","hadoop.security.groups.cache.background.reload.threads":"3","mapreduce.input.fileinputformat.list-status.num-threads":"1","hadoop.security.group.mapping.ldap.posix.attr.gid.name":"gidNumber","dfs.namenode.acls.enabled":"false","dfs.client.short.circuit.replica.stale.threshold.ms":"1800000","fs.s3.block.size":"67108864","dfs.namenode.resource.du.reserved":"104857600","mapreduce.shuffle.listen.queue.size":"128","mapreduce.jobhistory.intermediate-done-dir":"${yarn.app.mapreduce.am.staging-dir}/history/done_intermediate","yarn.nodemanager.recovery.compaction-interval-secs":"3600","dfs.namenode.edits.noeditlogchannelflush":"false","mapreduce.reduce.shuffle.input.buffer.percent":"0.70","mapreduce.map.maxattempts":"4","yarn.http.policy":"HTTP_ONLY","dfs.namenode.audit.loggers":"default","io.serializations":"org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization,org.apache.hadoop.io.serializer.avro.AvroReflectSerialization","hadoop.security.groups.cache.warn.after.ms":"5000","dfs.namenode.snapshot.capture.openfiles":"false","dfs.http.policy":"HTTP_ONLY","dfs.client.file-block-storage-locations.num-threads":"10","dfs.namenode.reencrypt.throttle.limit.updater.ratio":"1.0","mapreduce.cluster.local.dir":"${hadoop.tmp.dir}/mapred/local","hadoop.kerberos.kinit.command":"kinit","dfs.namenode.secondary.https-address":"0.0.0.0:50091","dfs.block.access.token.lifetime":"600","dfs.namenode.delegation.token.max-lifetime":"604800000","dfs.datanode.drop.cache.behind.writes":"false","mapreduce.local.clientfactory.class.name":"org.apache.hadoop.mapred.LocalClientFactory","dfs.namenode.num.extra.edits.retained":"1000000","ipc.client.connect.max.retries.on.timeouts":"45","fs.s3n.block.size":"67108864","mapreduce.job.map.output.collector.class":"org.apache.hadoop.mapred.MapTask$MapOutputBuffer","fs.s3a.fast.upload.buffer":"disk","ha.health-monitor.connect-retry-interval.ms":"1000","dfs.namenode.edekcacheloader.initial.delay.ms":"3000","mapreduce.tasktracker.map.tasks.maximum":"2","fs.file.impl.disable.cache":"true","dfs.client.datanode-restart.timeout":"30","io.mapfile.bloom.size":"1048576","dfs.client-write-packet-size":"65536","hadoop.security.kms.client.authentication.retry-count":"1","fs.ftp.data.connection.mode":"ACTIVE_LOCAL_DATA_CONNECTION_MODE","fs.swift.impl":"org.apache.hadoop.fs.swift.snative.SwiftNativeFileSystem","yarn.app.mapreduce.shuffle.log.backups":"0","ftp.blocksize":"67108864","dfs.namenode.kerberos.principal.pattern":"*","yarn.resourcemanager.scheduler.monitor.enable":"false","nfs.allow.insecure.ports":"true","yarn.app.mapreduce.client.job.retry-interval":"2000","hadoop.security.authorization":"false","fs.har.impl.disable.cache":"true","yarn.am.liveness-monitor.expiry-interval-ms":"600000","yarn.timeline-service.leveldb-timeline-store.path":"${hadoop.tmp.dir}/yarn/timeline","mapreduce.job.reduce.slowstart.completedmaps":"0.05","mapreduce.jobhistory.minicluster.fixed.ports":"false","yarn.resourcemanager.ha.automatic-failover.enabled":"true","mapreduce.job.userlog.retain.hours":"24","dfs.namenode.accesstime.precision":"3600000","yarn.resourcemanager.store.class":"org.apache.hadoop.yarn.server.resourcemanager.recovery.FileSystemRMStateStore","io.mapfile.bloom.error.rate":"0.005","dfs.namenode.support.allow.format":"true","yarn.nodemanager.container-executor.class":"org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor","dfs.namenode.posix.acl.inheritance.enabled":"false","hadoop.security.kms.client.encrypted.key.cache.low-watermark":"0.3f","yarn.app.mapreduce.shuffle.log.separate":"true","dfs.namenode.top.enabled":"true","hadoop.user.group.static.mapping.overrides":"dr.who=;","dfs.client.cached.conn.retry":"3","dfs.namenode.path.based.cache.refresh.interval.ms":"30000","dfs.namenode.fs-limits.max-directory-items":"1048576","yarn.resourcemanager.zk-retry-interval-ms":"1000","dfs.ha.log-roll.period":"120","ipc.client.fallback-to-simple-auth-allowed":"false","yarn.nodemanager.remote-app-log-dir":"/tmp/logs","mapreduce.tasktracker.healthchecker.script.timeout":"600000","yarn.nodemanager.resource.percentage-physical-cpu-limit":"100","dfs.namenode.fs-limits.max-xattr-size":"16384","dfs.datanode.http.address":"0.0.0.0:50075","fs.s3a.s3guard.cli.prune.age":"86400000","dfs.namenode.blocks.per.postponedblocks.rescan":"10000","hadoop.jetty.logs.serve.aliases":"true","dfs.namenode.maintenance.replication.min":"1","dfs.webhdfs.ugi.expire.after.access":"600000","mapreduce.jobhistory.admin.acl":"*","mapreduce.job.reducer.unconditional-preempt.delay.sec":"300","mapreduce.jobhistory.recovery.enable":"false","yarn.resourcemanager.webapp.address":"${yarn.resourcemanager.hostname}:8088","fs.df.interval":"60000","yarn.timeline-service.enabled":"false","dfs.disk.balancer.block.tolerance.percent":"10","mapreduce.task.profile":"false","yarn.nodemanager.hostname":"0.0.0.0","mapreduce.task.exit.timeout":"60000","mapreduce.job.token.tracking.ids.enabled":"false","hadoop.security.kms.client.failover.sleep.max.millis":"2000","dfs.client.mmap.retry.timeout.ms":"300000","mapreduce.jobhistory.move.thread-count":"3","dfs.permissions.enabled":"true","fs.AbstractFileSystem.hdfs.impl":"org.apache.hadoop.fs.Hdfs","yarn.nodemanager.container-localizer.log.level":"INFO","hadoop.http.filter.initializers":"org.apache.hadoop.http.lib.StaticUserWebFilter","yarn.timeline-service.http-authentication.simple.anonymous.allowed":"true","fs.s3a.s3guard.ddb.max.retries":"9","yarn.resourcemanager.resource-tracker.address":"${yarn.resourcemanager.hostname}:8031","dfs.namenode.decommission.blocks.per.interval":"500000","rpc.metrics.quantile.enable":"false","mapreduce.task.timeout":"600000","dfs.namenode.read-lock-reporting-threshold-ms":"5000","yarn.nodemanager.resource.memory-mb":"8192","yarn.nodemanager.disk-health-checker.min-healthy-disks":"0.25","dfs.datanode.failed.volumes.tolerated":"0","mapreduce.fileoutputcommitter.algorithm.version":"1","mapreduce.framework.name":"local","yarn.resourcemanager.system-metrics-publisher.enabled":"false","fs.s3a.connection.timeout":"200000","hadoop.security.dns.log-slow-lookups.enabled":"false","fs.s3a.s3guard.ddb.table.capacity.read":"500","file.client-write-packet-size":"65536","ipc.client.ping":"true","yarn.resourcemanager.delayed.delegation-token.removal-interval-ms":"30000","dfs.client.failover.max.attempts":"15","dfs.client.read.shortcircuit.streams.cache.expiry.ms":"300000","dfs.balancer.max-no-move-interval":"60000","dfs.disk.balancer.enabled":"false","yarn.nodemanager.health-checker.script.timeout-ms":"1200000","hadoop.ssl.require.client.cert":"false","mapreduce.jobhistory.keytab":"/etc/security/keytab/jhs.service.keytab","hadoop.security.uid.cache.secs":"14400","yarn.resourcemanager.ha.automatic-failover.zk-base-path":"/yarn-leader-election","mapreduce.tasktracker.dns.interface":"default","mapreduce.job.speculative.speculative-cap-running-tasks":"0.1","dfs.datanode.block.id.layout.upgrade.threads":"12","dfs.client.context":"default","dfs.namenode.delegation.token.renew-interval":"86400000","fs.AbstractFileSystem.s3a.impl":"org.apache.hadoop.fs.s3a.S3A","dfs.blockreport.intervalMsec":"21600000","io.map.index.skip":"0","mapreduce.job.hdfs-servers":"${fs.defaultFS}","mapreduce.map.output.compress":"false","hadoop.security.kms.client.encrypted.key.cache.num.refill.threads":"2","fs.s3n.multipart.uploads.block.size":"67108864","dfs.namenode.edekcacheloader.interval.ms":"1000","mapreduce.task.merge.progress.records":"10000","yarn.nodemanager.aux-services.mapreduce_shuffle.class":"org.apache.hadoop.mapred.ShuffleHandler","tfile.fs.output.buffer.size":"262144","fs.du.interval":"600000","dfs.client.failover.connection.retries":"0","dfs.namenode.top.window.num.buckets":"10","dfs.data.transfer.server.tcpnodelay":"true","fs.s3a.socket.send.buffer":"8192","hadoop.registry.zk.quorum":"localhost:2181","dfs.namenode.enable.retrycache":"true","dfs.datanode.du.reserved":"0","hadoop.registry.system.acls":"sasl:yarn@, sasl:mapred@, sasl:mapred@hdfs@","mapreduce.task.profile.reduce.params":"${mapreduce.task.profile.params}","mapreduce.reduce.memory.mb":"-1","hadoop.http.authentication.kerberos.principal":"HTTP/_HOST@LOCALHOST","yarn.nodemanager.disk-health-checker.min-free-space-per-disk-mb":"0","hadoop.treat.subject.external":"false","hadoop.security.sensitive-config-keys":"\\n secret$\\n password$\\n ssl.keystore.pass$\\n fs.s3.*[Ss]ecret.?[Kk]ey\\n fs.s3a.*.server-side-encryption.key\\n fs.azure.account.key.*\\n credential$\\n oauth.*token$\\n hadoop.security.sensitive-config-keys\\n ","mapreduce.client.completion.pollinterval":"5000","dfs.namenode.name.dir.restore":"false","dfs.namenode.full.block.report.lease.length.ms":"300000","dfs.namenode.secondary.http-address":"0.0.0.0:50090","hadoop.http.logs.enabled":"true","s3.bytes-per-checksum":"512","yarn.resourcemanager.webapp.https.address":"${yarn.resourcemanager.hostname}:8090","yarn.resourcemanager.max-log-aggregation-diagnostics-in-memory":"10"} 2021-01-26 10:38:18.794+00 2021-01-26 10:38:18.794+00 0 ANONYMOUS ANONYMOUS 301 27 parquet.compression UNCOMPRESSED 2021-01-26 10:38:18.796+00 2021-01-26 10:38:18.796+00 0 ANONYMOUS ANONYMOUS 302 27 dock.uri file:///usr/local/qdc/data/loadingdock/classic_models/customers/20210126103815/* 2021-01-26 10:38:18.797+00 2021-01-26 10:38:18.797+00 0 ANONYMOUS ANONYMOUS 303 27 profilemerge.job.stats {"job_local1146892429_0054":{"org.apache.hadoop.mapreduce.TaskCounter.SPLIT_RAW_BYTES":155,"org.apache.hadoop.mapreduce.TaskCounter.FAILED_SHUFFLE":0,"org.apache.hadoop.mapreduce.TaskCounter.MERGED_MAP_OUTPUTS":0,"org.apache.hadoop.mapreduce.TaskCounter.SPILLED_RECORDS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_WRITTEN":52853359,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_LARGE_READ_OPS":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_WRITE_OPS":0,"org.apache.hadoop.mapreduce.lib.output.FileOutputFormatCounter.BYTES_WRITTEN":0,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_READ_OPS":0,"org.apache.hadoop.mapreduce.TaskCounter.MAP_INPUT_RECORDS":1,"org.apache.hadoop.mapreduce.lib.input.FileInputFormatCounter.BYTES_READ":22,"org.apache.hadoop.mapreduce.FileSystemCounter.FILE_BYTES_READ":30898311,"org.apache.hadoop.mapreduce.TaskCounter.MAP_OUTPUT_RECORDS":0,"org.apache.hadoop.mapreduce.TaskCounter.COMMITTED_HEAP_BYTES":2699034624,"org.apache.hadoop.mapreduce.TaskCounter.GC_TIME_MILLIS":0}} 2021-01-26 10:38:18.798+00 2021-01-26 10:38:18.798+00 0 ANONYMOUS ANONYMOUS \. -- -- Data for Name: pd_report; Type: TABLE DATA; Schema: podium_reporting; Owner: podium_md -- COPY podium_reporting.pd_report (nid, sname, description, category, original_design_file_name, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 2 Trended Record Volumes OPERATIONAL 2020-11-13 17:33:34.264255+00 2020-11-13 17:33:34.264255+00 0 podium podium 5 Entity Lineage Report GOVERNANCE 2020-11-13 17:33:34.524845+00 2020-11-13 17:33:34.524845+00 0 podium podium \. -- -- Data for Name: pd_report_query; Type: TABLE DATA; Schema: podium_reporting; Owner: podium_md -- COPY podium_reporting.pd_report_query (nid, report_id, query, view_type, created_ttz, modified_ttz, version, modifiedby, createdby) FROM stdin; 6 2 select source_name as sourceName,entity_name as entityName,workorder_status as workOrderStatus,to_char(delivery_time,'yyyy-mm-dd HH24:MI:SS') as loadTime,to_char(start_time,'yyyy-mm-dd HH24:MI:SS') as startTime,to_char(end_time,'yyyy-mm-dd HH24:MI:SS') as endTime,record_count as recordCount,good_count as goodRecordCount,bad_count as badRecordCount,ugly_count as uglyRecordCount,chaff_count as chaffRecordCount,to_char(modified_ttz,'yyyy-mm-dd HH24:MI:SS') as lastUpdatedTime From podium_reporting.ingest_stats_x_source_x_entity obj where (obj.bad_count + obj.ugly_count +obj.good_count ) > 0 And obj.workorder_status in ('FINISHED' ,'FAILED') GRID 2020-11-13 17:33:34.264255+00 2020-11-13 17:33:34.264255+00 0 podium podium 10 5 SELECT obj.parent_source_name as parentSourceName,obj.parent_name as entityName,obj.parent_entity_type as parentEntityType,obj.child_source_name as childSourceName,obj.child_name as childName,obj.child_entity_type as childEntityType,obj.relation_type as relationType,obj.job_name as jobName ,to_char(load_time,'yyyy-mm-dd HH24:MI:SS') as loadTime FROM podium_reporting.lineage obj GRID 2020-11-13 17:33:34.524845+00 2020-11-13 17:33:34.524845+00 0 podium podium \. -- -- Name: pd_acl_synchronization_log_details_base_log_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_acl_synchronization_log_details_base_log_nid_seq', 1, false); -- -- Name: pd_acl_synchronization_log_details_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_acl_synchronization_log_details_nid_seq', 1, false); -- -- Name: pd_acl_synchronization_logs_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_acl_synchronization_logs_nid_seq', 1, false); -- -- Name: pd_active_directory_log_details_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_active_directory_log_details_nid_seq', 1, false); -- -- Name: pd_active_directory_logs_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_active_directory_logs_nid_seq', 1, false); -- -- Name: pd_ad_connection_info_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_ad_connection_info_nid_seq', 1, false); -- -- Name: pd_audit_log_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_audit_log_nid_seq', 85, true); -- -- Name: pd_bundle_gui_state_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_bundle_gui_state_nid_seq', 5, true); -- -- Name: pd_bundle_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_bundle_nid_seq', 1, false); -- -- Name: pd_cluster_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_cluster_nid_seq', 2, true); -- -- Name: pd_connection_group_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_connection_group_nid_seq', 9, true); -- -- Name: pd_data_export_workorder_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_data_export_workorder_nid_seq', 1, false); -- -- Name: pd_data_export_workorder_prop_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_data_export_workorder_prop_nid_seq', 1, false); -- -- Name: pd_data_meter_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_data_meter_nid_seq', 1, false); -- -- Name: pd_data_migration_workorder_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_data_migration_workorder_nid_seq', 8, true); -- -- Name: pd_data_migration_workorder_prop_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_data_migration_workorder_prop_nid_seq', 1, false); -- -- Name: pd_dataset_entity_dataset_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_dataset_entity_dataset_nid_seq', 1, false); -- -- Name: pd_dataset_entity_entity_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_dataset_entity_entity_nid_seq', 1, false); -- -- Name: pd_dataset_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_dataset_nid_seq', 1, false); -- -- Name: pd_entity_group_entity_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_entity_group_entity_nid_seq', 1, false); -- -- Name: pd_entity_group_group_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_entity_group_group_nid_seq', 1, false); -- -- Name: pd_entity_group_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_entity_group_nid_seq', 98, true); -- -- Name: pd_entity_meter_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_entity_meter_nid_seq', 1, false); -- -- Name: pd_entity_metric_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_entity_metric_nid_seq', 1855, true); -- -- Name: pd_entity_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_entity_nid_seq', 81, true); -- -- Name: pd_entity_prop_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_entity_prop_nid_seq', 1, false); -- -- Name: pd_entity_relation_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_entity_relation_nid_seq', 115, true); -- -- Name: pd_entity_tag_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_entity_tag_nid_seq', 100, true); -- -- Name: pd_export_field_masking_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_export_field_masking_nid_seq', 1, false); -- -- Name: pd_export_info_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_export_info_nid_seq', 1, false); -- -- Name: pd_export_info_prop_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_export_info_prop_nid_seq', 1, false); -- -- Name: pd_field_biz_def_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_field_biz_def_nid_seq', 6, true); -- -- Name: pd_field_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_field_nid_seq', 845, true); -- -- Name: pd_field_pc_rel_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_field_pc_rel_nid_seq', 484, true); -- -- Name: pd_field_prop_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_field_prop_nid_seq', 1, false); -- -- Name: pd_field_tag_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_field_tag_nid_seq', 58, true); -- -- Name: pd_format_def_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_format_def_nid_seq', 2, true); -- -- Name: pd_format_def_prop_format_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_format_def_prop_format_nid_seq', 1, false); -- -- Name: pd_format_def_prop_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_format_def_prop_nid_seq', 14, true); -- -- Name: pd_gc_registry_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_gc_registry_nid_seq', 6, true); -- -- Name: pd_gc_registry_obj_id_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_gc_registry_obj_id_seq', 1, false); -- -- Name: pd_group_group_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_group_group_nid_seq', 1, false); -- -- Name: pd_group_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_group_nid_seq', 4, true); -- -- Name: pd_group_user_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_group_user_nid_seq', 11, true); -- -- Name: pd_jdbc_source_info_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_jdbc_source_info_nid_seq', 10, true); -- -- Name: pd_job_manager_wo_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_job_manager_wo_nid_seq', 1, false); -- -- Name: pd_license_info_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_license_info_nid_seq', 1, false); -- -- Name: pd_lineage_edge_from_node_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_lineage_edge_from_node_nid_seq', 1, false); -- -- Name: pd_lineage_edge_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_lineage_edge_nid_seq', 123, true); -- -- Name: pd_lineage_edge_to_node_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_lineage_edge_to_node_nid_seq', 1, false); -- -- Name: pd_lineage_node_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_lineage_node_nid_seq', 94, true); -- -- Name: pd_maintenance_workorder_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_maintenance_workorder_nid_seq', 5, true); -- -- Name: pd_maintenance_workorder_prop_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_maintenance_workorder_prop_nid_seq', 20, true); -- -- Name: pd_metric_category_definition_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_metric_category_definition_nid_seq', 83, true); -- -- Name: pd_metric_category_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_metric_category_nid_seq', 3, true); -- -- Name: pd_metric_definition_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_metric_definition_nid_seq', 71, true); -- -- Name: pd_metric_weight_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_metric_weight_nid_seq', 23, true); -- -- Name: pd_obfuscation_rule_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_obfuscation_rule_nid_seq', 9, true); -- -- Name: pd_prep_connector_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prep_connector_nid_seq', 224, true); -- -- Name: pd_prep_package_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prep_package_nid_seq', 3040, true); -- -- Name: pd_prep_port_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prep_port_nid_seq', 60, true); -- -- Name: pd_prep_record_format_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prep_record_format_nid_seq', 60, true); -- -- Name: pd_prepare_execution_workorder_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prepare_execution_workorder_nid_seq', 10, true); -- -- Name: pd_prepare_execution_workorder_prop_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prepare_execution_workorder_prop_nid_seq', 1, false); -- -- Name: pd_prod_info_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prod_info_nid_seq', 1, true); -- -- Name: pd_prop_category_members_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prop_category_members_nid_seq', 560, true); -- -- Name: pd_prop_category_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prop_category_nid_seq', 41, true); -- -- Name: pd_prop_class_inherit_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prop_class_inherit_nid_seq', 491, true); -- -- Name: pd_prop_definition_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prop_definition_nid_seq', 352, true); -- -- Name: pd_prop_dependency_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prop_dependency_nid_seq', 1, false); -- -- Name: pd_prop_setting_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prop_setting_nid_seq', 7457, true); -- -- Name: pd_prop_type_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_prop_type_nid_seq', 24, true); -- -- Name: pd_publish_dataset_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_publish_dataset_nid_seq', 1, false); -- -- Name: pd_publish_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_publish_nid_seq', 1, false); -- -- Name: pd_publish_prop_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_publish_prop_nid_seq', 1, false); -- -- Name: pd_publish_target_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_publish_target_nid_seq', 1, false); -- -- Name: pd_qs_conn_path_def_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_qs_conn_path_def_nid_seq', 1, false); -- -- Name: pd_qs_connector_info_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_qs_connector_info_nid_seq', 1, false); -- -- Name: pd_qs_data_conn_def_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_qs_data_conn_def_nid_seq', 1, false); -- -- Name: pd_qvd_entity_load_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_qvd_entity_load_nid_seq', 1, false); -- -- Name: pd_qvd_file_record_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_qvd_file_record_nid_seq', 1, false); -- -- Name: pd_qvd_scan_metrics_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_qvd_scan_metrics_nid_seq', 1, false); -- -- Name: pd_qvd_scan_monitor_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_qvd_scan_monitor_nid_seq', 1, false); -- -- Name: pd_relation_inference_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_relation_inference_nid_seq', 1, true); -- -- Name: pd_role_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_role_nid_seq', 8, true); -- -- Name: pd_scheduled_job_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_scheduled_job_nid_seq', 5, true); -- -- Name: pd_scheduled_job_prop_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_scheduled_job_prop_nid_seq', 2, true); -- -- Name: pd_seq_task_relation_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_seq_task_relation_nid_seq', 1, false); -- -- Name: pd_seq_task_type_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_seq_task_type_nid_seq', 4, true); -- -- Name: pd_sequencer_graph_gui_state_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_sequencer_graph_gui_state_nid_seq', 1, false); -- -- Name: pd_sequencer_graph_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_sequencer_graph_nid_seq', 1, false); -- -- Name: pd_sequencer_task_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_sequencer_task_nid_seq', 1, false); -- -- Name: pd_source_conn_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_source_conn_nid_seq', 11, true); -- -- Name: pd_source_hier_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_source_hier_nid_seq', 6, true); -- -- Name: pd_source_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_source_nid_seq', 11, true); -- -- Name: pd_source_prop_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_source_prop_nid_seq', 1, false); -- -- Name: pd_source_tag_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_source_tag_nid_seq', 27, true); -- -- Name: pd_target_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_target_nid_seq', 4, true); -- -- Name: pd_target_prop_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_target_prop_nid_seq', 159, true); -- -- Name: pd_user_grid_column_pref_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_user_grid_column_pref_nid_seq', 1, false); -- -- Name: pd_user_grid_pref_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_user_grid_pref_nid_seq', 1, false); -- -- Name: pd_user_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_user_nid_seq', 4, true); -- -- Name: pd_user_notification_setting_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_user_notification_setting_nid_seq', 1, false); -- -- Name: pd_vadd_rule_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_vadd_rule_nid_seq', 5, true); -- -- Name: pd_workflow_execution_workorder_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_workflow_execution_workorder_nid_seq', 1, false); -- -- Name: pd_workorder_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_workorder_nid_seq', 27, true); -- -- Name: pd_workorder_prop_nid_seq; Type: SEQUENCE SET; Schema: podium_core; Owner: podium_md -- SELECT pg_catalog.setval('podium_core.pd_workorder_prop_nid_seq', 303, true); -- -- Name: pd_report_nid_seq; Type: SEQUENCE SET; Schema: podium_reporting; Owner: podium_md -- SELECT pg_catalog.setval('podium_reporting.pd_report_nid_seq', 5, true); -- -- Name: pd_report_query_nid_seq; Type: SEQUENCE SET; Schema: podium_reporting; Owner: podium_md -- SELECT pg_catalog.setval('podium_reporting.pd_report_query_nid_seq', 10, true); -- -- Name: pd_qs_data_conn_def connectorid_guid_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qs_data_conn_def ADD CONSTRAINT connectorid_guid_unique UNIQUE (conn_guid, qs_contr_id); -- -- Name: pd_acl_sync_log_details pd_acl_synchronization_log_details_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_acl_sync_log_details ADD CONSTRAINT pd_acl_synchronization_log_details_pk PRIMARY KEY (nid); -- -- Name: pd_acl_synchronization_logs pd_acl_synchronization_logs_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_acl_synchronization_logs ADD CONSTRAINT pd_acl_synchronization_logs_pk PRIMARY KEY (nid); -- -- Name: pd_ad_log_details pd_active_directory_log_details_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_ad_log_details ADD CONSTRAINT pd_active_directory_log_details_pk PRIMARY KEY (nid); -- -- Name: pd_active_directory_logs pd_active_directory_logs_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_active_directory_logs ADD CONSTRAINT pd_active_directory_logs_pk PRIMARY KEY (nid); -- -- Name: pd_ad_connection_info pd_ad_connection_info_alias_key; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_ad_connection_info ADD CONSTRAINT pd_ad_connection_info_alias_key UNIQUE (alias); -- -- Name: pd_ad_connection_info pd_ad_connection_info_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_ad_connection_info ADD CONSTRAINT pd_ad_connection_info_pkey PRIMARY KEY (nid); -- -- Name: pd_audit_log pd_audit_log_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_audit_log ADD CONSTRAINT pd_audit_log_pk PRIMARY KEY (nid); -- -- Name: pd_bundle_gui_state pd_bundle_gui_state_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_bundle_gui_state ADD CONSTRAINT pd_bundle_gui_state_pk PRIMARY KEY (nid); -- -- Name: pd_bundle pd_bundle_name_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_bundle ADD CONSTRAINT pd_bundle_name_unique UNIQUE (sname); -- -- Name: pd_bundle pd_bundle_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_bundle ADD CONSTRAINT pd_bundle_pk PRIMARY KEY (nid); -- -- Name: pd_cluster pd_cluster_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_cluster ADD CONSTRAINT pd_cluster_pkey PRIMARY KEY (nid); -- -- Name: pd_cluster pd_cluster_unique_name; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_cluster ADD CONSTRAINT pd_cluster_unique_name UNIQUE (sname); -- -- Name: pd_connection_group pd_connection_group_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_connection_group ADD CONSTRAINT pd_connection_group_pk PRIMARY KEY (nid); -- -- Name: pd_connection_group pd_connection_group_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_connection_group ADD CONSTRAINT pd_connection_group_unique UNIQUE (connection_nid, group_nid); -- -- Name: pd_data_export_workorder pd_data_export_workorder_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_export_workorder ADD CONSTRAINT pd_data_export_workorder_pk PRIMARY KEY (nid); -- -- Name: pd_data_export_workorder_prop pd_data_export_workorder_prop_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_export_workorder_prop ADD CONSTRAINT pd_data_export_workorder_prop_pk PRIMARY KEY (nid); -- -- Name: pd_data_export_workorder_prop pd_data_export_workorder_prop_workorder_prop_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_export_workorder_prop ADD CONSTRAINT pd_data_export_workorder_prop_workorder_prop_unique UNIQUE (workorder_nid, prop_name); -- -- Name: pd_data_meter pd_data_meter_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_meter ADD CONSTRAINT pd_data_meter_pkey PRIMARY KEY (nid); -- -- Name: pd_data_migration_workorder pd_data_migration_workorder_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_migration_workorder ADD CONSTRAINT pd_data_migration_workorder_pk PRIMARY KEY (nid); -- -- Name: pd_data_migration_wo_prop pd_data_migration_workorder_prop_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_migration_wo_prop ADD CONSTRAINT pd_data_migration_workorder_prop_pk PRIMARY KEY (nid); -- -- Name: pd_data_migration_wo_prop pd_data_migration_workorder_prop_workorder_prop_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_migration_wo_prop ADD CONSTRAINT pd_data_migration_workorder_prop_workorder_prop_unique UNIQUE (workorder_nid, prop_name); -- -- Name: pd_dataset_entity pd_dataset_entity_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_dataset_entity ADD CONSTRAINT pd_dataset_entity_pk PRIMARY KEY (dataset_nid, entity_nid); -- -- Name: pd_dataset pd_dataset_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_dataset ADD CONSTRAINT pd_dataset_pkey PRIMARY KEY (nid); -- -- Name: pd_dataset pd_dataset_unique_name; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_dataset ADD CONSTRAINT pd_dataset_unique_name UNIQUE (sname); -- -- Name: pd_entity_meter pd_ent_meter_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_meter ADD CONSTRAINT pd_ent_meter_pkey PRIMARY KEY (nid); -- -- Name: pd_entity_group pd_entity_group_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_group ADD CONSTRAINT pd_entity_group_pk PRIMARY KEY (nid); -- -- Name: pd_entity_group pd_entity_group_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_group ADD CONSTRAINT pd_entity_group_unique UNIQUE (entity_nid, group_nid); -- -- Name: pd_entity_metric pd_entity_metric_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_metric ADD CONSTRAINT pd_entity_metric_pk PRIMARY KEY (nid); -- -- Name: pd_entity pd_entity_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity ADD CONSTRAINT pd_entity_pk PRIMARY KEY (nid); -- -- Name: pd_entity_relation pd_entity_relation_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_relation ADD CONSTRAINT pd_entity_relation_pk PRIMARY KEY (nid); -- -- Name: pd_entity_tag pd_entity_tag_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_tag ADD CONSTRAINT pd_entity_tag_pk PRIMARY KEY (nid); -- -- Name: pd_entity_relation pd_er_uk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_relation ADD CONSTRAINT pd_er_uk UNIQUE (parent_entity_nid, child_entity_nid); -- -- Name: pd_export_field_masking pd_export_field_masking_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_export_field_masking ADD CONSTRAINT pd_export_field_masking_pk PRIMARY KEY (nid); -- -- Name: pd_export_info pd_export_info_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_export_info ADD CONSTRAINT pd_export_info_pk PRIMARY KEY (nid); -- -- Name: pd_export_info_prop pd_export_info_prop_export_info_prop_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_export_info_prop ADD CONSTRAINT pd_export_info_prop_export_info_prop_unique UNIQUE (export_info_nid, prop_name); -- -- Name: pd_export_info_prop pd_export_info_prop_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_export_info_prop ADD CONSTRAINT pd_export_info_prop_pk PRIMARY KEY (nid); -- -- Name: pd_field_biz_def pd_field_biz_def_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field_biz_def ADD CONSTRAINT pd_field_biz_def_pk PRIMARY KEY (nid); -- -- Name: pd_field_pc_rel pd_field_pc_rel_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field_pc_rel ADD CONSTRAINT pd_field_pc_rel_pk PRIMARY KEY (nid); -- -- Name: pd_field pd_field_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field ADD CONSTRAINT pd_field_pk PRIMARY KEY (nid); -- -- Name: pd_field_tag pd_field_tag_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field_tag ADD CONSTRAINT pd_field_tag_pk PRIMARY KEY (nid); -- -- Name: pd_format_def pd_format_def_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_format_def ADD CONSTRAINT pd_format_def_pkey PRIMARY KEY (nid); -- -- Name: pd_format_def_prop pd_format_def_prop_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_format_def_prop ADD CONSTRAINT pd_format_def_prop_pkey PRIMARY KEY (nid); -- -- Name: pd_format_def pd_format_def_unique_name; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_format_def ADD CONSTRAINT pd_format_def_unique_name UNIQUE (sname); -- -- Name: pd_gc_registry pd_gc_registry_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_gc_registry ADD CONSTRAINT pd_gc_registry_pk PRIMARY KEY (nid); -- -- Name: pd_group_group pd_group_group_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group_group ADD CONSTRAINT pd_group_group_pk PRIMARY KEY (nid); -- -- Name: pd_prop_setting pd_group_parent_bean_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_setting ADD CONSTRAINT pd_group_parent_bean_unique UNIQUE (parent_class, parent_nid, prop_def_nid); -- -- Name: pd_group pd_group_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group ADD CONSTRAINT pd_group_pk PRIMARY KEY (nid); -- -- Name: pd_group pd_group_sname_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group ADD CONSTRAINT pd_group_sname_unique UNIQUE (sname); -- -- Name: pd_group_user pd_group_user_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group_user ADD CONSTRAINT pd_group_user_pk PRIMARY KEY (nid); -- -- Name: pd_group_user pd_grp_usr_role_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group_user ADD CONSTRAINT pd_grp_usr_role_unique UNIQUE (group_nid, user_nid, role_nid); -- -- Name: pd_jdbc_source_info pd_jdbc_source_info_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_jdbc_source_info ADD CONSTRAINT pd_jdbc_source_info_pkey PRIMARY KEY (nid); -- -- Name: pd_jdbc_source_info pd_jdbc_source_info_unique_name; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_jdbc_source_info ADD CONSTRAINT pd_jdbc_source_info_unique_name UNIQUE (sname); -- -- Name: pd_job_manager_wo_param pd_job_manager_wo_param_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_job_manager_wo_param ADD CONSTRAINT pd_job_manager_wo_param_pkey PRIMARY KEY (workorder_nid, jobparams_key); -- -- Name: pd_job_manager_wo pd_job_manager_wo_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_job_manager_wo ADD CONSTRAINT pd_job_manager_wo_pk PRIMARY KEY (nid); -- -- Name: pd_license_info pd_license_info_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_license_info ADD CONSTRAINT pd_license_info_pkey PRIMARY KEY (nid); -- -- Name: pd_lineage_edge pd_lineage_edge_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_lineage_edge ADD CONSTRAINT pd_lineage_edge_pkey PRIMARY KEY (nid); -- -- Name: pd_lineage_node pd_lineage_node_external_type_external_id_key; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_lineage_node ADD CONSTRAINT pd_lineage_node_external_type_external_id_key UNIQUE (external_type, external_id); -- -- Name: pd_lineage_node pd_lineage_node_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_lineage_node ADD CONSTRAINT pd_lineage_node_pkey PRIMARY KEY (nid); -- -- Name: pd_metric_category_definition pd_m_c_d_uk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_category_definition ADD CONSTRAINT pd_m_c_d_uk UNIQUE (metric_category_nid, metric_definition_nid); -- -- Name: pd_maintenance_workorder pd_maintenance_workorder_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_maintenance_workorder ADD CONSTRAINT pd_maintenance_workorder_pk PRIMARY KEY (nid); -- -- Name: pd_maintenance_workorder_prop pd_maintenance_workorder_prop_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_maintenance_workorder_prop ADD CONSTRAINT pd_maintenance_workorder_prop_pk PRIMARY KEY (nid); -- -- Name: pd_maintenance_workorder_prop pd_maintenance_workorder_prop_workorder_prop_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_maintenance_workorder_prop ADD CONSTRAINT pd_maintenance_workorder_prop_workorder_prop_unique UNIQUE (workorder_nid, prop_name); -- -- Name: pd_metric_category_definition pd_metric_category_definition_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_category_definition ADD CONSTRAINT pd_metric_category_definition_pk PRIMARY KEY (nid); -- -- Name: pd_metric_category pd_metric_category_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_category ADD CONSTRAINT pd_metric_category_pk PRIMARY KEY (nid); -- -- Name: pd_metric_category pd_metric_category_uk_name; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_category ADD CONSTRAINT pd_metric_category_uk_name UNIQUE (sname); -- -- Name: pd_metric_definition pd_metric_definition_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_definition ADD CONSTRAINT pd_metric_definition_pk PRIMARY KEY (nid); -- -- Name: pd_metric_weight pd_metric_weight_category_def_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_weight ADD CONSTRAINT pd_metric_weight_category_def_unique UNIQUE (kpi_category, metric_definition_nid, metric_category_nid); -- -- Name: pd_metric_weight pd_metric_weight_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_weight ADD CONSTRAINT pd_metric_weight_pk PRIMARY KEY (nid); -- -- Name: pd_obfuscation_rule pd_obfuscation_rule_name_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_obfuscation_rule ADD CONSTRAINT pd_obfuscation_rule_name_unique UNIQUE (sname); -- -- Name: pd_obfuscation_rule pd_obfuscation_rule_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_obfuscation_rule ADD CONSTRAINT pd_obfuscation_rule_pk PRIMARY KEY (nid); -- -- Name: pd_qs_data_conn_path_mapping pd_pd_qs_data_conn_path_mapping_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qs_data_conn_path_mapping ADD CONSTRAINT pd_pd_qs_data_conn_path_mapping_pk PRIMARY KEY (conn_def_nid, path_def_nid); -- -- Name: pd_prep_aggregator_expression pd_prep_aggregator_expression_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_aggregator_expression ADD CONSTRAINT pd_prep_aggregator_expression_pkey PRIMARY KEY (aggregator_nid, idx); -- -- Name: pd_prep_aggregator_group pd_prep_aggregator_group_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_aggregator_group ADD CONSTRAINT pd_prep_aggregator_group_pkey PRIMARY KEY (aggregator_nid, idx); -- -- Name: pd_prep_compare_condition pd_prep_compare_condition_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_compare_condition ADD CONSTRAINT pd_prep_compare_condition_pkey PRIMARY KEY (compare_nid, idx); -- -- Name: pd_prep_compare_join pd_prep_compare_join_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_compare_join ADD CONSTRAINT pd_prep_compare_join_pkey PRIMARY KEY (compare_nid, idx); -- -- Name: pd_prep_connector pd_prep_connector_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_connector ADD CONSTRAINT pd_prep_connector_pkey PRIMARY KEY (nid); -- -- Name: pd_prep_field_format pd_prep_field_format_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_field_format ADD CONSTRAINT pd_prep_field_format_pkey PRIMARY KEY (record_format_nid, idx); -- -- Name: pd_prep_joiner_condition pd_prep_joiner_condition_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_joiner_condition ADD CONSTRAINT pd_prep_joiner_condition_pkey PRIMARY KEY (joiner_nid, idx); -- -- Name: pd_prep_joiner_detail_field pd_prep_joiner_detail_field_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_joiner_detail_field ADD CONSTRAINT pd_prep_joiner_detail_field_pkey PRIMARY KEY (joiner_nid, idx); -- -- Name: pd_prep_joiner_master_field pd_prep_joiner_master_field_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_joiner_master_field ADD CONSTRAINT pd_prep_joiner_master_field_pkey PRIMARY KEY (joiner_nid, idx); -- -- Name: pd_prep_package pd_prep_package_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_package ADD CONSTRAINT pd_prep_package_pkey PRIMARY KEY (nid); -- -- Name: pd_prep_parameter pd_prep_parameter_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_parameter ADD CONSTRAINT pd_prep_parameter_pkey PRIMARY KEY (bundle_nid, parameters_key); -- -- Name: pd_prep_port pd_prep_port_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_port ADD CONSTRAINT pd_prep_port_pkey PRIMARY KEY (nid); -- -- Name: pd_prep_record_format pd_prep_record_format_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_record_format ADD CONSTRAINT pd_prep_record_format_pkey PRIMARY KEY (nid); -- -- Name: pd_prep_router_expression pd_prep_router_expression_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_router_expression ADD CONSTRAINT pd_prep_router_expression_pkey PRIMARY KEY (router_nid, idx); -- -- Name: pd_prep_sort_condition pd_prep_sort_condition_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_sort_condition ADD CONSTRAINT pd_prep_sort_condition_pkey PRIMARY KEY (sorter_nid, idx); -- -- Name: pd_prep_transformer_expression pd_prep_transformer_expression_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_transformer_expression ADD CONSTRAINT pd_prep_transformer_expression_pkey PRIMARY KEY (transformer_nid, idx); -- -- Name: pd_prepare_execution_wo_param pd_prepare_execution_workorder_parameter_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prepare_execution_wo_param ADD CONSTRAINT pd_prepare_execution_workorder_parameter_pkey PRIMARY KEY (workorder_nid, jobparams_key); -- -- Name: pd_prepare_execution_workorder pd_prepare_execution_workorder_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prepare_execution_workorder ADD CONSTRAINT pd_prepare_execution_workorder_pk PRIMARY KEY (nid); -- -- Name: pd_prepare_execution_wo_prop pd_prepare_execution_workorder_prop_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prepare_execution_wo_prop ADD CONSTRAINT pd_prepare_execution_workorder_prop_pk PRIMARY KEY (nid); -- -- Name: pd_prod_info pd_prod_info_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prod_info ADD CONSTRAINT pd_prod_info_pk PRIMARY KEY (nid); -- -- Name: pd_prop_category_members pd_prop_category_members_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_category_members ADD CONSTRAINT pd_prop_category_members_pk PRIMARY KEY (nid); -- -- Name: pd_prop_category pd_prop_category_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_category ADD CONSTRAINT pd_prop_category_pk PRIMARY KEY (nid); -- -- Name: pd_prop_category pd_prop_category_unique_name; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_category ADD CONSTRAINT pd_prop_category_unique_name UNIQUE (sname); -- -- Name: pd_prop_class_inherit pd_prop_class_inherit_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_class_inherit ADD CONSTRAINT pd_prop_class_inherit_pk PRIMARY KEY (nid); -- -- Name: pd_prop_definition2 pd_prop_definition2_sname_key; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_definition2 ADD CONSTRAINT pd_prop_definition2_sname_key UNIQUE (sname); -- -- Name: pd_prop_definition pd_prop_definition_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_definition ADD CONSTRAINT pd_prop_definition_pk PRIMARY KEY (nid); -- -- Name: pd_prop_definition pd_prop_definition_sname_key; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_definition ADD CONSTRAINT pd_prop_definition_sname_key UNIQUE (sname); -- -- Name: pd_prop_setting pd_prop_setting_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_setting ADD CONSTRAINT pd_prop_setting_pk PRIMARY KEY (nid); -- -- Name: pd_prop_type pd_prop_type_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prop_type ADD CONSTRAINT pd_prop_type_pkey PRIMARY KEY (nid); -- -- Name: pd_publish pd_publish_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_publish ADD CONSTRAINT pd_publish_pk PRIMARY KEY (nid); -- -- Name: pd_publish_prop pd_publish_prop_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_publish_prop ADD CONSTRAINT pd_publish_prop_pk PRIMARY KEY (nid); -- -- Name: pd_publish_prop pd_publish_prop_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_publish_prop ADD CONSTRAINT pd_publish_prop_unique UNIQUE (publish_nid, prop_name); -- -- Name: pd_qs_conn_path_def pd_qs_conn_path_def_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qs_conn_path_def ADD CONSTRAINT pd_qs_conn_path_def_pkey PRIMARY KEY (nid); -- -- Name: pd_qs_connector_info pd_qs_connector_info_install_id_key; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qs_connector_info ADD CONSTRAINT pd_qs_connector_info_install_id_key UNIQUE (install_id); -- -- Name: pd_qs_connector_info pd_qs_connector_info_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qs_connector_info ADD CONSTRAINT pd_qs_connector_info_pkey PRIMARY KEY (nid); -- -- Name: pd_qs_connector_info pd_qs_connector_info_sname_key; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qs_connector_info ADD CONSTRAINT pd_qs_connector_info_sname_key UNIQUE (sname); -- -- Name: pd_qs_data_conn_def pd_qs_data_conn_def_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qs_data_conn_def ADD CONSTRAINT pd_qs_data_conn_def_pkey PRIMARY KEY (nid); -- -- Name: pd_qvd_entity_load pd_qvd_entity_load_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qvd_entity_load ADD CONSTRAINT pd_qvd_entity_load_pkey PRIMARY KEY (nid); -- -- Name: pd_qvd_file_record pd_qvd_file_record_full_path_key; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qvd_file_record ADD CONSTRAINT pd_qvd_file_record_full_path_key UNIQUE (full_path); -- -- Name: pd_qvd_file_record pd_qvd_file_record_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qvd_file_record ADD CONSTRAINT pd_qvd_file_record_pkey PRIMARY KEY (nid); -- -- Name: pd_qvd_scan_metrics pd_qvd_scan_metrics_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qvd_scan_metrics ADD CONSTRAINT pd_qvd_scan_metrics_pk PRIMARY KEY (nid); -- -- Name: pd_qvd_scan_monitor pd_qvd_scan_monitor_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qvd_scan_monitor ADD CONSTRAINT pd_qvd_scan_monitor_pkey PRIMARY KEY (nid); -- -- Name: pd_relation_inference pd_relation_inference_name_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_relation_inference ADD CONSTRAINT pd_relation_inference_name_unique UNIQUE (sname); -- -- Name: pd_relation_inference pd_relation_inference_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_relation_inference ADD CONSTRAINT pd_relation_inference_pk PRIMARY KEY (nid); -- -- Name: pd_role pd_role_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_role ADD CONSTRAINT pd_role_pk PRIMARY KEY (nid); -- -- Name: pd_role pd_role_sname_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_role ADD CONSTRAINT pd_role_sname_unique UNIQUE (sname); -- -- Name: pd_scheduled_job pd_scheduled_job_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_scheduled_job ADD CONSTRAINT pd_scheduled_job_pk PRIMARY KEY (nid); -- -- Name: pd_scheduled_job_prop pd_scheduled_job_prop_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_scheduled_job_prop ADD CONSTRAINT pd_scheduled_job_prop_pk PRIMARY KEY (nid); -- -- Name: pd_schema_version pd_schema_version_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_schema_version ADD CONSTRAINT pd_schema_version_pk PRIMARY KEY (version); -- -- Name: pd_workflow_task_parameter pd_seq_task_parameter_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_task_parameter ADD CONSTRAINT pd_seq_task_parameter_pkey PRIMARY KEY (task_nid, parameters_key); -- -- Name: pd_seq_task_type pd_seq_task_type_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_seq_task_type ADD CONSTRAINT pd_seq_task_type_pk PRIMARY KEY (nid); -- -- Name: pd_seq_task_type pd_seq_task_type_unique_name; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_seq_task_type ADD CONSTRAINT pd_seq_task_type_unique_name UNIQUE (sname); -- -- Name: pd_workflow_graph_gui_state pd_sequencer_graph_gui_state_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_graph_gui_state ADD CONSTRAINT pd_sequencer_graph_gui_state_pk PRIMARY KEY (nid); -- -- Name: pd_workflow_graph pd_sequencer_graph_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_graph ADD CONSTRAINT pd_sequencer_graph_pkey PRIMARY KEY (nid); -- -- Name: pd_workflow_graph pd_sequencer_graph_unique_name; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_graph ADD CONSTRAINT pd_sequencer_graph_unique_name UNIQUE (sname); -- -- Name: pd_workflow_task pd_sequencer_task_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_task ADD CONSTRAINT pd_sequencer_task_pkey PRIMARY KEY (nid); -- -- Name: pd_source_conn pd_source_conn_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source_conn ADD CONSTRAINT pd_source_conn_pkey PRIMARY KEY (nid); -- -- Name: pd_source_conn pd_source_conn_unique_name; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source_conn ADD CONSTRAINT pd_source_conn_unique_name UNIQUE (sname); -- -- Name: pd_source_hier pd_source_hier_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source_hier ADD CONSTRAINT pd_source_hier_pk PRIMARY KEY (nid); -- -- Name: pd_source pd_source_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source ADD CONSTRAINT pd_source_pk PRIMARY KEY (nid); -- -- Name: pd_source_prop_bk pd_source_prop_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source_prop_bk ADD CONSTRAINT pd_source_prop_pk PRIMARY KEY (nid); -- -- Name: pd_source_tag pd_source_tag_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source_tag ADD CONSTRAINT pd_source_tag_pk PRIMARY KEY (nid); -- -- Name: pd_target pd_target_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_target ADD CONSTRAINT pd_target_pk PRIMARY KEY (nid); -- -- Name: pd_target_prop pd_target_prop_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_target_prop ADD CONSTRAINT pd_target_prop_pk PRIMARY KEY (nid); -- -- Name: pd_target_prop pd_target_prop_target_prop_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_target_prop ADD CONSTRAINT pd_target_prop_target_prop_unique UNIQUE (target_nid, prop_name); -- -- Name: pd_workflow_task pd_task_parent_bean_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_task ADD CONSTRAINT pd_task_parent_bean_unique UNIQUE (sname, graph_nid); -- -- Name: pd_workflow_task_relation pd_task_rel_bean_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_task_relation ADD CONSTRAINT pd_task_rel_bean_unique UNIQUE (pre_task_nid, post_task_nid); -- -- Name: pd_user_notification_setting pd_uns_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_notification_setting ADD CONSTRAINT pd_uns_pk PRIMARY KEY (nid); -- -- Name: pd_user_notification_setting pd_uns_uk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_notification_setting ADD CONSTRAINT pd_uns_uk UNIQUE (address, user_nid); -- -- Name: pd_user_global_pref pd_user_global_pref_pkey; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_global_pref ADD CONSTRAINT pd_user_global_pref_pkey PRIMARY KEY (user_nid, globalpreferences_key); -- -- Name: pd_user_grid_column_pref pd_user_grid_column_pref_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_grid_column_pref ADD CONSTRAINT pd_user_grid_column_pref_pk PRIMARY KEY (nid); -- -- Name: pd_user_grid_column_pref pd_user_grid_column_pref_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_grid_column_pref ADD CONSTRAINT pd_user_grid_column_pref_unique UNIQUE (user_grid_pref_nid, sname); -- -- Name: pd_user_grid_pref pd_user_grid_pref_name_usernid_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_grid_pref ADD CONSTRAINT pd_user_grid_pref_name_usernid_unique UNIQUE (user_nid, sname); -- -- Name: pd_user_grid_pref pd_user_grid_pref_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_grid_pref ADD CONSTRAINT pd_user_grid_pref_pk PRIMARY KEY (nid); -- -- Name: pd_user pd_user_login_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user ADD CONSTRAINT pd_user_login_unique UNIQUE (login_name); -- -- Name: pd_user pd_user_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user ADD CONSTRAINT pd_user_pk PRIMARY KEY (nid); -- -- Name: pd_vadd_rule pd_vadd_rule_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_vadd_rule ADD CONSTRAINT pd_vadd_rule_pk PRIMARY KEY (nid); -- -- Name: pd_workflow_execution_wo pd_workflow_execution_workorder_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_execution_wo ADD CONSTRAINT pd_workflow_execution_workorder_pk PRIMARY KEY (nid); -- -- Name: pd_workflow_task_relation pd_workflow_task_relation_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_task_relation ADD CONSTRAINT pd_workflow_task_relation_pk PRIMARY KEY (nid); -- -- Name: pd_workorder pd_workorder_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workorder ADD CONSTRAINT pd_workorder_pk PRIMARY KEY (nid); -- -- Name: pd_workorder_prop pd_workorder_prop_pk; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workorder_prop ADD CONSTRAINT pd_workorder_prop_pk PRIMARY KEY (nid); -- -- Name: pd_workorder_prop pd_workorder_prop_workorder_prop_unique; Type: CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workorder_prop ADD CONSTRAINT pd_workorder_prop_workorder_prop_unique UNIQUE (workorder_nid, prop_name); -- -- Name: pd_report pd_report_new_pkey; Type: CONSTRAINT; Schema: podium_reporting; Owner: podium_md -- ALTER TABLE ONLY podium_reporting.pd_report ADD CONSTRAINT pd_report_new_pkey PRIMARY KEY (nid); -- -- Name: pd_report_query pd_report_query_pkey; Type: CONSTRAINT; Schema: podium_reporting; Owner: podium_md -- ALTER TABLE ONLY podium_reporting.pd_report_query ADD CONSTRAINT pd_report_query_pkey PRIMARY KEY (nid); -- -- Name: pd_report pd_report_report_new_sname; Type: CONSTRAINT; Schema: podium_reporting; Owner: podium_md -- ALTER TABLE ONLY podium_reporting.pd_report ADD CONSTRAINT pd_report_report_new_sname UNIQUE (sname); -- -- Name: base_log_index; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX base_log_index ON podium_core.pd_acl_sync_log_details USING btree (base_log_nid); -- -- Name: entity_index; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX entity_index ON podium_core.pd_acl_sync_log_details USING btree (entity_name); -- -- Name: idx_child_field_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX idx_child_field_nid ON podium_core.pd_field_pc_rel USING btree (child_field_nid); -- -- Name: idx_parent_class; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX idx_parent_class ON podium_core.pd_prop_setting USING btree (parent_class); -- -- Name: idx_parent_field_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX idx_parent_field_nid ON podium_core.pd_field_pc_rel USING btree (parent_field_nid); -- -- Name: idx_parent_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX idx_parent_nid ON podium_core.pd_prop_setting USING btree (parent_nid); -- -- Name: pd_addtls_lognid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_addtls_lognid ON podium_core.pd_ad_log_details USING btree (base_log_nid); -- -- Name: pd_bundle_prep_package_bundle_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_bundle_prep_package_bundle_nid ON podium_core.pd_prep_package USING btree (bundle_nid); -- -- Name: pd_bundle_prep_workorder_bundle_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_bundle_prep_workorder_bundle_nid ON podium_core.pd_prepare_execution_workorder USING btree (bundle_nid); -- -- Name: pd_connection_group_connection_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_connection_group_connection_nid ON podium_core.pd_connection_group USING btree (connection_nid); -- -- Name: pd_connection_group_group_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_connection_group_group_nid ON podium_core.pd_connection_group USING btree (group_nid); -- -- Name: pd_dataset_entity_dataset_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_dataset_entity_dataset_nid ON podium_core.pd_dataset_entity USING btree (dataset_nid); -- -- Name: pd_dataset_entity_entity_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_dataset_entity_entity_nid ON podium_core.pd_dataset_entity USING btree (entity_nid); -- -- Name: pd_dataset_publish_dataset_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_dataset_publish_dataset_nid ON podium_core.pd_publish USING btree (dataset_nid); -- -- Name: pd_enrel_rulenid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_enrel_rulenid ON podium_core.pd_entity_relation USING btree (vadd_rule_nid); -- -- Name: pd_ent_srcconnnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_ent_srcconnnid ON podium_core.pd_entity USING btree (source_conn_nid); -- -- Name: pd_entity_entity_uuid_index; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE UNIQUE INDEX pd_entity_entity_uuid_index ON podium_core.pd_entity USING btree (entity_uuid); -- -- Name: pd_entity_field_entity_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entity_field_entity_nid ON podium_core.pd_field USING btree (entity_nid); -- -- Name: pd_entity_group_entity_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entity_group_entity_nid ON podium_core.pd_entity_group USING btree (entity_nid); -- -- Name: pd_entity_group_group_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entity_group_group_nid ON podium_core.pd_entity_group USING btree (group_nid); -- -- Name: pd_entity_prep_package_entity_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entity_prep_package_entity_nid ON podium_core.pd_prep_package USING btree (entity_id); -- -- Name: pd_entity_prop_entity_nid_idx; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entity_prop_entity_nid_idx ON podium_core.pd_entity_prop_bk USING btree (entity_nid); -- -- Name: pd_entity_tag_entity_nid_idx; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entity_tag_entity_nid_idx ON podium_core.pd_entity_tag USING btree (entity_nid); -- -- Name: pd_entity_workorder_entity_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entity_workorder_entity_nid ON podium_core.pd_workorder USING btree (entity_nid); -- -- Name: pd_entmet_endtime; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entmet_endtime ON podium_core.pd_entity_metric USING btree (end_time); -- -- Name: pd_entmet_entnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entmet_entnid ON podium_core.pd_entity_metric USING btree (entity_nid); -- -- Name: pd_entmet_metdefnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entmet_metdefnid ON podium_core.pd_entity_metric USING btree (metric_definition_nid); -- -- Name: pd_entmet_metricvalue; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entmet_metricvalue ON podium_core.pd_entity_metric USING btree (metric_value); -- -- Name: pd_entmet_starttime; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entmet_starttime ON podium_core.pd_entity_metric USING btree (start_time); -- -- Name: pd_entrel_childnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entrel_childnid ON podium_core.pd_entity_relation USING btree (child_entity_nid); -- -- Name: pd_entrel_chsrcnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entrel_chsrcnid ON podium_core.pd_entity_relation USING btree (child_source_nid); -- -- Name: pd_entrel_parentnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entrel_parentnid ON podium_core.pd_entity_relation USING btree (parent_entity_nid); -- -- Name: pd_entrel_prsrcnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_entrel_prsrcnid ON podium_core.pd_entity_relation USING btree (parent_source_nid); -- -- Name: pd_expinfprp_expinfnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_expinfprp_expinfnid ON podium_core.pd_export_info_prop USING btree (export_info_nid); -- -- Name: pd_expwoprp_wonid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_expwoprp_wonid ON podium_core.pd_data_export_workorder_prop USING btree (workorder_nid); -- -- Name: pd_field_biz_def_field_nid_idx; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_field_biz_def_field_nid_idx ON podium_core.pd_field_biz_def USING btree (field_nid); -- -- Name: pd_field_prop_field_nid_idx; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_field_prop_field_nid_idx ON podium_core.pd_field_prop_bk USING btree (field_nid); -- -- Name: pd_field_sname_idx; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_field_sname_idx ON podium_core.pd_field USING btree (sname); -- -- Name: pd_field_sname_nid_idx; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE UNIQUE INDEX pd_field_sname_nid_idx ON podium_core.pd_field USING btree (sname, nid); -- -- Name: pd_field_tag_field_nid_idx; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_field_tag_field_nid_idx ON podium_core.pd_field_tag USING btree (field_nid); -- -- Name: pd_fldpcrel_rulenid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_fldpcrel_rulenid ON podium_core.pd_field_pc_rel USING btree (vadd_rule_nid); -- -- Name: pd_format_def_prop_format_nid_idx; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_format_def_prop_format_nid_idx ON podium_core.pd_format_def_prop USING btree (format_nid); -- -- Name: pd_grpusr_grpnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_grpusr_grpnid ON podium_core.pd_group_user USING btree (group_nid); -- -- Name: pd_grpusr_rlnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_grpusr_rlnid ON podium_core.pd_group_user USING btree (role_nid); -- -- Name: pd_grpusr_usrnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_grpusr_usrnid ON podium_core.pd_group_user USING btree (user_nid); -- -- Name: pd_lineage_edge_idx; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_lineage_edge_idx ON podium_core.pd_lineage_edge USING btree (from_node_nid, to_node_nid); -- -- Name: pd_linedg_fromndnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_linedg_fromndnid ON podium_core.pd_lineage_edge USING btree (from_node_nid); -- -- Name: pd_linedg_tondnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_linedg_tondnid ON podium_core.pd_lineage_edge USING btree (to_node_nid); -- -- Name: pd_mntwoprp_wonid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_mntwoprp_wonid ON podium_core.pd_maintenance_workorder_prop USING btree (workorder_nid); -- -- Name: pd_prep_aggregator_expression_aggregator_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_aggregator_expression_aggregator_nid ON podium_core.pd_prep_aggregator_expression USING btree (aggregator_nid); -- -- Name: pd_prep_aggregator_group_aggregator_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_aggregator_group_aggregator_nid ON podium_core.pd_prep_aggregator_group USING btree (aggregator_nid); -- -- Name: pd_prep_compare_condition_compare_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_compare_condition_compare_nid ON podium_core.pd_prep_compare_condition USING btree (compare_nid); -- -- Name: pd_prep_compare_join_compare_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_compare_join_compare_nid ON podium_core.pd_prep_compare_join USING btree (compare_nid); -- -- Name: pd_prep_connector_bundle_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_connector_bundle_nid ON podium_core.pd_prep_connector USING btree (bundle_nid); -- -- Name: pd_prep_connector_in_port_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_connector_in_port_nid ON podium_core.pd_prep_connector USING btree (inbound_port_nid); -- -- Name: pd_prep_connector_out_port_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_connector_out_port_nid ON podium_core.pd_prep_connector USING btree (outbound_port_nid); -- -- Name: pd_prep_field_format_record_format_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_field_format_record_format_nid ON podium_core.pd_prep_field_format USING btree (record_format_nid); -- -- Name: pd_prep_joiner_condition_joiner_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_joiner_condition_joiner_nid ON podium_core.pd_prep_joiner_condition USING btree (joiner_nid); -- -- Name: pd_prep_joiner_detail_joiner_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_joiner_detail_joiner_nid ON podium_core.pd_prep_joiner_detail_field USING btree (joiner_nid); -- -- Name: pd_prep_joiner_master_joiner_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_joiner_master_joiner_nid ON podium_core.pd_prep_joiner_master_field USING btree (joiner_nid); -- -- Name: pd_prep_package_package_type; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_package_package_type ON podium_core.pd_prep_package USING btree (package_type); -- -- Name: pd_prep_port_package_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_port_package_nid ON podium_core.pd_prep_port USING btree (package_nid); -- -- Name: pd_prep_port_record_format_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_port_record_format_nid ON podium_core.pd_prep_port USING btree (record_format_nid); -- -- Name: pd_prep_router_expression_router_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_router_expression_router_nid ON podium_core.pd_prep_router_expression USING btree (router_nid); -- -- Name: pd_prep_sort_condition_sorter_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_sort_condition_sorter_nid ON podium_core.pd_prep_sort_condition USING btree (sorter_nid); -- -- Name: pd_prep_transformer_expression_transformer_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prep_transformer_expression_transformer_nid ON podium_core.pd_prep_transformer_expression USING btree (transformer_nid); -- -- Name: pd_prop_def_prop_setting_prop_def_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_prop_def_prop_setting_prop_def_nid ON podium_core.pd_prop_setting USING btree (prop_def_nid); -- -- Name: pd_qvdentld_scanmtrcnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_qvdentld_scanmtrcnid ON podium_core.pd_qvd_entity_load USING btree (scan_metric_nid); -- -- Name: pd_schema_version_ir_idx; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_schema_version_ir_idx ON podium_core.pd_schema_version USING btree (installed_rank); -- -- Name: pd_schema_version_s_idx; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_schema_version_s_idx ON podium_core.pd_schema_version USING btree (success); -- -- Name: pd_schema_version_vr_idx; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_schema_version_vr_idx ON podium_core.pd_schema_version USING btree (version_rank); -- -- Name: pd_source_entity_source_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_source_entity_source_nid ON podium_core.pd_entity USING btree (source_nid); -- -- Name: pd_src_clstr_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_src_clstr_nid ON podium_core.pd_source USING btree (cluster_nid); -- -- Name: pd_src_srchrnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_src_srchrnid ON podium_core.pd_source USING btree (source_hier_nid); -- -- Name: pd_src_srconnnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_src_srconnnid ON podium_core.pd_source USING btree (source_conn_nid); -- -- Name: pd_target_publish_target_nid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_target_publish_target_nid ON podium_core.pd_publish USING btree (target_nid); -- -- Name: pd_user_adconnnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_user_adconnnid ON podium_core.pd_user USING btree (ad_connection_nid); -- -- Name: pd_usrgrdclprf_usrgrdprfnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_usrgrdclprf_usrgrdprfnid ON podium_core.pd_user_grid_column_pref USING btree (user_grid_pref_nid); -- -- Name: pd_wo_srcnid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_wo_srcnid ON podium_core.pd_workorder USING btree (source_nid); -- -- Name: pd_woprp_wonid; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX pd_woprp_wonid ON podium_core.pd_workorder_prop USING btree (workorder_nid); -- -- Name: source_index; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX source_index ON podium_core.pd_acl_sync_log_details USING btree (source_name); -- -- Name: target_owner_index; Type: INDEX; Schema: podium_core; Owner: podium_md -- CREATE INDEX target_owner_index ON podium_core.pd_acl_sync_log_details USING btree (target_owner); -- -- Name: pd_prop_definition update_def_if_null; Type: TRIGGER; Schema: podium_core; Owner: podium_md -- CREATE TRIGGER update_def_if_null AFTER INSERT OR UPDATE ON podium_core.pd_prop_definition FOR EACH ROW EXECUTE PROCEDURE podium_core.update_def_if_null(); -- -- Name: pd_workflow_task fk_task_graph; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_task ADD CONSTRAINT fk_task_graph FOREIGN KEY (graph_nid) REFERENCES podium_core.pd_workflow_graph(nid); -- -- Name: pd_acl_sync_log_details pd_acl_synchronization_log_details_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_acl_sync_log_details ADD CONSTRAINT pd_acl_synchronization_log_details_fk FOREIGN KEY (base_log_nid) REFERENCES podium_core.pd_acl_synchronization_logs(nid); -- -- Name: pd_ad_log_details pd_active_directory_log_details_base_log_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_ad_log_details ADD CONSTRAINT pd_active_directory_log_details_base_log_fk FOREIGN KEY (base_log_nid) REFERENCES podium_core.pd_active_directory_logs(nid); -- -- Name: pd_active_directory_logs pd_active_directory_logs_connection_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_active_directory_logs ADD CONSTRAINT pd_active_directory_logs_connection_fk FOREIGN KEY (connection_nid) REFERENCES podium_core.pd_ad_connection_info(nid); -- -- Name: pd_bundle pd_bundle_bundle_gui_state_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_bundle ADD CONSTRAINT pd_bundle_bundle_gui_state_fk FOREIGN KEY (bundle_gui_state_nid) REFERENCES podium_core.pd_bundle_gui_state(nid); -- -- Name: pd_bundle pd_bundle_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_bundle ADD CONSTRAINT pd_bundle_package_fk FOREIGN KEY (nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_connection_group pd_connection_group_connection_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_connection_group ADD CONSTRAINT pd_connection_group_connection_fk FOREIGN KEY (connection_nid) REFERENCES podium_core.pd_source_conn(nid); -- -- Name: pd_connection_group pd_connection_group_group_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_connection_group ADD CONSTRAINT pd_connection_group_group_fk FOREIGN KEY (group_nid) REFERENCES podium_core.pd_group(nid); -- -- Name: pd_data_export_workorder pd_data_export_workorder_entity_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_export_workorder ADD CONSTRAINT pd_data_export_workorder_entity_fk FOREIGN KEY (entity_nid) REFERENCES podium_core.pd_entity(nid); -- -- Name: pd_data_export_workorder_prop pd_data_export_workorder_prop_workorder_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_export_workorder_prop ADD CONSTRAINT pd_data_export_workorder_prop_workorder_fk FOREIGN KEY (workorder_nid) REFERENCES podium_core.pd_data_export_workorder(nid); -- -- Name: pd_data_export_workorder pd_data_export_workorder_source_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_export_workorder ADD CONSTRAINT pd_data_export_workorder_source_fk FOREIGN KEY (source_nid) REFERENCES podium_core.pd_source(nid); -- -- Name: pd_data_migration_wo_prop pd_data_migration_workorder_prop_workorder_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_data_migration_wo_prop ADD CONSTRAINT pd_data_migration_workorder_prop_workorder_fk FOREIGN KEY (workorder_nid) REFERENCES podium_core.pd_data_migration_workorder(nid); -- -- Name: pd_dataset_entity pd_dataset_entity_dataset_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_dataset_entity ADD CONSTRAINT pd_dataset_entity_dataset_fk FOREIGN KEY (dataset_nid) REFERENCES podium_core.pd_dataset(nid); -- -- Name: pd_dataset_entity pd_dataset_entity_source_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_dataset_entity ADD CONSTRAINT pd_dataset_entity_source_fk FOREIGN KEY (entity_nid) REFERENCES podium_core.pd_entity(nid); -- -- Name: pd_lineage_edge pd_edge_node_from_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_lineage_edge ADD CONSTRAINT pd_edge_node_from_fk FOREIGN KEY (from_node_nid) REFERENCES podium_core.pd_lineage_node(nid); -- -- Name: pd_lineage_edge pd_edge_node_to_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_lineage_edge ADD CONSTRAINT pd_edge_node_to_fk FOREIGN KEY (to_node_nid) REFERENCES podium_core.pd_lineage_node(nid); -- -- Name: pd_entity_group pd_entity_group_entity_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_group ADD CONSTRAINT pd_entity_group_entity_fk FOREIGN KEY (entity_nid) REFERENCES podium_core.pd_entity(nid); -- -- Name: pd_entity_group pd_entity_group_group_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_group ADD CONSTRAINT pd_entity_group_group_fk FOREIGN KEY (group_nid) REFERENCES podium_core.pd_group(nid); -- -- Name: pd_entity_metric pd_entity_metric_entity_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_metric ADD CONSTRAINT pd_entity_metric_entity_fk FOREIGN KEY (entity_nid) REFERENCES podium_core.pd_entity(nid); -- -- Name: pd_entity_metric pd_entity_metric_metric_definition_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_metric ADD CONSTRAINT pd_entity_metric_metric_definition_fk FOREIGN KEY (metric_definition_nid) REFERENCES podium_core.pd_metric_definition(nid); -- -- Name: pd_entity pd_entity_source_conn_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity ADD CONSTRAINT pd_entity_source_conn_fk FOREIGN KEY (source_conn_nid) REFERENCES podium_core.pd_source_conn(nid); -- -- Name: pd_entity pd_entity_source_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity ADD CONSTRAINT pd_entity_source_fk FOREIGN KEY (source_nid) REFERENCES podium_core.pd_source(nid); -- -- Name: pd_entity_tag pd_entity_tag_entity_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_tag ADD CONSTRAINT pd_entity_tag_entity_fk FOREIGN KEY (entity_nid) REFERENCES podium_core.pd_entity(nid); -- -- Name: pd_entity_relation pd_er_child_entity_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_relation ADD CONSTRAINT pd_er_child_entity_fk FOREIGN KEY (child_entity_nid) REFERENCES podium_core.pd_entity(nid); -- -- Name: pd_entity_relation pd_er_child_source_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_relation ADD CONSTRAINT pd_er_child_source_fk FOREIGN KEY (child_source_nid) REFERENCES podium_core.pd_source(nid); -- -- Name: pd_entity_relation pd_er_parent_entity_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_relation ADD CONSTRAINT pd_er_parent_entity_fk FOREIGN KEY (parent_entity_nid) REFERENCES podium_core.pd_entity(nid); -- -- Name: pd_entity_relation pd_er_parent_source_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_relation ADD CONSTRAINT pd_er_parent_source_fk FOREIGN KEY (parent_source_nid) REFERENCES podium_core.pd_source(nid); -- -- Name: pd_entity_relation pd_er_vaddrule_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_entity_relation ADD CONSTRAINT pd_er_vaddrule_fk FOREIGN KEY (vadd_rule_nid) REFERENCES podium_core.pd_vadd_rule(nid); -- -- Name: pd_export_field_masking pd_export_field_masking_export_info_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_export_field_masking ADD CONSTRAINT pd_export_field_masking_export_info_fk FOREIGN KEY (data_export_info_nid) REFERENCES podium_core.pd_export_info(nid); -- -- Name: pd_export_field_masking pd_export_field_masking_field_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_export_field_masking ADD CONSTRAINT pd_export_field_masking_field_fk FOREIGN KEY (field_nid) REFERENCES podium_core.pd_field(nid); -- -- Name: pd_export_field_masking pd_export_field_masking_obfuscation_rule_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_export_field_masking ADD CONSTRAINT pd_export_field_masking_obfuscation_rule_fk FOREIGN KEY (obfuscation_rule_nid) REFERENCES podium_core.pd_obfuscation_rule(nid); -- -- Name: pd_export_info pd_export_info_entity_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_export_info ADD CONSTRAINT pd_export_info_entity_fk FOREIGN KEY (entity_nid) REFERENCES podium_core.pd_entity(nid); -- -- Name: pd_export_info_prop pd_export_info_prop_export_info_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_export_info_prop ADD CONSTRAINT pd_export_info_prop_export_info_fk FOREIGN KEY (export_info_nid) REFERENCES podium_core.pd_export_info(nid); -- -- Name: pd_export_info pd_export_info_publish_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_export_info ADD CONSTRAINT pd_export_info_publish_fk FOREIGN KEY (publish_nid) REFERENCES podium_core.pd_publish(nid); -- -- Name: pd_field_biz_def pd_field_biz_def_field_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field_biz_def ADD CONSTRAINT pd_field_biz_def_field_fk FOREIGN KEY (field_nid) REFERENCES podium_core.pd_field(nid); -- -- Name: pd_field pd_field_entity_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field ADD CONSTRAINT pd_field_entity_fk FOREIGN KEY (entity_nid) REFERENCES podium_core.pd_entity(nid); -- -- Name: pd_field_pc_rel pd_field_pc_rel_child_field_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field_pc_rel ADD CONSTRAINT pd_field_pc_rel_child_field_fk FOREIGN KEY (child_field_nid) REFERENCES podium_core.pd_field(nid); -- -- Name: pd_field_pc_rel pd_field_pc_rel_parent_field_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field_pc_rel ADD CONSTRAINT pd_field_pc_rel_parent_field_fk FOREIGN KEY (parent_field_nid) REFERENCES podium_core.pd_field(nid); -- -- Name: pd_field_pc_rel pd_field_pc_rel_vaddrule_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field_pc_rel ADD CONSTRAINT pd_field_pc_rel_vaddrule_fk FOREIGN KEY (vadd_rule_nid) REFERENCES podium_core.pd_vadd_rule(nid); -- -- Name: pd_field_tag pd_field_tag_field_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_field_tag ADD CONSTRAINT pd_field_tag_field_fk FOREIGN KEY (field_nid) REFERENCES podium_core.pd_field(nid); -- -- Name: pd_format_def_prop pd_format_def_prop_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_format_def_prop ADD CONSTRAINT pd_format_def_prop_fk FOREIGN KEY (format_nid) REFERENCES podium_core.pd_format_def(nid); -- -- Name: pd_gc_registry pd_gc_registry_cluster_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_gc_registry ADD CONSTRAINT pd_gc_registry_cluster_fk FOREIGN KEY (cluster_nid) REFERENCES podium_core.pd_cluster(nid); -- -- Name: pd_group pd_group_ad_connection_nid_fkey; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group ADD CONSTRAINT pd_group_ad_connection_nid_fkey FOREIGN KEY (ad_connection_nid) REFERENCES podium_core.pd_ad_connection_info(nid); -- -- Name: pd_group_group pd_group_group_child_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group_group ADD CONSTRAINT pd_group_group_child_fk FOREIGN KEY (child_nid) REFERENCES podium_core.pd_group(nid); -- -- Name: pd_group_group pd_group_group_parent_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group_group ADD CONSTRAINT pd_group_group_parent_fk FOREIGN KEY (parent_nid) REFERENCES podium_core.pd_group(nid); -- -- Name: pd_group_user pd_groupuser_group_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group_user ADD CONSTRAINT pd_groupuser_group_fk FOREIGN KEY (group_nid) REFERENCES podium_core.pd_group(nid); -- -- Name: pd_group_user pd_groupuser_role_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group_user ADD CONSTRAINT pd_groupuser_role_fk FOREIGN KEY (role_nid) REFERENCES podium_core.pd_role(nid); -- -- Name: pd_group_user pd_groupuser_user_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_group_user ADD CONSTRAINT pd_groupuser_user_fk FOREIGN KEY (user_nid) REFERENCES podium_core.pd_user(nid); -- -- Name: pd_job_manager_wo_param pd_job_manager_wo_param_workorder_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_job_manager_wo_param ADD CONSTRAINT pd_job_manager_wo_param_workorder_fk FOREIGN KEY (workorder_nid) REFERENCES podium_core.pd_job_manager_wo(nid); -- -- Name: pd_metric_category_definition pd_m_c_d_category_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_category_definition ADD CONSTRAINT pd_m_c_d_category_fk FOREIGN KEY (metric_category_nid) REFERENCES podium_core.pd_metric_category(nid); -- -- Name: pd_metric_category_definition pd_m_c_d_definition_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_category_definition ADD CONSTRAINT pd_m_c_d_definition_fk FOREIGN KEY (metric_definition_nid) REFERENCES podium_core.pd_metric_definition(nid); -- -- Name: pd_metric_weight pd_m_w_category_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_weight ADD CONSTRAINT pd_m_w_category_fk FOREIGN KEY (metric_category_nid) REFERENCES podium_core.pd_metric_category(nid); -- -- Name: pd_maintenance_workorder_prop pd_maintenance_workorder_prop_workorder_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_maintenance_workorder_prop ADD CONSTRAINT pd_maintenance_workorder_prop_workorder_fk FOREIGN KEY (workorder_nid) REFERENCES podium_core.pd_maintenance_workorder(nid); -- -- Name: pd_metric_weight pd_metric_weight_metric_definition_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_metric_weight ADD CONSTRAINT pd_metric_weight_metric_definition_fk FOREIGN KEY (metric_definition_nid) REFERENCES podium_core.pd_metric_definition(nid); -- -- Name: pd_prep_aggregator_expression pd_prep_aggregator_expression_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_aggregator_expression ADD CONSTRAINT pd_prep_aggregator_expression_package_fk FOREIGN KEY (aggregator_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prep_aggregator_group pd_prep_aggregator_group_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_aggregator_group ADD CONSTRAINT pd_prep_aggregator_group_package_fk FOREIGN KEY (aggregator_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prep_compare_condition pd_prep_compare_condition_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_compare_condition ADD CONSTRAINT pd_prep_compare_condition_package_fk FOREIGN KEY (compare_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prep_compare_join pd_prep_compare_join_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_compare_join ADD CONSTRAINT pd_prep_compare_join_package_fk FOREIGN KEY (compare_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prep_connector pd_prep_connector_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_connector ADD CONSTRAINT pd_prep_connector_package_fk FOREIGN KEY (bundle_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prep_connector pd_prep_connector_port_in_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_connector ADD CONSTRAINT pd_prep_connector_port_in_fk FOREIGN KEY (inbound_port_nid) REFERENCES podium_core.pd_prep_port(nid); -- -- Name: pd_prep_connector pd_prep_connector_port_out_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_connector ADD CONSTRAINT pd_prep_connector_port_out_fk FOREIGN KEY (outbound_port_nid) REFERENCES podium_core.pd_prep_port(nid); -- -- Name: pd_prep_field_format pd_prep_field_format_record_format_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_field_format ADD CONSTRAINT pd_prep_field_format_record_format_fk FOREIGN KEY (record_format_nid) REFERENCES podium_core.pd_prep_record_format(nid); -- -- Name: pd_prep_joiner_condition pd_prep_joiner_condition_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_joiner_condition ADD CONSTRAINT pd_prep_joiner_condition_package_fk FOREIGN KEY (joiner_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prep_joiner_detail_field pd_prep_joiner_detail_field_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_joiner_detail_field ADD CONSTRAINT pd_prep_joiner_detail_field_package_fk FOREIGN KEY (joiner_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prep_joiner_master_field pd_prep_joiner_master_field_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_joiner_master_field ADD CONSTRAINT pd_prep_joiner_master_field_package_fk FOREIGN KEY (joiner_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prep_package pd_prep_package_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_package ADD CONSTRAINT pd_prep_package_package_fk FOREIGN KEY (bundle_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prep_parameter pd_prep_parameter_bundle_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_parameter ADD CONSTRAINT pd_prep_parameter_bundle_fk FOREIGN KEY (bundle_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prep_port pd_prep_port_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_port ADD CONSTRAINT pd_prep_port_package_fk FOREIGN KEY (package_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prep_port pd_prep_port_record_format_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_port ADD CONSTRAINT pd_prep_port_record_format_fk FOREIGN KEY (record_format_nid) REFERENCES podium_core.pd_prep_record_format(nid); -- -- Name: pd_prep_router_expression pd_prep_router_expression_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_router_expression ADD CONSTRAINT pd_prep_router_expression_package_fk FOREIGN KEY (router_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prep_sort_condition pd_prep_sort_condition_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_sort_condition ADD CONSTRAINT pd_prep_sort_condition_package_fk FOREIGN KEY (sorter_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prep_transformer_expression pd_prep_transformer_expression_package_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prep_transformer_expression ADD CONSTRAINT pd_prep_transformer_expression_package_fk FOREIGN KEY (transformer_nid) REFERENCES podium_core.pd_prep_package(nid); -- -- Name: pd_prepare_execution_workorder pd_prepare_execution_workorder_bundle_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prepare_execution_workorder ADD CONSTRAINT pd_prepare_execution_workorder_bundle_fk FOREIGN KEY (bundle_nid) REFERENCES podium_core.pd_bundle(nid); -- -- Name: pd_prepare_execution_wo_param pd_prepare_execution_workorder_parameter_workorder_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_prepare_execution_wo_param ADD CONSTRAINT pd_prepare_execution_workorder_parameter_workorder_fk FOREIGN KEY (workorder_nid) REFERENCES podium_core.pd_prepare_execution_workorder(nid); -- -- Name: pd_publish pd_publish_dataset_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_publish ADD CONSTRAINT pd_publish_dataset_fk FOREIGN KEY (dataset_nid) REFERENCES podium_core.pd_dataset(nid); -- -- Name: pd_publish_prop pd_publish_prop_publish_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_publish_prop ADD CONSTRAINT pd_publish_prop_publish_fk FOREIGN KEY (publish_nid) REFERENCES podium_core.pd_publish(nid); -- -- Name: pd_publish pd_publish_target_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_publish ADD CONSTRAINT pd_publish_target_fk FOREIGN KEY (target_nid) REFERENCES podium_core.pd_target(nid); -- -- Name: pd_qs_data_conn_def pd_qs_data_conn_def_fkey; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qs_data_conn_def ADD CONSTRAINT pd_qs_data_conn_def_fkey FOREIGN KEY (qs_contr_id) REFERENCES podium_core.pd_qs_connector_info(nid); -- -- Name: pd_qs_data_conn_path_mapping pd_qs_data_conn_path_mapping_conn_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qs_data_conn_path_mapping ADD CONSTRAINT pd_qs_data_conn_path_mapping_conn_fk FOREIGN KEY (conn_def_nid) REFERENCES podium_core.pd_qs_data_conn_def(nid); -- -- Name: pd_qs_data_conn_path_mapping pd_qs_data_conn_path_mapping_path_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qs_data_conn_path_mapping ADD CONSTRAINT pd_qs_data_conn_path_mapping_path_fk FOREIGN KEY (path_def_nid) REFERENCES podium_core.pd_qs_conn_path_def(nid); -- -- Name: pd_qvd_entity_load pd_qvd_entity_load_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_qvd_entity_load ADD CONSTRAINT pd_qvd_entity_load_fk FOREIGN KEY (scan_metric_nid) REFERENCES podium_core.pd_qvd_scan_metrics(nid); -- -- Name: pd_scheduled_job pd_scheduled_job_entity_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_scheduled_job ADD CONSTRAINT pd_scheduled_job_entity_fk FOREIGN KEY (entity_nid) REFERENCES podium_core.pd_entity(nid); -- -- Name: pd_scheduled_job_prop pd_scheduled_job_prop_scheduled_job_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_scheduled_job_prop ADD CONSTRAINT pd_scheduled_job_prop_scheduled_job_fk FOREIGN KEY (scheduled_job_nid) REFERENCES podium_core.pd_scheduled_job(nid); -- -- Name: pd_workflow_task_parameter pd_seq_task_parameter_task_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_task_parameter ADD CONSTRAINT pd_seq_task_parameter_task_fk FOREIGN KEY (task_nid) REFERENCES podium_core.pd_workflow_task(nid); -- -- Name: pd_workflow_task_relation pd_seq_task_relation_post_task_nid_fkey; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_task_relation ADD CONSTRAINT pd_seq_task_relation_post_task_nid_fkey FOREIGN KEY (post_task_nid) REFERENCES podium_core.pd_workflow_task(nid); -- -- Name: pd_workflow_task_relation pd_seq_task_relation_pre_task_nid_fkey; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_task_relation ADD CONSTRAINT pd_seq_task_relation_pre_task_nid_fkey FOREIGN KEY (pre_task_nid) REFERENCES podium_core.pd_workflow_task(nid); -- -- Name: pd_workflow_graph pd_sequencer_graph_sequencer_graph_gui_state_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_graph ADD CONSTRAINT pd_sequencer_graph_sequencer_graph_gui_state_fk FOREIGN KEY (sequencer_graph_gui_state_nid) REFERENCES podium_core.pd_workflow_graph_gui_state(nid); -- -- Name: pd_source pd_source_cluster_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source ADD CONSTRAINT pd_source_cluster_fk FOREIGN KEY (cluster_nid) REFERENCES podium_core.pd_cluster(nid); -- -- Name: pd_source pd_source_source_conn_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source ADD CONSTRAINT pd_source_source_conn_fk FOREIGN KEY (source_conn_nid) REFERENCES podium_core.pd_source_conn(nid); -- -- Name: pd_source pd_source_source_hier_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source ADD CONSTRAINT pd_source_source_hier_fk FOREIGN KEY (source_hier_nid) REFERENCES podium_core.pd_source_hier(nid); -- -- Name: pd_source_tag pd_source_tag_source_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_source_tag ADD CONSTRAINT pd_source_tag_source_fk FOREIGN KEY (source_nid) REFERENCES podium_core.pd_source(nid); -- -- Name: pd_target_prop pd_target_prop_target_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_target_prop ADD CONSTRAINT pd_target_prop_target_fk FOREIGN KEY (target_nid) REFERENCES podium_core.pd_target(nid); -- -- Name: pd_user_notification_setting pd_uns_user_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_notification_setting ADD CONSTRAINT pd_uns_user_fk FOREIGN KEY (user_nid) REFERENCES podium_core.pd_user(nid); -- -- Name: pd_user pd_user_ad_connection_nid_fkey; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user ADD CONSTRAINT pd_user_ad_connection_nid_fkey FOREIGN KEY (ad_connection_nid) REFERENCES podium_core.pd_ad_connection_info(nid); -- -- Name: pd_user_global_pref pd_user_global_pref_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_global_pref ADD CONSTRAINT pd_user_global_pref_fk FOREIGN KEY (user_nid) REFERENCES podium_core.pd_user(nid); -- -- Name: pd_user_grid_column_pref pd_user_grid_column_pref_user_grid_pref_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_grid_column_pref ADD CONSTRAINT pd_user_grid_column_pref_user_grid_pref_fk FOREIGN KEY (user_grid_pref_nid) REFERENCES podium_core.pd_user_grid_pref(nid) ON DELETE CASCADE; -- -- Name: pd_user_grid_pref pd_user_grid_pref_user_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_user_grid_pref ADD CONSTRAINT pd_user_grid_pref_user_fk FOREIGN KEY (user_nid) REFERENCES podium_core.pd_user(nid); -- -- Name: pd_workorder pd_work_order_entity_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workorder ADD CONSTRAINT pd_work_order_entity_fk FOREIGN KEY (entity_nid) REFERENCES podium_core.pd_entity(nid); -- -- Name: pd_workorder pd_work_order_source_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workorder ADD CONSTRAINT pd_work_order_source_fk FOREIGN KEY (source_nid) REFERENCES podium_core.pd_source(nid); -- -- Name: pd_workflow_execution_wo pd_workflow_execution_workorder_graph_nid_fkey; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workflow_execution_wo ADD CONSTRAINT pd_workflow_execution_workorder_graph_nid_fkey FOREIGN KEY (graph_nid) REFERENCES podium_core.pd_workflow_graph(nid); -- -- Name: pd_workorder_prop pd_workorder_prop_workorder_fk; Type: FK CONSTRAINT; Schema: podium_core; Owner: podium_md -- ALTER TABLE ONLY podium_core.pd_workorder_prop ADD CONSTRAINT pd_workorder_prop_workorder_fk FOREIGN KEY (workorder_nid) REFERENCES podium_core.pd_workorder(nid); -- -- Name: pd_report_query pd_report_fkey; Type: FK CONSTRAINT; Schema: podium_reporting; Owner: podium_md -- ALTER TABLE ONLY podium_reporting.pd_report_query ADD CONSTRAINT pd_report_fkey FOREIGN KEY (report_id) REFERENCES podium_reporting.pd_report(nid); -- -- PostgreSQL database dump complete --