Bug #19817
open`keyset_list_all` name is unintuitive
Description
I was looking for a function that iterated all items from an Arvados API list. The function that does this is arvados.util.keyset_list_all
but I overlooked it because the name didn't sound like a match:
- I don't understand what "keyset" is here.
- "list" makes it sound like it builds and returns a list rather than an iterator.
It would be best if this function was named iter_all_by_X
, if we can come up with an X
that's more descriptive than "keyset".
Failing that, even iter_all
would be a better name, although admittedly it's a valuable one too that we'd rather reserve.
We can rename the function in the definition and then retain API compatibility by just adding keyset_list_all = iter_all_new_name
to arvados.util
.
Updated by Brett Smith almost 2 years ago
This is definitely a half-point story once we agree on what the new name should be, we just need to do that.
I'd make a strong suggestion myself except even after documenting it a bunch I'm still not sure what "keyset" is referring to.