Skip to content

Commit

Permalink
removing parallelism and backlog_length from the actor examples
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Rammer <hamersaw@protonmail.com>
  • Loading branch information
hamersaw committed Sep 17, 2024
1 parent a59b301 commit 7ba0a71
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 12 deletions.
2 changes: 0 additions & 2 deletions guides/02_core_concepts/actors/byoc/hello_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
actor = ActorEnvironment(
name="my-actor",
replica_count=1,
parallelism=1,
backlog_length=10,
ttl_seconds=30,
requests=Resources(
cpu="2",
Expand Down
2 changes: 0 additions & 2 deletions guides/02_core_concepts/actors/byoc/multiple_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
actor = ActorEnvironment(
name="my-actor",
replica_count=1,
parallelism=1,
backlog_length=50,
ttl_seconds=30,
requests=Resources(cpu="1", mem="450Mi"),
container_image=image,
Expand Down
2 changes: 0 additions & 2 deletions guides/02_core_concepts/actors/byoc/plus_one.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
actor = ActorEnvironment(
name="my-actor",
replica_count=1,
parallelism=1,
backlog_length=50,
ttl_seconds=300,
requests=Resources(cpu="2", mem="500Mi"),
container_image=image,
Expand Down
2 changes: 0 additions & 2 deletions guides/02_core_concepts/actors/serverless/hello_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
actor = ActorEnvironment(
name="my-actor",
replica_count=1,
parallelism=1,
backlog_length=10,
ttl_seconds=30,
requests=Resources(
cpu="2",
Expand Down
2 changes: 0 additions & 2 deletions guides/02_core_concepts/actors/serverless/multiple_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
actor = ActorEnvironment(
name="my-actor",
replica_count=1,
parallelism=1,
backlog_length=50,
ttl_seconds=30,
requests=Resources(cpu="1", mem="450Mi")
)
Expand Down
2 changes: 0 additions & 2 deletions guides/02_core_concepts/actors/serverless/plus_one.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
actor = ActorEnvironment(
name="my-actor",
replica_count=1,
parallelism=1,
backlog_length=50,
ttl_seconds=300,
requests=Resources(cpu="2", mem="500Mi"),
)
Expand Down

0 comments on commit 7ba0a71

Please sign in to comment.