Matthew Fontana
Matthew Fontana

Reputation: 3870

Spring Data support for Google Big Query

Is anyone aware if support for google big query is in the backlog for Spring Data?

Also interested in any existing attempts to create a Spring Data module for Big Query.

Finally I was curious what attempting to build such a module and donate it to the Spring Community would entail.

Upvotes: 1

Views: 5107

Answers (1)

Jens Schauder
Jens Schauder

Reputation: 81907

  1. There is no Spring Data Google BigQuery module. If you can use JPA as @manish suggests, you can use Spring Data JPA

  2. In order to create your own module, I suggest you start with the developer guide in the wiki. It's not complete, but it should give you a start. Also looking at existing modules helps a lot. I'd recommend the MongoDB and Key Value modules.

If you have more specific questions about building a spring data module, SO is your friend.

Upvotes: 3

Related Questions