Fork me on GitHub
#data-science
<
2018-04-09
>
Fahd El Mazouni08:04:37

thank you @nickbauman! never thought of that !

4
Naylyn09:04:06

You can also setup cloud functions to trigger when a file lands in datastore, which may be more or less suitable than app engine depending on the scale and update rate.

Fahd El Mazouni09:04:28

right now I think I'll just put data in BQ as it comes, because I want the front end to be real time (or as close to real time as possible)

Fahd El Mazouni09:04:56

webhook -> event(carries data) -> cloud function -> BQ

Naylyn10:04:44

if you want to get really fancy gcloud does have data streaming apis too

Fahd El Mazouni10:04:15

they can handle webhooks ? do you have a suggestion ?

Naylyn10:04:17

Not really. Based on what you've said so far I think your proposed solution is good and likely using something more powerful would be over engineering. But it's good to be aware that the more powerful solution exists.

Fahd El Mazouni12:04:11

thank you for your help !