Documentations for fission tool integration with other languages #3060
-
Hello @soharab-ic
|
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
You can explore Fission blogs for more Fission's usecase in real-world. |
Beta Was this translation helpful? Give feedback.
-
@soharab-ic We have few additional questions which I have also posted in the fission public slack channel. Please help with these also.
We want to run a python code with some pre-defined function name which accepts one input parameter of type dictionary and returns output of type json. Something like below:
Is this supported? How do we handle input parameters for the function and the output json type. |
Beta Was this translation helpful? Give feedback.
-
We can have multiple fission installations on the same cluster or use namespace-level isolation across a single fission installation.
Fission doesn't have any explicit support for the network policies but since Fission is Kubernetes native,
Typically the pool manager strategy has more fine-grained control and is used by many fission users in production, where a single environment supports multiple functions.
Autoscaling can be configured at the function/environment level. I am not sure if we have support at the fission global install level but something can be baked in here.
Fission supports generating manifests/yaml spec which can be used to deploy functions.
Yes, many fission users customize environments and use them for their purpose. Fission is extensible at all ends and many users to a lot of customizations in fission. You can find source for all environments here https://github.com/fission/environments
We have done some benchmarking in the past https://github.com/fission/benchmark and we keep doing it from time to time. |
Beta Was this translation helpful? Give feedback.
-
Thanks @sanketsudake for your reply. Pls let us know on this as well as this is our main requirement.
|
Beta Was this translation helpful? Give feedback.
-
So changes in the Python environment would be required accordingly. [1] https://github.com/fission/environments/blob/master/python/server.py
|
Beta Was this translation helpful? Give feedback.
We can have multiple fission installations on the same cluster or use namespace-level isolation across a single fission installation.
To prevent cross-tenant communication, we can apply network policies so that cross-namespace communication is prevented.
Fission doesn't have any explicit support for the network policies but since Fission is Kubernetes native,
Fission would respect applied network …