Google BigQuery is a web service that lets you do interactive analysis of massive datasets—up to billions of rows. Scalable and easy to use, BigQuery lets developers and businesses tap into powerful data analytics on demand.
1
vote
1answer
50 views
Error loading Google App Engine backup on BigQuery
In my GAE App I just do a datastore_backup for all Kinds.
When I try to load it to BigQuery almost Kinds was successfully loaded however with one Kind I have this error:
invalid - Invalid field ...
1
vote
1answer
83 views
Consistency of HASH function
A pretty simple question: which version of CityHash is hidden behind the HASH function of BigQuery? Is it always the latest (today v1.1), or rather a fixed version?
Now, a little bit of backgroud. I ...
1
vote
1answer
91 views
Google BigQuery - Moderate size join, Backend Error
I'm trying to do an inner join between one table with 40,514 rows (less than 1 Mb table) and a table with 4,359,682 rows (~450MB).
In the past I have been successful in performing these kind of ...
0
votes
1answer
95 views
Big Query vs Text Search API
I wonder if Big Query is going to replace/compete with Text Search API? It is kinda stupid question, but Text Search API is in beta for few months and has very strict API calls limit. Bug Big Query is ...
1
vote
1answer
47 views
how can I save a big query job object in the data store
I have some big query jobs that have failed, I'm trying to develop a retry mechanism in which I will save all jobs that have failed in the data store and later on reattempt to run them.
so, I have my ...
0
votes
1answer
68 views
bigquery url decode
Is there an easy way to do URL decoding within the BigQuery query language? I'm working with a table that has a column containing URL-encoded strings in some values. For example:
...
3
votes
1answer
81 views
How to name a table column including dot?
I noticed that if I rename a column name include ., e.g., device.name, it would be automatically converted to device_name in BigQuery.
select Device device.name from mydataset.DeviceTable limit 10
...
0
votes
1answer
45 views
BigQuery import “Unexpected” error
I am trying to import a large test file into BigQuery and the import process fail after few hours with
Unexpected. Please try again.
This is my jobId:
job_f3d6dbaae8af4aa286ef1d50c12a6
Could ...
0
votes
1answer
32 views
What to do about InternalError
Every now and then I start getting "Unexpected. Please try again." for ANY query i try. It usually gets better a bit later but the rate at which it appears is very worrying.
What can I do when this ...
0
votes
1answer
42 views
Bigquery using within with where
What is the correct syntax for the following query in bigquery?
SELECT COUNT(children.names) WITHIN RECORD AS numberOfChildren FROM [dataset.tableId] where numberOfChildren > 10;
0
votes
1answer
74 views
Google BigQuery - "Not Found: Project [project-id]
I'm having a problem getting started with Google BigQuery. I'm certain I have done everything correctly to create and configure the account. But when I go to the web interface, the it seems unable to ...
0
votes
1answer
44 views
How to count collocations in a repeating field
I have a repeating field A which contains a list of strings. what would be a good way to find TOP strings which coincide with a given string. So, if A holds hashtags, for a given hashtag #T1, find the ...
0
votes
1answer
37 views
How to avoid InternalError on joins with subselects
I am getting an internalError when running a query that joins two subselects. The query looks like this:
SELECT data_table.title AS name
FROM
(
SELECT id, title
FROM
...
0
votes
1answer
83 views
BigQuery not accurately returning results
I'm using GoogleApp Engine and occasionally when I send a query to BigQuery via the JSON API, I will get incorrect results. It is usually only confined to a single table within BigQuery (I make a new ...
0
votes
1answer
78 views
Can I get a list of Public Ip Addresses that the bq tool may use to import into Big Query?
I use a Proxy to use the bq tool to import data into bigquery, but my Proxy requires that i specify both the domain and all potential public IP addresses that it will need to allow out. I have it ...
2
votes
1answer
163 views
Google BigQuery is running queries slowly
I'm running a simple bigQuery over my dataset which is about 84GB of log data.
The query takes approx 110 seconds to complete. Is this normal for a data set of this size?
1
vote
1answer
63 views
HttpError 400 in jobs.get(jobId,ProjectId) even with right values
when I call jobs.get(jobId,ProjectID);
I get:
"code" : 400, "errors" : [ {
"domain" : "global",
"message" : "Invalid project ID 'My_Project_ID:job_6c2e8cc358ad42d2ad55ef266d342b68'.
...
0
votes
1answer
45 views
Randmly getting internalError:Unexpected. Please try again [closed]
I've an script that was working for months with no problems, since November 28 it is getting this error randomly when getting job results.
I've seen that it's supose to be solved but it continues ...
1
vote
1answer
71 views
Timeout on bigquery v2 from GAE
I am doing a query to BigQuery from my app in google app engine, and receive a weird result from BQ sometimes (discovery#restDescription). It took me some time to understand that the problem occurs ...
1
vote
1answer
57 views
What is the maximum number of nested records in a record?
If I create a record in BigQuery how many different nested records can I have inside in the schema? Is there a limit to the size of the schema?
Is this possible:
AA: Record
A1: Record
A2: Record
...
2
votes
1answer
80 views
Format of Google BigQuery public ngram dataset?
I would like to use Google books ngram dataset in my project, it is available on BigQquery but the format is not explained.
Can anybody clarify it or point to the description?
0
votes
1answer
86 views
Cost for scanning nested\repeated data in bigquery
I know that the pricing for scanning data in the bigquery queries is determined by which columns are accessed.
How does this play out with nested and repeated data?
Is all the data for each record ...
1
vote
3answers
139 views
How to parse json response from Bigquery results?
I tried sample javascript code to call Google bigQuery API ( https://developers.google.com/bigquery/docs/authorization#client-side-javascript )
Js:
function runQuery() {
var request = ...
0
votes
1answer
51 views
Google BigQuery Failed Error Unexpected, Please try again
This query
select word from [publicdata:samples.shakespeare] where word="aslp"
gives me an error
Query Failed
Error: Unexpected. Please try again.
Till today morning this thing was working fine ...
0
votes
2answers
89 views
Bad response to a BigQuery query: kind:discovery#restDescription instead of bigquery#queryResults
I'm getting a response I'm totally not expecting to a query I'm doing from appengine.
Instead of a response with the kind "bigquery#queryResults" which is expected according to the BigQuery docs, ...
1
vote
0answers
60 views
NoSuchMethodError error when invoking projectListRequest.execute() method
I am trying to develop a simple BigQuery App using JSP Servlets. I am following the exampla given on https://developers.google.com/bigquery/docs/authorization
In the early stages, the doGet method ...
1
vote
1answer
97 views
Uploading of a CSV to BigQuery fails
I have using the bigquery uploading system over 3 months , I push data to bigquery for every one hour and it has been working fine . But since yesterday , all my Uploads are failing . Error at the ...
0
votes
2answers
115 views
Trying to Authorize Access to Google BigQuery via API Key
i try to access to BigQuery via the REST API from my webserver by this request for example:
https://www.googleapis.com/bigquery/v2/projects/project%3Aid/queries?fields=rows&key={YOUR_API_KEY}
As ...
0
votes
1answer
105 views
Authorizing Application Access to BigQuery without User Interaction, via PHP
I have a website, that does the simple work of fetching an USN from Google BigQuery on the cloud. Now, while accessing each time, I need to have a Google Account and also that particular email-id, ...
1
vote
2answers
205 views
Migrate s3 data to google cloud storage
I have a python web application deployed on Google App Engine.
I need to grab a log file stored on Amazon S3 and load it into Google Cloud Storage. Once it is in Google Cloud Storage I may need to ...
4
votes
1answer
52 views
Import data in ProtocolBuffer format
Is it possible to import data in BigQuery in a ProtocolBuffer format? I have a (very) large set of data already in this format, and I would like now to push them into BigQuery. But if I can avoid the ...
2
votes
1answer
103 views
Is it possible to join cloud sql table to bigquery?
I have a large amount of data in bigquery and I want to do some analysis that would be enhanced by doing a join to a small set of data I have in cloud sql. I've search but cannot find a sql based ...
-1
votes
1answer
41 views
Translating a Google BigQuery query to Sqlite3
I have the following BigQuery query that works well:
SELECT created_at, actor_attributes_email, type FROM [githubarchive:github.timeline]
WHERE
(repository_name="rubinius") AND
(created_at ...
1
vote
1answer
116 views
doing a group by in google Bigquery
Here is my BigQuery
SELECT word,word_count,corpus_date FROM [publicdata:samples.shakespeare] where word="the" order by word_count asc
which gives output as
Row word word_count corpus_date ...
0
votes
2answers
128 views
Parsing data to create a json data object with Python
Here is my data from google bigquery to parse:
{
u'kind': u'bigquery#queryResponse',
u'rows': [
{
u'f': [
{
u'v': u'the'
...
2
votes
1answer
110 views
Error: Not Found: Project <project-id>
I've recently signed up to Google BigQuery for curiosity's sake and saw that it allows one to play with sample data sets without enabling billing. I followed the installation steps, first creating a ...
1
vote
2answers
126 views
how to get multiple files from cloud storage to big query using java api
I have data in the cloud storage and I want to transfer the data to big query and get statistics.
currently I'm using a JobConfigurationLoad to get a single file here is a sample of the code:
...
0
votes
1answer
142 views
Google Big Query using php scripts, not able to host the api on to the web
I have tried to implement the connection between by localhost and bigquery api , using google-api-php-client , it works all fine , but then i tried to host it on to a website , and I am getting a ...
0
votes
1answer
147 views
Import GAE data through Storage into BigQuery fails
In Google App Engine I created a backup using the Datastore Admin. I selected Google Cloud Storage as the destination and now I have a bucket with my backup.
Now I'm trying to import that data into ...
1
vote
1answer
141 views
Joins on Google Bigquery
I know that work is being done to improve the Join feature on Bigquery, not to rant here but it will be hard to analyze Terrabyte sets of data as advertised if Joins can not be used properly.
OK, ...
1
vote
1answer
100 views
How to see public datasets?
I'm trying to view the github public dataset, following instructions on the github website. The instructions there say to "add the project name githubarchive, but when on the bigquery site I see no ...
0
votes
2answers
164 views
INSERT in the query part of BigQuery, using google--api-php-client .
I wanted to insert thousands of records in the database using INSERT command in php script , as it will easier to access, but https://developers.google.com/bigquery/docs/query-reference , this doesn't ...
0
votes
1answer
51 views
Does flattening affect pricing in BigQuery
BigQuery supports repeating, array columns. These can be expanded ("flattened") by using the FLATTEN function. Since pricing in BigQuery is bound to the size of the dataset (the used column to be more ...
0
votes
1answer
116 views
Request content for uploading local csv file's data to BigQuery tables
Instantiating HttpWebRequest and setting properties values:-
HttpWebRequest request = ...
1
vote
1answer
127 views
HttpError 403 when requesting https://www.googleapis.com/bigquery/v2/projects/publicdata/queries?alt=json returned "Access Denied: Job publicdata:
i'm getting the following error while trying to run a query on Bigquery using GAE python.
HttpError 403 when requesting https://www.googleapis.com/bigquery/v2/projects/publicdata/queries?alt=json ...
2
votes
1answer
117 views
Filtering a query causes “Response too large” error
Running the query
SELECT project, test_id, log_time,
connection_spec.client_geolocation.latitude,
connection_spec.client_geolocation.longitude
FROM m_lab.2012_11
GROUP BY project, ...
0
votes
0answers
109 views
BigQuery queries are failing with “Unexpected. Please try again” [closed]
We are trying to fire a query on a current table through the API and BigQuery console. We are getting an error message like ”Unexpected. Please try again.”.
Please find below full stack trace of the ...
0
votes
1answer
267 views
Importing local CSV files data to Big Query table using HttpWebRequest POST method
I'm trying to create a new job body and posting this body to BigQuery using HttpWebRequest object.
The body contains two part viz. Definition and Content from csv. I don't know where i'm stuck and i'm ...
1
vote
1answer
158 views
Getting broken link error whle Using App Engine service accounts
I'm following this tutorial
https://developers.google.com/bigquery/docs/authorization#service-accounts-appengine
Here is my main.py code
import httplib2
from apiclient.discovery import build
from ...
0
votes
1answer
117 views
Error trying to Access BigQuery using API key(Simple API Access)
401 Unauthorized
- Show headers -
{
"error": {
"errors": [
{
"domain": "global",
"reason": "required",
"message": "Login Required",
"locationType": "header",
...