Skip navigation links
Overview of GAEL Server

See: Description

Packages 
Package Description
org.gael.core.cfg  
org.gael.core.hand  
org.gael.core.pod.def  
org.gael.core.srv  
org.gael.core.task  
org.gaelic.anno  
org.gaelic.becu  
org.gaelic.cit.agm  
org.gaelic.docs.run  
org.gaelic.gen.jwire  
org.gaelic.gen.pod  
org.gaelic.icon  
org.gaelic.jwire  
org.gaelic.pod.base  
org.gaelic.pod.bld  
org.gaelic.pod.run  
org.gaelic.psec  
org.gaelic.shr  
org.gaelic.util  

Overview of GAEL Server

Google App Engine (standard version) excels in seamless scalability, automatic load balancing, and high availability, freeing developers from infrastructure concerns. Supporting multiple programming languages such as Python, Java, Node.js, and Go, it offers programming flexibility. The platform boasts robust security features, including built-in security scanning and encryption, while integrating smoothly with other Google Cloud services. Its serverless architecture ensures cost-effective usage, paying only for resources consumed, making it an efficient choice for application hosting and deployment. The free quota includes 1G of free cloud storage and about 50K reads and 20K writes per day.

The design of the GAEL package would exploits the design of the Google App engine platform, in particular, the free daily quotas. Even when it exceeds the quota, it minimizes how much of the beyond quota resources are consumed.

The main design points of the GAEL server are:

  1. It is designed for record counts of 50K records or less (what will fit in a desktop or mobile devices memory)
  2. A low-frequency update requirement (it uses timestamps to detect update collisions) (10 per minute average)
  3. A small number of concurrent users that update the DB (100)
  4. These design points may not be limitations based on the particular use case.
  5. A Pod definition language is used to define schemas for the data stored on the Google Datastore facility.
  6. The Pod definition language as the single source of truth for the whole infrastructure including supporting multiple languages.
  7. The JWire serialization technique provided that encodes data in an efficient, human-readable compressed format that is language agnostic and efficient to store and transmit.
  8. The use of the UpdateTS marker on each entity that allows for efficient cache updates as well as stale update detection.
  9. The double login employed by some applications (such as donation recording) that require 2 persons to be present.
  10. The external access token that can be shared and incorporates knowledge about what application and credentials to use.
  11. Use of the local server (which has no quota) to process data and then using the bulk transmission to update the production server on the cloud with perhaps summarized data.
  12. The implementation of the hot loader that coordinates with the Svelte Rollup.js nodeJS application to provide hot loader capabilities to the GAEL application.
  13. The Icon strategy and generator for multiple servers, multiple applications to each have a visibly unique icon on the browser tab bar.
  14. The use of the Gael project ID to select and load the application context, both in production and on the local server.
  15. The use of a DB entity prefix that improves debugging because the log files identify what Entity is being referenced.



Powered by GAEL (c) 2019 authored by Steve Pritchard of Rexcel Systems Inc and licensed under a
Creative Commons Attribution-ShareAlike 3.0 Unported License.
Creative Commons License email address
Skip navigation links