AppScale / gts

AppScale is an easy-to-manage serverless platform for building and running scalable web and mobile applications on any infrastructure.
https://www.appscale.com/community/
Apache License 2.0
2.42k stars 277 forks source link

UA server use schema for postgres table and remove cassandra requirement #3207

Closed sjones4 closed 4 years ago

sjones4 commented 4 years ago

The UA server is updated to use the created schema for postgres. When using postgres we now no longer require cassandra is running.

sjones4 commented 4 years ago

Daily build no. 6967

sjones4 commented 4 years ago

Demo is that the table is created under the appscale_ua schema:

psql (10.10 (Ubuntu 10.10-0ubuntu0.18.04.1))
SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384, bits: 256, compression: off)
Type "help" for help.

appscale-db=> \dn
    List of schemas
    Name     |  Owner   
-------------+----------
 appscale_ua | appscale
 public      | postgres
(2 rows)

appscale-db=> \dt appscale_ua.*
             List of relations
   Schema    |   Name   | Type  |  Owner   
-------------+----------+-------+----------
 appscale_ua | ua_users | table | appscale
(1 row)

appscale-db=> \dt 
Did not find any relations.
appscale-db=>