Phil Hachey

Results 3 comments of Phil Hachey

For those trying to deploy this on Kubernetes I found the "right mix" of dependencies that lets me create Snowflake datasources. Here's what my bootstrapScript block looks like: ``` bootstrapScript:...

Yeah that describe_table is killing my app performance too (running in Lambda). This comes from `Model._get_meta_data`. Is there any way we can specify this meta info without doing DescribeTable? I've...

Yeah I ended up overriding the `_get_meta_data` classmethod ``` @classmethod def _get_meta_data(cls): if cls._meta_table is None: cls._meta_table = MetaTable(describe_table.generate()) return cls._meta_table ``` where `describe_table.generate()` returns the describe_table data. Then I...