developmentseed / developmentseed/eoAPI

Add SQL function to create geom/datetime indexes when creating a new Table in the public schema

Aperta
#68 4 commenti 0 reazioni 1 assegnatario Rivendicata da @bitner Vedi su GitHub
enhancement
Lingua principale
Shell
Stelle
326
Fork
33
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

eoAPI is built on top a Postgres database that has a pgSTAC schema but also a public one we can use to store other geo data. We don't have a service to ingest data but I think it will be cool to create a simple SQL script to automatically create INDEX on any geometry and datetime column so `eoapi.vector` is fast.

```sql
CREATE OR REPLACE FUNCTION on_create_table_func()
RETURNS event_trigger AS $$
BEGIN
-- find geom/datetime column
-- add indexes
END
$$
LANGUAGE plpgsql;

CREATE EVENT TRIGGER
on_create_table ON ddl_command_end
WHEN TAG IN ('CREATE TABLE')
EXECUTE PROCEDURE on_create_table_func();
```

The function and trigger should be used in https://github.com/developmentseed/eoAPI/blob/019e4b56cbfe5919883833a3656c28ba6ad3375e/infrastructure/aws/handlers/db_handler.py#L268

cc @bitner

Guida per i contributori

Apri la guida per i contributori

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.