refactor(bigtable): duplicate AsyncRetryBulkApply
#9244
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Lay the ground work for #9175 . This is the same dance as we did in #9221 .
This PR copies the
async_bulk_apply*
files as new files with alegacy_
prefix. I will modify theasync_bulk_apply*
files in a subsequent PR to implement the retry loop helper in terms of the modern API (Stubs, common policies). Thelegacy_
files will exist for nearly a year until the deprecation policy expires on #8800.It is broken into 2 commits. The reviewer can look at the first commit only to verify that the
legacy_
files have no meaningful changes to them. The reviewer can look at the overall diff to verify thatasync_bulk_apply*
have not changed at all. Also, we remove theasync_bulk_apply*
files from the builds to "prove" that they are not in use.This change is