MattTriano / analytics_data_where_house

An analytics engineering sandbox focusing on real estates prices in Cook County, IL
https://docs.analytics-data-where-house.dev/
GNU Affero General Public License v3.0
9 stars 0 forks source link

Remove references to the deprecated and obsoleted py-utils container #180

Closed MattTriano closed 1 year ago

MattTriano commented 1 year ago

Also address any mentions in the documentation (grep findings listed below)

grep -r -n "py-utils" --include=*.md .
./docs/dev_guide/validation/data_source_setup.md:5:start the `py-utils` service's container and `cd` into the `great_expectations/` directory
./docs/dev_guide/validation/data_assistant_workflow.md:3:To use `great_expectations`'s Data Assistant to generate a suite of expectations for a data set interactively, first start the `py-utils` service's container and `cd` into the `great_expectations/` directory
./docs/dev_guide/validation/manually_setting_expectations.md:3:To manually develop your suite of expectations, get a shell in the `py-utils` container and `cd` into the `great_expectations/` directory
./docs/dev_guide/validation/manually_setting_expectations.md:7:docker compose up -d py-utils
./docs/dev_guide/validation/manually_setting_expectations.md:8:cc_real_estate_dbt_airflow_ge_py-utils_1 is up-to-date
./docs/dev_guide/validation/manually_setting_expectations.md:9:docker compose exec py-utils /bin/bash
./docs/dev_guide/making_expectation_suites.md:5:Note: If you've just generated your suite of expectations (ie if the notebook server is still up), shut down the notebook server without exiting the `py-utils` container. If things don't shut down nicely, enter `jupyter notebook stop 18888` to free up port 18888.
./docs/dev_guide/making_expectation_suites.md:7:In the `py-utils` container, you can generate a new checkpoint via `great_expectations checkpoint new <some_descriptive_name>`. Checkpoints can run one or more suite of expectations, so this project will name checkpoints via the convention `data_set_schema.data_set_table_name`. So for the expectation suite generated in the [above section](#generating-a-suite-of-expectations-for-a-data-set), command below will name the checkpoint and start up a jupyter server
./docs/dev_guide/making_expectation_suites.md:54:That data docs page will show you which expectations failed and allow you to review all of the expectations. You can manualy edit those expectations in the suite's `.json` file, or run `great_expectations suite edit data_raw.cook_county_parcel_sales.warning` (replace the suite as appropriate) at the command line in the `py-utils` container to interactively edit the suite.