--
-- PostgreSQL database dump
--

-- Dumped from database version 11.4
-- Dumped by pg_dump version 11.4

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;

SET default_tablespace = '';

SET default_with_oids = false;

--
-- Name: alembic_version; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.alembic_version (
    version_num character varying(32) NOT NULL
);


ALTER TABLE public.alembic_version OWNER TO test;

--
-- Name: event_logs; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.event_logs (
    id integer NOT NULL,
    run_id character varying(255),
    event text NOT NULL,
    dagster_event_type text,
    "timestamp" timestamp without time zone,
    step_key character varying
);


ALTER TABLE public.event_logs OWNER TO test;

--
-- Name: event_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: test
--

CREATE SEQUENCE public.event_logs_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.event_logs_id_seq OWNER TO test;

--
-- Name: event_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: test
--

ALTER SEQUENCE public.event_logs_id_seq OWNED BY public.event_logs.id;


--
-- Name: run_tags; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.run_tags (
    id integer NOT NULL,
    run_id character varying(255),
    key character varying,
    value character varying
);


ALTER TABLE public.run_tags OWNER TO test;

--
-- Name: run_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: test
--

CREATE SEQUENCE public.run_tags_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.run_tags_id_seq OWNER TO test;

--
-- Name: run_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: test
--

ALTER SEQUENCE public.run_tags_id_seq OWNED BY public.run_tags.id;


--
-- Name: runs; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.runs (
    id integer NOT NULL,
    run_id character varying(255),
    pipeline_name character varying,
    status character varying(63),
    run_body character varying,
    create_timestamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    update_timestamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.runs OWNER TO test;

--
-- Name: runs_id_seq; Type: SEQUENCE; Schema: public; Owner: test
--

CREATE SEQUENCE public.runs_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.runs_id_seq OWNER TO test;

--
-- Name: runs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: test
--

ALTER SEQUENCE public.runs_id_seq OWNED BY public.runs.id;


--
-- Name: event_logs id; Type: DEFAULT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.event_logs ALTER COLUMN id SET DEFAULT nextval('public.event_logs_id_seq'::regclass);


--
-- Name: run_tags id; Type: DEFAULT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.run_tags ALTER COLUMN id SET DEFAULT nextval('public.run_tags_id_seq'::regclass);


--
-- Name: runs id; Type: DEFAULT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.runs ALTER COLUMN id SET DEFAULT nextval('public.runs_id_seq'::regclass);


--
-- Data for Name: alembic_version; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.alembic_version (version_num) FROM stdin;
8f8dba68fd3b
\.


--
-- Data for Name: event_logs; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.event_logs (id, run_id, event, dagster_event_type, "timestamp", step_key) FROM stdin;
129	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "dagit_subprocess_init", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "[SubprocessExecutionManager] About to start process for pipeline \\"sleepy_pipeline\\" (run_id: ca7f1e33-526d-4f75-9bc5-3e98da41ab97).", "pipeline_name": "sleepy_pipeline", "solid_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "[SubprocessExecutionManager] About to start process for pipeline \\"sleepy_pipeline\\" (run_id: ca7f1e33-526d-4f75-9bc5-3e98da41ab97).", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": null, "timestamp": 1586206645.187435, "user_message": "[SubprocessExecutionManager] About to start process for pipeline \\"sleepy_pipeline\\" (run_id: ca7f1e33-526d-4f75-9bc5-3e98da41ab97)."}	ENGINE_EVENT	2020-04-06 13:57:25.187435	\N
130	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "dagit_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "9152"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "[SubprocessExecutionManager] Started process for pipeline (pid: 9152).", "pipeline_name": "sleepy_pipeline", "solid_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "[SubprocessExecutionManager] Started process for pipeline (pid: 9152).", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": null, "timestamp": 1586206648.631587, "user_message": "[SubprocessExecutionManager] Started process for pipeline (pid: 9152)."}	ENGINE_EVENT	2020-04-06 13:57:28.631587	\N
131	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of pipeline \\"sleepy_pipeline\\".", "pipeline_name": "sleepy_pipeline", "solid_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - PIPELINE_START - Started execution of pipeline \\"sleepy_pipeline\\".", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": null, "timestamp": 1586206650.959559, "user_message": "Started execution of pipeline \\"sleepy_pipeline\\"."}	PIPELINE_START	2020-04-06 13:57:30.959559	\N
132	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "9152"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['giver.compute', 'sleeper.compute', 'sleeper_2.compute', 'sleeper_3.compute', 'sleeper_4.compute', 'total.compute']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 9152)", "pipeline_name": "sleepy_pipeline", "solid_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - ENGINE_EVENT - Executing steps in process (pid: 9152)\\n event_specific_data = {\\"error\\": null, \\"marker_end\\": null, \\"marker_start\\": null, \\"metadata_entries\\": [[\\"pid\\", null, [\\"9152\\"]], [\\"step_keys\\", null, [\\"['giver.compute', 'sleeper.compute', 'sleeper_2.compute', 'sleeper_3.compute', 'sleeper_4.compute', 'total.compute']\\"]]]}", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": null, "timestamp": 1586206650.996227, "user_message": "Executing steps in process (pid: 9152)"}	ENGINE_EVENT	2020-04-06 13:57:30.996227	\N
133	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "giver", "solid_definition": "giver", "step_key": "giver.compute"}, "message": "Started execution of step \\"giver.compute\\".", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "giver", "name": "giver", "parent": null}, "step_key": "giver.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_START - Started execution of step \\"giver.compute\\".\\n               solid = \\"giver\\"\\n    solid_definition = \\"giver\\"\\n            step_key = \\"giver.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "giver.compute", "timestamp": 1586206651.031816, "user_message": "Started execution of step \\"giver.compute\\"."}	STEP_START	2020-04-06 13:57:31.031816	\N
134	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "intermediate_materialization": null, "step_output_handle": {"__class__": "StepOutputHandle", "output_name": "out_1", "step_key": "giver.compute"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "out_1", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "giver", "solid_definition": "giver", "step_key": "giver.compute"}, "message": "Yielded output \\"out_1\\" of type \\"None\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "giver", "name": "giver", "parent": null}, "step_key": "giver.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_OUTPUT - Yielded output \\"out_1\\" of type \\"None\\". (Type check passed).\\n event_specific_data = {\\"intermediate_materialization\\": null, \\"step_output_handle\\": [\\"giver.compute\\", \\"out_1\\"], \\"type_check_data\\": [true, \\"out_1\\", null, []]}\\n               solid = \\"giver\\"\\n    solid_definition = \\"giver\\"\\n            step_key = \\"giver.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "giver.compute", "timestamp": 1586206651.057488, "user_message": "Yielded output \\"out_1\\" of type \\"None\\". (Type check passed)."}	STEP_OUTPUT	2020-04-06 13:57:31.057488	\N
146	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "LogMessageRecord", "dagster_event": null, "error_info": null, "level": 20, "message": "system - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - Sleeping for 1 seconds\\n               solid = \\"sleeper_2\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_2.compute\\"", "pipeline_name": null, "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_2.compute", "timestamp": 1586206653.40141, "user_message": "Sleeping for 1 seconds"}	\N	2020-04-06 13:57:33.40141	\N
135	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "intermediate_materialization": null, "step_output_handle": {"__class__": "StepOutputHandle", "output_name": "out_2", "step_key": "giver.compute"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "out_2", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "giver", "solid_definition": "giver", "step_key": "giver.compute"}, "message": "Yielded output \\"out_2\\" of type \\"None\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "giver", "name": "giver", "parent": null}, "step_key": "giver.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_OUTPUT - Yielded output \\"out_2\\" of type \\"None\\". (Type check passed).\\n event_specific_data = {\\"intermediate_materialization\\": null, \\"step_output_handle\\": [\\"giver.compute\\", \\"out_2\\"], \\"type_check_data\\": [true, \\"out_2\\", null, []]}\\n               solid = \\"giver\\"\\n    solid_definition = \\"giver\\"\\n            step_key = \\"giver.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "giver.compute", "timestamp": 1586206651.08642, "user_message": "Yielded output \\"out_2\\" of type \\"None\\". (Type check passed)."}	STEP_OUTPUT	2020-04-06 13:57:31.08642	\N
136	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "intermediate_materialization": null, "step_output_handle": {"__class__": "StepOutputHandle", "output_name": "out_3", "step_key": "giver.compute"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "out_3", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "giver", "solid_definition": "giver", "step_key": "giver.compute"}, "message": "Yielded output \\"out_3\\" of type \\"None\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "giver", "name": "giver", "parent": null}, "step_key": "giver.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_OUTPUT - Yielded output \\"out_3\\" of type \\"None\\". (Type check passed).\\n event_specific_data = {\\"intermediate_materialization\\": null, \\"step_output_handle\\": [\\"giver.compute\\", \\"out_3\\"], \\"type_check_data\\": [true, \\"out_3\\", null, []]}\\n               solid = \\"giver\\"\\n    solid_definition = \\"giver\\"\\n            step_key = \\"giver.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "giver.compute", "timestamp": 1586206651.113645, "user_message": "Yielded output \\"out_3\\" of type \\"None\\". (Type check passed)."}	STEP_OUTPUT	2020-04-06 13:57:31.113645	\N
137	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "intermediate_materialization": null, "step_output_handle": {"__class__": "StepOutputHandle", "output_name": "out_4", "step_key": "giver.compute"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "out_4", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "giver", "solid_definition": "giver", "step_key": "giver.compute"}, "message": "Yielded output \\"out_4\\" of type \\"None\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "giver", "name": "giver", "parent": null}, "step_key": "giver.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_OUTPUT - Yielded output \\"out_4\\" of type \\"None\\". (Type check passed).\\n event_specific_data = {\\"intermediate_materialization\\": null, \\"step_output_handle\\": [\\"giver.compute\\", \\"out_4\\"], \\"type_check_data\\": [true, \\"out_4\\", null, []]}\\n               solid = \\"giver\\"\\n    solid_definition = \\"giver\\"\\n            step_key = \\"giver.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "giver.compute", "timestamp": 1586206651.131087, "user_message": "Yielded output \\"out_4\\" of type \\"None\\". (Type check passed)."}	STEP_OUTPUT	2020-04-06 13:57:31.131087	\N
138	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 90.50145700166468}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "giver", "solid_definition": "giver", "step_key": "giver.compute"}, "message": "Finished execution of step \\"giver.compute\\" in 90ms.", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "giver", "name": "giver", "parent": null}, "step_key": "giver.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_SUCCESS - Finished execution of step \\"giver.compute\\" in 90ms.\\n event_specific_data = {\\"duration_ms\\": 90.50145700166468}\\n               solid = \\"giver\\"\\n    solid_definition = \\"giver\\"\\n            step_key = \\"giver.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "giver.compute", "timestamp": 1586206651.1460469, "user_message": "Finished execution of step \\"giver.compute\\" in 90ms."}	STEP_SUCCESS	2020-04-06 13:57:31.146047	\N
139	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper", "solid_definition": "sleeper", "step_key": "sleeper.compute"}, "message": "Started execution of step \\"sleeper.compute\\".", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper", "parent": null}, "step_key": "sleeper.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_START - Started execution of step \\"sleeper.compute\\".\\n               solid = \\"sleeper\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper.compute", "timestamp": 1586206651.930523, "user_message": "Started execution of step \\"sleeper.compute\\"."}	STEP_START	2020-04-06 13:57:31.930523	\N
140	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepInputData", "input_name": "units", "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "units", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_INPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper", "solid_definition": "sleeper", "step_key": "sleeper.compute"}, "message": "Got input \\"units\\" of type \\"None\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper", "parent": null}, "step_key": "sleeper.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_INPUT - Got input \\"units\\" of type \\"None\\". (Type check passed).\\n event_specific_data = {\\"input_name\\": \\"units\\", \\"type_check_data\\": [true, \\"units\\", null, []]}\\n               solid = \\"sleeper\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper.compute", "timestamp": 1586206651.950648, "user_message": "Got input \\"units\\" of type \\"None\\". (Type check passed)."}	STEP_INPUT	2020-04-06 13:57:31.950648	\N
141	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "LogMessageRecord", "dagster_event": null, "error_info": null, "level": 20, "message": "system - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - Sleeping for 1 seconds\\n               solid = \\"sleeper\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper.compute\\"", "pipeline_name": null, "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper.compute", "timestamp": 1586206652.049419, "user_message": "Sleeping for 1 seconds"}	\N	2020-04-06 13:57:32.049419	\N
142	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "intermediate_materialization": null, "step_output_handle": {"__class__": "StepOutputHandle", "output_name": "total", "step_key": "sleeper.compute"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "total", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper", "solid_definition": "sleeper", "step_key": "sleeper.compute"}, "message": "Yielded output \\"total\\" of type \\"Int\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper", "parent": null}, "step_key": "sleeper.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_OUTPUT - Yielded output \\"total\\" of type \\"Int\\". (Type check passed).\\n event_specific_data = {\\"intermediate_materialization\\": null, \\"step_output_handle\\": [\\"sleeper.compute\\", \\"total\\"], \\"type_check_data\\": [true, \\"total\\", null, []]}\\n               solid = \\"sleeper\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper.compute", "timestamp": 1586206653.076192, "user_message": "Yielded output \\"total\\" of type \\"Int\\". (Type check passed)."}	STEP_OUTPUT	2020-04-06 13:57:33.076192	\N
143	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 1044.7476819972508}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper", "solid_definition": "sleeper", "step_key": "sleeper.compute"}, "message": "Finished execution of step \\"sleeper.compute\\" in 1.04s.", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper", "parent": null}, "step_key": "sleeper.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_SUCCESS - Finished execution of step \\"sleeper.compute\\" in 1.04s.\\n event_specific_data = {\\"duration_ms\\": 1044.7476819972508}\\n               solid = \\"sleeper\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper.compute", "timestamp": 1586206653.093295, "user_message": "Finished execution of step \\"sleeper.compute\\" in 1.04s."}	STEP_SUCCESS	2020-04-06 13:57:33.093295	\N
144	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper_2", "solid_definition": "sleeper", "step_key": "sleeper_2.compute"}, "message": "Started execution of step \\"sleeper_2.compute\\".", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper_2", "parent": null}, "step_key": "sleeper_2.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_START - Started execution of step \\"sleeper_2.compute\\".\\n               solid = \\"sleeper_2\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_2.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_2.compute", "timestamp": 1586206653.239264, "user_message": "Started execution of step \\"sleeper_2.compute\\"."}	STEP_START	2020-04-06 13:57:33.239264	\N
145	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepInputData", "input_name": "units", "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "units", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_INPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper_2", "solid_definition": "sleeper", "step_key": "sleeper_2.compute"}, "message": "Got input \\"units\\" of type \\"None\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper_2", "parent": null}, "step_key": "sleeper_2.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_INPUT - Got input \\"units\\" of type \\"None\\". (Type check passed).\\n event_specific_data = {\\"input_name\\": \\"units\\", \\"type_check_data\\": [true, \\"units\\", null, []]}\\n               solid = \\"sleeper_2\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_2.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_2.compute", "timestamp": 1586206653.367224, "user_message": "Got input \\"units\\" of type \\"None\\". (Type check passed)."}	STEP_INPUT	2020-04-06 13:57:33.367224	\N
147	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "intermediate_materialization": null, "step_output_handle": {"__class__": "StepOutputHandle", "output_name": "total", "step_key": "sleeper_2.compute"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "total", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper_2", "solid_definition": "sleeper", "step_key": "sleeper_2.compute"}, "message": "Yielded output \\"total\\" of type \\"Int\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper_2", "parent": null}, "step_key": "sleeper_2.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_OUTPUT - Yielded output \\"total\\" of type \\"Int\\". (Type check passed).\\n event_specific_data = {\\"intermediate_materialization\\": null, \\"step_output_handle\\": [\\"sleeper_2.compute\\", \\"total\\"], \\"type_check_data\\": [true, \\"total\\", null, []]}\\n               solid = \\"sleeper_2\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_2.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_2.compute", "timestamp": 1586206654.429336, "user_message": "Yielded output \\"total\\" of type \\"Int\\". (Type check passed)."}	STEP_OUTPUT	2020-04-06 13:57:34.429336	\N
148	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 1047.2058140003355}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper_2", "solid_definition": "sleeper", "step_key": "sleeper_2.compute"}, "message": "Finished execution of step \\"sleeper_2.compute\\" in 1.05s.", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper_2", "parent": null}, "step_key": "sleeper_2.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_SUCCESS - Finished execution of step \\"sleeper_2.compute\\" in 1.05s.\\n event_specific_data = {\\"duration_ms\\": 1047.2058140003355}\\n               solid = \\"sleeper_2\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_2.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_2.compute", "timestamp": 1586206654.447701, "user_message": "Finished execution of step \\"sleeper_2.compute\\" in 1.05s."}	STEP_SUCCESS	2020-04-06 13:57:34.447701	\N
149	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper_3", "solid_definition": "sleeper", "step_key": "sleeper_3.compute"}, "message": "Started execution of step \\"sleeper_3.compute\\".", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper_3", "parent": null}, "step_key": "sleeper_3.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_START - Started execution of step \\"sleeper_3.compute\\".\\n               solid = \\"sleeper_3\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_3.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_3.compute", "timestamp": 1586206654.571033, "user_message": "Started execution of step \\"sleeper_3.compute\\"."}	STEP_START	2020-04-06 13:57:34.571033	\N
150	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepInputData", "input_name": "units", "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "units", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_INPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper_3", "solid_definition": "sleeper", "step_key": "sleeper_3.compute"}, "message": "Got input \\"units\\" of type \\"None\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper_3", "parent": null}, "step_key": "sleeper_3.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_INPUT - Got input \\"units\\" of type \\"None\\". (Type check passed).\\n event_specific_data = {\\"input_name\\": \\"units\\", \\"type_check_data\\": [true, \\"units\\", null, []]}\\n               solid = \\"sleeper_3\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_3.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_3.compute", "timestamp": 1586206654.590395, "user_message": "Got input \\"units\\" of type \\"None\\". (Type check passed)."}	STEP_INPUT	2020-04-06 13:57:34.590395	\N
151	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "LogMessageRecord", "dagster_event": null, "error_info": null, "level": 20, "message": "system - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - Sleeping for 1 seconds\\n               solid = \\"sleeper_3\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_3.compute\\"", "pipeline_name": null, "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_3.compute", "timestamp": 1586206654.6369321, "user_message": "Sleeping for 1 seconds"}	\N	2020-04-06 13:57:34.636932	\N
152	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "intermediate_materialization": null, "step_output_handle": {"__class__": "StepOutputHandle", "output_name": "total", "step_key": "sleeper_3.compute"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "total", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper_3", "solid_definition": "sleeper", "step_key": "sleeper_3.compute"}, "message": "Yielded output \\"total\\" of type \\"Int\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper_3", "parent": null}, "step_key": "sleeper_3.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_OUTPUT - Yielded output \\"total\\" of type \\"Int\\". (Type check passed).\\n event_specific_data = {\\"intermediate_materialization\\": null, \\"step_output_handle\\": [\\"sleeper_3.compute\\", \\"total\\"], \\"type_check_data\\": [true, \\"total\\", null, []]}\\n               solid = \\"sleeper_3\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_3.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_3.compute", "timestamp": 1586206655.665855, "user_message": "Yielded output \\"total\\" of type \\"Int\\". (Type check passed)."}	STEP_OUTPUT	2020-04-06 13:57:35.665855	\N
153	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 1048.0694169964409}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper_3", "solid_definition": "sleeper", "step_key": "sleeper_3.compute"}, "message": "Finished execution of step \\"sleeper_3.compute\\" in 1.05s.", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper_3", "parent": null}, "step_key": "sleeper_3.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_SUCCESS - Finished execution of step \\"sleeper_3.compute\\" in 1.05s.\\n event_specific_data = {\\"duration_ms\\": 1048.0694169964409}\\n               solid = \\"sleeper_3\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_3.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_3.compute", "timestamp": 1586206655.6838331, "user_message": "Finished execution of step \\"sleeper_3.compute\\" in 1.05s."}	STEP_SUCCESS	2020-04-06 13:57:35.683833	\N
154	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper_4", "solid_definition": "sleeper", "step_key": "sleeper_4.compute"}, "message": "Started execution of step \\"sleeper_4.compute\\".", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper_4", "parent": null}, "step_key": "sleeper_4.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_START - Started execution of step \\"sleeper_4.compute\\".\\n               solid = \\"sleeper_4\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_4.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_4.compute", "timestamp": 1586206655.860644, "user_message": "Started execution of step \\"sleeper_4.compute\\"."}	STEP_START	2020-04-06 13:57:35.860644	\N
155	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepInputData", "input_name": "units", "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "units", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_INPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper_4", "solid_definition": "sleeper", "step_key": "sleeper_4.compute"}, "message": "Got input \\"units\\" of type \\"None\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper_4", "parent": null}, "step_key": "sleeper_4.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_INPUT - Got input \\"units\\" of type \\"None\\". (Type check passed).\\n event_specific_data = {\\"input_name\\": \\"units\\", \\"type_check_data\\": [true, \\"units\\", null, []]}\\n               solid = \\"sleeper_4\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_4.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_4.compute", "timestamp": 1586206655.9226, "user_message": "Got input \\"units\\" of type \\"None\\". (Type check passed)."}	STEP_INPUT	2020-04-06 13:57:35.9226	\N
156	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "LogMessageRecord", "dagster_event": null, "error_info": null, "level": 20, "message": "system - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - Sleeping for 1 seconds\\n               solid = \\"sleeper_4\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_4.compute\\"", "pipeline_name": null, "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_4.compute", "timestamp": 1586206655.9414442, "user_message": "Sleeping for 1 seconds"}	\N	2020-04-06 13:57:35.941444	\N
157	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "intermediate_materialization": null, "step_output_handle": {"__class__": "StepOutputHandle", "output_name": "total", "step_key": "sleeper_4.compute"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "total", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper_4", "solid_definition": "sleeper", "step_key": "sleeper_4.compute"}, "message": "Yielded output \\"total\\" of type \\"Int\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper_4", "parent": null}, "step_key": "sleeper_4.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_OUTPUT - Yielded output \\"total\\" of type \\"Int\\". (Type check passed).\\n event_specific_data = {\\"intermediate_materialization\\": null, \\"step_output_handle\\": [\\"sleeper_4.compute\\", \\"total\\"], \\"type_check_data\\": [true, \\"total\\", null, []]}\\n               solid = \\"sleeper_4\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_4.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_4.compute", "timestamp": 1586206656.961857, "user_message": "Yielded output \\"total\\" of type \\"Int\\". (Type check passed)."}	STEP_OUTPUT	2020-04-06 13:57:36.961857	\N
158	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 1039.2638389967033}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "sleeper_4", "solid_definition": "sleeper", "step_key": "sleeper_4.compute"}, "message": "Finished execution of step \\"sleeper_4.compute\\" in 1.04s.", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "sleeper", "name": "sleeper_4", "parent": null}, "step_key": "sleeper_4.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_SUCCESS - Finished execution of step \\"sleeper_4.compute\\" in 1.04s.\\n event_specific_data = {\\"duration_ms\\": 1039.2638389967033}\\n               solid = \\"sleeper_4\\"\\n    solid_definition = \\"sleeper\\"\\n            step_key = \\"sleeper_4.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "sleeper_4.compute", "timestamp": 1586206656.980003, "user_message": "Finished execution of step \\"sleeper_4.compute\\" in 1.04s."}	STEP_SUCCESS	2020-04-06 13:57:36.980003	\N
159	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "total", "solid_definition": "total", "step_key": "total.compute"}, "message": "Started execution of step \\"total.compute\\".", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "total", "name": "total", "parent": null}, "step_key": "total.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_START - Started execution of step \\"total.compute\\".\\n               solid = \\"total\\"\\n    solid_definition = \\"total\\"\\n            step_key = \\"total.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "total.compute", "timestamp": 1586206657.115747, "user_message": "Started execution of step \\"total.compute\\"."}	STEP_START	2020-04-06 13:57:37.115747	\N
160	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepInputData", "input_name": "in_1", "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "in_1", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_INPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "total", "solid_definition": "total", "step_key": "total.compute"}, "message": "Got input \\"in_1\\" of type \\"Int\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "total", "name": "total", "parent": null}, "step_key": "total.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_INPUT - Got input \\"in_1\\" of type \\"Int\\". (Type check passed).\\n event_specific_data = {\\"input_name\\": \\"in_1\\", \\"type_check_data\\": [true, \\"in_1\\", null, []]}\\n               solid = \\"total\\"\\n    solid_definition = \\"total\\"\\n            step_key = \\"total.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "total.compute", "timestamp": 1586206657.146077, "user_message": "Got input \\"in_1\\" of type \\"Int\\". (Type check passed)."}	STEP_INPUT	2020-04-06 13:57:37.146077	\N
161	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepInputData", "input_name": "in_2", "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "in_2", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_INPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "total", "solid_definition": "total", "step_key": "total.compute"}, "message": "Got input \\"in_2\\" of type \\"Int\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "total", "name": "total", "parent": null}, "step_key": "total.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_INPUT - Got input \\"in_2\\" of type \\"Int\\". (Type check passed).\\n event_specific_data = {\\"input_name\\": \\"in_2\\", \\"type_check_data\\": [true, \\"in_2\\", null, []]}\\n               solid = \\"total\\"\\n    solid_definition = \\"total\\"\\n            step_key = \\"total.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "total.compute", "timestamp": 1586206657.1751611, "user_message": "Got input \\"in_2\\" of type \\"Int\\". (Type check passed)."}	STEP_INPUT	2020-04-06 13:57:37.175161	\N
162	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepInputData", "input_name": "in_3", "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "in_3", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_INPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "total", "solid_definition": "total", "step_key": "total.compute"}, "message": "Got input \\"in_3\\" of type \\"Int\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "total", "name": "total", "parent": null}, "step_key": "total.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_INPUT - Got input \\"in_3\\" of type \\"Int\\". (Type check passed).\\n event_specific_data = {\\"input_name\\": \\"in_3\\", \\"type_check_data\\": [true, \\"in_3\\", null, []]}\\n               solid = \\"total\\"\\n    solid_definition = \\"total\\"\\n            step_key = \\"total.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "total.compute", "timestamp": 1586206657.194197, "user_message": "Got input \\"in_3\\" of type \\"Int\\". (Type check passed)."}	STEP_INPUT	2020-04-06 13:57:37.194197	\N
163	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepInputData", "input_name": "in_4", "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "in_4", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_INPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "total", "solid_definition": "total", "step_key": "total.compute"}, "message": "Got input \\"in_4\\" of type \\"Int\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "total", "name": "total", "parent": null}, "step_key": "total.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_INPUT - Got input \\"in_4\\" of type \\"Int\\". (Type check passed).\\n event_specific_data = {\\"input_name\\": \\"in_4\\", \\"type_check_data\\": [true, \\"in_4\\", null, []]}\\n               solid = \\"total\\"\\n    solid_definition = \\"total\\"\\n            step_key = \\"total.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "total.compute", "timestamp": 1586206657.210583, "user_message": "Got input \\"in_4\\" of type \\"Int\\". (Type check passed)."}	STEP_INPUT	2020-04-06 13:57:37.210583	\N
164	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "intermediate_materialization": null, "step_output_handle": {"__class__": "StepOutputHandle", "output_name": "result", "step_key": "total.compute"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "total", "solid_definition": "total", "step_key": "total.compute"}, "message": "Yielded output \\"result\\" of type \\"Int\\". (Type check passed).", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "total", "name": "total", "parent": null}, "step_key": "total.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_OUTPUT - Yielded output \\"result\\" of type \\"Int\\". (Type check passed).\\n event_specific_data = {\\"intermediate_materialization\\": null, \\"step_output_handle\\": [\\"total.compute\\", \\"result\\"], \\"type_check_data\\": [true, \\"result\\", null, []]}\\n               solid = \\"total\\"\\n    solid_definition = \\"total\\"\\n            step_key = \\"total.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "total.compute", "timestamp": 1586206657.226156, "user_message": "Yielded output \\"result\\" of type \\"Int\\". (Type check passed)."}	STEP_OUTPUT	2020-04-06 13:57:37.226156	\N
165	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 16.04258899897104}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline": "sleepy_pipeline", "solid": "total", "solid_definition": "total", "step_key": "total.compute"}, "message": "Finished execution of step \\"total.compute\\" in 16ms.", "pipeline_name": "sleepy_pipeline", "solid_handle": {"__class__": "SolidHandle", "definition_name": "total", "name": "total", "parent": null}, "step_key": "total.compute", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - STEP_SUCCESS - Finished execution of step \\"total.compute\\" in 16ms.\\n event_specific_data = {\\"duration_ms\\": 16.04258899897104}\\n               solid = \\"total\\"\\n    solid_definition = \\"total\\"\\n            step_key = \\"total.compute\\"", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": "total.compute", "timestamp": 1586206657.2409759, "user_message": "Finished execution of step \\"total.compute\\" in 16ms."}	STEP_SUCCESS	2020-04-06 13:57:37.240976	\N
166	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "9152"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['giver.compute', 'sleeper.compute', 'sleeper_2.compute', 'sleeper_3.compute', 'sleeper_4.compute', 'total.compute']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 9152) in 6.33s", "pipeline_name": "sleepy_pipeline", "solid_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - ENGINE_EVENT - Finished steps in process (pid: 9152) in 6.33s\\n event_specific_data = {\\"error\\": null, \\"marker_end\\": null, \\"marker_start\\": null, \\"metadata_entries\\": [[\\"pid\\", null, [\\"9152\\"]], [\\"step_keys\\", null, [\\"['giver.compute', 'sleeper.compute', 'sleeper_2.compute', 'sleeper_3.compute', 'sleeper_4.compute', 'total.compute']\\"]]]}", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": null, "timestamp": 1586206657.343612, "user_message": "Finished steps in process (pid: 9152) in 6.33s"}	ENGINE_EVENT	2020-04-06 13:57:37.343612	\N
167	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of pipeline \\"sleepy_pipeline\\".", "pipeline_name": "sleepy_pipeline", "solid_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "sleepy_pipeline - ca7f1e33-526d-4f75-9bc5-3e98da41ab97 - PIPELINE_SUCCESS - Finished execution of pipeline \\"sleepy_pipeline\\".", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": null, "timestamp": 1586206657.363752, "user_message": "Finished execution of pipeline \\"sleepy_pipeline\\"."}	PIPELINE_SUCCESS	2020-04-06 13:57:37.363752	\N
168	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	{"__class__": "DagsterEventRecord", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "[SubprocessExecutionManager] Process for pipeline exited (pid: 9152).", "pipeline_name": "sleepy_pipeline", "solid_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "[SubprocessExecutionManager] Process for pipeline exited (pid: 9152).", "pipeline_name": "sleepy_pipeline", "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "step_key": null, "timestamp": 1586206657.396379, "user_message": "[SubprocessExecutionManager] Process for pipeline exited (pid: 9152)."}	ENGINE_EVENT	2020-04-06 13:57:37.396379	\N
\.


--
-- Data for Name: run_tags; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.run_tags (id, run_id, key, value) FROM stdin;
\.


--
-- Data for Name: runs; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.runs (id, run_id, pipeline_name, status, run_body, create_timestamp, update_timestamp) FROM stdin;
12	ca7f1e33-526d-4f75-9bc5-3e98da41ab97	sleepy_pipeline	SUCCESS	{"__class__": "PipelineRun", "environment_dict": {}, "mode": "default", "pipeline_name": "sleepy_pipeline", "previous_run_id": null, "run_id": "ca7f1e33-526d-4f75-9bc5-3e98da41ab97", "selector": {"__class__": "ExecutionSelector", "name": "sleepy_pipeline", "solid_subset": null}, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {}}	2020-04-06 13:57:24.855019	2020-04-06 13:57:37.386657
\.


--
-- Name: event_logs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: test
--

SELECT pg_catalog.setval('public.event_logs_id_seq', 168, true);


--
-- Name: run_tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: test
--

SELECT pg_catalog.setval('public.run_tags_id_seq', 11, true);


--
-- Name: runs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: test
--

SELECT pg_catalog.setval('public.runs_id_seq', 12, true);


--
-- Name: alembic_version alembic_version_pkc; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.alembic_version
    ADD CONSTRAINT alembic_version_pkc PRIMARY KEY (version_num);


--
-- Name: event_logs event_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.event_logs
    ADD CONSTRAINT event_logs_pkey PRIMARY KEY (id);


--
-- Name: run_tags run_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.run_tags
    ADD CONSTRAINT run_tags_pkey PRIMARY KEY (id);


--
-- Name: runs runs_pkey; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.runs
    ADD CONSTRAINT runs_pkey PRIMARY KEY (id);


--
-- Name: runs runs_run_id_key; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.runs
    ADD CONSTRAINT runs_run_id_key UNIQUE (run_id);


--
-- Name: run_tags run_tags_run_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.run_tags
    ADD CONSTRAINT run_tags_run_id_fkey FOREIGN KEY (run_id) REFERENCES public.runs(run_id) ON DELETE CASCADE;


--
-- PostgreSQL database dump complete
--

