Questions tagged [google-cloud-datalab]

An online tool for data analysis provided by Google as part of its Cloud Platform.

An easy to use interactive tool for large-scale data exploration, analysis, and visualization.

See more at https://cloud.google.com/datalab.

468 questions
0
votes
1 answer

How to specify API key in Google Cloud Datalab map Google Chart?

Enjoying getting to know Google Charts and Cloud Datalab. Came across this example that requires an API key and can't determine how to communicate it to the library: %%sql --module taxi DEFINE QUERY locations SELECT FLOAT(pickup_latitude) AS lat,…
goose
  • 2,502
  • 6
  • 42
  • 69
0
votes
1 answer

How to load Avro files into BigQuery table in Google Cloud Datalab from Cloud Storage?

Export BigQuery table to Cloud Storage Avro file succeeds table = bq.Table(bq_table_ref) job_id = table.extract(destination=gs_object, format='avro') while import Cloud Storage Avro file into BigQuery table fails table =…
0
votes
1 answer

why am I able to SSH from command line, but not from `datalab connect`?

I've been playing with google datalab and it's hard to get a connection to the notebook I can create/launch an instance successfuly but usually the notebook is unavailable $ datalab create [instance] Connecting to [instance]. This will create an…
michael
  • 4,377
  • 8
  • 47
  • 73
0
votes
1 answer

Connecting to a container that is based on gcr.io public datalab image

I am trying to have a simple datalab image running from my private container registry and facing datalab connection issue. Please take a look at steps and let me know if you see any obvious issue. The steps are: Running on MAC…
eilalan
  • 669
  • 4
  • 20
0
votes
2 answers

Install Package with Pip on Google Datalab - No Space on Device

I'm trying to install the package sodapy using Pip on a fresh instance of Google Datalab but I'm receiving the error 'No space left on device.' I created this instance with over 100 GB of disk space so I'm a bit confused why I would be getting this…
0
votes
0 answers

Error connecting to Apache Ignite via Docker using Python

I'm trying to work with Apache Ignite and use it to cache data from Bigquery. To understand how it works, I started with the steps here: https://apacheignite.readme.io/docs/docker-deployment to get the Ignite server up and running. Then, I followed…
CodingInCircles
  • 2,565
  • 11
  • 59
  • 84
0
votes
2 answers

Big data in datalab

I'm trying to load my csv file into datalab. But the csv file is too large to load. Even if I managed to do that, it'll take too long to do the preprocessing. I'm thinking of using Keras to do ML on this dataset. The questions are: How do I use a…
Elona Mishmika
  • 480
  • 2
  • 5
  • 21
0
votes
1 answer

Google Datalab: Java not installed

I am trying to utilize the H2O package in a Jupyter notebook running in the Google Datalab hosted on GCP and am getting the error that Java isn’t installed. I’ve searched the documentation but haven’t found any solutions. Appreciate any ideas. …
Chuck
  • 135
  • 1
  • 3
  • 9
0
votes
1 answer

Google Cloud Datalab Minimum System Requirements

Is it possible to create a google cloud datalab with f1-micro and 20GB of boot disk and 10GB of persistent disk? Or is the minimum requirement, the default of n1-standard-1 and 200GB Standard Persistent Disk? I tried to create a datalab instance…
Prashanth
  • 1,351
  • 2
  • 8
  • 4
0
votes
1 answer

How to create a datalab Linux instance that runs ubuntu OS?

I want to create a Datalab Linux instance that runs Ubuntu OS. I tried this command: datalab create [Instance-Name] --image-name ubuntu-1604-xenial-v2xxxxx The instance has been created. However, I can't access the Datalab notebooks via…
0
votes
1 answer

Google Datalab: How to put the code on a trigger/CRON to run daily

I'm new to Datalab. After going through the Quickstart and much of documentation, I still cannot figure out what to do if I want to run a notebook automatically e.g. once a day. Can you please help Thanks
Ilja
  • 993
  • 2
  • 17
  • 36
0
votes
1 answer

Upload Numpy matrix from DataLab to BigQuery

I have a numpy matrix as output in DataLab. How can I get it as a table in BigQuery? so far it seems that I need to translate it into JSON, save in the Storage and upload from there. Is there a simpler way to get this done? Thanks
Ilja
  • 993
  • 2
  • 17
  • 36
0
votes
1 answer

CPU swamped by node and zip in cloud datalab instance

I have recurring performance issue for my cloud datalab GCE instances, which over time seem to get swamped by root-level node and zip processes that are unrelated to my notebooks. (see image) I have 4 CPUs and now 15GB of RAM, but making machines…
1000
  • 3
  • 3
0
votes
1 answer

Where do files created from inside Jupyter notebooks (Google Cloud Datalab) reside?

Running this code cell %%bash touch /var/tmp/hello_world ls -l /var/tmp/hello_world inside a Google Cloud Datalab (i.e. Jupyter) notebook leaves me wondering: where does the file actually reside. It is not stored as /var/tmp/hello_world locally…
Drux
  • 11,992
  • 13
  • 66
  • 116
0
votes
1 answer

ImportError: No module named 'urllib3' in Jupyter notebook

I have a Jupyter notebook (in Google Cloud Datalab) with a python3 kernel. In that notebook import urllib3 produces ImportError: No module named 'urllib3', but %%bash pip list | grep urllib3 produces urllib3 (1.22). What is going on here? Why can…
Drux
  • 11,992
  • 13
  • 66
  • 116