Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide a way to stream read/write requests using a single RPC call #72

Closed
aozarov opened this issue May 19, 2015 · 8 comments
Closed
Assignees
Labels
api: storage Issues related to the Cloud Storage API. performance priority: p2 Moderately-important priority. Fix may not be included in next release. 🚨 This issue needs some love. type: question Request for information or clarification. Not an issue.

Comments

@aozarov
Copy link
Contributor

aozarov commented May 19, 2015

This topic was also discussed in #61. Current implementation of the streaming API for both reads and writes is done via multiple RPC calls. Writes are done in chucks (resumable-writes) which is good for error handling (save-points) but at a cost of multiple RPC instead of one. Reads are also segmented (via range requests) instead one RPC for the whole content.

Things to consider:

  1. some platforms may have restrictions on RPC requests (e.g. AE 10MB upstream and 32MB downstream, as well as time-to-live restrictions).
  2. Current implementation of the apiary client does not expose the underlying stream and will copy its content to the caller.
  3. Rate of errors and cost-benefit evaluation (if the recommended size per one RPC is small enough it might be that the option of create with content or load all is sufficient).
@jgeewax jgeewax changed the title Should we provide a way to stream read/write requests using a single RPC call. Should we provide a way to stream read/write requests using a single RPC call? May 27, 2015
@jgeewax jgeewax added type: question Request for information or clarification. Not an issue. api: storage Issues related to the Cloud Storage API. and removed type: question Request for information or clarification. Not an issue. labels May 27, 2015
@aozarov
Copy link
Contributor Author

aozarov commented May 31, 2016

PR #534 was taking a stub at it for BigQuery. It would be great if we resurrect it when possible and also apply it for Storage.

@mziccard
Copy link
Contributor

mziccard commented Jun 2, 2016

I started having a look at this lately. My only concern is how to expose this functionality to users. Now in Storage we have:

Blob create(BlobInfo blobInfo, byte[] content, BlobTargetOption... options);
Blob create(BlobInfo blobInfo, InputStream content, BlobWriteOption... options);

Both method use non-resumable upload.

As far as I know when resumable upload is used to create a object the RPC call does not return the object metadata in the response body. So methods that use resumable upload would not be able to offer a return type. Should we call such methods write rather than create?

Also, resumable upload as implemented in #534 needs a SeekableByteChannel to function (in case of failed upload we need to seek latest upload position through the channel) and not an InputStream. Would adding the following two methods look odd to you?

void write(BlobInfo blobInfo, byte[] content, BlobTargetOption... options);
void write(BlobInfo blobInfo, SeekableByteChannel content, BlobWriteOption... options);

/cc @jgeewax for opinions

@mziccard
Copy link
Contributor

mziccard commented Jun 8, 2016

@Capstan Is there a way to make resumable upload return the information on the blob just created (as it happens for direct upload)? Just to be sure I am not missing something here.

If not, would it be possible in your opinion to have the "closing" call to a resumable upload URL return the blob's information in the response body?

@Capstan
Copy link
Contributor

Capstan commented Jun 8, 2016

@mziccard I would be surprised to find that it does not return that information. What's the behavior you're seeing? What are you using for your alt parameter?

@mziccard
Copy link
Contributor

mziccard commented Jun 8, 2016

I am requesting a resumable upload URL with:

POST https://www.googleapis.com/upload/storage/v1/b/test-bucket/o?uploadType=resumable&name=test-file
(blob information in the body)

Which returns the resumable URL in the body:

https://www.googleapis.com/upload/storage/v1/b/test-bucket/o?uploadType=resumable&name=test-blob&upload_id=some-long-upload-id

I upload the file with:

POST https://www.googleapis.com/upload/storage/v1/b/test-bucket/o?uploadType=resumable&name=test-blob&upload_id=some-long-upload-id

The blob is correctly created, upload is successful but this latest request does not return blob information back.

@mziccard
Copy link
Contributor

@Capstan any update on this?

@Capstan
Copy link
Contributor

Capstan commented Aug 10, 2016

None, though I'm used to seeing PUT in the last request. See https://cloud.google.com/storage/docs/json_api/v1/how-tos/resumable-upload for examples.

@garrettjonesgoogle garrettjonesgoogle added priority: p2 Moderately-important priority. Fix may not be included in next release. and removed triaged for GA labels Jul 18, 2017
@garrettjonesgoogle garrettjonesgoogle changed the title Should we provide a way to stream read/write requests using a single RPC call? Provide a way to stream read/write requests using a single RPC call Aug 11, 2017
@garrettjonesgoogle
Copy link
Member

This has been added to our feature backlog: https://github.com/GoogleCloudPlatform/google-cloud-java/wiki/Feature-backlog . This issue will be closed but is linked in the backlog and can continue to be used for comment and discussion.

@yoshi-automation yoshi-automation added the 🚨 This issue needs some love. label Apr 6, 2020
github-actions bot pushed a commit to suztomo/google-cloud-java that referenced this issue Jun 29, 2022
github-actions bot pushed a commit that referenced this issue Jun 30, 2022
Making CLIRR not required. The version bumps are now controlled by the Release Please and OwlBot. The CL authors create appropriate change description to control major version bumps.
github-actions bot pushed a commit that referenced this issue Jul 1, 2022
This PR was generated using Autosynth. 🌈


<details><summary>Log from Synthtool</summary>

```
2020-10-20 08:18:37,266 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-workflows/.github/readme/synth.py.
On branch autosynth-readme
nothing to commit, working directory clean
2020-10-20 08:18:38,217 synthtool [DEBUG] > Wrote metadata to .github/readme/synth.metadata/synth.metadata.

```
</details>

Full log will be available here:
https://source.cloud.google.com/results/invocations/d85411cb-e9fb-4185-bb91-abc835b715f8/targets

- [ ] To automatically regenerate this PR, check this box.
github-actions bot pushed a commit that referenced this issue Jul 14, 2022
🤖 I have created a release *beep* *boop*
---


### Updating meta-information for bleeding-edge SNAPSHOT release.

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this issue Aug 1, 2022
🤖 I have created a release *beep* *boop*
---


## [1.1.2](googleapis/java-optimization@v1.1.1...v1.1.2) (2022-07-30)


### Dependencies

* update dependency com.google.cloud:google-cloud-shared-dependencies to v3 ([#71](googleapis/java-optimization#71)) ([a3a962f](googleapis/java-optimization@a3a962f))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this issue Aug 16, 2022
…-plugin to v3.4.1 (#72)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.apache.maven.plugins:maven-javadoc-plugin](https://maven.apache.org/plugins/) ([source](https://togithub.com/apache/maven-javadoc-plugin)) | `3.4.0` -> `3.4.1` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-javadoc-plugin/3.4.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-javadoc-plugin/3.4.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-javadoc-plugin/3.4.1/compatibility-slim/3.4.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-javadoc-plugin/3.4.1/confidence-slim/3.4.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-certificate-manager).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xNTguMCIsInVwZGF0ZWRJblZlciI6IjMyLjE2MC4xIn0=-->
github-actions bot pushed a commit that referenced this issue Sep 15, 2022
🤖 I have created a release *beep* *boop*
---


### Updating meta-information for bleeding-edge SNAPSHOT release.

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this issue Sep 15, 2022
…0.3.2 (#72)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-run](https://togithub.com/googleapis/java-run) | `0.3.1` -> `0.3.2` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-run/0.3.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-run/0.3.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-run/0.3.2/compatibility-slim/0.3.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-run/0.3.2/confidence-slim/0.3.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. ⚠ **Warning**: custom changes will be lost.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-run).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTQuMyIsInVwZGF0ZWRJblZlciI6IjMyLjE5NC4zIn0=-->
github-actions bot pushed a commit that referenced this issue Sep 30, 2022
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [pyjwt](https://togithub.com/jpadilla/pyjwt) | `==2.4.0` -> `==2.5.0` | [![age](https://badges.renovateapi.com/packages/pypi/pyjwt/2.5.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/pyjwt/2.5.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/pyjwt/2.5.0/compatibility-slim/2.4.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/pyjwt/2.5.0/confidence-slim/2.4.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. ⚠ **Warning**: custom changes will be lost.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-bigquery-data-exchange).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDguMiIsInVwZGF0ZWRJblZlciI6IjMyLjIwOC4yIn0=-->
github-actions bot pushed a commit that referenced this issue Oct 4, 2022
🤖 I have created a release *beep* *boop*
---


## [0.2.5](https://togithub.com/googleapis/java-gke-multi-cloud/compare/v0.2.4...v0.2.5) (2022-10-03)


### Dependencies

* Update dependency certifi to v2022.9.24 ([#64](https://togithub.com/googleapis/java-gke-multi-cloud/issues/64)) ([26c7a95](https://togithub.com/googleapis/java-gke-multi-cloud/commit/26c7a959782e854d8586d0a8f6db1dda46643ed6))
* Update dependency charset-normalizer to v2.1.1 ([#68](https://togithub.com/googleapis/java-gke-multi-cloud/issues/68)) ([5be1038](https://togithub.com/googleapis/java-gke-multi-cloud/commit/5be10387cf7ba61cef6077ac7c5608a1c77d6d7c))
* Update dependency click to v8.1.3 ([#69](https://togithub.com/googleapis/java-gke-multi-cloud/issues/69)) ([23ec7b1](https://togithub.com/googleapis/java-gke-multi-cloud/commit/23ec7b127c0a9c35daec7b857c62472741419b3e))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#89](https://togithub.com/googleapis/java-gke-multi-cloud/issues/89)) ([277057f](https://togithub.com/googleapis/java-gke-multi-cloud/commit/277057f30ac66364316a07a0908b92131d84c0d0))
* Update dependency gcp-releasetool to v1.8.8 ([#65](https://togithub.com/googleapis/java-gke-multi-cloud/issues/65)) ([6535c2d](https://togithub.com/googleapis/java-gke-multi-cloud/commit/6535c2d874f1c42187cbbc8d057430bef64514ce))
* Update dependency google-api-core to v2.10.1 ([#70](https://togithub.com/googleapis/java-gke-multi-cloud/issues/70)) ([9d1d115](https://togithub.com/googleapis/java-gke-multi-cloud/commit/9d1d115828721661dd57eb4e861eedde550c8480))
* Update dependency google-auth to v2.12.0 ([#71](https://togithub.com/googleapis/java-gke-multi-cloud/issues/71)) ([2d96ee6](https://togithub.com/googleapis/java-gke-multi-cloud/commit/2d96ee6aa0377b3f9508beabec5321606387859c))
* Update dependency google-cloud-core to v2.3.2 ([#66](https://togithub.com/googleapis/java-gke-multi-cloud/issues/66)) ([04fd329](https://togithub.com/googleapis/java-gke-multi-cloud/commit/04fd3297e44000a7646f3f7c8d1d5681a3dbfff5))
* Update dependency google-cloud-storage to v2.5.0 ([#72](https://togithub.com/googleapis/java-gke-multi-cloud/issues/72)) ([244bf08](https://togithub.com/googleapis/java-gke-multi-cloud/commit/244bf0846f2009f26c2b76ff3a1c7f9ff5e18e99))
* Update dependency google-crc32c to v1.5.0 ([#73](https://togithub.com/googleapis/java-gke-multi-cloud/issues/73)) ([d59fd8e](https://togithub.com/googleapis/java-gke-multi-cloud/commit/d59fd8ec647a9f646d60fb824870dabd75e471a7))
* Update dependency googleapis-common-protos to v1.56.4 ([#67](https://togithub.com/googleapis/java-gke-multi-cloud/issues/67)) ([0a209f8](https://togithub.com/googleapis/java-gke-multi-cloud/commit/0a209f8b2c63d4171ab4e075017a79f6d566fb29))
* Update dependency importlib-metadata to v4.12.0 ([#82](https://togithub.com/googleapis/java-gke-multi-cloud/issues/82)) ([c9f0e09](https://togithub.com/googleapis/java-gke-multi-cloud/commit/c9f0e09a139347fe6be17f818b23cb15a9aa85db))
* Update dependency jeepney to v0.8.0 ([#83](https://togithub.com/googleapis/java-gke-multi-cloud/issues/83)) ([09dcb60](https://togithub.com/googleapis/java-gke-multi-cloud/commit/09dcb609810144975753b71efcb25261f9ff20cd))
* Update dependency jinja2 to v3.1.2 ([#84](https://togithub.com/googleapis/java-gke-multi-cloud/issues/84)) ([2120f14](https://togithub.com/googleapis/java-gke-multi-cloud/commit/2120f1406044f1afdd75c2e319c8cda7b34a0da4))
* Update dependency keyring to v23.9.3 ([#85](https://togithub.com/googleapis/java-gke-multi-cloud/issues/85)) ([057100e](https://togithub.com/googleapis/java-gke-multi-cloud/commit/057100eaaabd3332e51a1106896758362526d778))
* Update dependency markupsafe to v2.1.1 ([#74](https://togithub.com/googleapis/java-gke-multi-cloud/issues/74)) ([fc5a63c](https://togithub.com/googleapis/java-gke-multi-cloud/commit/fc5a63cd739c5aec953de432fda7bf9980590999))
* Update dependency protobuf to v3.20.2 ([#75](https://togithub.com/googleapis/java-gke-multi-cloud/issues/75)) ([43d6da7](https://togithub.com/googleapis/java-gke-multi-cloud/commit/43d6da74a5ced76540deb01ed2135046159deb12))
* Update dependency pyjwt to v2.5.0 ([#76](https://togithub.com/googleapis/java-gke-multi-cloud/issues/76)) ([f22c02a](https://togithub.com/googleapis/java-gke-multi-cloud/commit/f22c02a853e2f16120bf80e560fd6598472bfb7d))
* Update dependency requests to v2.28.1 ([#77](https://togithub.com/googleapis/java-gke-multi-cloud/issues/77)) ([9930dbb](https://togithub.com/googleapis/java-gke-multi-cloud/commit/9930dbba75a1555e712a3bad430097e852677ef7))

---
This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this issue Oct 4, 2022
🤖 I have created a release *beep* *boop*
---


## [0.2.5](https://togithub.com/googleapis/java-gke-backup/compare/v0.2.4...v0.2.5) (2022-10-03)


### Dependencies

* Update dependency certifi to v2022.9.24 ([#60](https://togithub.com/googleapis/java-gke-backup/issues/60)) ([317ef8f](https://togithub.com/googleapis/java-gke-backup/commit/317ef8f5c11f3cd6275e51104d44b33e61099b83))
* Update dependency charset-normalizer to v2.1.1 ([#64](https://togithub.com/googleapis/java-gke-backup/issues/64)) ([94eddb9](https://togithub.com/googleapis/java-gke-backup/commit/94eddb9aa24138d9f393d8ab32160077bc4e1b0a))
* Update dependency click to v8.1.3 ([#65](https://togithub.com/googleapis/java-gke-backup/issues/65)) ([c2e2275](https://togithub.com/googleapis/java-gke-backup/commit/c2e227566d56769c98fc4890d4c841b94f11f918))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#85](https://togithub.com/googleapis/java-gke-backup/issues/85)) ([93b2282](https://togithub.com/googleapis/java-gke-backup/commit/93b2282dde9d35276d937bdd84aa26d5412c3bbc))
* Update dependency gcp-releasetool to v1.8.8 ([#61](https://togithub.com/googleapis/java-gke-backup/issues/61)) ([6f63d57](https://togithub.com/googleapis/java-gke-backup/commit/6f63d57fbd09e5f1cbe52de7dcc28e2afa8e9b32))
* Update dependency google-api-core to v2.10.1 ([#66](https://togithub.com/googleapis/java-gke-backup/issues/66)) ([8e91da3](https://togithub.com/googleapis/java-gke-backup/commit/8e91da351601167fa3620b83981bc1d66de81563))
* Update dependency google-auth to v2.12.0 ([#67](https://togithub.com/googleapis/java-gke-backup/issues/67)) ([296cf38](https://togithub.com/googleapis/java-gke-backup/commit/296cf38a057da02650ca2c3fbe22be437c26c67c))
* Update dependency google-cloud-core to v2.3.2 ([#62](https://togithub.com/googleapis/java-gke-backup/issues/62)) ([ca1f3c2](https://togithub.com/googleapis/java-gke-backup/commit/ca1f3c2424a2313d7143c43441b63861618ac14a))
* Update dependency google-cloud-storage to v2.5.0 ([#68](https://togithub.com/googleapis/java-gke-backup/issues/68)) ([3799767](https://togithub.com/googleapis/java-gke-backup/commit/379976763fa24ff37216149fd4af99f5e977d3d3))
* Update dependency google-crc32c to v1.5.0 ([#69](https://togithub.com/googleapis/java-gke-backup/issues/69)) ([9e57fb5](https://togithub.com/googleapis/java-gke-backup/commit/9e57fb5a3ece05a750a5b4f8180fd1eaa97d8964))
* Update dependency googleapis-common-protos to v1.56.4 ([#63](https://togithub.com/googleapis/java-gke-backup/issues/63)) ([d29e652](https://togithub.com/googleapis/java-gke-backup/commit/d29e6527be55672bb72e2a51f16580adecab2b75))
* Update dependency importlib-metadata to v4.12.0 ([#78](https://togithub.com/googleapis/java-gke-backup/issues/78)) ([de743e5](https://togithub.com/googleapis/java-gke-backup/commit/de743e5c2e11a3cf67a6553727bded09bc33d233))
* Update dependency jeepney to v0.8.0 ([#79](https://togithub.com/googleapis/java-gke-backup/issues/79)) ([5b9831b](https://togithub.com/googleapis/java-gke-backup/commit/5b9831b0a8692a4c7c0fdeb2dacce31f2847a1a6))
* Update dependency jinja2 to v3.1.2 ([#80](https://togithub.com/googleapis/java-gke-backup/issues/80)) ([7929d9b](https://togithub.com/googleapis/java-gke-backup/commit/7929d9bc679b9feb85d2fcf51f77f3a9a0161877))
* Update dependency keyring to v23.9.3 ([#81](https://togithub.com/googleapis/java-gke-backup/issues/81)) ([95a1f64](https://togithub.com/googleapis/java-gke-backup/commit/95a1f64147f5821c63f391a6a4c7909331e8611b))
* Update dependency markupsafe to v2.1.1 ([#70](https://togithub.com/googleapis/java-gke-backup/issues/70)) ([947bbba](https://togithub.com/googleapis/java-gke-backup/commit/947bbba22d90b9cc3317f3138eac68d172bc01bf))
* Update dependency protobuf to v3.20.2 ([#71](https://togithub.com/googleapis/java-gke-backup/issues/71)) ([0eb5782](https://togithub.com/googleapis/java-gke-backup/commit/0eb57820de0ef678af4f53536d00321dd5ab83ba))
* Update dependency pyjwt to v2.5.0 ([#72](https://togithub.com/googleapis/java-gke-backup/issues/72)) ([f3ef3ab](https://togithub.com/googleapis/java-gke-backup/commit/f3ef3abd9e6a0318ce4f4580a1903a7ac55bfa83))
* Update dependency requests to v2.28.1 ([#73](https://togithub.com/googleapis/java-gke-backup/issues/73)) ([1d6762a](https://togithub.com/googleapis/java-gke-backup/commit/1d6762a15ea03b621607cbb89e086fc89dfc3bf0))

---
This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this issue Oct 5, 2022
🤖 I have created a release *beep* *boop*
---


## [0.4.0](https://togithub.com/googleapis/java-bigquery-data-exchange/compare/v0.3.2...v0.4.0) (2022-10-03)


### ⚠ BREAKING CHANGES

* refactor references to Category message
* refresh current dataexchange/v1beta1/* directory to include recent change in protos. Removed common directory and use local enum Category

### Features

* Update BigQuery Analytics Hub API v1beta1 client ([#51](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/51)) ([a70b8ac](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/a70b8ac71383a051f384884b043c554e7fb277bc))


### Bug Fixes

* refactor references to Category message ([a70b8ac](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/a70b8ac71383a051f384884b043c554e7fb277bc))


### Documentation

* improve proto documentation. ([a70b8ac](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/a70b8ac71383a051f384884b043c554e7fb277bc))


### Dependencies

* Update dependency cachetools to v5 ([#79](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/79)) ([e7fc966](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/e7fc9667452a94f8f976a00409a8cc3fbe6b502f))
* Update dependency certifi to v2022.9.24 ([#59](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/59)) ([9cdbe53](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/9cdbe538bcb6b9e78346206985db000fa3fef3cf))
* Update dependency charset-normalizer to v2.1.1 ([#63](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/63)) ([ea2d77f](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/ea2d77f5381aa3ee97f4ae936f580614f2228075))
* Update dependency click to v8.1.3 ([#64](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/64)) ([6f0b519](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/6f0b519171a8a9e0a0b8bc254486b2ee99a12599))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#54](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/54)) ([63e56e2](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/63e56e248472e64f0fa6ea2b67c0d8066e3d187e))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#56](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/56)) ([acefe6d](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/acefe6df105aa534ab69283dab25e7555478ef0c))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#83](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/83)) ([1329a2d](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/1329a2db26009e7c844282d65da9256d8789fb46))
* Update dependency gcp-releasetool to v1.8.8 ([#60](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/60)) ([cb20437](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/cb20437ca4a81457d16316e52ac505b06997a5ab))
* Update dependency google-api-core to v2.10.1 ([#65](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/65)) ([5677913](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/56779139cfed3778ae6c95cf3677e0ac05755b3e))
* Update dependency google-auth to v2.12.0 ([#66](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/66)) ([d7d2a29](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/d7d2a294b527a4e947a6c8d1a11db5077a941cec))
* Update dependency google-cloud-core to v2.3.2 ([#61](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/61)) ([b23beaf](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/b23beafe5126b10c86993722019da8f9533bbe19))
* Update dependency google-cloud-storage to v2.5.0 ([#67](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/67)) ([afaf995](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/afaf9951a8e9b23dbe645e7711ad563fff21df43))
* Update dependency google-crc32c to v1.5.0 ([#68](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/68)) ([5810429](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/5810429d1f6fa4e04d8b3aac002cc4df46b93b35))
* Update dependency googleapis-common-protos to v1.56.4 ([#62](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/62)) ([845625c](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/845625cc014de6bd21659ff191fda39120c02969))
* Update dependency importlib-metadata to v4.12.0 ([#69](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/69)) ([de23b25](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/de23b2529f9f9adab51361c8dd772c79233cc956))
* Update dependency jeepney to v0.8.0 ([#74](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/74)) ([d3754be](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/d3754be6555594b3776cb056a7b4511223c51850))
* Update dependency jinja2 to v3.1.2 ([#75](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/75)) ([93f43a4](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/93f43a47322508a9b8f8f7d667e3576666d95d72))
* Update dependency keyring to v23.9.3 ([#76](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/76)) ([0a1b61a](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/0a1b61a9c2144ba523cc8aea7d77a93bbdec2176))
* Update dependency markupsafe to v2.1.1 ([#70](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/70)) ([ab50c0e](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/ab50c0eb2a3e081ec81ac14fbc8d3539086c198f))
* Update dependency protobuf to v3.20.2 ([#71](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/71)) ([b647377](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/b647377c7c430cbb86b5fd7125792ae07be7dda6))
* Update dependency protobuf to v4 ([#80](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/80)) ([409ceed](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/409ceed1a74b5ed066b1c565978900773ffe1b0c))
* Update dependency pyjwt to v2.5.0 ([#72](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/72)) ([e43efcd](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/e43efcdfccfd99571622ed47f14432cf0a42cfdc))
* Update dependency requests to v2.28.1 ([#73](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/73)) ([60746a8](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/60746a81486f3edcef143d91ca0d19cfa9546b3d))
* Update dependency typing-extensions to v4.3.0 ([#77](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/77)) ([2a22b12](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/2a22b12e2860296f4a866c5abb54bc11a0cd8a65))
* Update dependency zipp to v3.8.1 ([#78](https://togithub.com/googleapis/java-bigquery-data-exchange/issues/78)) ([7b1a48a](https://togithub.com/googleapis/java-bigquery-data-exchange/commit/7b1a48a0810d1e5702a6b214e148b97efdac7564))

---
This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: storage Issues related to the Cloud Storage API. performance priority: p2 Moderately-important priority. Fix may not be included in next release. 🚨 This issue needs some love. type: question Request for information or clarification. Not an issue.
Projects
None yet
Development

No branches or pull requests

6 participants