Skip to content

Commit 6961cbf

Browse files
authored
Merge pull request #264992 from jaep3347/patch-22
Update faq.yml
2 parents f82d07d + ce400d9 commit 6961cbf

File tree

1 file changed

+14
-0
lines changed
  • articles/ai-services/document-intelligence

1 file changed

+14
-0
lines changed

articles/ai-services/document-intelligence/faq.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -556,6 +556,20 @@ sections:
556556
557557
FOTT has a version that uses local storage. The version needs to be installed on a Windows machine. You can install it from [this location](https://github.com/microsoft/OCR-Form-Tools/releases/download/v2.1-ga/oflt-2.1.3-win32.exe). On the project page, specify the Label folder URI as /shared or /shared/sub-dir if your labeling files are in a sub directory. All other Document Intelligence Sample Labeling Tool behavior is the same as the hosted service.
558558
559+
- question: |
560+
What is the best practice for scaling up?
561+
answer: |
562+
563+
- For asynchronous calls, you can run multiple containers with shared storages. The container processing the POST Analyze call stores the output in the storage. Then, any other container can fetch the results from the storage and serve the GET calls. Thus, the request ID is not tied to a container.
564+
565+
- For synchronous calls, multiple containers can be run and only one container will serve a request. As it is a blocking call, any container from the pool can serve the request and send the response. Here, only one container will be tied to a request at a time and no polling is required.
566+
567+
- question: |
568+
How can I set up containers with shared storage?
569+
answer: |
570+
571+
The containers use ‘Mounts:Shared’ property while starting up for specifying the shared storage to store the processing files. You can refer the following [documentation](https://learn.microsoft.com/en-us/azure/ai-services/document-intelligence/containers/install-run?view=doc-intel-3.0.0&tabs=custom#create-a-folder-for-storing-internal-processing-shared-between-the-containers) to see the use of this property.
572+
559573
- name: Security and Privacy
560574
questions:
561575
- question: |

0 commit comments

Comments
 (0)