Jeremy Cohen

Results 250 comments of Jeremy Cohen

> How are you handling size the split of the dbt `log` files? This is much simpler to do, because every log message is self-contained, and their inter-relationship is expressed...

This is a fairly old issue. We are finally making progress in this direction, providing a programmatic API into dbt Core: https://github.com/dbt-labs/dbt-core/issues/5527 The ability to invoke dbt as a module...

@topofstack Thanks for opening! I don't think the issue could be just one of dbt renaming relations across multiple threads, since that's how every `dbt-postgres` invocation is working behind the...

That's right — that's the workaround we've recommended for other folks in the past. If you _know_ that a specific profile field is likely to change frequently, and shouldn't have...

Linking [Slack thread](https://getdbt.slack.com/archives/C50NEBJGG/p1652165754957309) that prompted this issue, for additional context. This exact issue is going to be quite tricky for us to reproduce exactly ourselves, given the reasons @iknox-fa mentioned...

The weird thing is that, even though this code is defined in `dbt-core`, and the same for all adapters, it isn't a behavior we see when running against other databases....

@SatishChGit That's a really good point. I see you're running on `OS: Windows 10`. Maybe...? I fear [there be dragons](https://stackoverflow.com/questions/4606942/why-cant-i-handle-a-keyboardinterrupt-in-python) in these parts

@clrcrl Thanks for opening :) The logs that show up in the original root directory's `logs/dbt.log` include the log events that dbt fires [while being initialized from the CLI](https://github.com/dbt-labs/dbt-core/blob/f988f76fccc1878aaf8d8631c05be3e9104b3b9a/core/dbt/main.py#L221-L234): ```...

@lostmygithubaccount Exactly the right spot! A test warning is being fired as `RunResultError`, which is an [`ErrorLevel`](https://github.com/dbt-labs/dbt-core/blob/1071a4681df91633301fdf23e34de819b66fbeb7/core/dbt/events/types.py#L1644) event type. The test status and message gets set in the `test` task...

@emmyoop @iknox-fa Is the only remaining blocker for this PR a question about how fixture data should be formatted / located in functional tests?