문제

I'm trying to collect log/app data from my android app using the Google cloud platform. Ultimately, I want to store my data in Big Query, by ingesting a csv or json file from Google Cloud Storage on a nightly basis. My question is, how can I generate the csv that contains information from multiple users of the app (essentially just combining CSV files)? Are there any libraries/sample projects that can help with this?

Furthermore, I want to use this type of flow that does not require user authentication, essentially by having a server take in the reported data from app instances and send that to cloud storage.

도움이 되었습니까?

해결책

No need to convert to CSV or JSON just to import from GCS to BQ. You can write directly from your App Engine app to BQ - here is an article demonstrating how to do that with a MapReduce.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top