You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pdf/aspose-pdf-for-aws/_index.md
+46-2Lines changed: 46 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -540,6 +540,16 @@ Max files count in batch for processing.
540
540
Specify the default number of files in a batch for processing. Adjusting the MAX_BATCH_FILES can optimize processing efficiency and resource usage. Change this value if you encounter performance issues with large batches or need to customize batch processing based on your workload, ensuring smooth and efficient batch processing.
541
541
542
542
543
+
**MAX_INFLIGHT**
544
+
545
+
Maximum number of tasks processed in parallel.
546
+
547
+
**Default Value:** 10
548
+
549
+
550
+
Define the maximum number of tasks that can be processed simultaneously. If the number of tasks exceeds this value, additional tasks will wait in the queue until resources become available. Adjusting the MAX_INFLIGHT setting helps manage resource utilization and can improve system stability and performance. Increase this value to allow more parallel processing if your system can handle the load, or decrease it if you need to limit concurrent processing to avoid overloading resources.
551
+
552
+
543
553
**OMP_THREAD_LIMIT**
544
554
545
555
This option useful for use with searchable pdf endpoint and Tesseract.
@@ -558,6 +568,26 @@ Is for out of memory error message instead of reboot container in Kubernetes on
558
568
559
569
560
570
Set the GC heap hard limit for the .NET runtime in bytes to manage memory usage effectively. Adjusting the COMPlus_GCHeapHardLimit can help prevent avoid unnecessary container restarts in Kubernetes but large files will throws out-of-memory (OOM) errors. Change this value if you encounter OOM issues or need to fine-tune memory allocation to better suit your application's needs.
@@ -1489,6 +1519,16 @@ Use HTTPS (TLS) to ensure encrypted connections and protect against eavesdroppin
1489
1519
n in your Amazon S3 bucket policies to enforce HTTPS-only connections.
1490
1520
1491
1521
1522
+
### Document with Passwords
1523
+
1524
+
You may need to process encrypted documents through our containerized REST API, with support for various operations such as merging, converting, and splitting.
1525
+
1526
+
To ensure secure processing, a password is required to unlock encrypted documents before any operation.
1527
+
1528
+
Our API supports the **documentPassword** form parameter across all endpoints, allowing you to specify the necessary password for your documents. In the current version, when submitting multiple documents in a single request, the same password must be used for all. If your documents have different passwords, you can achieve this by running multiple concurrent API calls, each handling one document at a time with its specific password.
1529
+
1530
+
This approach provides you with a secure and flexible way to process encrypted documents across all our REST API endpoints, ensuring that your operations run smoothly, whether you’re working with single or multiple documents.
1531
+
1492
1532
1493
1533
1494
1534
### File Uploads via External and Internal Links
@@ -3694,7 +3734,9 @@ try {
3694
3734
3695
3735
<details><summary>curl</summary>
3696
3736
<pre><code>
3697
-
curl -X POST 'http://localhost:5252/pdf/webapi/lock?passw=value' -F 'files=@file.pdf'
3737
+
curl -X POST 'http://localhost:5252/pdf/webapi/lock' \\
3738
+
-F 'files=@file.pdf' \\
3739
+
-F 'documentPassword=value'
3698
3740
</code></pre>
3699
3741
</details>
3700
3742
<details><summary>php</summary>
@@ -5725,7 +5767,9 @@ try {
5725
5767
5726
5768
<details><summary>curl</summary>
5727
5769
<pre><code>
5728
-
curl -X POST 'http://localhost:5252/pdf/webapi/unlock?passw=value' -F 'files=@file.pdf'
5770
+
curl -X POST 'http://localhost:5252/pdf/webapi/unlock' \\
0 commit comments