-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated README.md and configured integration test to run setup and cl…
…eanup logic
- Loading branch information
Showing
7 changed files
with
480 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"GoogleProjectID": "Your Google Project ID", | ||
"SpannerDb": "Your Spanner Database Name", | ||
"GoogleProjectID": "cc-dev-sandbox-20200619", | ||
"SpannerDb": "test-db", | ||
"QueryLimit": 5000 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"dynamodb_adapter_table_ddl": "instance-ID of dynamodb_adapter_table_ddl table", | ||
"dynamodb_adapter_config_manager": "instance-ID of dynamodb_adapter_config_manager table", | ||
"tableName": "instance-ID of Table" | ||
"dynamodb_adapter_table_ddl": "test-instance", | ||
"dynamodb_adapter_config_manager": "test-instance", | ||
"department": "test-instance", | ||
"employee": "test-instance" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
{ | ||
"tableName":{ | ||
"partitionKey":"primary key or Partition key", | ||
"sortKey": "sorting key of dynamoDB adapter", | ||
"employee":{ | ||
"partitionKey":"emp_id", | ||
"sortKey": "", | ||
"attributeTypes": { | ||
"ColInt64": "N", | ||
"ColString": "S", | ||
"ColBytes": "B", | ||
"ColBool": "BOOL", | ||
"ColDate": "S", | ||
"ColTimestamp": "S" | ||
"emp_id": "N", | ||
"first_name":"S", | ||
"last_name":"S", | ||
"address":"S", | ||
"age":"N" | ||
}, | ||
"indices": { | ||
"indexName1": { | ||
"sortKey": "sort key for indexName1", | ||
"partitionKey": "partition key for indexName1" | ||
} | ||
} | ||
"indices": {} | ||
}, | ||
"department":{ | ||
"partitionKey":"d_id", | ||
"sortKey": "", | ||
"attributeTypes": { | ||
"d_id": "N", | ||
"d_name":"S", | ||
"d_specialization":"S" | ||
}, | ||
"indices": {} | ||
} | ||
} |
Oops, something went wrong.