-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Serve][Core] Fix serve_long_running memory leak by fixing GCS pubsub…
… asyncio task leak (#29187) (#29220) Signed-off-by: Ricky Xu <[email protected]>
- Loading branch information
1 parent
a0ba4f2
commit 7b86c1f
Showing
5 changed files
with
69 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}} | ||
region: us-west-2 | ||
|
||
max_workers: 0 | ||
|
||
head_node_type: | ||
name: head_node | ||
instance_type: c5.2xlarge | ||
|
||
worker_node_types: | ||
- name: worker_node | ||
instance_type: c5.2xlarge | ||
min_workers: 0 | ||
max_workers: 0 | ||
use_spot: false | ||
|
||
aws: | ||
TagSpecifications: | ||
- ResourceType: "instance" | ||
Tags: | ||
- Key: anyscale-user | ||
Value: '{{env["ANYSCALE_USER"]}}' | ||
- Key: anyscale-expiration | ||
Value: '{{env["EXPIRATION_2D"]}}' | ||
|
||
BlockDeviceMappings: | ||
- DeviceName: /dev/sda1 | ||
Ebs: | ||
VolumeSize: 300 | ||
DeleteOnTermination: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters