Cosme
Cosme

Reputation: 33

Google Cloud Background Task with .Net Core

Im trying to find the best compute engine solution for converting(and compressing) files uploaded to a Cloud Storage Bucket as a background task.

Basically the user defines an xml file that tells this background task what to do and when the process is over it sends the link over email or dropbox.

Is there anything similar to Google Cloud Functions using .Net Core (inside GCP). Or what would be the preferred way to do it without waiting a lot of resources running a full VM.

Upvotes: -1

Views: 219

Answers (1)

Jeffrey Rennie
Jeffrey Rennie

Reputation: 3443

Google Cloud Functions does not support .NET core today.

Running a small instance continuously on Compute Engine looks like the best solution on GCP today. It will be the least expensive. If you want GCP to manage your instances, then App Engine Flex can run .NET code too.

Upvotes: 1

Related Questions