Commit 8556574
feat: add support for awaiting Data Boost (#2329)
* Introduce ConsistencyParams model
Change-Id: I7ae07cc4f13e8ffe9ea4a55fb407eae1d64f8547
* Create AwaitConsistencyCallable, a delegate for AwaitReplicationCallable
Change-Id: I16d7c69b4e1b9153f93e83f7f846d6c172aae8a6
* Address some PR comments
Change-Id: Icdf94f2f6a13f55d2c9204774d4ebbac5aa6a8b3
* Remove unused imports from AwaitReplicationCallable
Change-Id: Ia4861f1a5796061ca86844c67c68f54711fdbb94
* Plumb the Consistency callable through to some places, add some tests
Change-Id: Ibe60e2a1044933af1008c0cd1b84f757dd6867a8
* Add integration test
Change-Id: Ie3b2b2983ca585cb1d6a2cdb8b18b55e81205759
* Rework the ConsistencyRequest model, plumb through RequestContext to BigtableTableAdminClient
Change-Id: I840282587d3d6cb4150dfbdd568c347dc32a732d
* Fix imports
Change-Id: Ic7588b3d04877a56089c23036d6df73a5c9b0cd5
* Fix more imports, fix some tests
Change-Id: I2723fd67bd301a4eb3aeae80d91fa663cdd6ab01
* Rename some things
Change-Id: Ie1bc8478c418d49b0c2e014edbeb6f56b56b0dd1
* Add tests for ConsistencyRequest model
Change-Id: I3548b7aa673be5a92cd4c180e3edb8649657811c
* Add newline
Change-Id: Icdd22ce2857e5b4316c6fa3f0e139ea9de825178
* Fix broken test
Change-Id: Idbd7c0f10ebe575d104ab7ac46a3a1e347e35fe8
* Make request context a final variable in test
Change-Id: I81f2a25fe4493021bab150ab0af65d7318ba2399
* Get test working using correct expectations
Change-Id: Ie34d5171bd7a472fc695d603849e260054aedfbd
* Add a couple of tests for AwaitReplicationCallable
Change-Id: I70014db2c0a1d4e74c23b18de7ef591bc70cda2a
* Use RequestContextNoAP class
Change-Id: I897b343cd1067d43bcc644cac3db44e88bbf1e69
* Make ConsistencyRequest model an AutoValue
Change-Id: I9529fb79da69e12a834a2d0fea032d72ae6ea157
* Fix license year, fix some formatting
Change-Id: Ibcca1ca9f49988764fdbeeacc59cac5d276ab266
* Run auto formatter
Change-Id: I9f5e3f7c7fd79262092c507a523e16a533bc4382
* Rename new RequestContext to TableAdminRequestContext, re run auto formatter
Change-Id: Ib3f5918ef0f5b1ac53147baf93dcb72c476d877b
* 🦉 Updates from OwlBot post-processor
See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
* Add license header to ConsistencyRequestTest
Change-Id: I733d2f8c082647ad32b72b04b218cd5ba79d2377
* Add EnhancedBigtableTableAdminStub to clirr-ignored-differences
Change-Id: I7eefeda777305dd3d7c5664097bda87ac63daa72
* Fix IT tests, skip data boost one for now until we run it concurrently
Change-Id: I764190b0f91614753080e0a96e7e11e3dfb1fde0
* Run autoformatter
Change-Id: Iba4671e4781f1b333279a2410563869f53b284d5
---------
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>1 parent 3a9b5a6 commit 8556574
File tree
11 files changed
+592
-166
lines changed- google-cloud-bigtable
- src
- main/java/com/google/cloud/bigtable
- admin/v2
- models
- stub
- data/v2/internal
- test/java/com/google/cloud/bigtable/admin/v2
- it
- models
- stub
11 files changed
+592
-166
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
259 | 259 | | |
260 | 260 | | |
261 | 261 | | |
| 262 | + | |
| 263 | + | |
| 264 | + | |
| 265 | + | |
| 266 | + | |
| 267 | + | |
262 | 268 | | |
Lines changed: 10 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| 49 | + | |
49 | 50 | | |
50 | 51 | | |
51 | 52 | | |
| |||
61 | 62 | | |
62 | 63 | | |
63 | 64 | | |
| 65 | + | |
64 | 66 | | |
65 | 67 | | |
66 | 68 | | |
| |||
154 | 156 | | |
155 | 157 | | |
156 | 158 | | |
| 159 | + | |
| 160 | + | |
157 | 161 | | |
158 | | - | |
| 162 | + | |
159 | 163 | | |
160 | 164 | | |
161 | 165 | | |
| |||
917 | 921 | | |
918 | 922 | | |
919 | 923 | | |
| 924 | + | |
| 925 | + | |
| 926 | + | |
| 927 | + | |
| 928 | + | |
920 | 929 | | |
921 | 930 | | |
922 | 931 | | |
| |||
Lines changed: 71 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
Lines changed: 195 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
0 commit comments