Mark Sandan
Mark Sandan
+1 For EKS Fargate. We'd like more capabilities to be supported (specifically SYS_PTRACE, DAC_READ_SEARCH) to a container's securityContext. So far it looks like these work: ``` securityContext: capabilities: drop: -...
It looks like the docs are still outdated: https://github.com/awslabs/k8s-cloudwatch-adapter/issues/26.
Any updates?
I opened https://github.com/docker/docs/pull/16385. @sam-thibault Are there any plans to support sharing the IPC namespace with the host? There are use cases where it is desired in order to coordinate access...
A PR would be appreciated! I think there was confusion over which schemas to return.
I believe this is the module you are looking for: https://github.com/zzzeek/sqlalchemy/blob/master/lib/sqlalchemy/ext/declarative/api.py#L286. I would try to reflect the tables one by one and see if that helps: http://docs.sqlalchemy.org/en/latest/core/reflection.html. You can turn...
This dialect uses the `teradata` package in PyTD. We pass extra parameters in the connection string to the OdbcConnection object: https://github.com/Teradata/PyTd/blob/master/teradata/tdodbc.py#L403 You can also try using `teradatasqlalchemy` which no longer...
@ShareDVI `has_table` currently looks at TableKinds in `teradatasqlalchemy`: O - non-partitioned tables T - partitioned tables V - views The Teradata SQLEngine doesn't keep volatile tables in the data dictionary...
See https://github.com/Teradata/sqlalchemy-teradata/wiki/Installation
@prabhu1984 Have you found a solution? The problem is that you are not committing the previous query. See http://docs.sqlalchemy.org/en/latest/core/connections.html#understanding-autocommit.