Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
1 answer
52 views

I'm trying to write a Python GCP dataflow that processes records from a Spanner change stream and prints them out. I am running it locally and it appears to work but prints no records when I update a ...
Joe P's user avatar
  • 525
0 votes
2 answers
73 views

I have setup a GCP project for build activities that support multiple GCP projects deployments, this way I have one place to manage the CI/CD and in this project no other resources APIs like spanner ...
SagarKC's user avatar
  • 85
0 votes
1 answer
51 views

I found out there is a possibility to connect Arrow Flight SQL connector to Postgres database, and I know there is a possibility to configure Spanner database to act like a Postgres one, so is it ...
Dmytro Pavlov's user avatar
0 votes
0 answers
37 views

Looking at the MyBatis docs for building entities which themselves contain lists of other entities, the following SHOULD work unless I'm misunderstanding (completely possible), but it results in ...
Patrick Proctor's user avatar
0 votes
0 answers
60 views

I am using Java 21 Spring Boot 3.4.2 and SpannerTemplate. I need to convert a field OffsetDateTime to the com.google.cloud.Timestamp for the TIMESTAMP column in the database. I tried implementing ...
Ebad's user avatar
  • 428
0 votes
0 answers
66 views

I'm working on merging company data from 3 or more different providers. I'm exploring an entity resolution approach using separate embeddings for name, location, and domain, stored in vector indexes. ...
Arik Levy's user avatar
0 votes
1 answer
79 views

I am working on integrating spanner with our existing application. I'm facing an error when trying to save/persist data into DemoClass entity in spanner using JPA and hibernate 6. The error I'm facing ...
Sandeep's user avatar
1 vote
1 answer
206 views

I am working on analysis of spanner for compatibility for our existing application migration. I am facing an error when trying to insert json data into a column in spanner using JPA and hibernate 6. I ...
Suga Raj's user avatar
  • 591
0 votes
1 answer
309 views

After I obtain my authenticate key with gcloud CLI, I try to execute the below Python code to create a table in my instance of Spanner. However, Spanner returned a message "Transaction is not ...
Kazuma Kusu's user avatar
0 votes
1 answer
110 views

I'm testing the new feature in Spanner to have scheduled backups. I've created several, some manually, and some through our Terraform automation. I have a schedule that should create incremental ...
codiaf's user avatar
  • 649
0 votes
2 answers
286 views

I can connect using a key generated from a service account but I don't have the option to connect with IAM using my own google account. The documentation shows this screenshot: The problem is my ...
CDP's user avatar
  • 13
-1 votes
1 answer
286 views

Cloud Spanner supports GQL, and it's possible to set Spanner as an external dataset for BigQuery, such as indicated here. Given this, is it possible to execute a GQL query in BigQuery, even if written ...
David542's user avatar
  • 112k
1 vote
1 answer
139 views

I have setup this pipeline: https://cloud.google.com/dataflow/docs/guides/templates/provided/cloud-spanner-change-streams-to-cloud-storage, by: hardcode the startTime to certain time (not using ...
Agung Pratama's user avatar
0 votes
1 answer
123 views

Context I tried to seek the answer with search, but all what I found was for general SQL context, not specific from Spanner point of view. There are like 150-200K of accounts overall. There are 2 ...
Kote Isaev's user avatar
0 votes
2 answers
163 views

I started to follow the official documentation of gcp in order to import my csv data to an instance on cloud spanner spanner, but I'm getting thhis error: *Error java.time.format....
Harif Velarde's user avatar
0 votes
1 answer
193 views

We are using the google spanner jdbc driver(google-cloud-spanner-jdbc) to enable connectivity from our application to cloud spanner. This was used instead of the google client libraries to reuse the ...
Raj Kumar's user avatar
0 votes
1 answer
194 views

I've got a document database with about 6,000 records. I've successfully used vector database backends for RAG queries with these records. I'd like to move to from a vector-specific database to Google'...
Paul Vincent Craven's user avatar
1 vote
1 answer
234 views

CREATE TABLE Account ( ID STRING(100) NOT NULL, BSB STRING(20) NOT NULL, AccNum STRING(100) NOT NULL, ) PRIMARY KEY(ID); In this Account table, ID is the only primary key. There's no index on ...
pellucid's user avatar
  • 303
2 votes
0 answers
870 views

I am currently using Hibernate 6.4.4 version, along with spanner-hibernate-dialect 3.3.0 version and google-cloud-spanner-jdbc 2.16.1 version. But still facing the below error as: org.springframework....
Tanushree B S's user avatar
-1 votes
1 answer
75 views

In the following query: select t, 1 from (select 1 as a, 2 as b) t It produces a column of struct type: {"a": 1, "b": 2} for the column t. Is this the expected behavior, and if so ...
David542's user avatar
  • 112k
1 vote
1 answer
102 views

We have been using Spanner and recently noticed a dip in the 'Total storage' graph in 'System insights' which is not expected and we would like to know what are the possible causes for the storage to ...
Ash's user avatar
  • 33
0 votes
1 answer
369 views

Currently I'm trying to migrate the app to spring boot 3 and hibernate 6. I faced the issue that when I insert the data where the column has to be in json format I get an error could not execute ...
anton.rynkovoy's user avatar
0 votes
1 answer
69 views

I am following the similarity search tutorial of Cloud Spanner, by executing the commands as outlined here: https://codelabs.developers.google.com/codelabs/similary-search-spanner-vertex#2 At step 4 ...
WJA's user avatar
  • 7,054
0 votes
1 answer
142 views

From an API perspective, does partitionDML follows the same behavior of retries / timeouts? are all partitions retried? Or only the failed ones? how often and what is the maximum interval this would ...
Naren Mehra's user avatar
-1 votes
1 answer
369 views

We have a use case where we only want to mark only selected rows for deletion based on the value of a non timestamp column (State column) and the time elapsed since the row was created? Is there a way ...
Naren Mehra's user avatar

1
2 3 4 5
15