Skip to content

Tags: jdelliot/wangle

Tags

v2023.07.17.00

Toggle v2023.07.17.00's commit message
Updating submodules

Summary:
GitHub commits:

facebook/CacheLib@0608d84
facebook/proxygen@ee31ac5
facebook@78a833b
facebookincubator/fizz@f2c46d7

Reviewed By: bigfootjon

fbshipit-source-id: 898b37f8d3202da98256a443aa10f1a1297a357e

v2023.07.10.00

Toggle v2023.07.10.00's commit message
Updating submodules

Summary:
GitHub commits:

facebook/folly@1bb8d2b

Reviewed By: jurajh-fb

fbshipit-source-id: 6387573e5edc227af03c97386b7a6d8377230e00

v2023.06.26.00

Toggle v2023.06.26.00's commit message
Updating submodules

Summary:
GitHub commits:

facebook/folly@468d81a

Reviewed By: jailby

fbshipit-source-id: aed16f09ac556c2c32dab1fc1fd04a2e32b631a7

v2023.06.19.00

Toggle v2023.06.19.00's commit message
Updating submodules

Summary:
GitHub commits:

facebook/fb303@6bb1732
facebook/fbthrift@cf228b0
facebook/folly@9079e21
facebook/rocksdb@bc04ec8
facebook@db40b17
facebookincubator/velox@e339b10
pytorch/multipy@f2be07b

Reviewed By: jurajh-fb

fbshipit-source-id: 42e538b8df98b942391036e3ee3c299f2c8e0738

v2023.06.12.00

Toggle v2023.06.12.00's commit message
Updating submodules

Summary:
GitHub commits:

facebook/folly@cf09290

Reviewed By: jailby

fbshipit-source-id: 2d9565daebc35502d130accdcd9154b21d456637

v2023.06.08.00

Toggle v2023.06.08.00's commit message
Updating submodules

Summary:
GitHub commits:

facebook/fbthrift@48fcc45
facebook/folly@e992255
facebook/mcrouter@f4e8211

Reviewed By: jailby

fbshipit-source-id: 16e20bfd1a20d53fc7e73fd0cd9a23342ac77515

v2023.05.22.00

Toggle v2023.05.22.00's commit message
Updating submodules

Summary:
GitHub commits:

facebook/fb303@df68f8a
facebook@da8af1c
facebookexperimental/rust-shed@edb1539
facebookincubator/fizz@49ac348
facebookincubator/katran@3a4bc4f
facebookincubator/velox@0051c80

Reviewed By: jailby

fbshipit-source-id: b5a326268422b13099ea8d8860a9184daffb877e

v2023.05.15.00

Toggle v2023.05.15.00's commit message
Change the way we traverse list when we drop connections

Summary:
Currently we are traversing list from the front to back, this means that we will first be dropping most active connections. In this diff changing this behaviour and traversing link backwards.

NOTE: Idea is that we want to drop connections with largest lifetime first.

## Details
First item we are starting with is `--idle_iterator`, **heuristically** this should give us connection with largest lifetime first.

NOTE: There is no guaranteed way that this approach will sort connections based on lifetime. It's totally possible we would have a connection which would periodically send some data and as a result will always end up on the beginning of the list.

Later if we decide to have life time based connection dropping (dropping connection whose lifetime exceeds certain threshold) it might make sense to traverse list from both sides but I believe currently this approach will be better than traversing list from the begging to end.

Reviewed By: jalopezsilva, dddmello

Differential Revision: D45649769

fbshipit-source-id: a7b5e4df48749361d5e62bffc0d32e5775b8c2e6