Azure search index has more than 1000 fields - azure-cognitive-search

In my application I want Azure search index which has more than 1000 fields. but no any tier supports more than 1000 fields. any solution?

There is currently no way to index more than 1000 fields. That said, you can vote for that feature request here
Luis Cabrera | Cloud AI Platform | Microsoft

Related

Getting Azure Applications by subscription

I'm using the Az modules in Powershell. I want to get the applications for my subscription ID.
Get-Context shows the SubscriptionID I want.
Get-AzAdApplication returns all of the applications for my company, 600K+ of them.
There doesn't seem to be any effective filtering on Get-AzAdApplication. The predecessor was Get-AzureAdApplication or Get-AzureRmAdApplication.
My goal is to scan the App registrations and validate the expiration of each of the service principals.
I need the ApplicationID to do that, but I can't seem to limit the query except by number of items returned. I don't really want to crawl through 600K applications.
Any idea if there is a way to proceed?
There is no relation between the subscription and your applications. You should query all applications in your tenant and get the application id and then after use Get-AzADAppCredential -ObjectId 35157fe1-6ce8-47f6-9ea8-4d23afd4381d command. You can also use MS Graph to get the expiration date, appid using the below serviceprincipal endpoint.
https://graph.microsoft.com/v1.0/serviceprincipals?$select=appid,keyCredentials

Provisioning a team with hundreds of guest users

I was wondering how would I go about provisioning a team that will have hundreds of guest users?
I looked at PowerShell and School Data Sync, but it's only possible to add members within the organization. Is there a way to add about 13.000 guests (in an organisation that has 250 employees), without having to add them individually?
It's an EDU tenant.
We would split 13.000 users to multiple teams, so 10k limit will not be reached per team.
Thanks
Well there are two ways to do this. One which you already mentioned - PowerShell - You can add people outside your organization(Guests). Adding guests is a two step process. 1st you need to invite user, 2nd add him to the team. Check this documentation for how to add the guest and how to add bulk users using PowerShell script.
And second option is to use api.
As per my knowledge, you have to add guest users in azure active directory. If you need some special features like MFA then for guest users you can add up to 5 guest users for 1 license otherwise there are no restrictions. In the past I created 132 guest users for my azure account.
Yes, it is possible to add guest users in your Teams organization.
Add guest users as mail contacts in your exchange organization
Add the contacts in to Teams
You can find a short video tutorial prepared in my blog explaining this in the link shown below:
If you are looking for the solution which I explain in my blog, I can help out further in preparing PowerShell script to add all users by PowerShell cmdlet
Add External Contacts in Microsoft Teams
Thanks,
Manu

Azure search service index notification on exceeding number of fields

Is there any provision in azure search service to add trigger or provide notification on exceeding number of fields?
Because I am using "Basic" tier and it allows 100 fields and my application generates more than 100 fields. I am not sure but I believe after exceeding something around 900- 1000 fields it deleted my index automatically.
When you attempt more fields than permitted by the service tier quota, your Create Index or Update Index API calls will fail with the corresponding error message. Under no circumstances will Azure Search ever delete your index automatically.
After an RnD I have found that there is no any provision to add trigger, we need to upgrade from "Basic" tier to "Standard" or more.

Mass Processing of E-Mails with Cognitive Text Analytics

I have around 500k e-mails stored in a azure blob storage accounts (one e-mail = one document in the blob storage). Now i would like to anaylze the content of every of these e-mail with azure cognitivie text api (https://www.microsoft.com/cognitive-services/en-us/text-analytics-api). That's working pretty good - but since i need to bulk process thousands of e-mails, i am wondering what would the be the best way to do so? Is there another azure analytics product that could help me with this? Or do i just create an azure function that's taking a document and doing the stuff?
The Text Analytics API allows you to send up to 1000 records at a time. You can submit up to 100 requests per minute.
You can see an example on how to send a small batch here. It would not be that hard to modify to send 1000 records instead of 3.
I would suggest adding some kind of delay between each batch call so that you effectively send less than 100 requests per minute.
Also, I should point out that the maximum payload of a batch request cannot be > 1MB -- so depending on the size of the emails you want to analyze, you may want to make a batch smaller than 1000 documents.
Luis Cabrera | Text Analytics PM | Microsoft Corporation

Salesforce reports filter limit

I am tring to build reports in salesforce which need around 30 filters to be applied. Salesforce has a limit of 20 filters as per first row of this page -
https://help.salesforce.com/apex/HTViewHelpDoc?id=limits_analytics_per_edition.htm&language=en_US
Apart from writing these reports in apex/visulforce from scratch, is there any other alternative to workaround this limit?
Thank you in advance!!

Resources