databricks-cli/bundle/run
shreyas-goenka df0293510e
Fixes for pipeline progress logging (#330)
## Changes
1. Events are now printed in chronological order
2. Simplify events rendering by removing update/flow name. This makes it
more consistent with the web UI too
3. Switch to server side filtering on update_id

## Tests
Manually

Happy run:
```
shreyas.goenka@THW32HFW6T pipeline-progress % bricks bundle run foo
2023-04-12T20:00:22.879Z update_progress INFO "Update e1becc is INITIALIZING."
2023-04-12T20:00:22.906Z update_progress INFO "Update e1becc is SETTING_UP_TABLES."
2023-04-12T20:00:24.496Z update_progress INFO "Update e1becc is RUNNING."
2023-04-12T20:00:24.497Z flow_progress   INFO "Flow 'sales_orders_raw' is QUEUED."
2023-04-12T20:00:24.586Z flow_progress   INFO "Flow 'sales_orders_raw' is STARTING."
2023-04-12T20:00:24.748Z flow_progress   INFO "Flow 'sales_orders_raw' is RUNNING."
2023-04-12T20:00:26.672Z flow_progress   INFO "Flow 'sales_orders_raw' has COMPLETED."
2023-04-12T20:00:27.753Z update_progress INFO "Update e1becc is COMPLETED."
```

Sad run:
```
shreyas.goenka@THW32HFW6T pipeline-progress % bricks bundle run foo
2023-04-12T20:02:07.764Z update_progress INFO "Update 04b80e is INITIALIZING."
2023-04-12T20:02:07.870Z update_progress ERROR "Update 04b80e is FAILED."
Error: update failed
```
2023-04-14 12:21:44 +02:00
..
pipeline Fixes for pipeline progress logging (#330) 2023-04-14 12:21:44 +02:00
job.go Add bundle destroy command (#300) 2023-04-06 12:54:58 +02:00
job_output.go Fix output panic (#311) 2023-04-05 15:55:24 +02:00
job_output_test.go Add job run output logging (#260) 2023-03-21 16:25:18 +01:00
job_progress_event.go Add progress logs for job runs (#276) 2023-03-29 14:58:09 +02:00
job_progress_event_test.go Add progress logs for job runs (#276) 2023-03-29 14:58:09 +02:00
keys.go Complete positional argument to bundle run (#220) 2023-02-20 21:55:06 +01:00
keys_test.go Complete positional argument to bundle run (#220) 2023-02-20 21:55:06 +01:00
options.go Add progress logs for job runs (#276) 2023-03-29 14:58:09 +02:00
pipeline.go Add progress logging event for pipeline update URLs (#331) 2023-04-14 11:11:30 +02:00
runner.go Add progress logs for job runs (#276) 2023-03-29 14:58:09 +02:00
runner_test.go Run command must always take a single argument (#156) 2022-12-22 16:19:38 +01:00
task_output.go Add json tags to output fields (#269) 2023-03-21 18:38:11 +01:00
task_output_test.go Add job run output logging (#260) 2023-03-21 16:25:18 +01:00