If that doesn't fix it, let me know, and we can dig in further.
Please look at https://code.google.com/apis/bigquery/docs/v2/index.html and notice the left side has two sets of documentation links: the bigquery v1 links are on the top, and the bigquery v2 links are on the bottom. Here's the reference link for the new bigquery web ui: https://code.google.com/apis/bigquery/docs/v2/browser_tool.html.
Command-line interface - BigQuery V2 will expose a command-line tool similar to the bq tool; however, this tool is not yet available.
I did setup the Auth token for my account and verified that it worked (wrong password got a 403) on the "bq" tool. Looking at the v2 docs helped, thanks! Turns out the bq tool does not support v2 yet.Command-line interface - BigQuery V2 will expose a command-line tool similar to the bq tool; however, this tool is not yet available.I tried loading the example dataset (babynames) through the UI, and that worked today. Not sure why it didn't yesterday. Is there any lag between the time you upload to Google Storage and when it is available for upload into BigQuery?
I also suspect that loading is failing because my dataset is too big (2.8GB).
But I'm not getting any error message in the job output, only that it failed to load. I'll split the data and try loading it again.
http = httplib2.Http()http = credentials.authorize(http)service = build("bigquery", "v2beta1")should be:service=build("bigquery", "v2beta1", http)
We've also been implementing a python client for BigQuery v2:
http://code.google.com/p/google-bigquery-tools/
I think it'll handle your use case (note that the 'load' command will
append by default), but let us know if there are any features you'd
like to see in bq.
> Also, my colleague Adam found this bug in the example code:
> https://code.google.com/apis/bigquery/docs/v2/developers_guide.html#aclsandrights
>
> http = httplib2.Http()
> http = credentials.authorize(http)
> service = build("bigquery", "v2beta1")
> should be:
> service=build("bigquery", "v2beta1", http)
>
Thanks -- I'll make sure we get this updated!
--
-cc