Skip to content

kanjihara/bigtable_endpoint_gae

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

bigtable_endpoint_gae

A example project using Google App Engine Flex-Compat in Java with Bigtable.

Products

Language

APIs

APIs app

  • poc.sample.allTask - Example test to execute:

    1. Connect in Bigtable
    2. Create table
    3. Write some rows to the table
    4. Get the first greeting by row key
    5. Clean up by disabling Table
    6. Delete the table
  • poc.sample.createTable - Create Table with Column Family and Column Qualifiers.

{
 
  "row_key": "Row Key #mandatory#",  
  
  "columnFamily1": {             
   "columnQualifier1": "Value of Column Qualify",
   "columnQualifier1": "Value of Column Qualify"
  },
  
  "columnFamily1": {
    "columnQualifier1": "Value of Column Qualify",
   "columnQualifier1": "Value of Column Qualify"
  }
}

example:

{
  "row_key": "xpto1",
  "cf1": {
    "c1": "k1",
    "c2": "k2"
  },
  "cf2": {
    "c1": "h1",
    "c2": "h2"
  }
   
}
  • poc.sample.deleteTable
  • poc.sample.findAllKeys
  • poc.sample.upInsertData

About

example using bigtable with cloud endpoints

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages