How to fix missing instance in google cloud big tableBug in GCE Developer Console 'equivalent command line'Google Cloud Bug - Issue deploying node js app to google cloud instanceError exporting data from Google Cloud BigtableEclipse: could not construct GCS clientGoogle Cloud BigTable Scanning SpeedsHow to connect to a bigtable emulator using cbt command lineHow to share Google Cloud images with *other* users?403 Response from Google Cloud FunctionsGoogle Cloud Compute Viewer allows to SSH while it should notE: Malformed entry 7 in list file /etc/apt/sources.list.d/google-cloud-sdk.list (Suite) E: The list of sources could not be read
12V lead acid charger with LM317 not charging
Colleagues speaking another language and it impacts work
How to continue a line in Latex in math mode?
Does the Voyager team use a wrapper (Fortran(77?) to Python) to transmit current commands?
Is Odin inconsistent about the powers of Mjolnir?
What is the German idiom or expression for when someone is being hypocritical against their own teachings?
"To go from zero to hero"
Is there a difference between 「目を覚ます」 and 「目覚める」
How to halve redstone signal strength?
"In charge of" vs "Responsible for"
Why should I "believe in" weak solutions to PDEs?
Is it true that control+alt+delete only became a thing because IBM would not build Bill Gates a computer with a task manager button?
Determine Beckett Grading Service (BGS) Final Grade
Will a paper be retracted if a flaw in released software code invalidates its central idea?
Print only the last three columns from file
Why do private jets such as Gulfstream fly higher than other civilian jets?
How many years before enough atoms of your body are replaced to survive the sudden disappearance of the original body’s atoms?
Should I take out a personal loan to pay off credit card debt?
Probably terminated or laid off soon; confront or not?
Is it a bad idea to offer variants of a final exam based on the type of allowed calculators?
How to approach protecting my code as a research assistant? Should I be worried in the first place?
What does VB stand for?
Does this put me at risk for identity theft?
What are the examples (applications) of the MIPs in which the objective function has nonzero coefficients for only continuous variables?
How to fix missing instance in google cloud big table
Bug in GCE Developer Console 'equivalent command line'Google Cloud Bug - Issue deploying node js app to google cloud instanceError exporting data from Google Cloud BigtableEclipse: could not construct GCS clientGoogle Cloud BigTable Scanning SpeedsHow to connect to a bigtable emulator using cbt command lineHow to share Google Cloud images with *other* users?403 Response from Google Cloud FunctionsGoogle Cloud Compute Viewer allows to SSH while it should notE: Malformed entry 7 in list file /etc/apt/sources.list.d/google-cloud-sdk.list (Suite) E: The list of sources could not be read
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a problem when I do tutorial quickstart cbt (https://cloud.google.com/bigtable/docs/quickstart-cbt) when I create the table by using command cbt createtable my-table and it shows me error missing an instance
jurarut_subcheevaanan@cloudshell:~ (my-project-test-big-table)$ sudo
echo project = my-project-test-big-t able > ~/.cbtrc
jurarut_subcheevaanan@cloudshell:~ (my-project-test-big-table)$ sudo
echo instance = quickstart-instance >> ~/.cbtrc
jurarut_subcheevaanan@cloudshell:~ (my-project-test-big-table)$ cbt
createtable my-table
2019/03/27 10:24:38 -creds flag unset, will use gcloud credential
2019/03/27 10:24:40 Missing -instance
google-cloud-platform google-cloud-bigtable
add a comment |
I have a problem when I do tutorial quickstart cbt (https://cloud.google.com/bigtable/docs/quickstart-cbt) when I create the table by using command cbt createtable my-table and it shows me error missing an instance
jurarut_subcheevaanan@cloudshell:~ (my-project-test-big-table)$ sudo
echo project = my-project-test-big-t able > ~/.cbtrc
jurarut_subcheevaanan@cloudshell:~ (my-project-test-big-table)$ sudo
echo instance = quickstart-instance >> ~/.cbtrc
jurarut_subcheevaanan@cloudshell:~ (my-project-test-big-table)$ cbt
createtable my-table
2019/03/27 10:24:38 -creds flag unset, will use gcloud credential
2019/03/27 10:24:40 Missing -instance
google-cloud-platform google-cloud-bigtable
add a comment |
I have a problem when I do tutorial quickstart cbt (https://cloud.google.com/bigtable/docs/quickstart-cbt) when I create the table by using command cbt createtable my-table and it shows me error missing an instance
jurarut_subcheevaanan@cloudshell:~ (my-project-test-big-table)$ sudo
echo project = my-project-test-big-t able > ~/.cbtrc
jurarut_subcheevaanan@cloudshell:~ (my-project-test-big-table)$ sudo
echo instance = quickstart-instance >> ~/.cbtrc
jurarut_subcheevaanan@cloudshell:~ (my-project-test-big-table)$ cbt
createtable my-table
2019/03/27 10:24:38 -creds flag unset, will use gcloud credential
2019/03/27 10:24:40 Missing -instance
google-cloud-platform google-cloud-bigtable
I have a problem when I do tutorial quickstart cbt (https://cloud.google.com/bigtable/docs/quickstart-cbt) when I create the table by using command cbt createtable my-table and it shows me error missing an instance
jurarut_subcheevaanan@cloudshell:~ (my-project-test-big-table)$ sudo
echo project = my-project-test-big-t able > ~/.cbtrc
jurarut_subcheevaanan@cloudshell:~ (my-project-test-big-table)$ sudo
echo instance = quickstart-instance >> ~/.cbtrc
jurarut_subcheevaanan@cloudshell:~ (my-project-test-big-table)$ cbt
createtable my-table
2019/03/27 10:24:38 -creds flag unset, will use gcloud credential
2019/03/27 10:24:40 Missing -instance
google-cloud-platform google-cloud-bigtable
google-cloud-platform google-cloud-bigtable
asked Mar 27 at 4:32
Jurarut SubcheevaananJurarut Subcheevaanan
65 bronze badges
65 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I have tried the Quickstart tutorial and it is working as expected. All the steps were executed successfully.
After taking a look at your error logs, it seems that the project name might not have been set up properly, there seems to be an extra space in the name.
(my-project-test-big-table)$ sudo echo project = my-project-test-big-t
able > ~/.cbtrc
It appears that there is a space between my-project-test-big-t and able. In that case the command can't find the project which of course will also fail to find the instance name.
As I mentioned, the Quickstart is working perfectly. Make sure that when you setup the project name it is set up correctly, if you are still getting the issue, start afresh in a different directory.
Thank a lot. I'm just newbie in here. I already fix it. That work!
– Jurarut Subcheevaanan
Mar 29 at 2:16
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%2f55369859%2fhow-to-fix-missing-instance-in-google-cloud-big-table%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
I have tried the Quickstart tutorial and it is working as expected. All the steps were executed successfully.
After taking a look at your error logs, it seems that the project name might not have been set up properly, there seems to be an extra space in the name.
(my-project-test-big-table)$ sudo echo project = my-project-test-big-t
able > ~/.cbtrc
It appears that there is a space between my-project-test-big-t and able. In that case the command can't find the project which of course will also fail to find the instance name.
As I mentioned, the Quickstart is working perfectly. Make sure that when you setup the project name it is set up correctly, if you are still getting the issue, start afresh in a different directory.
Thank a lot. I'm just newbie in here. I already fix it. That work!
– Jurarut Subcheevaanan
Mar 29 at 2:16
add a comment |
I have tried the Quickstart tutorial and it is working as expected. All the steps were executed successfully.
After taking a look at your error logs, it seems that the project name might not have been set up properly, there seems to be an extra space in the name.
(my-project-test-big-table)$ sudo echo project = my-project-test-big-t
able > ~/.cbtrc
It appears that there is a space between my-project-test-big-t and able. In that case the command can't find the project which of course will also fail to find the instance name.
As I mentioned, the Quickstart is working perfectly. Make sure that when you setup the project name it is set up correctly, if you are still getting the issue, start afresh in a different directory.
Thank a lot. I'm just newbie in here. I already fix it. That work!
– Jurarut Subcheevaanan
Mar 29 at 2:16
add a comment |
I have tried the Quickstart tutorial and it is working as expected. All the steps were executed successfully.
After taking a look at your error logs, it seems that the project name might not have been set up properly, there seems to be an extra space in the name.
(my-project-test-big-table)$ sudo echo project = my-project-test-big-t
able > ~/.cbtrc
It appears that there is a space between my-project-test-big-t and able. In that case the command can't find the project which of course will also fail to find the instance name.
As I mentioned, the Quickstart is working perfectly. Make sure that when you setup the project name it is set up correctly, if you are still getting the issue, start afresh in a different directory.
I have tried the Quickstart tutorial and it is working as expected. All the steps were executed successfully.
After taking a look at your error logs, it seems that the project name might not have been set up properly, there seems to be an extra space in the name.
(my-project-test-big-table)$ sudo echo project = my-project-test-big-t
able > ~/.cbtrc
It appears that there is a space between my-project-test-big-t and able. In that case the command can't find the project which of course will also fail to find the instance name.
As I mentioned, the Quickstart is working perfectly. Make sure that when you setup the project name it is set up correctly, if you are still getting the issue, start afresh in a different directory.
answered Mar 27 at 12:35
Andrei CusnirAndrei Cusnir
1,3451 gold badge7 silver badges15 bronze badges
1,3451 gold badge7 silver badges15 bronze badges
Thank a lot. I'm just newbie in here. I already fix it. That work!
– Jurarut Subcheevaanan
Mar 29 at 2:16
add a comment |
Thank a lot. I'm just newbie in here. I already fix it. That work!
– Jurarut Subcheevaanan
Mar 29 at 2:16
Thank a lot. I'm just newbie in here. I already fix it. That work!
– Jurarut Subcheevaanan
Mar 29 at 2:16
Thank a lot. I'm just newbie in here. I already fix it. That work!
– Jurarut Subcheevaanan
Mar 29 at 2:16
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
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%2f55369859%2fhow-to-fix-missing-instance-in-google-cloud-big-table%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