DocDb Emulator missing functions - azure-cosmosdb

I'm using DocumentDb emulator in my dev environment. I simply downloaded it from the provided link and the local version is 1.11.72.11.
In the Explorer view, I don't see any of the functions to manipulate my database or documents e.g. save, create document, etc. that appear in the intro video.
This is what's in the video:
And this is what I see on my local version:
Any idea why those functions are missing and how I can fix this?

Just got an email response from the DocDb team that they were able to reproduce this issue and they're working to correct it.

Related

Firestore Database not functioning online

I have created a Cloud Firestore Database and have it in Test Mode which means the read and write rules are pretty open for the next 3 weeks.
However when I try to add collections or documents from the web interface they do not show up on the database. I was able to add collections and documents from my android app but even those when I try to view I get "Error loading Documents".
I have tried Firefox and Chrome to see if it was a browser issue and I have disabled my Antivirus (avast) as well to see if that was the issue but no success.
What could be the problem?
There is no way to debug or answer this, you require backend assistance: I suggest reporting the problem to Firebase support. but most likely by the time you get a response, the server will fix itself.
https://firebase.google.com/support/troubleshooter/contact

This project is set up to use Cloud Firestore in Datastore mode. This mode can only be accessed from Google Cloud Platform

I am trying to create firestore database but got the message "This project is set up to use Cloud Firestore in Datastore mode. This mode can only be accessed from Google Cloud Platform".
This is setup using GCP. How can I do that? Also not able to switch to native mode. Please help me.
This message indicates that your database was created in Datastore mode, when you created your project. You should be able to change it by accessing the Datastore Console using this link here and clicking in the available button to switch the mode - check here. However, as clarified in this other post from the Community here, you can only do it once and if you have not performed any changes in your database.
In case you don't fit in these above scenarios, you will need to create a new project and configure Firestore from the beginning.
Let me know if the information helped you!
I face the same problem on creating a fresh project.
I think it's default behavior with latest changes.
Just go to Datastore and switch to NATIVE MODE.
Go over to Firestore Database
Click on the link provided
Change to Native Mode

Topic Creating within Firebase Console

I was wondering how I can create a topic in the console of fire base. I see there is android code to do it from the application but that takes time to reflect on the console. I don't even know where to look if it was created. Also can this be done in Javascript compared to java?
Example code for JS would be nice if I cannot do it through the console.
Thanks,
You don't need to do anything in the console to create a topic. Just start using it by string name on both the server and client, and it will just work.

All I want to do is have access to a user friendly console while on my android device to be able to use my google cloud. Is there such an app?

I downloaded the cloud console app but there is nothing to open up a command line. I'm generally at work and need to access google cloud remotely, idealy from my phone. I want to believe there is a nice way to do this with out generating a key pair and using something like "JuiceSSH". I'm sure I am overlooking something simple here. Hopefully this is a simple problem.
I'm simply trying to unzip and train an image set but I cant do it from work unless I can use my phone :/
Please and thank you everyone!
I started a free vm instance and used the console app to connect via ssh. Instead of from a 3rd party ssh application. This was exactly what I was looking for.

Meteor on a Nitrous box: how to add a test record in the MongoDB database?

So, I have started to test Meteor on a Nitrous.io box in the cloud. I used to enter a test record by typing it directly into the Chrome browser console, like:
Projects.insert({name:'First Project',client:'Project Central',duedate:new Date(),status:'On Hold'});
However, that does not work on Nitrous.
So, how do I add a test record in my meteor collection to work on?
Who can help me in the right direction? Much appreciated.
After you run meteor run in a Nitrous.io console,
open up another console and run meteor mongo.
Then you can type in a db.Projects.insert(...) or other mongoDB command.
There might be the case if you removed insecure package, insert will not work from browser client.
Check if the 'insecure' package installed or not using following command
meteor list --using
which will list the packages which are used by the meteor app.

Resources