Lost data in bigquery
I made a Python 3 script to process some CSV files, but I have a problem with the data.
I send to the stream with the insert_rows function, if I only import one file I have the same rows in the CSV and the BigQuery, but when I import more files, BigQuery lost rows respect CSV file, but insert_rows don't return errors.
errors = connection.client.insert_rows(table_ref, info, selected_fields=schema) # API request
Thanks for the help
python google-bigquery
add a comment |
I made a Python 3 script to process some CSV files, but I have a problem with the data.
I send to the stream with the insert_rows function, if I only import one file I have the same rows in the CSV and the BigQuery, but when I import more files, BigQuery lost rows respect CSV file, but insert_rows don't return errors.
errors = connection.client.insert_rows(table_ref, info, selected_fields=schema) # API request
Thanks for the help
python google-bigquery
1
I don't follow your question. Can you try and elaborate a little more?
– Graham Polley
Nov 12 '18 at 21:05
Fix the problem add new unique colum into CSV
– GoldraK
Nov 26 '18 at 14:28
@GoldraK please consider to post an answer with the solution.
– MonicaPC
Nov 29 '18 at 20:43
@MonicaPC I use this library for generate new colum and add in all row unique id docs.python.org/3/library/uuid.html
– GoldraK
Dec 5 '18 at 13:10
Great! Will be nice to add it as an answer to the question (not just in the comments) :)
– MonicaPC
Dec 6 '18 at 21:58
add a comment |
I made a Python 3 script to process some CSV files, but I have a problem with the data.
I send to the stream with the insert_rows function, if I only import one file I have the same rows in the CSV and the BigQuery, but when I import more files, BigQuery lost rows respect CSV file, but insert_rows don't return errors.
errors = connection.client.insert_rows(table_ref, info, selected_fields=schema) # API request
Thanks for the help
python google-bigquery
I made a Python 3 script to process some CSV files, but I have a problem with the data.
I send to the stream with the insert_rows function, if I only import one file I have the same rows in the CSV and the BigQuery, but when I import more files, BigQuery lost rows respect CSV file, but insert_rows don't return errors.
errors = connection.client.insert_rows(table_ref, info, selected_fields=schema) # API request
Thanks for the help
python google-bigquery
python google-bigquery
asked Nov 12 '18 at 10:28
GoldraKGoldraK
42
42
1
I don't follow your question. Can you try and elaborate a little more?
– Graham Polley
Nov 12 '18 at 21:05
Fix the problem add new unique colum into CSV
– GoldraK
Nov 26 '18 at 14:28
@GoldraK please consider to post an answer with the solution.
– MonicaPC
Nov 29 '18 at 20:43
@MonicaPC I use this library for generate new colum and add in all row unique id docs.python.org/3/library/uuid.html
– GoldraK
Dec 5 '18 at 13:10
Great! Will be nice to add it as an answer to the question (not just in the comments) :)
– MonicaPC
Dec 6 '18 at 21:58
add a comment |
1
I don't follow your question. Can you try and elaborate a little more?
– Graham Polley
Nov 12 '18 at 21:05
Fix the problem add new unique colum into CSV
– GoldraK
Nov 26 '18 at 14:28
@GoldraK please consider to post an answer with the solution.
– MonicaPC
Nov 29 '18 at 20:43
@MonicaPC I use this library for generate new colum and add in all row unique id docs.python.org/3/library/uuid.html
– GoldraK
Dec 5 '18 at 13:10
Great! Will be nice to add it as an answer to the question (not just in the comments) :)
– MonicaPC
Dec 6 '18 at 21:58
1
1
I don't follow your question. Can you try and elaborate a little more?
– Graham Polley
Nov 12 '18 at 21:05
I don't follow your question. Can you try and elaborate a little more?
– Graham Polley
Nov 12 '18 at 21:05
Fix the problem add new unique colum into CSV
– GoldraK
Nov 26 '18 at 14:28
Fix the problem add new unique colum into CSV
– GoldraK
Nov 26 '18 at 14:28
@GoldraK please consider to post an answer with the solution.
– MonicaPC
Nov 29 '18 at 20:43
@GoldraK please consider to post an answer with the solution.
– MonicaPC
Nov 29 '18 at 20:43
@MonicaPC I use this library for generate new colum and add in all row unique id docs.python.org/3/library/uuid.html
– GoldraK
Dec 5 '18 at 13:10
@MonicaPC I use this library for generate new colum and add in all row unique id docs.python.org/3/library/uuid.html
– GoldraK
Dec 5 '18 at 13:10
Great! Will be nice to add it as an answer to the question (not just in the comments) :)
– MonicaPC
Dec 6 '18 at 21:58
Great! Will be nice to add it as an answer to the question (not just in the comments) :)
– MonicaPC
Dec 6 '18 at 21:58
add a comment |
1 Answer
1
active
oldest
votes
Issue was fixed by adding a new unique column into the CSV file, using this Python Standard Library to generate a new column and add in all rows an unique id.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53260228%2flost-data-in-bigquery%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Issue was fixed by adding a new unique column into the CSV file, using this Python Standard Library to generate a new column and add in all rows an unique id.
add a comment |
Issue was fixed by adding a new unique column into the CSV file, using this Python Standard Library to generate a new column and add in all rows an unique id.
add a comment |
Issue was fixed by adding a new unique column into the CSV file, using this Python Standard Library to generate a new column and add in all rows an unique id.
Issue was fixed by adding a new unique column into the CSV file, using this Python Standard Library to generate a new column and add in all rows an unique id.
answered Dec 14 '18 at 4:38
community wiki
MonicaPC
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53260228%2flost-data-in-bigquery%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
I don't follow your question. Can you try and elaborate a little more?
– Graham Polley
Nov 12 '18 at 21:05
Fix the problem add new unique colum into CSV
– GoldraK
Nov 26 '18 at 14:28
@GoldraK please consider to post an answer with the solution.
– MonicaPC
Nov 29 '18 at 20:43
@MonicaPC I use this library for generate new colum and add in all row unique id docs.python.org/3/library/uuid.html
– GoldraK
Dec 5 '18 at 13:10
Great! Will be nice to add it as an answer to the question (not just in the comments) :)
– MonicaPC
Dec 6 '18 at 21:58