obataku

Results 16 comments of obataku

@deel77: > I've had similar issues with Serverless RDS and Data API, we were using `knex` and `knex-aurora-data-api-client` NPM driver, which is using this `data-api-client`. We were constantly hitting Data...

cc @bashshak @nitesmeh and whomever else from the RDS Data API team; also, as an aside, does the Data API internally leverage RDS Proxy at all? or does it use...

bump--any word on this being addressed? @medikoo

@asvetlov consider using aiojobs with aiohttp.web; if one interrupts `run_app` by pressing Ctrl+C, then the event loop is halted & it will [cancel all existing tasks](https://github.com/aio-libs/aiohttp/blob/v3.6.2/aiohttp/web.py#L437) (incl. our scheduler's `_failed_task`)...

I do something similar: def atomic(coro): """ A connexion-friendly decorator modelled after aiojobs.aiohttp.atomic """ @wraps(coro) async def wrapper(*args, **kwargs): request = get_current_request() job = await spawn(request, coro(*args, **kwargs)) return await...

yes, I understand all that--but when using a library like connexion on top of aiohttp, the handlers no longer have such a restrictive signature (the library does automatic parameter injection),...

as you noted, `runtimePlatform` is defined at the _task definition_ level, **not** in the container definitions themselves https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_TaskDefinition.html#ECS-Type-TaskDefinition-runtimePlatform example configuring it on an `aws_ecs_task_definition` resource here: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_task_definition#example-using-runtime_platform-and-fargate >```tf >resource "aws_ecs_task_definition"...

https://github.com/cloudposse/terraform-aws-ecs-container-definition/pull/154 should resolve

@junnplus did it formerly release IP on container exit? i.e. is this a breaking change in behavior or has it always been like this, to your knowledge?

@junnplus did it formerly release IP on container exit? i.e. is this a breaking change in behavior or has it always been like this, to your knowledge?