Reuben

Results 77 comments of Reuben

This came up again today in Slack and got me thinking whether or not a wildcard pattern approach would work? ```yml stream_maps: users: '*Name': '"".join("_" + char.lower() if char.isupper() else...

> NB it might still be hard to link to a specific line in the source code. Though, there's a workaround in sphinx-doc/sphinx#1556 that might be worth exploring. I'm not...

> `state_partitioning_keys = []` I haven't really dug into state partitioning - from https://sdk.meltano.com/en/v0.45.4/classes/singer_sdk.Stream.html#singer_sdk.Stream.state_partitioning_keys: > If an empty list is set (_[]_), state will be held in one bookmark per...

As a SDK user, I would like to leverage [stream maps](https://sdk.meltano.com/en/latest/stream_maps.html) from `Stream` classes in a developer-friendly way. Currently, you **can** implement `stream_maps` for a stream, but it requires that...