I have data on Azure DevOps which gets updated every 5 minutes. Using this data I want to create a dashboard in some BI tool which will provide a consolidated view of the data. I am currently using MicroStrategy which does not support DevOps. Using Power Bi is not an option.
I want an indirect way through which I can pull the data in DevOps into MicroStrategy maybe through Azure Cosmos DB. So can I transfer data in devops to cosmos db??
You can create a simple application to get the data from Devops with Azure Devops REST API link and using Azure Cosmos DB API link to store these data in Cosmos DB.
This is sample project provided by Microsoft, introducing how to store and access data from an ASP.NET MVC application hosted on Azure Websites using Azure Cosmos DB service
https://github.com/Azure-Samples/documentdb-dotnet-todo-app
You can check the tutorial provided by Microsoft
https://learn.microsoft.com/en-us/azure/devops/pipelines/targets/cosmos-db?view=azure-devops
Related
I'm using Microsodt azure cloud provider in my project,where i have a mongodb installed on a VM on azure and also I have azure cognitive search instance . what I want to do is to migrate the data which i have on mongodb to azure search in order to create indexes and then use the restful apis on the client application.
my question is, is there a way to move data from mongodb to azure search please ?
Unfortunately there is not a built in Mongo DB connector for Azure Search as of now. However you have two options.
Migrate from Mongodb to Azure Cosmos DB (Mongo API) and then create an Azure Search Indexer for the Azure Cosmos DB in question, see https://learn.microsoft.com/en-us/azure/dms/tutorial-mongodb-cosmos-db-online
Write a custom code application that pulls data from Mongo and then send it to Azure Search indexes, you can do this by using the push API, take a look at https://learn.microsoft.com/en-us/azure/search/tutorial-optimize-indexing-push-api
I'm using Azure CosmosDB SQL API and I'm looking a way to send data from CosmosDB to Google Big query. I'm
planning to use Kafka or Azure ADF for the same. I'm not sure this is correct approach/tools.
Is there any best practice or tool or connecter which I can use to send data from CosmosDB to Google Bigquery.
Data Factory supports Azure Cosmos DB (SQL API) as source and sink, but doesn't support Google Bigquery as the sink.
It means that we can not copy the data from Cosmos DB(SQL API) to Google Bigquery.
I am trying to setup oracle data gateway using Azure Devops pipeline, but i didn't found any document. Please help me on this. please guide me how to setup oracle data gateway using azure devops pipeline and please send me if you have any documents.
how to setup oracle data gateway using azure devops pipeline and please send me if you have any documents.
I am afraid there is no such way to setup oracle data gateway using azure devops pipeline.
First, to setup oracle data gateway, we need to download and run the gateway installer on a local computer. But there is such command line to download and run the gateway installer.
Secondly, there is no such extension for installing oracle data gateway in the Azure devops Marketplace.
So, there is no such way to setup oracle data gateway using azure devops pipeline.
I am trying to restore the reports data in Azure Devops Server.
I am wondering how to restore only the database TFS_Warehouse as named in the documentation.
I have created an empty database called something like TFS_Warehouse as mentioned in the documentation. Testing the connection on that part is okay.
I am trying to activate only the warehouse and not the Analysis services or reports.
The reports wizard in Azure Devops administration console does not seem to allow only this and requires that all fields are filled.
How can I use only the warehouse ?
Thanks in advance.
You can find documentation here: Manually process the TFS data warehouse and analysis services cube
Try the ProcessWarehouse command.
Is any plugin available in azure VSTS market place to fetch cosmos db data and use it in further VSTS pipeline task.
Currently, you can use Task for Cosmos DB which can do the features like
Delete/Create/Update collections
Import/Export data to/from Azure Cosmos DB
Some other similar extension can be found here
Azure Cosmos DB Emulator (which is still in public preview) - Docs