[hotfix] Add missing configuration to documentation
diff --git a/docs/content/docs/deployment/configurations.md b/docs/content/docs/deployment/configurations.md
index 271e752..a866225 100644
--- a/docs/content/docs/deployment/configurations.md
+++ b/docs/content/docs/deployment/configurations.md
@@ -69,5 +69,11 @@
             <td>Memory</td>
             <td>The number of bytes to use for in memory buffering of the feedback channel, before spilling to disk.</td>
         </tr>
+        <tr>
+            <td><h5>statefun.async.max-per-task</h5></td>
+            <td style="word-wrap: break-word;">1024</td>
+            <td>Integer</td>
+            <td>The max number of async operations per task before backpressure is applied.</td>
+        </tr>
 	</tbody>
 </table>
\ No newline at end of file
diff --git a/docs/content/docs/io-module/apache-kafka.md b/docs/content/docs/io-module/apache-kafka.md
index 3f186eb..a700f17 100644
--- a/docs/content/docs/io-module/apache-kafka.md
+++ b/docs/content/docs/io-module/apache-kafka.md
@@ -182,33 +182,5 @@
 
 ### Writing To Kafka
 
-Functions write directly to Kafka from their SDK context. See SDK specific documentation for more details.
-
-{{< tabs "writer" >}}
-{{< tab "Python" >}}
-```python
-@functions.bind(
-    typename='com.example/greeter'
-    specs=[ValueSpec(name='seen'), type=IntType])
-def fun(context: Context, message: Message):
-    # todo
-    pass
-```
-{{< /tab >}}
-{{< tab "Java" >}}
-```java
-public class Greeter implements StatefulFunction {
-    @Override
-    public CompletableFuture<Void> apply(Context context, Message message) {
-        context.send(
-            KafkaEgressBuilder.forEgress(GREETS_EGRESS)
-                .withTopic("output-topic")
-                .withKey(...)
-                .withValue(...));
-
-        return context.done();
-    }
-}
-```
-{{< /tab >}}
-{{< /tabs >}}
\ No newline at end of file
+Functions write directly to Kafka from their SDK context.
+See SDK specific documentation for more details.
diff --git a/docs/content/docs/io-module/aws-kinesis.md b/docs/content/docs/io-module/aws-kinesis.md
index fab9d39..c288d44 100644
--- a/docs/content/docs/io-module/aws-kinesis.md
+++ b/docs/content/docs/io-module/aws-kinesis.md
@@ -200,3 +200,8 @@
   profileName: profile-name
   profilePath: /path/to/profile/config
 ```
+
+### Writing To Kinesis
+
+Functions write directly to Kinesis from their SDK context.
+See SDK specific documentation for more details.
\ No newline at end of file